From 82e03877b3bb9fba7e9e9f74ac8316af776659b6 Mon Sep 17 00:00:00 2001 From: Schubert Ferenc Date: Sun, 12 Jul 2026 15:19:15 +0200 Subject: [PATCH] feat(customers): add controlled CSV and XLSX customer import --- ...02607120003_customer_external_reference.py | 38 ++ .../backend/mercury/app/api/v1/domain.py | 46 ++ .../backend/mercury/app/models/customer.py | 3 +- .../mercury/app/repositories/domain.py | 1 + .../backend/mercury/app/schemas/domain.py | 2 + .../mercury/app/services/customer_import.py | 505 ++++++++++++++++++ .../mercury/tests/test_validation_workflow.py | 113 +++- .../frontend/atlas/.next/BUILD_ID | 2 +- .../atlas/.next/app-path-routes-manifest.json | 3 + .../frontend/atlas/.next/build-manifest.json | 6 +- .../frontend/atlas/.next/cache/.tsbuildinfo | 2 +- .../.next/diagnostics/route-bundle-stats.json | 124 +++-- .../atlas/.next/fallback-build-manifest.json | 6 +- .../atlas/.next/prerender-manifest.json | 24 + .../frontend/atlas/.next/routes-manifest.json | 18 + .../.next/server/app-paths-manifest.json | 3 + .../app/(app)/contacts/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../server/app/(app)/customers/import/page.js | 16 + .../app/(app)/customers/import/page.js.map | 5 + .../(app)/customers/import/page.js.nft.json | 1 + .../import/page/app-paths-manifest.json | 3 + .../customers/import/page/build-manifest.json | 18 + .../import/page/next-font-manifest.json | 6 + .../import/page/react-loadable-manifest.json | 1 + .../page/server-reference-manifest.json | 4 + .../import/page_client-reference-manifest.js | 3 + .../app/(app)/customers/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../app/(app)/dashboard/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../server/app/(app)/devices/page.js.nft.json | 2 +- .../devices/page_client-reference-manifest.js | 2 +- .../app/(app)/documents/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../app/(app)/equipment/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../app/(app)/locations/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../(app)/profile/security/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../settings/report-layout/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../server/app/(app)/users/page.js.nft.json | 2 +- .../users/page_client-reference-manifest.js | 2 +- .../validations/[id]/edit/page.js.nft.json | 2 +- .../edit/page_client-reference-manifest.js | 2 +- .../validations/[id]/preview/page.js.nft.json | 2 +- .../preview/page_client-reference-manifest.js | 2 +- .../(app)/validations/new/page.js.nft.json | 2 +- .../new/page_client-reference-manifest.js | 2 +- .../app/(app)/validations/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../validations/quick-start/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../login/page_client-reference-manifest.js | 2 +- .../atlas/.next/server/app/_global-error.html | 2 +- .../atlas/.next/server/app/_global-error.rsc | 2 +- .../__PAGE__.segment.rsc | 2 +- .../_global-error.segments/_full.segment.rsc | 2 +- .../_global-error.segments/_head.segment.rsc | 2 +- .../_global-error.segments/_index.segment.rsc | 2 +- .../_global-error.segments/_tree.segment.rsc | 2 +- .../atlas/.next/server/app/_not-found.html | 2 +- .../atlas/.next/server/app/_not-found.rsc | 4 +- .../app/_not-found.segments/_full.segment.rsc | 4 +- .../app/_not-found.segments/_head.segment.rsc | 2 +- .../_not-found.segments/_index.segment.rsc | 4 +- .../_not-found.segment.rsc | 2 +- .../_not-found/__PAGE__.segment.rsc | 2 +- .../app/_not-found.segments/_tree.segment.rsc | 4 +- .../page_client-reference-manifest.js | 2 +- .../app/api/customer-imports/confirm/route.js | 7 + .../api/customer-imports/confirm/route.js.map | 5 + .../confirm/route.js.nft.json | 1 + .../confirm/route/app-paths-manifest.json | 3 + .../confirm/route/build-manifest.json | 9 + .../route/server-reference-manifest.json | 4 + .../route_client-reference-manifest.js | 3 + .../app/api/customer-imports/preview/route.js | 7 + .../api/customer-imports/preview/route.js.map | 5 + .../preview/route.js.nft.json | 1 + .../preview/route/app-paths-manifest.json | 3 + .../preview/route/build-manifest.json | 9 + .../route/server-reference-manifest.json | 4 + .../route_client-reference-manifest.js | 3 + .../atlas/.next/server/app/contacts.html | 4 +- .../atlas/.next/server/app/contacts.rsc | 12 +- .../contacts.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/contacts.segment.rsc | 2 +- .../!KGFwcCk/contacts/__PAGE__.segment.rsc | 4 +- .../app/contacts.segments/_full.segment.rsc | 12 +- .../app/contacts.segments/_head.segment.rsc | 2 +- .../app/contacts.segments/_index.segment.rsc | 4 +- .../app/contacts.segments/_tree.segment.rsc | 4 +- .../atlas/.next/server/app/customers.html | 4 +- .../atlas/.next/server/app/customers.rsc | 12 +- .../customers.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/customers.segment.rsc | 2 +- .../!KGFwcCk/customers/__PAGE__.segment.rsc | 4 +- .../app/customers.segments/_full.segment.rsc | 12 +- .../app/customers.segments/_head.segment.rsc | 2 +- .../app/customers.segments/_index.segment.rsc | 4 +- .../app/customers.segments/_tree.segment.rsc | 4 +- .../.next/server/app/customers/import.html | 2 + .../.next/server/app/customers/import.meta | 17 + .../.next/server/app/customers/import.rsc | 26 + .../import.segments/!KGFwcCk.segment.rsc | 9 + .../!KGFwcCk/customers.segment.rsc | 5 + .../!KGFwcCk/customers/import.segment.rsc | 5 + .../customers/import/__PAGE__.segment.rsc | 9 + .../import.segments/_full.segment.rsc | 26 + .../import.segments/_head.segment.rsc | 6 + .../import.segments/_index.segment.rsc | 8 + .../import.segments/_tree.segment.rsc | 2 + .../atlas/.next/server/app/dashboard.html | 4 +- .../atlas/.next/server/app/dashboard.rsc | 12 +- .../dashboard.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/dashboard.segment.rsc | 2 +- .../!KGFwcCk/dashboard/__PAGE__.segment.rsc | 4 +- .../app/dashboard.segments/_full.segment.rsc | 12 +- .../app/dashboard.segments/_head.segment.rsc | 2 +- .../app/dashboard.segments/_index.segment.rsc | 4 +- .../app/dashboard.segments/_tree.segment.rsc | 4 +- .../atlas/.next/server/app/devices.html | 4 +- .../atlas/.next/server/app/devices.rsc | 12 +- .../app/devices.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/devices.segment.rsc | 2 +- .../!KGFwcCk/devices/__PAGE__.segment.rsc | 4 +- .../app/devices.segments/_full.segment.rsc | 12 +- .../app/devices.segments/_head.segment.rsc | 2 +- .../app/devices.segments/_index.segment.rsc | 4 +- .../app/devices.segments/_tree.segment.rsc | 4 +- .../atlas/.next/server/app/documents.html | 4 +- .../atlas/.next/server/app/documents.rsc | 12 +- .../documents.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/documents.segment.rsc | 2 +- .../!KGFwcCk/documents/__PAGE__.segment.rsc | 2 +- .../app/documents.segments/_full.segment.rsc | 12 +- .../app/documents.segments/_head.segment.rsc | 2 +- .../app/documents.segments/_index.segment.rsc | 4 +- .../app/documents.segments/_tree.segment.rsc | 4 +- .../atlas/.next/server/app/equipment.html | 4 +- .../atlas/.next/server/app/equipment.rsc | 12 +- .../equipment.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/equipment.segment.rsc | 2 +- .../!KGFwcCk/equipment/__PAGE__.segment.rsc | 4 +- .../app/equipment.segments/_full.segment.rsc | 12 +- .../app/equipment.segments/_head.segment.rsc | 2 +- .../app/equipment.segments/_index.segment.rsc | 4 +- .../app/equipment.segments/_tree.segment.rsc | 4 +- .../atlas/.next/server/app/index.html | 2 +- .../frontend/atlas/.next/server/app/index.rsc | 4 +- .../app/index.segments/__PAGE__.segment.rsc | 2 +- .../app/index.segments/_full.segment.rsc | 4 +- .../app/index.segments/_head.segment.rsc | 2 +- .../app/index.segments/_index.segment.rsc | 4 +- .../app/index.segments/_tree.segment.rsc | 4 +- .../atlas/.next/server/app/locations.html | 4 +- .../atlas/.next/server/app/locations.rsc | 12 +- .../locations.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/locations.segment.rsc | 2 +- .../!KGFwcCk/locations/__PAGE__.segment.rsc | 4 +- .../app/locations.segments/_full.segment.rsc | 12 +- .../app/locations.segments/_head.segment.rsc | 2 +- .../app/locations.segments/_index.segment.rsc | 4 +- .../app/locations.segments/_tree.segment.rsc | 4 +- .../atlas/.next/server/app/login.html | 2 +- .../frontend/atlas/.next/server/app/login.rsc | 4 +- .../app/login.segments/!KGF1dGgp.segment.rsc | 2 +- .../!KGF1dGgp/login.segment.rsc | 2 +- .../!KGF1dGgp/login/__PAGE__.segment.rsc | 2 +- .../app/login.segments/_full.segment.rsc | 4 +- .../app/login.segments/_head.segment.rsc | 2 +- .../app/login.segments/_index.segment.rsc | 4 +- .../app/login.segments/_tree.segment.rsc | 4 +- .../app/page_client-reference-manifest.js | 2 +- .../.next/server/app/profile/security.html | 4 +- .../.next/server/app/profile/security.rsc | 14 +- .../security.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/profile.segment.rsc | 2 +- .../!KGFwcCk/profile/security.segment.rsc | 2 +- .../profile/security/__PAGE__.segment.rsc | 4 +- .../security.segments/_full.segment.rsc | 14 +- .../security.segments/_head.segment.rsc | 2 +- .../security.segments/_index.segment.rsc | 4 +- .../security.segments/_tree.segment.rsc | 4 +- .../server/app/settings/report-layout.html | 4 +- .../server/app/settings/report-layout.rsc | 12 +- .../!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/settings.segment.rsc | 2 +- .../settings/report-layout.segment.rsc | 2 +- .../report-layout/__PAGE__.segment.rsc | 4 +- .../report-layout.segments/_full.segment.rsc | 12 +- .../report-layout.segments/_head.segment.rsc | 2 +- .../report-layout.segments/_index.segment.rsc | 4 +- .../report-layout.segments/_tree.segment.rsc | 4 +- .../atlas/.next/server/app/users.html | 4 +- .../frontend/atlas/.next/server/app/users.rsc | 12 +- .../app/users.segments/!KGFwcCk.segment.rsc | 8 +- .../users.segments/!KGFwcCk/users.segment.rsc | 2 +- .../!KGFwcCk/users/__PAGE__.segment.rsc | 4 +- .../app/users.segments/_full.segment.rsc | 12 +- .../app/users.segments/_head.segment.rsc | 2 +- .../app/users.segments/_index.segment.rsc | 4 +- .../app/users.segments/_tree.segment.rsc | 4 +- .../atlas/.next/server/app/validations.html | 4 +- .../atlas/.next/server/app/validations.rsc | 12 +- .../validations.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/validations.segment.rsc | 2 +- .../!KGFwcCk/validations/__PAGE__.segment.rsc | 4 +- .../validations.segments/_full.segment.rsc | 12 +- .../validations.segments/_head.segment.rsc | 2 +- .../validations.segments/_index.segment.rsc | 4 +- .../validations.segments/_tree.segment.rsc | 4 +- .../.next/server/app/validations/new.html | 4 +- .../.next/server/app/validations/new.rsc | 14 +- .../new.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/validations.segment.rsc | 2 +- .../!KGFwcCk/validations/new.segment.rsc | 2 +- .../validations/new/__PAGE__.segment.rsc | 4 +- .../new.segments/_full.segment.rsc | 14 +- .../new.segments/_head.segment.rsc | 2 +- .../new.segments/_index.segment.rsc | 4 +- .../new.segments/_tree.segment.rsc | 4 +- .../server/app/validations/quick-start.html | 4 +- .../server/app/validations/quick-start.rsc | 12 +- .../quick-start.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/validations.segment.rsc | 2 +- .../validations/quick-start.segment.rsc | 2 +- .../quick-start/__PAGE__.segment.rsc | 4 +- .../quick-start.segments/_full.segment.rsc | 12 +- .../quick-start.segments/_head.segment.rsc | 2 +- .../quick-start.segments/_index.segment.rsc | 4 +- .../quick-start.segments/_tree.segment.rsc | 4 +- .../chunks/[root-of-the-server]__0r7ghc3._.js | 3 + .../[root-of-the-server]__0r7ghc3._.js.map | 1 + .../chunks/[root-of-the-server]__1cid3cf._.js | 3 + .../[root-of-the-server]__1cid3cf._.js.map | 1 + ...r-imports_confirm_route_actions_1-98oae.js | 3 + ...ports_confirm_route_actions_1-98oae.js.map | 1 + ...r-imports_preview_route_actions_1twf800.js | 3 + ...ports_preview_route_actions_1twf800.js.map | 1 + .../ssr/[root-of-the-server]__1ncuiz7._.js | 3 + .../[root-of-the-server]__1ncuiz7._.js.map | 1 + .../.next/server/chunks/ssr/_01izkzk._.js | 3 - .../.next/server/chunks/ssr/_01izkzk._.js.map | 1 - .../.next/server/chunks/ssr/_03n4ybq._.js.map | 2 +- .../.next/server/chunks/ssr/_0454dxv._.js | 3 + .../.next/server/chunks/ssr/_0454dxv._.js.map | 1 + .../.next/server/chunks/ssr/_052zwtf._.js | 3 - .../.next/server/chunks/ssr/_052zwtf._.js.map | 1 - .../.next/server/chunks/ssr/_08v2m74._.js.map | 2 +- .../chunks/ssr/_0arfgns._.js} | 4 +- .../.next/server/chunks/ssr/_0arfgns._.js.map | 1 + .../.next/server/chunks/ssr/_0iy5o-h._.js | 2 +- .../.next/server/chunks/ssr/_0iy5o-h._.js.map | 2 +- .../ssr/{_0js1deh._.js => _0nmawq4._.js} | 4 +- .../{_0js1deh._.js.map => _0nmawq4._.js.map} | 2 +- .../.next/server/chunks/ssr/_0nxz7mr._.js.map | 2 +- .../.next/server/chunks/ssr/_0v6sf8t._.js.map | 1 - .../.next/server/chunks/ssr/_0wli_2u._.js.map | 2 +- .../.next/server/chunks/ssr/_0xryq0e._.js | 3 + .../.next/server/chunks/ssr/_0xryq0e._.js.map | 1 + .../.next/server/chunks/ssr/_1-ty-5z._.js | 3 + .../.next/server/chunks/ssr/_1-ty-5z._.js.map | 1 + .../.next/server/chunks/ssr/_1-ytrce._.js.map | 2 +- .../.next/server/chunks/ssr/_101_axp._.js.map | 1 - .../chunks/ssr/_1_mr0l7._.js} | 4 +- .../.next/server/chunks/ssr/_1_mr0l7._.js.map | 1 + .../.next/server/chunks/ssr/_1ewnf_e._.js | 3 - .../.next/server/chunks/ssr/_1ewnf_e._.js.map | 1 - .../.next/server/chunks/ssr/_1i3n8ki._.js | 3 + .../.next/server/chunks/ssr/_1i3n8ki._.js.map | 1 + .../.next/server/chunks/ssr/_1im67h4._.js.map | 2 +- .../.next/server/chunks/ssr/_1k0zbdw._.js.map | 2 +- .../.next/server/chunks/ssr/_1ysowk8._.js.map | 2 +- .../.next/server/chunks/ssr/_1zxnuxr._.js.map | 2 +- ...)_customers_import_page_actions_20ppyww.js | 3 + ...stomers_import_page_actions_20ppyww.js.map | 1 + .../server/chunks/ssr/components_1g-t6zb._.js | 2 +- .../chunks/ssr/components_1g-t6zb._.js.map | 2 +- ...dations_validation-editor_tsx_1twfibv._.js | 2 +- ...ons_validation-editor_tsx_1twfibv._.js.map | 2 +- ...st_esm_build_templates_app-page_0npvcom.js | 4 + ...sm_build_templates_app-page_0npvcom.js.map | 1 + .../.next/server/middleware-build-manifest.js | 6 +- .../.next/server/middleware-manifest.json | 2 +- .../middleware/middleware-manifest.json | 2 +- .../atlas/.next/server/pages/404.html | 2 +- .../atlas/.next/server/pages/500.html | 2 +- .../atlas/.next/standalone/.next/BUILD_ID | 2 +- .../.next/app-path-routes-manifest.json | 3 + .../standalone/.next/build-manifest.json | 6 +- .../standalone/.next/prerender-manifest.json | 24 + .../standalone/.next/routes-manifest.json | 18 + .../.next/server/app-paths-manifest.json | 3 + .../app/(app)/contacts/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../server/app/(app)/customers/import/page.js | 16 + .../app/(app)/customers/import/page.js.map | 5 + .../(app)/customers/import/page.js.nft.json | 1 + .../import/page/app-paths-manifest.json | 3 + .../customers/import/page/build-manifest.json | 18 + .../import/page/next-font-manifest.json | 6 + .../import/page/react-loadable-manifest.json | 1 + .../page/server-reference-manifest.json | 4 + .../import/page_client-reference-manifest.js | 3 + .../app/(app)/customers/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../app/(app)/dashboard/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../server/app/(app)/devices/page.js.nft.json | 2 +- .../devices/page_client-reference-manifest.js | 2 +- .../app/(app)/documents/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../app/(app)/equipment/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../app/(app)/locations/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../(app)/profile/security/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../settings/report-layout/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../server/app/(app)/users/page.js.nft.json | 2 +- .../users/page_client-reference-manifest.js | 2 +- .../validations/[id]/edit/page.js.nft.json | 2 +- .../edit/page_client-reference-manifest.js | 2 +- .../validations/[id]/preview/page.js.nft.json | 2 +- .../preview/page_client-reference-manifest.js | 2 +- .../(app)/validations/new/page.js.nft.json | 2 +- .../new/page_client-reference-manifest.js | 2 +- .../app/(app)/validations/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../validations/quick-start/page.js.nft.json | 2 +- .../page_client-reference-manifest.js | 2 +- .../login/page_client-reference-manifest.js | 2 +- .../.next/server/app/_global-error.html | 2 +- .../.next/server/app/_global-error.rsc | 2 +- .../__PAGE__.segment.rsc | 2 +- .../_global-error.segments/_full.segment.rsc | 2 +- .../_global-error.segments/_head.segment.rsc | 2 +- .../_global-error.segments/_index.segment.rsc | 2 +- .../_global-error.segments/_tree.segment.rsc | 2 +- .../.next/server/app/_not-found.html | 2 +- .../.next/server/app/_not-found.rsc | 4 +- .../app/_not-found.segments/_full.segment.rsc | 4 +- .../app/_not-found.segments/_head.segment.rsc | 2 +- .../_not-found.segments/_index.segment.rsc | 4 +- .../_not-found.segment.rsc | 2 +- .../_not-found/__PAGE__.segment.rsc | 2 +- .../app/_not-found.segments/_tree.segment.rsc | 4 +- .../page_client-reference-manifest.js | 2 +- .../app/api/customer-imports/confirm/route.js | 7 + .../api/customer-imports/confirm/route.js.map | 5 + .../confirm/route.js.nft.json | 1 + .../confirm/route/app-paths-manifest.json | 3 + .../confirm/route/build-manifest.json | 9 + .../route/server-reference-manifest.json | 4 + .../route_client-reference-manifest.js | 3 + .../app/api/customer-imports/preview/route.js | 7 + .../api/customer-imports/preview/route.js.map | 5 + .../preview/route.js.nft.json | 1 + .../preview/route/app-paths-manifest.json | 3 + .../preview/route/build-manifest.json | 9 + .../route/server-reference-manifest.json | 4 + .../route_client-reference-manifest.js | 3 + .../standalone/.next/server/app/contacts.html | 4 +- .../standalone/.next/server/app/contacts.rsc | 12 +- .../contacts.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/contacts.segment.rsc | 2 +- .../!KGFwcCk/contacts/__PAGE__.segment.rsc | 4 +- .../app/contacts.segments/_full.segment.rsc | 12 +- .../app/contacts.segments/_head.segment.rsc | 2 +- .../app/contacts.segments/_index.segment.rsc | 4 +- .../app/contacts.segments/_tree.segment.rsc | 4 +- .../.next/server/app/customers.html | 4 +- .../standalone/.next/server/app/customers.rsc | 12 +- .../customers.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/customers.segment.rsc | 2 +- .../!KGFwcCk/customers/__PAGE__.segment.rsc | 4 +- .../app/customers.segments/_full.segment.rsc | 12 +- .../app/customers.segments/_head.segment.rsc | 2 +- .../app/customers.segments/_index.segment.rsc | 4 +- .../app/customers.segments/_tree.segment.rsc | 4 +- .../.next/server/app/customers/import.html | 2 + .../.next/server/app/customers/import.meta | 17 + .../.next/server/app/customers/import.rsc | 26 + .../import.segments/!KGFwcCk.segment.rsc | 9 + .../!KGFwcCk/customers.segment.rsc | 5 + .../!KGFwcCk/customers/import.segment.rsc | 5 + .../customers/import/__PAGE__.segment.rsc | 9 + .../import.segments/_full.segment.rsc | 26 + .../import.segments/_head.segment.rsc | 6 + .../import.segments/_index.segment.rsc | 8 + .../import.segments/_tree.segment.rsc | 2 + .../.next/server/app/dashboard.html | 4 +- .../standalone/.next/server/app/dashboard.rsc | 12 +- .../dashboard.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/dashboard.segment.rsc | 2 +- .../!KGFwcCk/dashboard/__PAGE__.segment.rsc | 4 +- .../app/dashboard.segments/_full.segment.rsc | 12 +- .../app/dashboard.segments/_head.segment.rsc | 2 +- .../app/dashboard.segments/_index.segment.rsc | 4 +- .../app/dashboard.segments/_tree.segment.rsc | 4 +- .../standalone/.next/server/app/devices.html | 4 +- .../standalone/.next/server/app/devices.rsc | 12 +- .../app/devices.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/devices.segment.rsc | 2 +- .../!KGFwcCk/devices/__PAGE__.segment.rsc | 4 +- .../app/devices.segments/_full.segment.rsc | 12 +- .../app/devices.segments/_head.segment.rsc | 2 +- .../app/devices.segments/_index.segment.rsc | 4 +- .../app/devices.segments/_tree.segment.rsc | 4 +- .../.next/server/app/documents.html | 4 +- .../standalone/.next/server/app/documents.rsc | 12 +- .../documents.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/documents.segment.rsc | 2 +- .../!KGFwcCk/documents/__PAGE__.segment.rsc | 2 +- .../app/documents.segments/_full.segment.rsc | 12 +- .../app/documents.segments/_head.segment.rsc | 2 +- .../app/documents.segments/_index.segment.rsc | 4 +- .../app/documents.segments/_tree.segment.rsc | 4 +- .../.next/server/app/equipment.html | 4 +- .../standalone/.next/server/app/equipment.rsc | 12 +- .../equipment.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/equipment.segment.rsc | 2 +- .../!KGFwcCk/equipment/__PAGE__.segment.rsc | 4 +- .../app/equipment.segments/_full.segment.rsc | 12 +- .../app/equipment.segments/_head.segment.rsc | 2 +- .../app/equipment.segments/_index.segment.rsc | 4 +- .../app/equipment.segments/_tree.segment.rsc | 4 +- .../standalone/.next/server/app/index.html | 2 +- .../standalone/.next/server/app/index.rsc | 4 +- .../app/index.segments/__PAGE__.segment.rsc | 2 +- .../app/index.segments/_full.segment.rsc | 4 +- .../app/index.segments/_head.segment.rsc | 2 +- .../app/index.segments/_index.segment.rsc | 4 +- .../app/index.segments/_tree.segment.rsc | 4 +- .../.next/server/app/locations.html | 4 +- .../standalone/.next/server/app/locations.rsc | 12 +- .../locations.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/locations.segment.rsc | 2 +- .../!KGFwcCk/locations/__PAGE__.segment.rsc | 4 +- .../app/locations.segments/_full.segment.rsc | 12 +- .../app/locations.segments/_head.segment.rsc | 2 +- .../app/locations.segments/_index.segment.rsc | 4 +- .../app/locations.segments/_tree.segment.rsc | 4 +- .../standalone/.next/server/app/login.html | 2 +- .../standalone/.next/server/app/login.rsc | 4 +- .../app/login.segments/!KGF1dGgp.segment.rsc | 2 +- .../!KGF1dGgp/login.segment.rsc | 2 +- .../!KGF1dGgp/login/__PAGE__.segment.rsc | 2 +- .../app/login.segments/_full.segment.rsc | 4 +- .../app/login.segments/_head.segment.rsc | 2 +- .../app/login.segments/_index.segment.rsc | 4 +- .../app/login.segments/_tree.segment.rsc | 4 +- .../app/page_client-reference-manifest.js | 2 +- .../.next/server/app/profile/security.html | 4 +- .../.next/server/app/profile/security.rsc | 14 +- .../security.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/profile.segment.rsc | 2 +- .../!KGFwcCk/profile/security.segment.rsc | 2 +- .../profile/security/__PAGE__.segment.rsc | 4 +- .../security.segments/_full.segment.rsc | 14 +- .../security.segments/_head.segment.rsc | 2 +- .../security.segments/_index.segment.rsc | 4 +- .../security.segments/_tree.segment.rsc | 4 +- .../server/app/settings/report-layout.html | 4 +- .../server/app/settings/report-layout.rsc | 12 +- .../!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/settings.segment.rsc | 2 +- .../settings/report-layout.segment.rsc | 2 +- .../report-layout/__PAGE__.segment.rsc | 4 +- .../report-layout.segments/_full.segment.rsc | 12 +- .../report-layout.segments/_head.segment.rsc | 2 +- .../report-layout.segments/_index.segment.rsc | 4 +- .../report-layout.segments/_tree.segment.rsc | 4 +- .../standalone/.next/server/app/users.html | 4 +- .../standalone/.next/server/app/users.rsc | 12 +- .../app/users.segments/!KGFwcCk.segment.rsc | 8 +- .../users.segments/!KGFwcCk/users.segment.rsc | 2 +- .../!KGFwcCk/users/__PAGE__.segment.rsc | 4 +- .../app/users.segments/_full.segment.rsc | 12 +- .../app/users.segments/_head.segment.rsc | 2 +- .../app/users.segments/_index.segment.rsc | 4 +- .../app/users.segments/_tree.segment.rsc | 4 +- .../.next/server/app/validations.html | 4 +- .../.next/server/app/validations.rsc | 12 +- .../validations.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/validations.segment.rsc | 2 +- .../!KGFwcCk/validations/__PAGE__.segment.rsc | 4 +- .../validations.segments/_full.segment.rsc | 12 +- .../validations.segments/_head.segment.rsc | 2 +- .../validations.segments/_index.segment.rsc | 4 +- .../validations.segments/_tree.segment.rsc | 4 +- .../.next/server/app/validations/new.html | 4 +- .../.next/server/app/validations/new.rsc | 14 +- .../new.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/validations.segment.rsc | 2 +- .../!KGFwcCk/validations/new.segment.rsc | 2 +- .../validations/new/__PAGE__.segment.rsc | 4 +- .../new.segments/_full.segment.rsc | 14 +- .../new.segments/_head.segment.rsc | 2 +- .../new.segments/_index.segment.rsc | 4 +- .../new.segments/_tree.segment.rsc | 4 +- .../server/app/validations/quick-start.html | 4 +- .../server/app/validations/quick-start.rsc | 12 +- .../quick-start.segments/!KGFwcCk.segment.rsc | 8 +- .../!KGFwcCk/validations.segment.rsc | 2 +- .../validations/quick-start.segment.rsc | 2 +- .../quick-start/__PAGE__.segment.rsc | 4 +- .../quick-start.segments/_full.segment.rsc | 12 +- .../quick-start.segments/_head.segment.rsc | 2 +- .../quick-start.segments/_index.segment.rsc | 4 +- .../quick-start.segments/_tree.segment.rsc | 4 +- .../chunks/[root-of-the-server]__0r7ghc3._.js | 3 + .../chunks/[root-of-the-server]__1cid3cf._.js | 3 + ...r-imports_confirm_route_actions_1-98oae.js | 3 + ...r-imports_preview_route_actions_1twf800.js | 3 + .../ssr/[root-of-the-server]__1ncuiz7._.js | 3 + .../.next/server/chunks/ssr/_01izkzk._.js | 3 - .../.next/server/chunks/ssr/_0454dxv._.js | 3 + .../.next/server/chunks/ssr/_052zwtf._.js | 3 - .../.next/server/chunks/ssr/_0arfgns._.js} | 4 +- .../.next/server/chunks/ssr/_0iy5o-h._.js | 2 +- .../ssr/{_0js1deh._.js => _0nmawq4._.js} | 4 +- .../.next/server/chunks/ssr/_0xryq0e._.js | 3 + .../.next/server/chunks/ssr/_1-ty-5z._.js | 3 + .../.next/server/chunks/ssr/_1_mr0l7._.js} | 4 +- .../.next/server/chunks/ssr/_1ewnf_e._.js | 3 - .../.next/server/chunks/ssr/_1i3n8ki._.js | 3 + ...)_customers_import_page_actions_20ppyww.js | 3 + .../server/chunks/ssr/components_1g-t6zb._.js | 2 +- ...dations_validation-editor_tsx_1twfibv._.js | 2 +- ...st_esm_build_templates_app-page_0npvcom.js | 4 + .../.next/server/middleware-build-manifest.js | 6 +- .../.next/server/middleware-manifest.json | 2 +- .../standalone/.next/server/pages/404.html | 2 +- .../standalone/.next/server/pages/500.html | 2 +- .../atlas/.next/standalone/package.json | 1 + .../_buildManifest.js | 0 .../_clientMiddlewareManifest.js | 0 .../_ssgManifest.js | 0 .../{3_bqwdscuc1c8.js => 05xkqica3e3uw.js} | 6 +- .../{2-nz3xcpe_pw_.js => 0lz93ryxnzgoq.js} | 2 +- .../.next/static/chunks/0o13c7nb3wcya.js | 1 + .../.next/static/chunks/2975f5i-zcw63.js | 1 - .../{2toi33zq_ydim.js => 2c7prz40q05zp.js} | 2 +- .../.next/static/chunks/33g7vuk7-89na.css | 1 - .../{413udcsynwnhe.js => 3cjefmw3itjkw.js} | 2 +- .../.next/static/chunks/3yh08fx1c3mlz.css | 1 + .../{0ti1a2yw9pft4.js => 41jx6c5jfr1py.js} | 2 +- .../.next/static/chunks/43zs1l-r-4ddz.js | 1 + validation-suite/frontend/atlas/.next/trace | 2 +- .../frontend/atlas/.next/trace-build | 2 +- .../frontend/atlas/.next/types/routes.d.ts | 7 +- .../frontend/atlas/.next/types/validator.ts | 27 + .../atlas/app/(app)/customers/import/page.tsx | 288 ++++++++++ .../atlas/app/(app)/customers/page.tsx | 8 +- .../app/api/customer-imports/confirm/route.ts | 21 + .../app/api/customer-imports/preview/route.ts | 21 + .../frontend/atlas/components/app-shell.tsx | 5 + validation-suite/frontend/atlas/lib/api.ts | 2 + validation-suite/frontend/atlas/package.json | 1 + .../atlas/tests/customer-import.test.mjs | 39 ++ 566 files changed, 2752 insertions(+), 991 deletions(-) create mode 100644 validation-suite/backend/mercury/alembic/versions/202607120003_customer_external_reference.py create mode 100644 validation-suite/backend/mercury/app/services/customer_import.py create mode 100644 validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page.js create mode 100644 validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page.js.map create mode 100644 validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page.js.nft.json create mode 100644 validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/app-paths-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/build-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/next-font-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/react-loadable-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/server-reference-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page_client-reference-manifest.js create mode 100644 validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route.js create mode 100644 validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route.js.map create mode 100644 validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route.js.nft.json create mode 100644 validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route/app-paths-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route/build-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route/server-reference-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route_client-reference-manifest.js create mode 100644 validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route.js create mode 100644 validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route.js.map create mode 100644 validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route.js.nft.json create mode 100644 validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route/app-paths-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route/build-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route/server-reference-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route_client-reference-manifest.js create mode 100644 validation-suite/frontend/atlas/.next/server/app/customers/import.html create mode 100644 validation-suite/frontend/atlas/.next/server/app/customers/import.meta create mode 100644 validation-suite/frontend/atlas/.next/server/app/customers/import.rsc create mode 100644 validation-suite/frontend/atlas/.next/server/app/customers/import.segments/!KGFwcCk.segment.rsc create mode 100644 validation-suite/frontend/atlas/.next/server/app/customers/import.segments/!KGFwcCk/customers.segment.rsc create mode 100644 validation-suite/frontend/atlas/.next/server/app/customers/import.segments/!KGFwcCk/customers/import.segment.rsc create mode 100644 validation-suite/frontend/atlas/.next/server/app/customers/import.segments/!KGFwcCk/customers/import/__PAGE__.segment.rsc create mode 100644 validation-suite/frontend/atlas/.next/server/app/customers/import.segments/_full.segment.rsc create mode 100644 validation-suite/frontend/atlas/.next/server/app/customers/import.segments/_head.segment.rsc create mode 100644 validation-suite/frontend/atlas/.next/server/app/customers/import.segments/_index.segment.rsc create mode 100644 validation-suite/frontend/atlas/.next/server/app/customers/import.segments/_tree.segment.rsc create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/[root-of-the-server]__0r7ghc3._.js create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/[root-of-the-server]__0r7ghc3._.js.map create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/[root-of-the-server]__1cid3cf._.js create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/[root-of-the-server]__1cid3cf._.js.map create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/_next-internal_server_app_api_customer-imports_confirm_route_actions_1-98oae.js create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/_next-internal_server_app_api_customer-imports_confirm_route_actions_1-98oae.js.map create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/_next-internal_server_app_api_customer-imports_preview_route_actions_1twf800.js create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/_next-internal_server_app_api_customer-imports_preview_route_actions_1twf800.js.map create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/[root-of-the-server]__1ncuiz7._.js create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/[root-of-the-server]__1ncuiz7._.js.map delete mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_01izkzk._.js delete mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_01izkzk._.js.map create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_0454dxv._.js create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_0454dxv._.js.map delete mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_052zwtf._.js delete mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_052zwtf._.js.map rename validation-suite/frontend/atlas/.next/{standalone/.next/server/chunks/ssr/_0v6sf8t._.js => server/chunks/ssr/_0arfgns._.js} (63%) create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_0arfgns._.js.map rename validation-suite/frontend/atlas/.next/server/chunks/ssr/{_0js1deh._.js => _0nmawq4._.js} (93%) rename validation-suite/frontend/atlas/.next/server/chunks/ssr/{_0js1deh._.js.map => _0nmawq4._.js.map} (59%) delete mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_0v6sf8t._.js.map create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_0xryq0e._.js create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_0xryq0e._.js.map create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_1-ty-5z._.js create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_1-ty-5z._.js.map delete mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_101_axp._.js.map rename validation-suite/frontend/atlas/.next/{standalone/.next/server/chunks/ssr/_101_axp._.js => server/chunks/ssr/_1_mr0l7._.js} (51%) create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_1_mr0l7._.js.map delete mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_1ewnf_e._.js delete mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_1ewnf_e._.js.map create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_1i3n8ki._.js create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_1i3n8ki._.js.map create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_next-internal_server_app_(app)_customers_import_page_actions_20ppyww.js create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/_next-internal_server_app_(app)_customers_import_page_actions_20ppyww.js.map create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0npvcom.js create mode 100644 validation-suite/frontend/atlas/.next/server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0npvcom.js.map create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/(app)/customers/import/page.js create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/(app)/customers/import/page.js.map create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/(app)/customers/import/page.js.nft.json create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/(app)/customers/import/page/app-paths-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/(app)/customers/import/page/build-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/(app)/customers/import/page/next-font-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/(app)/customers/import/page/react-loadable-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/(app)/customers/import/page/server-reference-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/(app)/customers/import/page_client-reference-manifest.js create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/api/customer-imports/confirm/route.js create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/api/customer-imports/confirm/route.js.map create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/api/customer-imports/confirm/route.js.nft.json create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/api/customer-imports/confirm/route/app-paths-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/api/customer-imports/confirm/route/build-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/api/customer-imports/confirm/route/server-reference-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/api/customer-imports/confirm/route_client-reference-manifest.js create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/api/customer-imports/preview/route.js create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/api/customer-imports/preview/route.js.map create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/api/customer-imports/preview/route.js.nft.json create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/api/customer-imports/preview/route/app-paths-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/api/customer-imports/preview/route/build-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/api/customer-imports/preview/route/server-reference-manifest.json create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/api/customer-imports/preview/route_client-reference-manifest.js create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/customers/import.html create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/customers/import.meta create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/customers/import.rsc create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/customers/import.segments/!KGFwcCk.segment.rsc create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/customers/import.segments/!KGFwcCk/customers.segment.rsc create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/customers/import.segments/!KGFwcCk/customers/import.segment.rsc create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/customers/import.segments/!KGFwcCk/customers/import/__PAGE__.segment.rsc create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/customers/import.segments/_full.segment.rsc create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/customers/import.segments/_head.segment.rsc create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/customers/import.segments/_index.segment.rsc create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/app/customers/import.segments/_tree.segment.rsc create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/[root-of-the-server]__0r7ghc3._.js create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/[root-of-the-server]__1cid3cf._.js create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/_next-internal_server_app_api_customer-imports_confirm_route_actions_1-98oae.js create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/_next-internal_server_app_api_customer-imports_preview_route_actions_1twf800.js create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/[root-of-the-server]__1ncuiz7._.js delete mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_01izkzk._.js create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0454dxv._.js delete mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_052zwtf._.js rename validation-suite/frontend/atlas/.next/{server/chunks/ssr/_0v6sf8t._.js => standalone/.next/server/chunks/ssr/_0arfgns._.js} (63%) rename validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/{_0js1deh._.js => _0nmawq4._.js} (93%) create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0xryq0e._.js create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_1-ty-5z._.js rename validation-suite/frontend/atlas/.next/{server/chunks/ssr/_101_axp._.js => standalone/.next/server/chunks/ssr/_1_mr0l7._.js} (51%) delete mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_1ewnf_e._.js create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_1i3n8ki._.js create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_next-internal_server_app_(app)_customers_import_page_actions_20ppyww.js create mode 100644 validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0npvcom.js rename validation-suite/frontend/atlas/.next/static/{T1Sq4P6mWswk2NfmBZrTz => MO_FrTIQMTyIgUY4at_vj}/_buildManifest.js (100%) rename validation-suite/frontend/atlas/.next/static/{T1Sq4P6mWswk2NfmBZrTz => MO_FrTIQMTyIgUY4at_vj}/_clientMiddlewareManifest.js (100%) rename validation-suite/frontend/atlas/.next/static/{T1Sq4P6mWswk2NfmBZrTz => MO_FrTIQMTyIgUY4at_vj}/_ssgManifest.js (100%) rename validation-suite/frontend/atlas/.next/static/chunks/{3_bqwdscuc1c8.js => 05xkqica3e3uw.js} (70%) rename validation-suite/frontend/atlas/.next/static/chunks/{2-nz3xcpe_pw_.js => 0lz93ryxnzgoq.js} (88%) create mode 100644 validation-suite/frontend/atlas/.next/static/chunks/0o13c7nb3wcya.js delete mode 100644 validation-suite/frontend/atlas/.next/static/chunks/2975f5i-zcw63.js rename validation-suite/frontend/atlas/.next/static/chunks/{2toi33zq_ydim.js => 2c7prz40q05zp.js} (51%) delete mode 100644 validation-suite/frontend/atlas/.next/static/chunks/33g7vuk7-89na.css rename validation-suite/frontend/atlas/.next/static/chunks/{413udcsynwnhe.js => 3cjefmw3itjkw.js} (96%) create mode 100644 validation-suite/frontend/atlas/.next/static/chunks/3yh08fx1c3mlz.css rename validation-suite/frontend/atlas/.next/static/chunks/{0ti1a2yw9pft4.js => 41jx6c5jfr1py.js} (74%) create mode 100644 validation-suite/frontend/atlas/.next/static/chunks/43zs1l-r-4ddz.js create mode 100644 validation-suite/frontend/atlas/app/(app)/customers/import/page.tsx create mode 100644 validation-suite/frontend/atlas/app/api/customer-imports/confirm/route.ts create mode 100644 validation-suite/frontend/atlas/app/api/customer-imports/preview/route.ts create mode 100644 validation-suite/frontend/atlas/tests/customer-import.test.mjs diff --git a/validation-suite/backend/mercury/alembic/versions/202607120003_customer_external_reference.py b/validation-suite/backend/mercury/alembic/versions/202607120003_customer_external_reference.py new file mode 100644 index 00000000..0434f94e --- /dev/null +++ b/validation-suite/backend/mercury/alembic/versions/202607120003_customer_external_reference.py @@ -0,0 +1,38 @@ +"""customer external reference + +Revision ID: 202607120003 +Revises: 202607120002 +Create Date: 2026-07-12 14:00:00.000000 +""" + +from __future__ import annotations + +from alembic import op +import sqlalchemy as sa + + +revision = "202607120003" +down_revision = "202607120002" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + op.add_column("customers", sa.Column("source_system", sa.String(length=80), nullable=True)) + op.add_column("customers", sa.Column("external_id", sa.String(length=120), nullable=True)) + op.create_index(op.f("ix_customers_source_system"), "customers", ["source_system"], unique=False) + op.create_index(op.f("ix_customers_external_id"), "customers", ["external_id"], unique=False) + op.create_index( + "ix_customers_source_system_external_id", + "customers", + ["source_system", "external_id"], + unique=False, + ) + + +def downgrade() -> None: + op.drop_index("ix_customers_source_system_external_id", table_name="customers") + op.drop_index(op.f("ix_customers_external_id"), table_name="customers") + op.drop_index(op.f("ix_customers_source_system"), table_name="customers") + op.drop_column("customers", "external_id") + op.drop_column("customers", "source_system") diff --git a/validation-suite/backend/mercury/app/api/v1/domain.py b/validation-suite/backend/mercury/app/api/v1/domain.py index fb49324d..a3a96958 100644 --- a/validation-suite/backend/mercury/app/api/v1/domain.py +++ b/validation-suite/backend/mercury/app/api/v1/domain.py @@ -64,6 +64,7 @@ from app.schemas.domain import ( UserPasswordResetRequest, ) from app.services.domain_service import CrudService, DomainServices +from app.services.customer_import import CustomerImportService, parse_json_object from app.services.quickstart_service import QuickStartService from app.services.report_settings import OrionReportSettingsService from app.services.validation_workflow import ValidationWorkflowService @@ -214,6 +215,51 @@ def paging( return {"page": page, "page_size": page_size, "search": search} +@router.post("/customer-imports/preview") +async def preview_customer_import( + file: UploadFile, + mapping: str | None = Form(default=None), + session: Session = Depends(get_session), + _: User = Depends(current_admin), +): + try: + content = await file.read() + parsed_mapping = parse_json_object(mapping) if mapping else None + return CustomerImportService(session).preview(file.filename or "import", content, parsed_mapping) + except ValueError as exc: + raise HTTPException(status_code=422, detail=str(exc)) from exc + except UnicodeDecodeError as exc: + raise HTTPException(status_code=422, detail="Die CSV-Datei muss UTF-8 kodiert sein.") from exc + + +@router.post("/customer-imports/confirm") +async def confirm_customer_import( + file: UploadFile, + mapping: str = Form(...), + row_actions: str | None = Form(default=None), + ignore_empty_values: bool = Form(default=True), + session: Session = Depends(get_session), + user: User = Depends(current_admin), +): + try: + content = await file.read() + result = CustomerImportService(session).confirm( + file.filename or "import", + content, + parse_json_object(mapping), + parse_json_object(row_actions), + ignore_empty_values, + user, + ) + return result + except ValueError as exc: + session.rollback() + raise HTTPException(status_code=422, detail=str(exc)) from exc + except IntegrityError as exc: + session.rollback() + raise HTTPException(status_code=409, detail="Der Kundenimport konnte nicht vollständig gespeichert werden.") from exc + + def commit_create(session: Session, service: CrudService, payload): try: item = service.create(payload.model_dump()) diff --git a/validation-suite/backend/mercury/app/models/customer.py b/validation-suite/backend/mercury/app/models/customer.py index 59f5ab49..176a8eb8 100644 --- a/validation-suite/backend/mercury/app/models/customer.py +++ b/validation-suite/backend/mercury/app/models/customer.py @@ -17,6 +17,8 @@ class Customer(Base, UUIDMixin, TimestampMixin): __tablename__ = "customers" customer_type: Mapped[CustomerType] = mapped_column(Enum(CustomerType)) + source_system: Mapped[str | None] = mapped_column(String(80), index=True) + external_id: Mapped[str | None] = mapped_column(String(120), index=True) name: Mapped[str] = mapped_column(String(220), index=True) street: Mapped[str | None] = mapped_column(String(220)) postal_code: Mapped[str | None] = mapped_column(String(20)) @@ -29,4 +31,3 @@ class Customer(Base, UUIDMixin, TimestampMixin): contacts: Mapped[list["Contact"]] = relationship(back_populates="customer", cascade="all, delete-orphan") locations: Mapped[list["Location"]] = relationship(back_populates="customer", cascade="all, delete-orphan") - diff --git a/validation-suite/backend/mercury/app/repositories/domain.py b/validation-suite/backend/mercury/app/repositories/domain.py index 8a3574f8..e247e85e 100644 --- a/validation-suite/backend/mercury/app/repositories/domain.py +++ b/validation-suite/backend/mercury/app/repositories/domain.py @@ -31,6 +31,7 @@ class CustomerRepository(Repository[Customer]): statement = statement.where( or_( Customer.name.ilike(term), + Customer.external_id.ilike(term), Customer.city.ilike(term), Customer.postal_code.ilike(term), Customer.email.ilike(term), diff --git a/validation-suite/backend/mercury/app/schemas/domain.py b/validation-suite/backend/mercury/app/schemas/domain.py index 51f4d8ba..ddb2da02 100644 --- a/validation-suite/backend/mercury/app/schemas/domain.py +++ b/validation-suite/backend/mercury/app/schemas/domain.py @@ -26,6 +26,8 @@ from app.schemas.common import EntityRead, ORMModel class CustomerCreate(ORMModel): customer_type: CustomerType + source_system: str | None = None + external_id: str | None = None name: str street: str | None = None postal_code: str | None = None diff --git a/validation-suite/backend/mercury/app/services/customer_import.py b/validation-suite/backend/mercury/app/services/customer_import.py new file mode 100644 index 00000000..1c9a8099 --- /dev/null +++ b/validation-suite/backend/mercury/app/services/customer_import.py @@ -0,0 +1,505 @@ +from __future__ import annotations + +import csv +import io +import json +import re +import zipfile +from dataclasses import dataclass +from html import unescape +from typing import Any +from xml.etree import ElementTree + +from pydantic import EmailStr, TypeAdapter, ValidationError +from sqlalchemy import and_, func, select +from sqlalchemy.orm import Session + +from app.models.contact import Contact +from app.models.customer import Customer, CustomerType +from app.models.location import Location +from app.models.user import User + +MAX_IMPORT_BYTES = 5 * 1024 * 1024 +SOURCE_SYSTEM = "desk4" +EMAIL_ADAPTER = TypeAdapter(EmailStr) + +TARGET_FIELDS: dict[str, str] = { + "ignore": "Nicht importieren", + "customer_number": "Kundennummer", + "customer_name": "Firmenname", + "customer_addition": "Zusatz", + "customer_street": "Straße", + "customer_house_number": "Hausnummer", + "customer_postal_code": "Postleitzahl", + "customer_city": "Ort", + "customer_country": "Land", + "customer_phone": "Telefon", + "customer_mobile": "Mobiltelefon", + "customer_email": "E-Mail", + "customer_website": "Website", + "customer_vat_id": "Umsatzsteuer-ID", + "customer_notes": "Interne Notiz", + "contact_salutation": "Anrede", + "contact_first_name": "Vorname", + "contact_last_name": "Nachname", + "contact_full_name": "Ansprechpartner", + "contact_function": "Funktion", + "contact_phone": "Telefon Ansprechpartner", + "contact_mobile": "Mobil Ansprechpartner", + "contact_email": "E-Mail Ansprechpartner", + "location_name": "Standortbezeichnung", + "location_street": "Straße Standort", + "location_house_number": "Hausnummer Standort", + "location_postal_code": "PLZ Standort", + "location_city": "Ort Standort", + "location_country": "Land Standort", +} + +ALIASES: dict[str, list[str]] = { + "customer_number": ["kundennr", "kunden nr", "kunden-nr", "kunden nummer", "kundennummer", "debitor", "debitorennummer", "nummer"], + "customer_name": ["firma", "firmenname", "name", "kunde", "kundenname", "unternehmen"], + "customer_addition": ["zusatz", "name 2", "firmenzusatz"], + "customer_street": ["strasse", "straße", "anschrift", "adresse", "kunde strasse"], + "customer_house_number": ["hausnummer", "hausnr", "nr"], + "customer_postal_code": ["plz", "postleitzahl", "zip"], + "customer_city": ["ort", "stadt"], + "customer_country": ["land"], + "customer_phone": ["telefon", "tel", "festnetz"], + "customer_mobile": ["mobiltelefon", "mobil", "handy"], + "customer_email": ["e-mail", "email", "mail"], + "customer_website": ["web", "website", "homepage"], + "customer_vat_id": ["ust id", "ustid", "umsatzsteuer", "vat"], + "customer_notes": ["notiz", "bemerkung", "interne notiz"], + "contact_salutation": ["anrede"], + "contact_first_name": ["vorname"], + "contact_last_name": ["nachname", "name ansprechpartner"], + "contact_full_name": ["ansprechpartner", "kontakt", "kontaktperson"], + "contact_function": ["funktion", "position"], + "contact_phone": ["telefon ansprechpartner", "kontakt telefon"], + "contact_mobile": ["mobil ansprechpartner", "kontakt mobil"], + "contact_email": ["email ansprechpartner", "e-mail ansprechpartner", "kontakt email"], + "location_name": ["standort", "standortbezeichnung", "filiale"], + "location_street": ["standort strasse", "standort straße", "liefer strasse", "lieferadresse"], + "location_house_number": ["standort hausnummer"], + "location_postal_code": ["standort plz", "liefer plz"], + "location_city": ["standort ort", "liefer ort"], + "location_country": ["standort land"], +} + + +@dataclass(frozen=True) +class ParsedImportFile: + headers: list[str] + rows: list[dict[str, str]] + warnings: list[str] + + +def normalize_header(value: str) -> str: + value = value.strip().lower().replace("ß", "ss") + value = re.sub(r"[_./:;]+", " ", value) + value = re.sub(r"\s+", " ", value) + return value + + +def clean(value: Any) -> str: + if value is None: + return "" + return str(value).strip() + + +def join_parts(*values: str) -> str: + return " ".join(item for item in (clean(value) for value in values) if item) + + +class CustomerImportService: + def __init__(self, session: Session) -> None: + self.session = session + + def parse_file(self, filename: str, content: bytes) -> ParsedImportFile: + if not content: + raise ValueError("Die Importdatei ist leer.") + if len(content) > MAX_IMPORT_BYTES: + raise ValueError("Die Importdatei ist zu groß.") + suffix = filename.lower().rsplit(".", 1)[-1] if "." in filename else "" + if suffix == "csv": + return self._parse_csv(content) + if suffix == "xlsx": + return self._parse_xlsx(content) + raise ValueError("Nur CSV- und XLSX-Dateien werden unterstützt.") + + def suggest_mapping(self, headers: list[str]) -> dict[str, str]: + mapping: dict[str, str] = {} + used: set[str] = set() + for header in headers: + normalized = normalize_header(header) + target = "ignore" + for field, aliases in ALIASES.items(): + if field in used: + continue + if normalized in aliases or any(alias in normalized for alias in aliases): + target = field + used.add(field) + break + mapping[header] = target + return mapping + + def preview(self, filename: str, content: bytes, mapping: dict[str, str] | None = None) -> dict: + parsed = self.parse_file(filename, content) + final_mapping = mapping or self.suggest_mapping(parsed.headers) + rows = [self._preview_row(index, row, final_mapping) for index, row in enumerate(parsed.rows, start=2)] + summary = self._summary(rows) + return { + "columns": parsed.headers, + "target_fields": TARGET_FIELDS, + "mapping": final_mapping, + "rows": rows, + "summary": summary, + "warnings": parsed.warnings, + } + + def confirm( + self, + filename: str, + content: bytes, + mapping: dict[str, str], + row_actions: dict[str, str], + ignore_empty_values: bool, + user: User, + ) -> dict: + preview = self.preview(filename, content, mapping) + results = [] + counters = { + "total": len(preview["rows"]), + "created_customers": 0, + "updated_customers": 0, + "skipped_rows": 0, + "error_rows": 0, + "created_locations": 0, + "created_contacts": 0, + } + for row in preview["rows"]: + action = row_actions.get(str(row["row_number"]), row["action"]) + if row["action"] == "ERROR": + action = "ERROR" + if action not in {"NEU_ANLEGEN", "BESTEHENDEN_AKTUALISIEREN", "UEBERSPRINGEN", "ERROR"}: + action = row["action"] + try: + result = self._apply_row(row, action, ignore_empty_values) + for key in counters: + counters[key] += result.get(key, 0) + results.append( + { + "row_number": row["row_number"], + "customer_name": row["recognized"]["customer"].get("name"), + "action": action, + "result": result["result"], + "message": result["message"], + } + ) + except Exception as exc: + self.session.rollback() + counters["error_rows"] += 1 + results.append( + { + "row_number": row["row_number"], + "customer_name": row["recognized"]["customer"].get("name"), + "action": action, + "result": "FEHLER", + "message": str(exc), + } + ) + self.session.commit() + return {"summary": counters, "rows": results, "executed_by_user_id": user.id} + + def _parse_csv(self, content: bytes) -> ParsedImportFile: + text = content.decode("utf-8-sig") + sample = text[:4096] + delimiter = ";" + try: + delimiter = csv.Sniffer().sniff(sample, delimiters=";,").delimiter + except csv.Error: + delimiter = ";" if sample.count(";") >= sample.count(",") else "," + reader = csv.DictReader(io.StringIO(text), delimiter=delimiter) + headers = [clean(item) for item in (reader.fieldnames or []) if clean(item)] + if not headers: + raise ValueError("Die Importdatei enthält keine Spaltenüberschriften.") + rows = [{header: clean(row.get(header)) for header in headers} for row in reader] + rows = [row for row in rows if any(row.values())] + if not rows: + raise ValueError("Die Importdatei enthält keine Datenzeilen.") + return ParsedImportFile(headers=headers, rows=rows, warnings=[]) + + def _parse_xlsx(self, content: bytes) -> ParsedImportFile: + if not content.startswith(b"PK"): + raise ValueError("Die XLSX-Datei ist ungültig.") + try: + archive = zipfile.ZipFile(io.BytesIO(content)) + except zipfile.BadZipFile as exc: + raise ValueError("Die XLSX-Datei ist ungültig.") from exc + names = set(archive.namelist()) + if any(name.endswith("vbaProject.bin") for name in names): + raise ValueError("Makro-Dateien werden nicht unterstützt.") + workbook = ElementTree.fromstring(archive.read("xl/workbook.xml")) + ns = {"m": "http://schemas.openxmlformats.org/spreadsheetml/2006/main", "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships"} + sheets = workbook.findall(".//m:sheet", ns) + warnings = [] + if len(sheets) > 1: + warnings.append("Die XLSX-Datei enthält mehrere Tabellenblätter. Es wurde das erste Tabellenblatt verwendet.") + sheet_path = "xl/worksheets/sheet1.xml" + shared = self._xlsx_shared_strings(archive) + sheet = ElementTree.fromstring(archive.read(sheet_path)) + matrix: list[list[str]] = [] + for row in sheet.findall(".//m:sheetData/m:row", ns): + values: dict[int, str] = {} + for cell in row.findall("m:c", ns): + ref = cell.attrib.get("r", "A1") + col = self._column_index(ref) + value = self._xlsx_cell_value(cell, shared, ns) + values[col] = value + if values: + matrix.append([values.get(index, "") for index in range(max(values) + 1)]) + if not matrix: + raise ValueError("Die XLSX-Datei enthält keine Daten.") + headers = [clean(value) for value in matrix[0]] + headers = [value for value in headers if value] + if not headers: + raise ValueError("Die XLSX-Datei enthält keine Spaltenüberschriften.") + rows = [] + for raw in matrix[1:]: + row = {header: clean(raw[index] if index < len(raw) else "") for index, header in enumerate(headers)} + if any(row.values()): + rows.append(row) + if not rows: + raise ValueError("Die XLSX-Datei enthält keine Datenzeilen.") + return ParsedImportFile(headers=headers, rows=rows, warnings=warnings) + + def _xlsx_shared_strings(self, archive: zipfile.ZipFile) -> list[str]: + if "xl/sharedStrings.xml" not in archive.namelist(): + return [] + ns = {"m": "http://schemas.openxmlformats.org/spreadsheetml/2006/main"} + root = ElementTree.fromstring(archive.read("xl/sharedStrings.xml")) + values = [] + for item in root.findall(".//m:si", ns): + values.append(unescape("".join(node.text or "" for node in item.findall(".//m:t", ns)))) + return values + + def _xlsx_cell_value(self, cell: ElementTree.Element, shared: list[str], ns: dict[str, str]) -> str: + cell_type = cell.attrib.get("t") + value_node = cell.find("m:v", ns) + if value_node is None: + inline = cell.find(".//m:t", ns) + return clean(inline.text if inline is not None else "") + value = clean(value_node.text) + if cell_type == "s" and value.isdigit() and int(value) < len(shared): + return shared[int(value)] + return value + + def _column_index(self, ref: str) -> int: + letters = re.sub(r"[^A-Z]", "", ref.upper()) + index = 0 + for char in letters: + index = index * 26 + (ord(char) - 64) + return max(index - 1, 0) + + def _mapped_values(self, row: dict[str, str], mapping: dict[str, str]) -> dict[str, str]: + values = {field: "" for field in TARGET_FIELDS if field != "ignore"} + for column, target in mapping.items(): + if target in values and not values[target]: + values[target] = clean(row.get(column)) + return values + + def _preview_row(self, row_number: int, row: dict[str, str], mapping: dict[str, str]) -> dict: + values = self._mapped_values(row, mapping) + recognized = self._recognized(values) + errors = self._validate_values(values) + matches = self._find_matches(recognized["customer"]) + action = "NEU_ANLEGEN" + message = "Neuer Kunde" + if errors: + action = "ERROR" + message = "Pflichtfeld oder Eingabe ungültig" + elif matches["external_id"]: + action = "BESTEHENDEN_AKTUALISIEREN" + message = "Bestehender Kunde über Kundennummer gefunden" + elif matches["name_postal_code"] or matches["name_city"] or matches["email"]: + action = "UEBERSPRINGEN" + message = "Mögliche Dublette gefunden" + return { + "row_number": row_number, + "source": row, + "recognized": recognized, + "errors": errors, + "action": action, + "message": message, + "matches": {key: self._customer_ref(value) for key, value in matches.items() if value}, + "allowed_actions": self._allowed_actions(action, bool(matches["external_id"])), + } + + def _recognized(self, values: dict[str, str]) -> dict: + customer_notes = "\n".join( + item + for item in [ + values["customer_notes"], + f"Zusatz: {values['customer_addition']}" if values["customer_addition"] else "", + f"Land: {values['customer_country']}" if values["customer_country"] else "", + f"Mobil: {values['customer_mobile']}" if values["customer_mobile"] else "", + f"Website: {values['customer_website']}" if values["customer_website"] else "", + f"USt-ID: {values['customer_vat_id']}" if values["customer_vat_id"] else "", + ] + if item + ) + first_last = join_parts(values["contact_first_name"], values["contact_last_name"]) + full_name = values["contact_full_name"] or first_last + return { + "customer": { + "source_system": SOURCE_SYSTEM if values["customer_number"] else None, + "external_id": values["customer_number"] or None, + "name": values["customer_name"], + "street": join_parts(values["customer_street"], values["customer_house_number"]), + "postal_code": values["customer_postal_code"], + "city": values["customer_city"], + "phone": values["customer_phone"] or values["customer_mobile"], + "email": values["customer_email"], + "notes": customer_notes, + }, + "location": { + "name": values["location_name"] or "Hauptstandort", + "street": join_parts(values["location_street"], values["location_house_number"]) or join_parts(values["customer_street"], values["customer_house_number"]), + "postal_code": values["location_postal_code"] or values["customer_postal_code"], + "city": values["location_city"] or values["customer_city"], + }, + "contact": { + "full_name": full_name, + "function": values["contact_function"], + "email": values["contact_email"], + "phone": values["contact_phone"] or values["contact_mobile"], + "notes": values["contact_salutation"], + }, + } + + def _validate_values(self, values: dict[str, str]) -> list[str]: + errors = [] + if not values["customer_number"] and not values["customer_name"]: + errors.append("Kundennummer oder Firmenname fehlt.") + for label, value in [("Kunden-E-Mail", values["customer_email"]), ("Ansprechpartner-E-Mail", values["contact_email"])]: + if value: + try: + EMAIL_ADAPTER.validate_python(value) + except ValidationError: + errors.append(f"{label} ist ungültig.") + return errors + + def _find_matches(self, customer: dict) -> dict[str, Customer | None]: + external = None + if customer.get("external_id"): + external = self.session.scalar( + select(Customer).where( + Customer.source_system == SOURCE_SYSTEM, + Customer.external_id == customer["external_id"], + ) + ) + name = customer.get("name") + postal_code = customer.get("postal_code") + city = customer.get("city") + email = customer.get("email") + return { + "external_id": external, + "name_postal_code": self.session.scalar(select(Customer).where(func.lower(Customer.name) == name.lower(), Customer.postal_code == postal_code)) if name and postal_code else None, + "name_city": self.session.scalar(select(Customer).where(func.lower(Customer.name) == name.lower(), func.lower(Customer.city) == city.lower())) if name and city else None, + "email": self.session.scalar(select(Customer).where(func.lower(Customer.email) == email.lower())) if email else None, + } + + def _allowed_actions(self, action: str, has_external_match: bool) -> list[str]: + if action == "ERROR": + return ["ERROR"] + if has_external_match: + return ["BESTEHENDEN_AKTUALISIEREN", "UEBERSPRINGEN"] + return ["NEU_ANLEGEN", "UEBERSPRINGEN"] + + def _customer_ref(self, customer: Customer) -> dict: + return {"id": customer.id, "name": customer.name, "external_id": customer.external_id, "postal_code": customer.postal_code, "city": customer.city} + + def _apply_row(self, row: dict, action: str, ignore_empty_values: bool) -> dict: + if action in {"UEBERSPRINGEN", "ERROR"}: + return {"skipped_rows": 1 if action == "UEBERSPRINGEN" else 0, "error_rows": 1 if action == "ERROR" else 0, "result": "ÜBERSPRUNGEN" if action == "UEBERSPRINGEN" else "FEHLER", "message": row["message"]} + customer_data = row["recognized"]["customer"] + matches = self._find_matches(customer_data) + customer = matches["external_id"] + created_customer = False + if action == "BESTEHENDEN_AKTUALISIEREN": + if customer is None: + raise ValueError("Aktualisierung ist nur mit eindeutiger Kundennummer möglich.") + self._update_customer(customer, customer_data, ignore_empty_values) + else: + if customer is not None: + raise ValueError("Kunde mit dieser Kundennummer existiert bereits.") + customer = Customer(customer_type=CustomerType.practice, name=customer_data["name"] or customer_data["external_id"]) + self._update_customer(customer, customer_data, False) + self.session.add(customer) + self.session.flush() + created_customer = True + created_location = self._ensure_location(customer, row["recognized"]["location"]) + created_contact = self._ensure_contact(customer, row["recognized"]["contact"]) + self.session.flush() + return { + "created_customers": 1 if created_customer else 0, + "updated_customers": 0 if created_customer else 1, + "created_locations": 1 if created_location else 0, + "created_contacts": 1 if created_contact else 0, + "result": "ERFOLGREICH", + "message": "Kunde angelegt" if created_customer else "Kunde aktualisiert", + } + + def _update_customer(self, customer: Customer, data: dict, ignore_empty_values: bool) -> None: + for key in ["source_system", "external_id", "name", "street", "postal_code", "city", "phone", "email", "notes"]: + value = data.get(key) + if ignore_empty_values and value in (None, ""): + continue + setattr(customer, key, value or None) + + def _ensure_location(self, customer: Customer, data: dict) -> bool: + if not any(data.get(key) for key in ["name", "street", "postal_code", "city"]): + return False + existing = self.session.scalar( + select(Location).where( + Location.customer_id == customer.id, + func.lower(Location.name) == data["name"].lower(), + ) + ) + if existing: + return False + self.session.add(Location(customer_id=customer.id, **{key: value or None for key, value in data.items()})) + return True + + def _ensure_contact(self, customer: Customer, data: dict) -> bool: + if not data.get("full_name"): + return False + existing = self.session.scalar( + select(Contact).where( + Contact.customer_id == customer.id, + func.lower(Contact.full_name) == data["full_name"].lower(), + ) + ) + if existing: + return False + self.session.add(Contact(customer_id=customer.id, **{key: value or None for key, value in data.items()})) + return True + + def _summary(self, rows: list[dict]) -> dict: + return { + "total": len(rows), + "new": sum(1 for row in rows if row["action"] == "NEU_ANLEGEN"), + "update": sum(1 for row in rows if row["action"] == "BESTEHENDEN_AKTUALISIEREN"), + "duplicates": sum(1 for row in rows if row["action"] == "UEBERSPRINGEN" and row["matches"]), + "errors": sum(1 for row in rows if row["action"] == "ERROR"), + "skip": sum(1 for row in rows if row["action"] == "UEBERSPRINGEN"), + } + + +def parse_json_object(value: str | None, fallback: dict | None = None) -> dict: + if not value: + return fallback or {} + parsed = json.loads(value) + if not isinstance(parsed, dict): + raise ValueError("JSON-Daten müssen ein Objekt sein.") + return parsed diff --git a/validation-suite/backend/mercury/tests/test_validation_workflow.py b/validation-suite/backend/mercury/tests/test_validation_workflow.py index d68491eb..46e67935 100644 --- a/validation-suite/backend/mercury/tests/test_validation_workflow.py +++ b/validation-suite/backend/mercury/tests/test_validation_workflow.py @@ -6,7 +6,7 @@ from datetime import date from pathlib import Path import pytest -from sqlalchemy import create_engine, select +from sqlalchemy import create_engine, func, select from sqlalchemy.orm import Session from app.db.base import Base @@ -32,6 +32,7 @@ from app.modules.orion.result import validation_result_box, validation_result_pr from app.modules.orion.template_service import REPORT_SECTIONS, ReportTemplateService from app.modules.helios.service import HeliosImportService from app.services.report_settings import OrionReportSettingsService +from app.services.customer_import import CustomerImportService def session() -> Session: @@ -1564,3 +1565,113 @@ def test_orion_report_settings_affect_html_without_removing_summary_result(tmp_p assert '
= 1 + + +def xlsx_bytes(headers: list[str], rows: list[list[str]]) -> bytes: + from zipfile import ZIP_DEFLATED, ZipFile + import io + + def cell_ref(index: int, row_number: int) -> str: + return f"{chr(65 + index)}{row_number}" + + sheet_rows = [] + for row_number, row in enumerate([headers, *rows], start=1): + cells = "".join( + f'{value}' + for index, value in enumerate(row) + ) + sheet_rows.append(f'{cells}') + buffer = io.BytesIO() + with ZipFile(buffer, "w", ZIP_DEFLATED) as archive: + archive.writestr("[Content_Types].xml", '') + archive.writestr("xl/workbook.xml", '') + archive.writestr("xl/worksheets/sheet1.xml", f'{"".join(sheet_rows)}') + return buffer.getvalue() + + +def test_customer_import_csv_semicolon_preview_and_confirm(): + db = session() + admin = seed_admin(db) + content = "Kundennr;Firma;PLZ;Ort;E-Mail;Ansprechpartner\nD4-1;Praxis Müller;10115;Berlin;info@praxis.de;Max Mustermann\n".encode("utf-8-sig") + + service = CustomerImportService(db) + preview = service.preview("desk4.csv", content) + + assert preview["columns"] == ["Kundennr", "Firma", "PLZ", "Ort", "E-Mail", "Ansprechpartner"] + assert preview["mapping"]["Kundennr"] == "customer_number" + assert preview["rows"][0]["action"] == "NEU_ANLEGEN" + assert db.scalar(select(func.count()).select_from(Customer)) == 0 + + result = service.confirm("desk4.csv", content, preview["mapping"], {}, True, admin) + + assert result["summary"]["created_customers"] == 1 + assert result["summary"]["created_locations"] == 1 + assert result["summary"]["created_contacts"] == 1 + customer = db.scalar(select(Customer).where(Customer.external_id == "D4-1")) + assert customer is not None + assert customer.source_system == "desk4" + assert customer.name == "Praxis Müller" + + +def test_customer_import_csv_comma_existing_customer_and_ignore_empty_values(): + db = session() + admin = seed_admin(db) + existing = Customer( + customer_type=CustomerType.practice, + source_system="desk4", + external_id="D4-2", + name="Alt", + email="alt@example.de", + ) + db.add(existing) + db.commit() + content = "Kundennr,Firma,E-Mail\nD4-2,Neu,\n".encode() + service = CustomerImportService(db) + preview = service.preview("desk4.csv", content) + + assert preview["rows"][0]["action"] == "BESTEHENDEN_AKTUALISIEREN" + service.confirm("desk4.csv", content, preview["mapping"], {}, True, admin) + db.refresh(existing) + + assert existing.name == "Neu" + assert existing.email == "alt@example.de" + + +def test_customer_import_detects_possible_duplicate_and_invalid_email(): + db = session() + db.add(Customer(customer_type=CustomerType.practice, name="Praxis A", postal_code="12345")) + db.commit() + service = CustomerImportService(db) + + duplicate = service.preview("desk4.csv", "Firma;PLZ\nPraxis A;12345\n".encode()) + invalid = service.preview("desk4.csv", "Firma;E-Mail\nPraxis B;nicht-mail\n".encode()) + + assert duplicate["rows"][0]["action"] == "UEBERSPRINGEN" + assert duplicate["summary"]["duplicates"] == 1 + assert invalid["rows"][0]["action"] == "ERROR" + assert "ungültig" in invalid["rows"][0]["errors"][0] + + +def test_customer_import_xlsx_and_invalid_files(): + db = session() + service = CustomerImportService(db) + preview = service.preview( + "desk4.xlsx", + xlsx_bytes(["Kundennr", "Firma", "Ort"], [["X-1", "Praxis XLSX", "Hamburg"]]), + ) + + assert preview["rows"][0]["recognized"]["customer"]["name"] == "Praxis XLSX" + with pytest.raises(ValueError): + service.preview("desk4.txt", b"Firma\nTest") + with pytest.raises(ValueError): + service.preview("desk4.csv", b"") + + +def test_customer_import_missing_required_mapping_is_error(): + db = session() + service = CustomerImportService(db) + content = "Telefon\n123\n".encode() + preview = service.preview("desk4.csv", content, {"Telefon": "customer_phone"}) + + assert preview["rows"][0]["action"] == "ERROR" + assert "Kundennummer oder Firmenname fehlt." in preview["rows"][0]["errors"] diff --git a/validation-suite/frontend/atlas/.next/BUILD_ID b/validation-suite/frontend/atlas/.next/BUILD_ID index b26b5a10..a8c650f2 100644 --- a/validation-suite/frontend/atlas/.next/BUILD_ID +++ b/validation-suite/frontend/atlas/.next/BUILD_ID @@ -1 +1 @@ -T1Sq4P6mWswk2NfmBZrTz \ No newline at end of file +MO_FrTIQMTyIgUY4at_vj \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/app-path-routes-manifest.json b/validation-suite/frontend/atlas/.next/app-path-routes-manifest.json index 8115a5e2..d658850b 100644 --- a/validation-suite/frontend/atlas/.next/app-path-routes-manifest.json +++ b/validation-suite/frontend/atlas/.next/app-path-routes-manifest.json @@ -1,5 +1,6 @@ { "/(app)/contacts/page": "/contacts", + "/(app)/customers/import/page": "/customers/import", "/(app)/customers/page": "/customers", "/(app)/dashboard/page": "/dashboard", "/(app)/devices/page": "/devices", @@ -17,6 +18,8 @@ "/(auth)/login/page": "/login", "/_global-error/page": "/_global-error", "/_not-found/page": "/_not-found", + "/api/customer-imports/confirm/route": "/api/customer-imports/confirm", + "/api/customer-imports/preview/route": "/api/customer-imports/preview", "/api/login/route": "/api/login", "/api/logout/route": "/api/logout", "/api/me/route": "/api/me", diff --git a/validation-suite/frontend/atlas/.next/build-manifest.json b/validation-suite/frontend/atlas/.next/build-manifest.json index 6ece5a16..3f9fd070 100644 --- a/validation-suite/frontend/atlas/.next/build-manifest.json +++ b/validation-suite/frontend/atlas/.next/build-manifest.json @@ -7,9 +7,9 @@ "static/chunks/0cz1d0mv5g_q7.js" ], "lowPriorityFiles": [ - "static/T1Sq4P6mWswk2NfmBZrTz/_buildManifest.js", - "static/T1Sq4P6mWswk2NfmBZrTz/_ssgManifest.js", - "static/T1Sq4P6mWswk2NfmBZrTz/_clientMiddlewareManifest.js" + "static/MO_FrTIQMTyIgUY4at_vj/_buildManifest.js", + "static/MO_FrTIQMTyIgUY4at_vj/_ssgManifest.js", + "static/MO_FrTIQMTyIgUY4at_vj/_clientMiddlewareManifest.js" ], "rootMainFiles": [ "static/chunks/2zjueh7t2vecu.js", diff --git a/validation-suite/frontend/atlas/.next/cache/.tsbuildinfo b/validation-suite/frontend/atlas/.next/cache/.tsbuildinfo index 585bb3c1..27837f64 100644 --- a/validation-suite/frontend/atlas/.next/cache/.tsbuildinfo +++ b/validation-suite/frontend/atlas/.next/cache/.tsbuildinfo @@ -1 +1 @@ -{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/next/dist/styled-jsx/types/css.d.ts","../../node_modules/next/dist/styled-jsx/types/macro.d.ts","../../node_modules/next/dist/styled-jsx/types/style.d.ts","../../node_modules/next/dist/styled-jsx/types/global.d.ts","../../node_modules/next/dist/styled-jsx/types/index.d.ts","../../node_modules/next/dist/server/get-page-files.d.ts","../../node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/@types/node/compatibility/index.d.ts","../../node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/@types/node/web-globals/events.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/undici-types/retry-handler.d.ts","../../node_modules/undici-types/retry-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/util.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/eventsource.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/@types/node/web-globals/navigator.d.ts","../../node_modules/@types/node/web-globals/storage.d.ts","../../node_modules/@types/node/web-globals/streams.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/inspector.generated.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/sea.d.ts","../../node_modules/@types/node/sqlite.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/react/canary.d.ts","../../node_modules/@types/react/experimental.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/canary.d.ts","../../node_modules/@types/react-dom/experimental.d.ts","../../node_modules/next/dist/lib/fallback.d.ts","../../node_modules/next/dist/compiled/webpack/webpack.d.ts","../../node_modules/next/dist/shared/lib/modern-browserslist-target.d.ts","../../node_modules/next/dist/shared/lib/entry-constants.d.ts","../../node_modules/next/dist/shared/lib/constants.d.ts","../../node_modules/next/dist/lib/bundler.d.ts","../../node_modules/next/dist/server/config.d.ts","../../node_modules/next/dist/lib/load-custom-routes.d.ts","../../node_modules/next/dist/shared/lib/image-config.d.ts","../../node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.d.ts","../../node_modules/next/dist/server/body-streams.d.ts","../../node_modules/next/dist/server/request/search-params.d.ts","../../node_modules/next/dist/shared/lib/segment-cache/vary-params-decoding.d.ts","../../node_modules/next/dist/server/app-render/vary-params.d.ts","../../node_modules/next/dist/server/request/params.d.ts","../../node_modules/next/dist/server/route-kind.d.ts","../../node_modules/next/dist/server/route-definitions/route-definition.d.ts","../../node_modules/next/dist/server/route-matches/route-match.d.ts","../../node_modules/next/dist/client/components/app-router-headers.d.ts","../../node_modules/next/dist/server/lib/cache-control.d.ts","../../node_modules/next/dist/shared/lib/app-router-types.d.ts","../../node_modules/next/dist/server/lib/cache-handlers/types.d.ts","../../node_modules/next/dist/server/use-cache/use-cache-wrapper.d.ts","../../node_modules/next/dist/server/resume-data-cache/cache-store.d.ts","../../node_modules/next/dist/server/resume-data-cache/resume-data-cache.d.ts","../../node_modules/next/dist/lib/constants.d.ts","../../node_modules/next/dist/server/render-result.d.ts","../../node_modules/next/dist/server/response-cache/types.d.ts","../../node_modules/next/dist/server/response-cache/index.d.ts","../../node_modules/@types/react/jsx-runtime.d.ts","../../node_modules/next/dist/next-devtools/userspace/pages/pages-dev-overlay-setup.d.ts","../../node_modules/next/dist/build/static-paths/types.d.ts","../../node_modules/next/dist/server/route-definitions/app-page-route-definition.d.ts","../../node_modules/next/dist/build/adapter/setup-node-env.external.d.ts","../../node_modules/next/dist/server/instrumentation/types.d.ts","../../node_modules/next/dist/lib/setup-exception-listeners.d.ts","../../node_modules/next/dist/lib/worker.d.ts","../../node_modules/next/dist/server/lib/experimental/ppr.d.ts","../../node_modules/next/dist/lib/page-types.d.ts","../../node_modules/next/dist/build/segment-config/app/app-segment-config.d.ts","../../node_modules/next/dist/build/segment-config/pages/pages-segment-config.d.ts","../../node_modules/next/dist/build/analysis/get-page-static-info.d.ts","../../node_modules/next/dist/build/webpack/loaders/get-module-build-info.d.ts","../../node_modules/next/dist/build/webpack/plugins/middleware-plugin.d.ts","../../node_modules/next/dist/server/require-hook.d.ts","../../node_modules/next/dist/server/node-polyfill-crypto.d.ts","../../node_modules/next/dist/server/node-environment-baseline.d.ts","../../node_modules/next/dist/server/node-environment-extensions/error-inspect.d.ts","../../node_modules/next/dist/server/node-environment-extensions/console-file.d.ts","../../node_modules/next/dist/server/node-environment-extensions/console-exit.d.ts","../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.d.ts","../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.d.ts","../../node_modules/next/dist/server/node-environment-extensions/random.d.ts","../../node_modules/next/dist/server/node-environment-extensions/date.d.ts","../../node_modules/next/dist/server/node-environment-extensions/web-crypto.d.ts","../../node_modules/next/dist/server/node-environment-extensions/node-crypto.d.ts","../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.d.ts","../../node_modules/next/dist/server/node-environment.d.ts","../../node_modules/next/dist/build/page-extensions-type.d.ts","../../node_modules/next/dist/server/route-modules/app-page/module.compiled.d.ts","../../node_modules/next/dist/server/route-definitions/app-route-route-definition.d.ts","../../node_modules/next/dist/server/lib/i18n-provider.d.ts","../../node_modules/next/dist/server/web/next-url.d.ts","../../node_modules/next/dist/compiled/@edge-runtime/cookies/index.d.ts","../../node_modules/next/dist/server/web/spec-extension/cookies.d.ts","../../node_modules/next/dist/server/web/spec-extension/request.d.ts","../../node_modules/next/dist/shared/lib/deep-readonly.d.ts","../../node_modules/next/dist/server/lib/incremental-cache/index.d.ts","../../node_modules/next/dist/shared/lib/router/utils/middleware-route-matcher.d.ts","../../node_modules/next/dist/build/webpack/plugins/flight-manifest-plugin.d.ts","../../node_modules/next/dist/build/webpack/plugins/next-font-manifest-plugin.d.ts","../../node_modules/next/dist/server/route-definitions/locale-route-definition.d.ts","../../node_modules/next/dist/server/route-definitions/pages-route-definition.d.ts","../../node_modules/next/dist/shared/lib/mitt.d.ts","../../node_modules/next/dist/client/with-router.d.ts","../../node_modules/next/dist/client/router.d.ts","../../node_modules/next/dist/client/route-loader.d.ts","../../node_modules/next/dist/client/page-loader.d.ts","../../node_modules/next/dist/shared/lib/bloom-filter.d.ts","../../node_modules/next/dist/shared/lib/router/router.d.ts","../../node_modules/next/dist/shared/lib/router-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/loadable-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/loadable.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/image-config-context.shared-runtime.d.ts","../../node_modules/next/dist/client/components/readonly-url-search-params.d.ts","../../node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.d.ts","../../node_modules/next/dist/client/flight-data-helpers.d.ts","../../node_modules/next/dist/client/components/segment-cache/cache-key.d.ts","../../node_modules/next/dist/client/components/router-reducer/fetch-server-response.d.ts","../../node_modules/next/dist/client/components/segment-cache/types.d.ts","../../node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.d.ts","../../node_modules/next/dist/client/components/segment-cache/scheduler.d.ts","../../node_modules/next/dist/client/components/segment-cache/cache-map.d.ts","../../node_modules/next/dist/client/components/segment-cache/vary-path.d.ts","../../node_modules/next/dist/client/components/segment-cache/cache.d.ts","../../node_modules/next/dist/client/components/router-reducer/ppr-navigations.d.ts","../../node_modules/next/dist/client/components/segment-cache/navigation.d.ts","../../node_modules/next/dist/client/components/router-reducer/router-reducer-types.d.ts","../../node_modules/next/dist/shared/lib/app-router-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.d.ts","../../node_modules/next/dist/server/route-modules/pages/vendored/contexts/entrypoints.d.ts","../../node_modules/next/dist/server/route-modules/pages/module.compiled.d.ts","../../node_modules/next/dist/build/templates/pages.d.ts","../../node_modules/next/dist/server/route-modules/pages/module.d.ts","../../node_modules/next/dist/server/render.d.ts","../../node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.d.ts","../../node_modules/next/dist/server/route-definitions/pages-api-route-definition.d.ts","../../node_modules/next/dist/server/route-matches/pages-api-route-match.d.ts","../../node_modules/next/dist/server/route-matchers/route-matcher.d.ts","../../node_modules/next/dist/server/route-matcher-providers/route-matcher-provider.d.ts","../../node_modules/next/dist/server/route-matcher-managers/route-matcher-manager.d.ts","../../node_modules/next/dist/server/normalizers/normalizer.d.ts","../../node_modules/next/dist/server/normalizers/locale-route-normalizer.d.ts","../../node_modules/next/dist/server/normalizers/request/pathname-normalizer.d.ts","../../node_modules/next/dist/server/normalizers/request/suffix.d.ts","../../node_modules/next/dist/server/normalizers/request/rsc.d.ts","../../node_modules/next/dist/server/normalizers/request/next-data.d.ts","../../node_modules/next/dist/server/after/builtin-request-context.d.ts","../../node_modules/next/dist/server/normalizers/request/segment-prefix-rsc.d.ts","../../node_modules/next/dist/server/route-modules/pages/builtin/_error.d.ts","../../node_modules/next/dist/server/load-default-error-components.d.ts","../../node_modules/next/dist/server/base-server.d.ts","../../node_modules/next/dist/server/after/after.d.ts","../../node_modules/next/dist/server/after/after-context.d.ts","../../node_modules/next/dist/server/use-cache/cache-life.d.ts","../../node_modules/next/dist/server/app-render/work-async-storage-instance.d.ts","../../node_modules/next/dist/server/lib/lazy-result.d.ts","../../node_modules/next/dist/server/app-render/create-error-handler.d.ts","../../node_modules/next/dist/shared/lib/action-revalidation-kind.d.ts","../../node_modules/next/dist/server/app-render/work-async-storage.external.d.ts","../../node_modules/next/dist/server/async-storage/work-store.d.ts","../../node_modules/next/dist/server/web/http.d.ts","../../node_modules/next/dist/client/components/hooks-server-context.d.ts","../../node_modules/next/dist/server/route-modules/app-route/shared-modules.d.ts","../../node_modules/next/dist/client/components/redirect-status-code.d.ts","../../node_modules/next/dist/client/components/redirect-error.d.ts","../../node_modules/next/dist/server/web/spec-extension/adapters/request-cookies.d.ts","../../node_modules/next/dist/server/async-storage/draft-mode-provider.d.ts","../../node_modules/next/dist/server/web/spec-extension/adapters/headers.d.ts","../../node_modules/next/dist/server/app-render/cache-signal.d.ts","../../node_modules/next/dist/server/app-render/instant-validation/boundary-tracking.d.ts","../../node_modules/next/dist/server/app-render/instant-validation/instant-validation-error.d.ts","../../node_modules/next/dist/shared/lib/router/utils/parse-relative-url.d.ts","../../node_modules/next/dist/server/app-render/instant-validation/instant-samples.d.ts","../../node_modules/next/dist/server/app-render/dynamic-rendering.d.ts","../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.d.ts","../../node_modules/next/dist/server/lib/implicit-tags.d.ts","../../node_modules/next/dist/server/app-render/staged-rendering.d.ts","../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.d.ts","../../node_modules/next/dist/build/templates/app-route.d.ts","../../node_modules/next/dist/server/app-render/action-async-storage-instance.d.ts","../../node_modules/next/dist/server/app-render/action-async-storage.external.d.ts","../../node_modules/next/dist/server/route-modules/app-route/module.d.ts","../../node_modules/next/dist/server/route-modules/app-route/module.compiled.d.ts","../../node_modules/next/dist/build/segment-config/app/app-segments.d.ts","../../node_modules/next/dist/build/get-supported-browsers.d.ts","../../node_modules/next/dist/build/utils.d.ts","../../node_modules/next/dist/build/rendering-mode.d.ts","../../node_modules/next/dist/server/lib/router-utils/build-prefetch-segment-data-route.d.ts","../../node_modules/next/dist/server/lib/cpu-profile.d.ts","../../node_modules/next/dist/build/turborepo-access-trace/types.d.ts","../../node_modules/next/dist/build/turborepo-access-trace/result.d.ts","../../node_modules/next/dist/build/turborepo-access-trace/helpers.d.ts","../../node_modules/next/dist/build/turborepo-access-trace/index.d.ts","../../node_modules/next/dist/export/routes/types.d.ts","../../node_modules/next/dist/export/types.d.ts","../../node_modules/next/dist/export/worker.d.ts","../../node_modules/next/dist/build/worker.d.ts","../../node_modules/next/dist/build/index.d.ts","../../node_modules/next/dist/lib/coalesced-function.d.ts","../../node_modules/next/dist/server/lib/router-utils/types.d.ts","../../node_modules/next/dist/trace/types.d.ts","../../node_modules/next/dist/trace/trace.d.ts","../../node_modules/next/dist/trace/shared.d.ts","../../node_modules/next/dist/trace/index.d.ts","../../node_modules/next/dist/build/load-jsconfig.d.ts","../../node_modules/@next/env/dist/index.d.ts","../../node_modules/next/dist/build/webpack/plugins/telemetry-plugin/use-cache-tracker-utils.d.ts","../../node_modules/next/dist/build/webpack/plugins/telemetry-plugin/telemetry-plugin.d.ts","../../node_modules/next/dist/telemetry/storage.d.ts","../../node_modules/next/dist/build/build-context.d.ts","../../node_modules/next/dist/build/webpack-config.d.ts","../../node_modules/next/dist/build/swc/generated-native.d.ts","../../node_modules/next/dist/build/define-env.d.ts","../../node_modules/next/dist/build/swc/index.d.ts","../../node_modules/next/dist/build/swc/types.d.ts","../../node_modules/next/dist/server/dev/parse-version-info.d.ts","../../node_modules/next/dist/next-devtools/shared/types.d.ts","../../node_modules/next/dist/server/dev/dev-indicator-server-state.d.ts","../../node_modules/next/dist/next-devtools/dev-overlay/cache-indicator.d.ts","../../node_modules/next/dist/server/lib/parse-stack.d.ts","../../node_modules/next/dist/next-devtools/server/shared.d.ts","../../node_modules/next/dist/next-devtools/shared/stack-frame.d.ts","../../node_modules/next/dist/next-devtools/dev-overlay/utils/get-error-by-type.d.ts","../../node_modules/next/dist/next-devtools/dev-overlay/container/runtime-error/render-error.d.ts","../../node_modules/next/dist/next-devtools/dev-overlay/shared.d.ts","../../node_modules/next/dist/server/dev/debug-channel.d.ts","../../node_modules/next/dist/server/dev/hot-reloader-types.d.ts","../../node_modules/next/dist/server/web/spec-extension/fetch-event.d.ts","../../node_modules/next/dist/server/web/spec-extension/response.d.ts","../../node_modules/next/dist/build/segment-config/middleware/middleware-config.d.ts","../../node_modules/next/dist/server/web/types.d.ts","../../node_modules/next/dist/shared/lib/router/utils/parse-url.d.ts","../../node_modules/next/dist/server/base-http/node.d.ts","../../node_modules/next/dist/server/lib/async-callback-set.d.ts","../../node_modules/next/dist/shared/lib/router/utils/route-regex.d.ts","../../node_modules/next/dist/shared/lib/router/utils/route-matcher.d.ts","../../node_modules/sharp/lib/index.d.ts","../../node_modules/next/dist/server/image-optimizer.d.ts","../../node_modules/next/dist/server/next-server.d.ts","../../node_modules/next/dist/server/lib/types.d.ts","../../node_modules/next/dist/server/lib/lru-cache.d.ts","../../node_modules/next/dist/server/lib/dev-bundler-service.d.ts","../../node_modules/next/dist/server/dev/static-paths-worker.d.ts","../../node_modules/next/dist/server/dev/next-dev-server.d.ts","../../node_modules/next/dist/server/next.d.ts","../../node_modules/next/dist/server/lib/render-server.d.ts","../../node_modules/next/dist/server/lib/router-server.d.ts","../../node_modules/next/dist/shared/lib/router/utils/path-match.d.ts","../../node_modules/next/dist/server/lib/router-utils/filesystem.d.ts","../../node_modules/next/dist/server/lib/router-utils/setup-dev-bundler.d.ts","../../node_modules/next/dist/server/lib/router-utils/router-server-context.d.ts","../../node_modules/next/dist/server/route-modules/route-module.d.ts","../../node_modules/next/dist/server/load-components.d.ts","../../node_modules/next/dist/server/web/adapter.d.ts","../../node_modules/next/dist/server/app-render/types.d.ts","../../node_modules/next/dist/build/webpack/loaders/metadata/types.d.ts","../../node_modules/next/dist/build/webpack/loaders/next-app-loader/index.d.ts","../../node_modules/next/dist/server/lib/app-dir-module.d.ts","../../node_modules/next/dist/server/app-render/app-render.d.ts","../../node_modules/next/dist/server/route-modules/app-page/vendored/contexts/entrypoints.d.ts","../../node_modules/next/dist/client/components/error-boundary.d.ts","../../node_modules/next/dist/client/components/layout-router.d.ts","../../node_modules/next/dist/client/components/render-from-template-context.d.ts","../../node_modules/next/dist/client/components/client-page.d.ts","../../node_modules/next/dist/client/components/client-segment.d.ts","../../node_modules/next/dist/client/components/http-access-fallback/error-boundary.d.ts","../../node_modules/next/dist/lib/metadata/types/alternative-urls-types.d.ts","../../node_modules/next/dist/lib/metadata/types/extra-types.d.ts","../../node_modules/next/dist/lib/metadata/types/metadata-types.d.ts","../../node_modules/next/dist/lib/metadata/types/manifest-types.d.ts","../../node_modules/next/dist/lib/metadata/types/opengraph-types.d.ts","../../node_modules/next/dist/lib/metadata/types/twitter-types.d.ts","../../node_modules/next/dist/lib/metadata/types/metadata-interface.d.ts","../../node_modules/next/dist/lib/metadata/types/resolvers.d.ts","../../node_modules/next/dist/lib/metadata/types/icons.d.ts","../../node_modules/next/dist/lib/metadata/resolve-metadata.d.ts","../../node_modules/next/dist/lib/metadata/metadata.d.ts","../../node_modules/next/dist/lib/framework/boundary-components.d.ts","../../node_modules/next/dist/server/app-render/rsc/preloads.d.ts","../../node_modules/next/dist/server/app-render/rsc/postpone.d.ts","../../node_modules/next/dist/server/app-render/rsc/taint.d.ts","../../node_modules/next/dist/server/app-render/collect-segment-data.d.ts","../../node_modules/next/dist/server/app-render/instant-validation/instant-validation.d.ts","../../node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.d.ts","../../node_modules/next/dist/server/app-render/entry-base.d.ts","../../node_modules/next/dist/build/templates/app-page.d.ts","../../node_modules/next/dist/server/route-modules/app-page/helpers/prerender-manifest-matcher.d.ts","../../node_modules/@types/react/jsx-dev-runtime.d.ts","../../node_modules/@types/react/compiler-runtime.d.ts","../../node_modules/next/dist/server/route-modules/app-page/vendored/rsc/entrypoints.d.ts","../../node_modules/@types/react-dom/client.d.ts","../../node_modules/@types/react-dom/static.d.ts","../../node_modules/@types/react-dom/server.d.ts","../../node_modules/next/dist/server/route-modules/app-page/vendored/ssr/entrypoints.d.ts","../../node_modules/next/dist/server/route-modules/app-page/module.d.ts","../../node_modules/next/dist/server/request/fallback-params.d.ts","../../node_modules/next/dist/server/web/spec-extension/image-response.d.ts","../../node_modules/next/dist/server/web/spec-extension/user-agent.d.ts","../../node_modules/next/dist/server/web/spec-extension/url-pattern.d.ts","../../node_modules/next/dist/server/after/index.d.ts","../../node_modules/next/dist/server/request/connection.d.ts","../../node_modules/next/dist/server/web/exports/index.d.ts","../../node_modules/next/dist/server/request-meta.d.ts","../../node_modules/next/dist/cli/next-test.d.ts","../../node_modules/next/dist/shared/lib/size-limit.d.ts","../../node_modules/next/dist/server/config-shared.d.ts","../../node_modules/next/dist/server/base-http/index.d.ts","../../node_modules/next/dist/server/api-utils/index.d.ts","../../node_modules/next/dist/build/adapter/build-complete.d.ts","../../node_modules/next/dist/types.d.ts","../../node_modules/next/dist/shared/lib/html-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/utils.d.ts","../../node_modules/next/dist/pages/_app.d.ts","../../node_modules/next/app.d.ts","../../node_modules/next/dist/server/web/spec-extension/unstable-cache.d.ts","../../node_modules/next/dist/server/web/spec-extension/revalidate.d.ts","../../node_modules/next/dist/server/web/spec-extension/unstable-no-store.d.ts","../../node_modules/next/dist/server/use-cache/cache-tag.d.ts","../../node_modules/next/cache.d.ts","../../node_modules/next/dist/pages/_document.d.ts","../../node_modules/next/document.d.ts","../../node_modules/next/dist/shared/lib/dynamic.d.ts","../../node_modules/next/dynamic.d.ts","../../node_modules/next/dist/pages/_error.d.ts","../../node_modules/next/dist/client/components/catch-error.d.ts","../../node_modules/next/dist/api/error.d.ts","../../node_modules/next/error.d.ts","../../node_modules/next/dist/shared/lib/head.d.ts","../../node_modules/next/head.d.ts","../../node_modules/next/dist/server/request/cookies.d.ts","../../node_modules/next/dist/server/request/headers.d.ts","../../node_modules/next/dist/server/request/draft-mode.d.ts","../../node_modules/next/headers.d.ts","../../node_modules/next/dist/shared/lib/get-img-props.d.ts","../../node_modules/next/dist/client/image-component.d.ts","../../node_modules/next/dist/shared/lib/image-external.d.ts","../../node_modules/next/image.d.ts","../../node_modules/next/dist/client/link.d.ts","../../node_modules/next/link.d.ts","../../node_modules/next/dist/client/components/unrecognized-action-error.d.ts","../../node_modules/next/dist/client/components/redirect.d.ts","../../node_modules/next/dist/client/components/not-found.d.ts","../../node_modules/next/dist/client/components/forbidden.d.ts","../../node_modules/next/dist/client/components/unauthorized.d.ts","../../node_modules/next/dist/client/components/unstable-rethrow.server.d.ts","../../node_modules/next/dist/client/components/unstable-rethrow.d.ts","../../node_modules/next/dist/client/components/navigation.react-server.d.ts","../../node_modules/next/dist/client/components/navigation.d.ts","../../node_modules/next/navigation.d.ts","../../node_modules/next/router.d.ts","../../node_modules/next/dist/client/script.d.ts","../../node_modules/next/script.d.ts","../../node_modules/next/dist/compiled/@edge-runtime/primitives/url.d.ts","../../node_modules/next/dist/compiled/@vercel/og/satori/index.d.ts","../../node_modules/next/dist/compiled/@vercel/og/types.d.ts","../../node_modules/next/server.d.ts","../../node_modules/next/types/global.d.ts","../../node_modules/next/types/compiled.d.ts","../../node_modules/next/types.d.ts","../../node_modules/next/index.d.ts","../../node_modules/next/image-types/global.d.ts","../types/routes.d.ts","../../next-env.d.ts","../../lib/auth.ts","../../middleware.ts","../../next.config.ts","../../node_modules/source-map-js/source-map.d.ts","../../node_modules/postcss/lib/previous-map.d.ts","../../node_modules/postcss/lib/input.d.ts","../../node_modules/postcss/lib/css-syntax-error.d.ts","../../node_modules/postcss/lib/declaration.d.ts","../../node_modules/postcss/lib/root.d.ts","../../node_modules/postcss/lib/warning.d.ts","../../node_modules/postcss/lib/lazy-result.d.ts","../../node_modules/postcss/lib/no-work-result.d.ts","../../node_modules/postcss/lib/processor.d.ts","../../node_modules/postcss/lib/result.d.ts","../../node_modules/postcss/lib/document.d.ts","../../node_modules/postcss/lib/rule.d.ts","../../node_modules/postcss/lib/node.d.ts","../../node_modules/postcss/lib/comment.d.ts","../../node_modules/postcss/lib/container.d.ts","../../node_modules/postcss/lib/at-rule.d.ts","../../node_modules/postcss/lib/list.d.ts","../../node_modules/postcss/lib/postcss.d.ts","../../node_modules/postcss/lib/postcss.d.mts","../../node_modules/tailwindcss/types/generated/corepluginlist.d.ts","../../node_modules/tailwindcss/types/generated/colors.d.ts","../../node_modules/tailwindcss/types/config.d.ts","../../node_modules/tailwindcss/types/index.d.ts","../../tailwind.config.ts","../../app/api/login/route.ts","../../app/api/logout/route.ts","../../app/api/me/route.ts","../../app/api/report-settings/route.ts","../../app/api/report-settings/preview/route.ts","../../app/api/v1/[...path]/route.ts","../../lib/api.ts","../../lib/users-query.d.ts","../../app/layout.tsx","../../components/brand/brand-logo.tsx","../../app/loading.tsx","../../app/not-found.tsx","../../app/page.tsx","../../node_modules/lucide-react/dist/lucide-react.d.ts","../../components/auth.tsx","../../components/app-shell.tsx","../../node_modules/@tanstack/query-core/build/modern/_tsup-dts-rollup.d.ts","../../node_modules/@tanstack/query-core/build/modern/index.d.ts","../../node_modules/@tanstack/react-query/build/modern/_tsup-dts-rollup.d.ts","../../node_modules/@tanstack/react-query/build/modern/index.d.ts","../../components/query-provider.tsx","../../app/(app)/layout.tsx","../../node_modules/zod/v3/helpers/typealiases.d.cts","../../node_modules/zod/v3/helpers/util.d.cts","../../node_modules/zod/v3/index.d.cts","../../node_modules/zod/v3/zoderror.d.cts","../../node_modules/zod/v3/locales/en.d.cts","../../node_modules/zod/v3/errors.d.cts","../../node_modules/zod/v3/helpers/parseutil.d.cts","../../node_modules/zod/v3/helpers/enumutil.d.cts","../../node_modules/zod/v3/helpers/errorutil.d.cts","../../node_modules/zod/v3/helpers/partialutil.d.cts","../../node_modules/zod/v3/standard-schema.d.cts","../../node_modules/zod/v3/types.d.cts","../../node_modules/zod/v3/external.d.cts","../../node_modules/zod/index.d.cts","../../node_modules/react-hook-form/dist/constants.d.ts","../../node_modules/react-hook-form/dist/utils/createsubject.d.ts","../../node_modules/react-hook-form/dist/types/events.d.ts","../../node_modules/react-hook-form/dist/types/path/common.d.ts","../../node_modules/react-hook-form/dist/types/path/eager.d.ts","../../node_modules/react-hook-form/dist/types/path/index.d.ts","../../node_modules/react-hook-form/dist/types/fieldarray.d.ts","../../node_modules/react-hook-form/dist/types/resolvers.d.ts","../../node_modules/react-hook-form/dist/types/form.d.ts","../../node_modules/react-hook-form/dist/types/utils.d.ts","../../node_modules/react-hook-form/dist/types/fields.d.ts","../../node_modules/react-hook-form/dist/types/errors.d.ts","../../node_modules/react-hook-form/dist/types/validator.d.ts","../../node_modules/react-hook-form/dist/types/controller.d.ts","../../node_modules/react-hook-form/dist/types/watch.d.ts","../../node_modules/react-hook-form/dist/types/index.d.ts","../../node_modules/react-hook-form/dist/controller.d.ts","../../node_modules/react-hook-form/dist/form.d.ts","../../node_modules/react-hook-form/dist/formstatesubscribe.d.ts","../../node_modules/react-hook-form/dist/logic/appenderrors.d.ts","../../node_modules/react-hook-form/dist/logic/createformcontrol.d.ts","../../node_modules/react-hook-form/dist/logic/index.d.ts","../../node_modules/react-hook-form/dist/usecontroller.d.ts","../../node_modules/react-hook-form/dist/usefieldarray.d.ts","../../node_modules/react-hook-form/dist/useform.d.ts","../../node_modules/react-hook-form/dist/useformcontext.d.ts","../../node_modules/react-hook-form/dist/useformstate.d.ts","../../node_modules/react-hook-form/dist/usewatch.d.ts","../../node_modules/react-hook-form/dist/utils/get.d.ts","../../node_modules/react-hook-form/dist/utils/set.d.ts","../../node_modules/react-hook-form/dist/utils/index.d.ts","../../node_modules/react-hook-form/dist/watch.d.ts","../../node_modules/react-hook-form/dist/index.d.ts","../../node_modules/@hookform/resolvers/zod/dist/types.d.ts","../../node_modules/@hookform/resolvers/zod/dist/zod.d.ts","../../node_modules/@hookform/resolvers/zod/dist/index.d.ts","../../components/crud-page.tsx","../../app/(app)/contacts/page.tsx","../../app/(app)/customers/page.tsx","../../lib/validation-result.tsx","../../app/(app)/dashboard/page.tsx","../../app/(app)/devices/page.tsx","../../app/(app)/documents/page.tsx","../../app/(app)/equipment/page.tsx","../../app/(app)/locations/page.tsx","../../app/(app)/profile/security/page.tsx","../../app/(app)/settings/report-layout/page.tsx","../../app/(app)/users/page.tsx","../../node_modules/@tanstack/table-core/build/lib/utils.d.ts","../../node_modules/@tanstack/table-core/build/lib/core/table.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/columnvisibility.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/columnordering.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/columnpinning.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/rowpinning.d.ts","../../node_modules/@tanstack/table-core/build/lib/core/headers.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/columnfaceting.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/globalfaceting.d.ts","../../node_modules/@tanstack/table-core/build/lib/filterfns.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/columnfiltering.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/globalfiltering.d.ts","../../node_modules/@tanstack/table-core/build/lib/sortingfns.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/rowsorting.d.ts","../../node_modules/@tanstack/table-core/build/lib/aggregationfns.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/columngrouping.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/rowexpanding.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/columnsizing.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/rowpagination.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/rowselection.d.ts","../../node_modules/@tanstack/table-core/build/lib/core/row.d.ts","../../node_modules/@tanstack/table-core/build/lib/core/cell.d.ts","../../node_modules/@tanstack/table-core/build/lib/core/column.d.ts","../../node_modules/@tanstack/table-core/build/lib/types.d.ts","../../node_modules/@tanstack/table-core/build/lib/columnhelper.d.ts","../../node_modules/@tanstack/table-core/build/lib/utils/getcorerowmodel.d.ts","../../node_modules/@tanstack/table-core/build/lib/utils/getexpandedrowmodel.d.ts","../../node_modules/@tanstack/table-core/build/lib/utils/getfacetedminmaxvalues.d.ts","../../node_modules/@tanstack/table-core/build/lib/utils/getfacetedrowmodel.d.ts","../../node_modules/@tanstack/table-core/build/lib/utils/getfaceteduniquevalues.d.ts","../../node_modules/@tanstack/table-core/build/lib/utils/getfilteredrowmodel.d.ts","../../node_modules/@tanstack/table-core/build/lib/utils/getgroupedrowmodel.d.ts","../../node_modules/@tanstack/table-core/build/lib/utils/getpaginationrowmodel.d.ts","../../node_modules/@tanstack/table-core/build/lib/utils/getsortedrowmodel.d.ts","../../node_modules/@tanstack/table-core/build/lib/index.d.ts","../../node_modules/@tanstack/react-table/build/lib/index.d.ts","../../app/(app)/validations/page.tsx","../../components/action-button.tsx","../../components/validations/validation-editor.tsx","../../app/(app)/validations/[id]/edit/page.tsx","../../app/(app)/validations/[id]/preview/page.tsx","../../app/(app)/validations/new/page.tsx","../../app/(app)/validations/quick-start/page.tsx","../../app/(auth)/login/page.tsx","../../components/data-table.tsx","../../components/resource-page.tsx","../types/cache-life.d.ts","../types/validator.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.ts"],"fileIdsList":[[97,146,163,164,488,489,490,491],[97,146,163,164],[97,146,163,164,231,529,532,535,565,566,567,568,569,570,573,577,586,638,639,641,642,643,644,645,646,647,648,685,688,689,690,691,692],[97,146,163,164,231,571,579,584,600,637],[97,146,163,164,231,571,600,637],[97,146,163,164,231,512,571,574,578,579,584,640],[97,146,163,164,231,578],[97,146,163,164,231,579,580,585],[85,97,146,163,164,231,571,578,579,600,633,636],[85,97,146,163,164,231,578,579,584],[85,97,146,163,164,231,571,572,578,579,584,600,633,636],[97,146,163,164,231,522,687],[85,97,146,163,164,231,512,522,571,578,579],[97,146,163,164,231,687],[85,97,146,163,164,231,512,571,578,579,584,640,684],[85,97,146,163,164,231,571,578,579,584],[85,97,146,163,164,231,571,574,578,579,600,633,636],[97,146,163,164,231,506,529,537],[97,146,163,164,231,530,533],[97,146,163,164,231,574],[97,146,163,164,231,512,574],[97,146,163,164,231,522],[85,97,146,163,164,231,512,522,574,578,579],[85,97,146,163,164,231,522,571],[97,146,163,164,231,510],[85,97,146,163,164,231,571,578,579,584,600,633,636],[97,146,163,164,231,684],[85,97,146,163,164,231,584],[97,146,163,164,231,571,578,579,584,684,693],[85,97,146,163,164,231,571,578,579,584,600,633,636,640,686],[97,146,163,164,231],[97,146,163,164,231,529,537],[97,146,163,164,533,534,535],[97,146,163,164,231,533],[97,146,163,164,634,635],[97,146,163,164,600,633],[97,146,163,164,634],[97,146,163,164,581],[85,97,146,163,164,231,582],[97,146,163,164,583],[85,97,146,163,164,683],[97,146,163,164,664],[97,146,163,164,649,672],[97,146,163,164,672],[97,146,163,164,672,683],[97,146,163,164,658,672,683],[97,146,163,164,663,672,683],[97,146,163,164,653,672],[97,146,163,164,661,672,683],[97,146,163,164,659],[97,146,163,164,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682],[97,146,163,164,662],[97,146,163,164,649,650,651,652,653,654,655,656,657,659,660,662,664,665,666,667,668,669,670,671],[97,143,144,146,163,164],[97,145,146,163,164],[146,163,164],[97,146,151,163,164,181],[97,146,147,152,157,163,164,166,178,189],[97,146,147,148,157,163,164,166],[92,93,94,97,146,163,164],[97,146,149,163,164,190],[97,146,150,151,158,163,164,167],[97,146,151,163,164,178,186],[97,146,152,154,157,163,164,166],[97,145,146,153,163,164],[97,146,154,155,163,164],[97,146,156,157,163,164],[97,145,146,157,163,164],[97,146,157,158,159,163,164,178,189],[97,146,157,158,159,163,164,173,178,181],[97,138,146,154,157,160,163,164,166,178,189],[97,146,157,158,160,161,163,164,166,178,186,189],[97,146,160,162,163,164,178,186,189],[95,96,97,98,99,100,101,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195],[97,146,157,163,164],[97,146,163,164,165,189],[97,146,154,157,163,164,166,178],[97,146,163,164,167],[97,146,163,164,168],[97,145,146,163,164,169],[97,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195],[97,146,163,164,171],[97,146,163,164,172],[97,146,157,163,164,173,174],[97,146,163,164,173,175,190,192],[97,146,158,163,164],[97,146,157,163,164,178,179,181],[97,146,163,164,180,181],[97,146,163,164,178,179],[97,146,163,164,181],[97,146,163,164,182],[97,143,146,163,164,178,183,189],[97,146,157,163,164,184,185],[97,146,163,164,184,185],[97,146,151,163,164,166,178,186],[97,146,163,164,187],[97,146,163,164,166,188],[97,146,160,163,164,172,189],[97,146,151,163,164,190],[97,146,163,164,178,191],[97,146,163,164,165,192],[97,146,163,164,193],[97,138,146,163,164],[97,138,146,157,159,163,164,169,178,181,189,191,192,194],[97,146,163,164,178,195],[85,89,97,146,163,164,197,198,199,201,483,528],[85,97,146,163,164],[85,89,97,146,163,164,197,198,199,200,464,483,528],[85,89,97,146,163,164,197,198,200,201,483,528],[85,97,146,163,164,201,464,465],[85,97,146,163,164,201,464],[85,89,97,146,163,164,198,199,200,201,483,528],[85,89,97,146,163,164,197,199,200,201,483,528],[83,84,97,146,163,164],[97,146,163,164,486],[97,146,163,164,434,497,498],[97,146,163,164,206,207,209,221,245,360,371,479],[97,146,163,164,209,240,241,242,244,479],[97,146,163,164,209,377,379,381,382,384,479,481],[97,146,163,164,209,243,280,479],[97,146,163,164,207,209,220,221,227,233,238,359,360,361,370,479,481],[97,146,163,164,479],[97,146,163,164,216,222,241,261,356],[97,146,163,164,209],[97,146,163,164,202,216,222],[97,146,163,164,388],[97,146,163,164,385,386,388],[97,146,163,164,385,387,479],[97,146,160,163,164,261,458,476],[97,146,160,163,164,332,335,351,356,476],[97,146,160,163,164,304,476],[97,146,163,164,364],[97,146,163,164,363,364,365],[97,146,163,164,363],[91,97,146,160,163,164,202,209,221,227,233,239,241,245,246,259,260,327,357,358,371,479,483],[97,146,163,164,206,209,243,280,377,378,383,479,531],[97,146,163,164,243,531],[97,146,163,164,206,260,429,479,531],[97,146,163,164,531],[97,146,163,164,209,243,244,531],[97,146,163,164,380,531],[97,146,163,164,246,359,362,369],[85,97,146,163,164,434],[97,146,163,164,172,216,231],[97,146,163,164,216,231],[85,97,146,163,164,301],[85,97,146,163,164,231],[85,97,146,163,164,222,231,434],[97,146,163,164,216,287,301,302,513,520],[97,146,163,164,286,514,515,516,517,519],[97,146,163,164,337],[97,146,163,164,337,338],[97,146,163,164,220,222,289,290],[97,146,163,164,222,296,297],[97,146,163,164,222,291,299],[97,146,163,164,296],[97,146,163,164,214,222,289,290,291,292,293,294,295,296,299],[97,146,163,164,222,289,296,297,298,300],[97,146,163,164,222,290,292,293],[97,146,163,164,290,292,295,297],[97,146,163,164,518],[97,146,163,164,222],[85,97,146,163,164,210,507],[85,97,146,163,164,189],[85,97,146,163,164,243,278],[85,97,146,163,164,243,371],[97,146,163,164,276,281],[85,97,146,163,164,277,485],[85,89,97,146,160,163,164,197,198,199,200,201,483,527],[97,146,160,163,164,222],[97,146,160,163,164,221,226,307,324,366,367,371,426,428,479,480],[97,146,163,164,259,368],[97,146,163,164,483],[97,146,163,164,208],[85,97,146,163,164,213,216,431,447,449],[97,146,163,164,172,216,431,446,447,448,530],[97,146,163,164,440,441,442,443,444,445],[97,146,163,164,442],[97,146,163,164,446],[97,146,163,164,231,395,396,398],[85,97,146,163,164,222,389,390,391,392,397],[97,146,163,164,395,397],[97,146,163,164,393],[97,146,163,164,394],[85,97,146,163,164,231,277,485],[85,97,146,163,164,231,484,485],[85,97,146,163,164,231,485],[97,146,163,164,324,325],[97,146,163,164,325],[97,146,160,163,164,480,485],[97,146,163,164,354],[97,145,146,163,164,353],[97,146,163,164,216,222,228,230,332,345,349,351,428,431,468,469,476,480],[97,146,163,164,222,271,293],[97,146,163,164,332,343,346,351],[85,97,146,163,164,213,216,332,335,351,354,388,435,436,437,438,439,450,451,452,453,454,455,456,457,531],[97,146,163,164,213,216,241,332,339,340,341,344,345],[97,146,163,164,178,222,241,343,350,431,432,476],[97,146,163,164,347],[97,146,160,163,164,172,210,222,226,236,268,269,272,324,327,392,426,427,468,479,480,481,483,531],[97,146,163,164,213,214,216],[97,146,163,164,332],[97,145,146,163,164,241,268,269,326,327,328,329,330,331,480],[97,146,163,164,351],[97,145,146,163,164,215,216,226,230,266,332,339,340,341,342,343,346,347,348,349,350,469],[97,146,160,163,164,266,267,339,480,481],[97,146,163,164,241,269,324,327,332,428,480],[97,146,160,163,164,479,481],[97,146,160,163,164,178,476,480,481],[97,146,160,163,164,172,202,216,221,228,230,233,236,243,263,268,269,270,271,272,307,308,310,313,315,318,319,320,321,323,371,426,428,476,479,480,481],[97,146,160,163,164,178],[97,146,163,164,209,210,211,239,476,477,478,483,485,531],[97,146,163,164,206,207,479],[97,146,163,164,400],[97,146,160,163,164,178,189,218,384,388,389,390,391,392,398,399,531],[97,146,163,164,172,189,202,216,218,230,233,269,308,313,323,324,377,404,405,406,412,415,416,426,428,476,479],[97,146,163,164,233,239,246,259,269,327,479],[97,146,160,163,164,189,210,221,230,269,410,476,479],[97,146,163,164,430],[97,146,160,163,164,400,413,414,423],[97,146,163,164,476,479],[97,146,163,164,329,469],[97,146,163,164,230,268,371,485],[97,146,160,163,164,172,208,313,373,377,406,412,415,418,476],[97,146,160,163,164,246,259,377,419],[97,146,163,164,209,270,371,421,479,481],[97,146,160,163,164,189,392,479],[97,146,160,163,164,243,270,371,372,373,382,400,420,422,479],[91,97,146,160,163,164,268,425,483,485],[97,146,163,164,322,426],[97,146,160,163,164,172,216,219,221,222,228,230,236,245,246,259,269,272,308,310,320,323,324,371,404,405,406,407,409,411,426,428,476,485],[97,146,160,163,164,178,246,412,417,423,476],[97,146,163,164,249,250,251,252,253,254,255,256,257,258],[97,146,163,164,263,314],[97,146,163,164,316],[97,146,163,164,314],[97,146,163,164,316,317],[97,146,160,163,164,220,221,222,226,227,480],[97,146,160,163,164,172,208,210,228,232,268,271,272,306,426,476,481,483,485],[97,146,160,163,164,172,189,212,219,220,230,232,269,424,469,475,480],[97,146,163,164,339],[97,146,163,164,340],[97,146,163,164,222,233,468],[97,146,163,164,341],[97,146,163,164,215],[97,146,163,164,217,229],[97,146,160,163,164,217,221,228],[97,146,163,164,224,229],[97,146,163,164,225],[97,146,163,164,217,218],[97,146,163,164,217,273],[97,146,163,164,217],[97,146,163,164,219,263,312],[97,146,163,164,311],[97,146,163,164,216,218,219],[97,146,163,164,219,309],[97,146,163,164,216,218],[97,146,163,164,268,371],[97,146,163,164,468],[97,146,160,163,164,189,228,230,234,268,371,425,428,431,432,433,459,460,463,467,469,476,480],[97,146,163,164,282,285,287,288,301,302],[85,97,146,163,164,199,201,231,461,462],[85,97,146,163,164,199,201,231,461,462,466],[97,146,163,164,355],[97,146,163,164,241,262,267,268,332,333,334,335,336,338,351,352,354,357,425,428,479,481],[97,146,163,164,301],[97,146,160,163,164,306,476],[97,146,163,164,306],[97,146,160,163,164,228,274,303,305,307,425,476,483,485],[97,146,163,164,282,283,284,285,287,288,301,302,484],[91,97,146,160,163,164,172,189,217,218,230,236,268,269,272,371,423,424,426,476,479,480,483],[97,146,163,164,213,216,223],[97,146,163,164,267,269,401,404],[97,146,163,164,267,402,470,471,472,473,474],[97,146,160,163,164,263,479],[97,146,160,163,164],[97,146,163,164,266,351],[97,146,163,164,265],[97,146,163,164,267,320],[97,146,163,164,264,266,479],[97,146,160,163,164,212,267,401,402,403,476,479,480],[85,97,146,163,164,216,222,300],[85,97,146,163,164,214],[97,146,163,164,204,205],[85,97,146,163,164,210],[85,97,146,163,164,216,286],[85,91,97,146,163,164,268,272,483,485],[97,146,163,164,210,507,508],[85,97,146,163,164,281],[85,97,146,163,164,172,189,208,275,277,279,280,485],[97,146,163,164,216,243,480],[97,146,163,164,216,408],[85,97,146,158,160,163,164,172,206,208,281,379,483,484],[85,97,146,163,164,197,198,199,200,201,483,528],[85,86,87,88,89,97,146,163,164],[97,146,151,163,164],[97,146,163,164,374,375,376],[97,146,163,164,374],[85,89,97,146,160,162,163,164,172,196,197,198,199,200,201,202,208,236,241,418,446,481,482,485,528],[97,146,163,164,493],[97,146,163,164,495],[97,146,163,164,499],[97,146,163,164,501],[97,146,163,164,503,504,505],[97,146,163,164,509],[90,97,146,163,164,487,492,494,496,500,502,506,510,512,522,523,525,529,530,531,532],[97,146,163,164,511],[97,146,163,164,521],[97,146,163,164,277],[97,146,163,164,524],[97,145,146,163,164,267,401,402,404,470,471,473,474,526,528],[97,146,163,164,196],[97,146,163,164,555],[97,146,163,164,553,555],[97,146,163,164,544,552,553,554,556,558],[97,146,163,164,542],[97,146,163,164,545,550,555,558],[97,146,163,164,541,558],[97,146,163,164,545,546,549,550,551,558],[97,146,163,164,545,546,547,549,550,558],[97,146,163,164,542,543,544,545,546,550,551,552,554,555,556,558],[97,146,163,164,558],[97,146,163,164,540,542,543,544,545,546,547,549,550,551,552,553,554,555,556,557],[97,146,163,164,540,558],[97,146,163,164,545,547,548,550,551,558],[97,146,163,164,549,558],[97,146,163,164,550,551,555,558],[97,146,163,164,543,553],[85,97,146,163,164,616],[97,146,163,164,616,617,618,619,622,623,624,625,626,627,628,631,632],[97,146,163,164,616],[97,146,163,164,620,621],[85,97,146,163,164,613,616],[97,146,163,164,610,611,613],[97,146,163,164,606,609,611,613],[97,146,163,164,610,613],[85,97,146,163,164,601,602,603,606,607,608,610,611,612,613],[97,146,163,164,603,606,607,608,609,610,611,612,613,614,615],[97,146,163,164,610],[97,146,163,164,604,610,611],[97,146,163,164,604,605],[97,146,163,164,609,611,612],[97,146,163,164,609],[97,146,163,164,601,606,609,611,612],[85,97,146,163,164,606,609,610,611],[97,146,163,164,629,630],[97,146,163,164,178,196],[97,146,163,164,560,561],[97,146,163,164,559,562],[97,110,114,146,163,164,189],[97,110,146,163,164,178,189],[97,105,146,163,164],[97,107,110,146,163,164,186,189],[97,146,163,164,166,186],[97,105,146,163,164,196],[97,107,110,146,163,164,166,189],[97,102,103,106,109,146,157,163,164,178,189],[97,110,117,146,163,164],[97,102,108,146,163,164],[97,110,131,132,146,163,164],[97,106,110,146,163,164,181,189,196],[97,131,146,163,164,196],[97,104,105,146,163,164,196],[97,110,146,163,164],[97,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132,133,134,135,136,137,146,163,164],[97,110,125,146,163,164],[97,110,117,118,146,163,164],[97,108,110,118,119,146,163,164],[97,109,146,163,164],[97,102,105,110,146,163,164],[97,110,114,118,119,146,163,164],[97,114,146,163,164],[97,108,110,113,146,163,164,189],[97,102,107,110,117,146,163,164],[97,146,163,164,178],[97,105,110,131,146,163,164,194,196],[97,146,163,164,599],[97,146,163,164,590,591],[97,146,163,164,587,588,590,592,593,598],[97,146,163,164,588,590],[97,146,163,164,598],[97,146,163,164,590],[97,146,163,164,587,588,590,593,594,595,596,597],[97,146,163,164,587,588,589],[97,146,163,164,231,563]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","signature":false,"impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","signature":false,"impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","signature":false,"impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","signature":false,"impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","signature":false,"impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","signature":false,"impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","signature":false,"impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","signature":false,"impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","signature":false,"impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","signature":false,"impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","signature":false,"impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"7e29f41b158de217f94cb9676bf9cbd0cd9b5a46e1985141ed36e075c52bf6ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","signature":false,"impliedFormat":1},{"version":"dc782ff85b2cb10075ecffc158af7bfb27ff97bf8491c917efea0c3d622d5ac4","signature":false,"impliedFormat":1},{"version":"acd8fd5090ac73902278889c38336ff3f48af6ba03aa665eb34a75e7ba1dccc4","signature":false,"impliedFormat":1},{"version":"d6258883868fb2680d2ca96bc8b1352cab69874581493e6d52680c5ffecdb6cc","signature":false,"impliedFormat":1},{"version":"1b61d259de5350f8b1e5db06290d31eaebebc6baafd5f79d314b5af9256d7153","signature":false,"impliedFormat":1},{"version":"f258e3960f324a956fc76a3d3d9e964fff2244ff5859dcc6ce5951e5413ca826","signature":false,"impliedFormat":1},{"version":"643f7232d07bf75e15bd8f658f664d6183a0efaca5eb84b48201c7671a266979","signature":false,"impliedFormat":1},{"version":"21da358700a3893281ce0c517a7a30cbd46be020d9f0c3f2834d0a8ad1f5fc75","signature":false,"impliedFormat":1},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","signature":false,"impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","signature":false,"impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","signature":false,"impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","signature":false,"impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","signature":false,"impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","signature":false,"impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","signature":false,"impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","signature":false,"impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","signature":false,"impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","signature":false,"impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","signature":false,"impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","signature":false,"impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","signature":false,"impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","signature":false,"impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","signature":false,"impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","signature":false,"impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","signature":false,"impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","signature":false,"impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","signature":false,"impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","signature":false,"impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","signature":false,"impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","signature":false,"impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","signature":false,"impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","signature":false,"impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","signature":false,"impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","signature":false,"impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","signature":false,"impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","signature":false,"impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","signature":false,"impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","signature":false,"impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","signature":false,"impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","signature":false,"impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","signature":false,"impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","signature":false,"impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","signature":false,"impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","signature":false,"impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","signature":false,"impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","signature":false,"impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","signature":false,"impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","signature":false,"impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","signature":false,"impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","signature":false,"impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","signature":false,"impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","signature":false,"impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","signature":false,"impliedFormat":1},{"version":"78dbea00e90d2df8ea3dbef0cc379d95b8be9b71cd6bde4c28728f306811803b","signature":false,"impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","signature":false,"impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","signature":false,"impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","signature":false,"impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e1e46d0a9837ee058c100501080c920fa98081ea3956af0374308ba6f22a33e","signature":false,"impliedFormat":1},{"version":"272ca407e0c9068bdc5152552d876e68037ceae3de62e529306403e973dec8e1","signature":false,"impliedFormat":1},{"version":"fa7834c715d5357e4540cee40ce96c3250ddb67a7b879a6b7fa0e86d6696f121","signature":false,"impliedFormat":1},{"version":"22dfb07a7ab15b66ac043829056fe70124844636ae719551812ac631ba04985b","signature":false,"impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","signature":false,"impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","signature":false,"impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","signature":false,"impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"a6f137d651076822d4fe884287e68fd61785a0d3d1fdb250a5059b691fa897db","signature":false,"impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","signature":false,"impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","signature":false,"impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"bceb58df66ab8fb00170df20cd813978c5ab84be1d285710c4eb005d8e9d8efb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","signature":false,"impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","signature":false,"impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","signature":false,"impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","signature":false,"impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","signature":false,"impliedFormat":1},{"version":"0cb167c371eaa8c869f8a7656a7296f2e4fae43b4d8b803a680236b24794e5f9","signature":false,"impliedFormat":1},{"version":"0a839dba0287cc0481ad4beedd48a1c64acf1e212ae865d1315f7007ca215161","signature":false,"impliedFormat":1},{"version":"38dc4655376cd1a4bd6bb3763d92949233e33d38d3dd3cbea7bbf218175a38ef","signature":false,"impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","signature":false,"impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","signature":false,"impliedFormat":1},{"version":"d61e0a64cd175208ac0b83670151a9a6b5916f0d1ffcdc5c29c90b1cebfc5045","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","signature":false,"impliedFormat":1},{"version":"48a679952eefe4cb776d5a0e1ccba2d3eb53b57448bbb7abc1fcebcbd5440188","signature":false,"impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","signature":false,"impliedFormat":1},{"version":"2d14da6ecb49bf828d83948765ec2d3a579d476bbb9645e749610baa6ec880ca","signature":false,"impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","signature":false,"impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","signature":false,"impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","signature":false,"impliedFormat":1},{"version":"0aef708fb4c7a6b915e8305cbfac40cd207b032dbaabe9a01889a5fff3254681","signature":false,"impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","signature":false,"impliedFormat":1},{"version":"ad9bdafb4e7abf14cc53ce7970486a84c87831e62891e5dfe798ddcd55e84701","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"358765d5ea8afd285d4fd1532e78b88273f18cb3f87403a9b16fef61ac9fdcfe","signature":false,"impliedFormat":1},{"version":"71d3ae6a5e73ca4130762560425e00984ebaff64d5353a3333d1bb7eb86ef336","signature":false,"impliedFormat":1},{"version":"2beff543f6e9a9701df88daeee3cdd70a34b4a1c11cb4c734472195a5cb2af54","signature":false,"impliedFormat":1},{"version":"2e07abf27aa06353d46f4448c0bbac73431f6065eef7113128a5cd804d0c384d","signature":false,"impliedFormat":1},{"version":"be1cc4d94ea60cbe567bc29ed479d42587bf1e6cba490f123d329976b0fe4ee5","signature":false,"impliedFormat":1},{"version":"42bc0e1a903408137c3df2b06dfd7e402cdab5bbfa5fcfb871b22ebfdb30bd0b","signature":false,"impliedFormat":1},{"version":"9894dafe342b976d251aac58e616ac6df8db91fb9d98934ff9dd103e9e82578f","signature":false,"impliedFormat":1},{"version":"413df52d4ea14472c2fa5bee62f7a40abd1eb49be0b9722ee01ee4e52e63beb2","signature":false,"impliedFormat":1},{"version":"db6d2d9daad8a6d83f281af12ce4355a20b9a3e71b82b9f57cddcca0a8964a96","signature":false,"impliedFormat":1},{"version":"446a50749b24d14deac6f8843e057a6355dd6437d1fac4f9e5ce4a5071f34bff","signature":false,"impliedFormat":1},{"version":"182e9fcbe08ac7c012e0a6e2b5798b4352470be29a64fdc114d23c2bab7d5106","signature":false,"impliedFormat":1},{"version":"2f4e6b4d39426a1b85ecf4bdeb9dddbf4d9b3397d95d8555d46f925c9519ec7d","signature":false,"impliedFormat":1},{"version":"78a2869ad0cbf3f9045dda08c0d4562b7e1b2bfe07b19e0db072f5c3c56e9584","signature":false,"impliedFormat":1},{"version":"89d5d28d4f57e000b836ac273079be1b75710e28ce14750d081fb420d37e2ca5","signature":false,"impliedFormat":1},{"version":"fd4e24ccff3966390600d7f5d6aa1fed5a512e92ada735ea5fbc933d313ad3d3","signature":false,"impliedFormat":1},{"version":"b7cddfe1aa6b86b5fad3c9ccb30d05b3ccb165aebbf112f48d2d8a5f69dd98b1","signature":false,"impliedFormat":1},{"version":"a86f82d646a739041d6702101afa82dcb935c416dd93cbca7fd754fd0282ce1f","signature":false,"impliedFormat":1},{"version":"ad0d1d75d129b1c80f911be438d6b61bfa8703930a8ff2be2f0e1f8a91841c64","signature":false,"impliedFormat":1},{"version":"bd2c7ada3dee03653d3f601011d30072194bc3970cd93208f9588fbdc0c69347","signature":false,"impliedFormat":1},{"version":"e480da45d32313e7174b265674da504f075f59ef326852f0c5a5d863b438ae85","signature":false,"impliedFormat":1},{"version":"ad54850f61fcf5d014e11be80d2f46fea9265cfa7e77456da876f7833ef81769","signature":false,"impliedFormat":1},{"version":"6f7c9e8bd2b5b6a080b07080065f94900bd3c7e5ebbd3047bc33fcce2fab1dd8","signature":false,"impliedFormat":1},{"version":"3e7efde639c6a6c3edb9847b3f61e308bf7a69685b92f665048c45132f51c218","signature":false,"impliedFormat":1},{"version":"df45ca1176e6ac211eae7ddf51336dc075c5314bc5c253651bae639defd5eec5","signature":false,"impliedFormat":1},{"version":"8a0e762ceb20c7e72504feef83d709468a70af4abccb304f32d6b9bac1129b2c","signature":false,"impliedFormat":1},{"version":"da5950ee2a90721df6f3fba45f5d05308f7e4c35835392215dd2cd404505e2de","signature":false,"impliedFormat":1},{"version":"ce75b1aebb33d510ff28af960a9221410a3eaf7f18fc5f21f9404075fba77256","signature":false,"impliedFormat":1},{"version":"f42d5fed19610d485c646a0c430e768115567d078c7fc855c57b0c578b3d6cd3","signature":false,"impliedFormat":1},{"version":"ee8df1cb8d0faaca4013a1b442e99130769ce06f438d18d510fed95890067563","signature":false,"impliedFormat":1},{"version":"d5630f2ad9b4541e5ce891648121022f9412ecdca1820baa1f0104f70fd7eff7","signature":false,"impliedFormat":1},{"version":"4d15375ab13497104bc8fe56fdef2b5fd6853f29255737d23a33fa306ff7fd69","signature":false,"impliedFormat":1},{"version":"2cd3fc1d0d6a1e85baffd2d4f50f5efb192b5446eef567e97c94765402f0aad4","signature":false,"impliedFormat":1},{"version":"e4cbf2f1e89ecccaddd2c045e600ae41b732295953fb06247c7dcbc2d281ed30","signature":false,"impliedFormat":1},{"version":"6dcedaef57dff0d79a05ab0ab602cde74db803d1e765468bf91263786a383e1b","signature":false,"impliedFormat":1},{"version":"8c1697d90c394a6fd955b98eae01238eff628e129b987a68aea10f898a48e7da","signature":false,"impliedFormat":1},{"version":"7580e62139cb2b44a0270c8d01abcbfcba2819a02514a527342447fa69b34ef1","signature":false,"impliedFormat":1},{"version":"b838d4c72740eb0afd284bf7575b74c624b105eff2e8c7b4aeead57e7ac320ff","signature":false,"impliedFormat":1},{"version":"f374cb24e93e7798c4d9e83ff872fa52d2cdb36306392b840a6ddf46cb925cb6","signature":false,"impliedFormat":1},{"version":"d10d63718e1646c2279e3b33831f82c60e31f622b2b7020f1196409ca4c09242","signature":false,"impliedFormat":1},{"version":"106c6025f1d99fd468fd8bf6e5bda724e11e5905a4076c5d29790b6c3745e50c","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"148679c6d0f449210a96e7d2e562d589e56fcde87f843a92808b3ff103f1a774","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"02436d7e9ead85e09a2f8e27d5f47d9464bced31738dec138ca735390815c9f0","signature":false,"impliedFormat":1},{"version":"f8d5ff8eafd37499f2b6a98659dd9b45a321de186b8db6b6142faed0fea3de77","signature":false,"impliedFormat":1},{"version":"c86fe861cf1b4c46a0fb7d74dffe596cf679a2e5e8b1456881313170f092e3fa","signature":false,"impliedFormat":1},{"version":"a22dd55aa4d39906252000ab8e8a1b83b195eef7f4274eb51e457c1f11cf6580","signature":false,"impliedFormat":1},{"version":"540cc83ab772a2c6bc509fe1354f314825b5dba3669efdfbe4693ecd3048e34f","signature":false,"impliedFormat":1},{"version":"121b0696021ab885c570bbeb331be8ad82c6efe2f3b93a6e63874901bebc13e3","signature":false,"impliedFormat":1},{"version":"612d9da66bb046a9c1e2e8d026245ded881fc4b9f98cbfae714415d57ee0ae0b","signature":false,"impliedFormat":1},{"version":"32c2ad9494dad5d11b0564a619fee18f388db6c1e9e2cd3c360b3122549691eb","signature":false,"impliedFormat":1},{"version":"6c301d40aec56a74ec7bd7324e31a728dadf9bfba3e96def02938d3d973534ec","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","signature":false,"impliedFormat":1},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","signature":false,"impliedFormat":1},{"version":"aa14cee20aa0db79f8df101fc027d929aec10feb5b8a8da3b9af3895d05b7ba2","signature":false,"impliedFormat":1},{"version":"493c700ac3bd317177b2eb913805c87fe60d4e8af4fb39c41f04ba81fae7e170","signature":false,"impliedFormat":1},{"version":"aeb554d876c6b8c818da2e118d8b11e1e559adbe6bf606cc9a611c1b6c09f670","signature":false,"impliedFormat":1},{"version":"acf5a2ac47b59ca07afa9abbd2b31d001bf7448b041927befae2ea5b1951d9f9","signature":false,"impliedFormat":1},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","signature":false,"impliedFormat":1},{"version":"d71291eff1e19d8762a908ba947e891af44749f3a2cbc5bd2ec4b72f72ea795f","signature":false,"impliedFormat":1},{"version":"c0480e03db4b816dff2682b347c95f2177699525c54e7e6f6aa8ded890b76be7","signature":false,"impliedFormat":1},{"version":"25a5f6fd3a2243c859eddc99ab5fba11d970af2fe7a5df9c32b7668f76f97b01","signature":false,"impliedFormat":1},{"version":"8d207e1f9d2c30d6f77dfa693f3827c3fbf0d89240297e10bdfe1041d433df68","signature":false,"impliedFormat":1},{"version":"b620391fe8060cf9bedc176a4d01366e6574d7a71e0ac0ab344a4e76576fcbb8","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"2652448ac55a2010a1f71dd141f828b682298d39728f9871e1cdf8696ef443fd","signature":false,"impliedFormat":1},{"version":"d682336018141807fb602709e2d95a192828fcb8d5ba06dda3833a8ea98f69e3","signature":false,"impliedFormat":1},{"version":"6124e973eab8c52cabf3c07575204efc1784aca6b0a30c79eb85fe240a857efa","signature":false,"impliedFormat":1},{"version":"0d891735a21edc75df51f3eb995e18149e119d1ce22fd40db2b260c5960b914e","signature":false,"impliedFormat":1},{"version":"3b414b99a73171e1c4b7b7714e26b87d6c5cb03d200352da5342ab4088a54c85","signature":false,"impliedFormat":1},{"version":"4fbd3116e00ed3a6410499924b6403cc9367fdca303e34838129b328058ede40","signature":false,"impliedFormat":1},{"version":"9c82171d836c47486074e4ca8e059735bf97b205e70b196535b5efd40cbe1bc5","signature":false,"impliedFormat":1},{"version":"8c70ddc0c22d85e56011d49fddfaae3405eb53d47b59327b9dd589e82df672e7","signature":false,"impliedFormat":1},{"version":"2f9c89cbb29d362290531b48880a4024f258c6033aaeb7e59fbc62db26819650","signature":false,"impliedFormat":1},{"version":"a365c4d3bed3be4e4e20793c999c51f5cd7e6792322f14650949d827fbcd170f","signature":false,"impliedFormat":1},{"version":"c5426dbfc1cf90532f66965a7aa8c1136a78d4d0f96d8180ecbfc11d7722f1a5","signature":false,"impliedFormat":1},{"version":"65a15fc47900787c0bd18b603afb98d33ede930bed1798fc984d5ebb78b26cf9","signature":false,"impliedFormat":1},{"version":"9d202701f6e0744adb6314d03d2eb8fc994798fc83d91b691b75b07626a69801","signature":false,"impliedFormat":1},{"version":"de9d2df7663e64e3a91bf495f315a7577e23ba088f2949d5ce9ec96f44fba37d","signature":false,"impliedFormat":1},{"version":"c7af78a2ea7cb1cd009cfb5bdb48cd0b03dad3b54f6da7aab615c2e9e9d570c5","signature":false,"impliedFormat":1},{"version":"1ee45496b5f8bdee6f7abc233355898e5bf9bd51255db65f5ff7ede617ca0027","signature":false,"impliedFormat":1},{"version":"273782b8454e78f6a8b30d2cfbf6860499c930595095fcc1689637115f0eddda","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3fbdd025f9d4d820414417eeb4107ffa0078d454a033b506e22d3a23bc3d9c41","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"dba114fb6a32b355a9cfc26ca2276834d72fe0e94cd2c3494005547025015369","signature":false,"impliedFormat":1},{"version":"a8f8e6ab2fa07b45251f403548b78eaf2022f3c2254df3dc186cb2671fe4996d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"fa6c12a7c0f6b84d512f200690bfc74819e99efae69e4c95c4cd30f6884c526e","signature":false,"impliedFormat":1},{"version":"f1c32f9ce9c497da4dc215c3bc84b722ea02497d35f9134db3bb40a8d918b92b","signature":false,"impliedFormat":1},{"version":"b73c319af2cc3ef8f6421308a250f328836531ea3761823b4cabbd133047aefa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e433b0337b8106909e7953015e8fa3f2d30797cea27141d1c5b135365bb975a6","signature":false,"impliedFormat":1},{"version":"9f9bb6755a8ce32d656ffa4763a8144aa4f274d6b69b59d7c32811031467216e","signature":false,"impliedFormat":1},{"version":"5c32bdfbd2d65e8fffbb9fbda04d7165e9181b08dad61154961852366deb7540","signature":false,"impliedFormat":1},{"version":"ddff7fc6edbdc5163a09e22bf8df7bef75f75369ebd7ecea95ba55c4386e2441","signature":false,"impliedFormat":1},{"version":"0c05e9842ec4f8b7bfebfd3ca61604bb8c914ba8da9b5337c4f25da427a005f2","signature":false,"impliedFormat":1},{"version":"faed7a5153215dbd6ebe76dfdcc0af0cfe760f7362bed43284be544308b114cf","signature":false,"impliedFormat":1},{"version":"7029e566b8df176f703fb59fd437a38670c7a0e02c58b2d66dfb5b2e2b2defdb","signature":false,"impliedFormat":1},{"version":"7f2aa4d4989a82530aaac3f72b3dceca90e9c25bee0b1a327e8a08a1262435ad","signature":false,"impliedFormat":1},{"version":"d96b39301d0ded3f1a27b47759676a33a02f6f5049bfcbde81e533fd10f50dcb","signature":false,"impliedFormat":1},{"version":"e9f147ecca73d9346a4c073432843c159ccbe50bdcb678a78f6da10eae2cecf4","signature":false,"impliedFormat":1},{"version":"de061f7d72bd65c06fc1419f841dfdcb29a8e22fe6fa527d1e6eb20b897d4de0","signature":false,"impliedFormat":1},{"version":"663beafc2446079574570cba86e9b15f986f908ddb1b01274509970126fee945","signature":false,"impliedFormat":1},{"version":"a3102887d5058bf4cb5b37fa6964c09e9527c42053b3b5c642b89878620748de","signature":false,"impliedFormat":1},{"version":"0aaaa1727edd29673d85c9b26d7ca4d54e5407a48586903c51b48b7f7d196f61","signature":false,"impliedFormat":1},{"version":"d35bca0b261bff02635758c48e8ab99c61c420d0dfabbcf467e847171d876b7d","signature":false,"impliedFormat":1},{"version":"3bc12c40d90c342ff88a3d876996c555ed5cbee5fe8c3308a240b321f401ee46","signature":false,"impliedFormat":1},{"version":"ba130768aae855a5477e9e148e5c879548e6e7ccbcc56fd1934c8a18ea5b7569","signature":false,"impliedFormat":1},{"version":"2e4f37ffe8862b14d8e24ae8763daaa8340c0df0b859d9a9733def0eee7562d9","signature":false,"impliedFormat":1},{"version":"d38530db0601215d6d767f280e3a3c54b2a83b709e8d9001acb6f61c67e965fc","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"b499af2054a037a162b3b72cd886f48bbf32a3502c865c6e29fac7d2ab3ce0b5","signature":false,"impliedFormat":1},{"version":"b83cb14474fa60c5f3ec660146b97d122f0735627f80d82dd03e8caa39b4388c","signature":false,"impliedFormat":1},{"version":"48773ca557b0319c2ee62ae249cf52a81709e8be139920d6479a66274de7c4ed","signature":false,"impliedFormat":1},{"version":"7274fbffbd7c9589d8d0ffba68157237afd5cecff1e99881ea3399127e60572f","signature":false,"impliedFormat":1},{"version":"b73cbf0a72c8800cf8f96a9acfe94f3ad32ca71342a8908b8ae484d61113f647","signature":false,"impliedFormat":1},{"version":"bae6dd176832f6423966647382c0d7ba9e63f8c167522f09a982f086cd4e8b23","signature":false,"impliedFormat":1},{"version":"20865ac316b8893c1a0cc383ccfc1801443fbcc2a7255be166cf90d03fac88c9","signature":false,"impliedFormat":1},{"version":"c9958eb32126a3843deedda8c22fb97024aa5d6dd588b90af2d7f2bfac540f23","signature":false,"impliedFormat":1},{"version":"461d0ad8ae5f2ff981778af912ba71b37a8426a33301daa00f21c6ccb27f8156","signature":false,"impliedFormat":1},{"version":"e927c2c13c4eaf0a7f17e6022eee8519eb29ef42c4c13a31e81a611ab8c95577","signature":false,"impliedFormat":1},{"version":"fcafff163ca5e66d3b87126e756e1b6dfa8c526aa9cd2a2b0a9da837d81bbd72","signature":false,"impliedFormat":1},{"version":"70246ad95ad8a22bdfe806cb5d383a26c0c6e58e7207ab9c431f1cb175aca657","signature":false,"impliedFormat":1},{"version":"f00f3aa5d64ff46e600648b55a79dcd1333458f7a10da2ed594d9f0a44b76d0b","signature":false,"impliedFormat":1},{"version":"772d8d5eb158b6c92412c03228bd9902ccb1457d7a705b8129814a5d1a6308fc","signature":false,"impliedFormat":1},{"version":"802e797bcab5663b2c9f63f51bdf67eff7c41bc64c0fd65e6da3e7941359e2f7","signature":false,"impliedFormat":1},{"version":"b01bd582a6e41457bc56e6f0f9de4cb17f33f5f3843a7cf8210ac9c18472fb0f","signature":false,"impliedFormat":1},{"version":"8b4327413e5af38cd8cb97c59f48c3c866015d5d642f28518e3a891c469f240e","signature":false,"impliedFormat":1},{"version":"4cceef18d7f088e797a463e90b7a9dad10c6bc667724b7686e3e740ae00122be","signature":false,"impliedFormat":1},{"version":"7ee86fbb3754388e004de0ef9e6505485ddfb3be7640783d6d015711c03d302d","signature":false,"impliedFormat":1},{"version":"cc1954b539604b1e562319119ac7e888172208b32ca873f9a357a92c826bd046","signature":false,"impliedFormat":1},{"version":"a67b87d0281c97dfc1197ef28dfe397fc2c865ccd41f7e32b53f647184cc7307","signature":false,"impliedFormat":1},{"version":"771ffb773f1ddd562492a6b9aaca648192ac3f056f0e1d997678ff97dbb6bf9b","signature":false,"impliedFormat":1},{"version":"43e96a3d5d1411ab40ba2f61d6a3192e58177bcf3b133a80ad2a16591611726d","signature":false,"impliedFormat":1},{"version":"232f70c0cf2b432f3a6e56a8dc3417103eb162292a9fd376d51a3a9ea5fbbf6f","signature":false,"impliedFormat":1},{"version":"bb8f2dbc03533abca2066ce4655c119bff353dd4514375beb93c08590c03e023","signature":false,"impliedFormat":1},{"version":"706dd95827e7ebaabda91d5db2b755233e0952d98570e9c032b0f066a15c1177","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0b103e9abfe82d14c0ad06a55d9f91d6747154ef7cacc73cf27ecad2bfb3afcf","signature":false,"impliedFormat":1},{"version":"cd9304972e6d616197fb44fce00540a904f38b54306a1951b5dbeaf3c01ab5bd","signature":false,"impliedFormat":1},{"version":"77438e2c397a3db78407621cfc57241a305b310ddea2c185f1d555248297f587","signature":false,"impliedFormat":1},{"version":"120599fd965257b1f4d0ff794bc696162832d9d8467224f4665f713a3119078b","signature":false,"impliedFormat":1},{"version":"43ba4f2fa8c698f5c304d21a3ef596741e8e85a810b7c1f9b692653791d8d97a","signature":false,"impliedFormat":1},{"version":"5433f33b0a20300cca35d2f229a7fc20b0e8477c44be2affeb21cb464af60c76","signature":false,"impliedFormat":1},{"version":"db036c56f79186da50af66511d37d9fe77fa6793381927292d17f81f787bb195","signature":false,"impliedFormat":1},{"version":"a6805fcafed712aea7759f8bc731014f9d22738c1d6ef9d43b8091d1d48346d5","signature":false,"impliedFormat":1},{"version":"c49469a5349b3cc1965710b5b0f98ed6c028686aa8450bcb3796728873eb923e","signature":false,"impliedFormat":1},{"version":"4a889f2c763edb4d55cb624257272ac10d04a1cad2ed2948b10ed4a7fda2a428","signature":false,"impliedFormat":1},{"version":"7bb79aa2fead87d9d56294ef71e056487e848d7b550c9a367523ee5416c44cfa","signature":false,"impliedFormat":1},{"version":"d88ea80a6447d7391f52352ec97e56b52ebec934a4a4af6e2464cfd8b39c3ba8","signature":false,"impliedFormat":1},{"version":"142617b3cdf902b69c6464c9fbd942b60ab3e733ca18c032b19e0f7e2adbefe8","signature":false,"impliedFormat":1},{"version":"0b603555f1881f87256ffd6344d3e3ed6d466c2e701eabf381f28be8c2125892","signature":false,"impliedFormat":1},{"version":"897e4f7662488e3ecc79e743bdd3b78f13bdb69a97851afa5b440c4211e32ea9","signature":false,"impliedFormat":1},{"version":"e2e1c6d3b2d93add5200bd7bc1a8cccb4e446836b2111ece45db8683a2c765de","signature":false,"impliedFormat":1},{"version":"251b03d5cd243854ce870d9a9a39f491faf69898c5d6b5eee28cc7649c57417b","signature":false,"impliedFormat":1},{"version":"27ff4196654e6373c9af16b6165120e2dd2169f9ad6abb5c935af5abd8c7938c","signature":false,"impliedFormat":1},{"version":"2c4de79f406d137390608e8c0a44fba2ff8e00bacfcae7c9d1781fef10e9440d","signature":false,"impliedFormat":1},{"version":"07ba23a10465791be5d22deaf5ef7de7658774ddff53721e5ea17fedea1bc721","signature":false,"impliedFormat":1},{"version":"dca8c645c5afeb03b1ecedbf16323f33e7d0afaa6256c8e047e6e38087a97f53","signature":false,"impliedFormat":1},{"version":"775f181bd4a533d6f8b5e55ec1d9f1624559720ae8a70e9432258da26b38d27c","signature":false,"impliedFormat":1},{"version":"796273b2edc72e78a04e86d7c58ae94d370ab93a0ddf40b1aa85a37a1c29ecd7","signature":false,"impliedFormat":1},{"version":"5df15a69187d737d6d8d066e189ae4f97e41f4d53712a46b2710ff9f8563ec9f","signature":false,"impliedFormat":1},{"version":"7715134a0cf07dd41a9da2895d708625a3a303a0385e355ecaaf0b8bfaef2550","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"622694a8522b46f6310c2a9b5d2530dde1e2854cb5829354e6d1ff8f371cf469","signature":false,"impliedFormat":1},{"version":"cd8ce8d68567f62dd580b3c3c37777ac3f5b81944c7417f5ea83030eab533385","signature":false,"impliedFormat":1},{"version":"e5c939d896565dcac0f6fbdbada11284e7728ef26a069561c09aa5aa4a788393","signature":false,"impliedFormat":1},{"version":"9e2739b32f741859263fdba0244c194ca8e96da49b430377930b8f721d77c000","signature":false,"impliedFormat":1},{"version":"a9e6c0ff3f8186fccd05752cf75fc94e147c02645087ac6de5cc16403323d870","signature":false,"impliedFormat":1},{"version":"49af4b52f0d4d2304c5f2c6fe5fab3e153e0acc38830d0202821b877c097dd02","signature":false,"impliedFormat":1},{"version":"49c346823ba6d4b12278c12c977fb3a31c06b9ca719015978cb145eb86da1c61","signature":false,"impliedFormat":1},{"version":"bfac6e50eaa7e73bb66b7e052c38fdc8ccfc8dbde2777648642af33cf349f7f1","signature":false,"impliedFormat":1},{"version":"92f7c1a4da7fbfd67a2228d1687d5c2e1faa0ba865a94d3550a3941d7527a45d","signature":false,"impliedFormat":1},{"version":"f53b120213a9289d9a26f5af90c4c686dd71d91487a0aa5451a38366c70dc64b","signature":false,"impliedFormat":1},{"version":"e68b8e5a1df7c1be2bc105141456ecba70215806e1c28bfbc5c12bfce4be6e68","signature":false,"impliedFormat":1},{"version":"511c8f02329808d47d00b859c532ae9115590048b17325a946c74dac48428650","signature":false,"impliedFormat":1},{"version":"57d67b72e06059adc5e9454de26bbfe567d412b962a501d263c75c2db430f40e","signature":false,"impliedFormat":1},{"version":"b5f9e66625783eefcbe3d2da074b2e7ba2066d61ce3fc6ef4f22805ad946cab4","signature":false,"impliedFormat":1},{"version":"e37115962d284b9f7a37c2bdd2add50f88365dde41f5e0ff591ffc48a8ec7575","signature":false,"impliedFormat":1},{"version":"6459054aabb306821a043e02b89d54da508e3a6966601a41e71c166e4ea1474f","signature":false,"impliedFormat":1},{"version":"bb37588926aba35c9283fe8d46ebf4e79ffe976343105f5c6d45f282793352b2","signature":false,"impliedFormat":1},{"version":"f89488602bec98a142072fae7ea5ba99431a569ff580c64b7be39896474799d8","signature":false,"impliedFormat":1},{"version":"bbbc47961f39a57df103cf4ca3bb8f8732b4b6678a18225a0aa76d59c466956c","signature":false,"impliedFormat":1},{"version":"2e6114a7dd6feeef85b2c80120fdbfb59a5529c0dcc5bfa8447b6996c97a69f5","signature":false,"impliedFormat":1},{"version":"2ffb043dc5163458e473b7010859f86e01dc4edffcae0a93d885d028b426a546","signature":false,"impliedFormat":1},{"version":"c8f004e6036aa1c764ad4ec543cf89a5c1893a9535c80ef3f2b653e370de45e6","signature":false,"impliedFormat":1},{"version":"dd80b1e600d00f5c6a6ba23f455b84a7db121219e68f89f10552c54ba46e4dc9","signature":false,"impliedFormat":1},{"version":"b064c36f35de7387d71c599bfcf28875849a1dbc733e82bd26cae3d1cd060521","signature":false,"impliedFormat":1},{"version":"05c7280d72f3ed26f346cbe7cbbbb002fb7f15739197cbbee6ab3fd1a6cb9347","signature":false,"impliedFormat":1},{"version":"8de9fe97fa9e00ec00666fa77ab6e91b35d25af8ca75dabcb01e14ad3299b150","signature":false,"impliedFormat":1},{"version":"04b7b2e0832dfd3c31e81df3975e8d8fda28e7ff999b0aa2932608a8f6661d5c","signature":false,"impliedFormat":1},{"version":"ca2d34c6ed5cbd3070b8b6f32f42ae54adcc6499c1e4b99f0a5798b3f27cc653","signature":false,"impliedFormat":1},{"version":"9ec68995e66dd6b9dac834bf5ae85fde802714ea2e82151a5d1d53ef01b463ef","signature":false,"impliedFormat":1},{"version":"5c4d626b4902f2ef8a1cc146d761d276cef988016dc674e3b98fbad70e64bc9f","signature":false,"impliedFormat":1},{"version":"fdfaa0aad899524962e2955287b5b991ffe3be50f64e02eb60c933ca44644a94","signature":false,"impliedFormat":1},{"version":"53c972a0f9bc3a4ec70fff7314123ea8cfcf75b3703046f767d2dc1eea87b2fb","signature":false,"impliedFormat":1},{"version":"f974e4a06953682a2c15d5bd5114c0284d5abf8bc0fe4da25cb9159427b70072","signature":false,"impliedFormat":1},{"version":"50256e9c31318487f3752b7ac12ff365c8949953e04568009c8705db802776fb","signature":false,"impliedFormat":1},{"version":"7d73b24e7bf31dfb8a931ca6c4245f6bb0814dfae17e4b60c9e194a631fe5f7b","signature":false,"impliedFormat":1},{"version":"d130c5f73768de51402351d5dc7d1b36eaec980ca697846e53156e4ea9911476","signature":false,"impliedFormat":1},{"version":"413586add0cfe7369b64979d4ec2ed56c3f771c0667fbde1bf1f10063ede0b08","signature":false,"impliedFormat":1},{"version":"06472528e998d152375ad3bd8ebcb69ff4694fd8d2effaf60a9d9f25a37a097a","signature":false,"impliedFormat":1},{"version":"7303b45138d2511035056a5901a1490ebdcbf055cbb1276f8629c5121cbe733e","signature":false,"impliedFormat":1},{"version":"27f874cd5327507eeff699a74567f60c1215b94509f4308633a7b01922471ed2","signature":false,"impliedFormat":1},{"version":"a401617604fa1f6ce437b81689563dfdc377069e4c58465dbd8d16069aede0a5","signature":false,"impliedFormat":1},{"version":"2c6cf04bc525caf6546e859e8ef10bfb9573837ec0bc5ec7b53a7b1b8ca72781","signature":false,"impliedFormat":1},{"version":"8695dec09ad439b0ceef3776ea68a232e381135b516878f0901ed2ea114fd0fe","signature":false,"impliedFormat":1},{"version":"304b44b1e97dd4c94697c3313df89a578dca4930a104454c99863f1784a54357","signature":false,"impliedFormat":1},{"version":"0a437ae178f999b46b6153d79095b60c42c996bc0458c04955f1c996dc68b971","signature":false,"impliedFormat":1},{"version":"74b2a5e5197bd0f2e0077a1ea7c07455bbea67b87b0869d9786d55104006784f","signature":false,"impliedFormat":1},{"version":"4a7baeb6325920044f66c0f8e5e6f1f52e06e6d87588d837bdf44feb6f35c664","signature":false,"impliedFormat":1},{"version":"87cc05fe13108f02e12da7e3efd8e360fef78d96a0c9e11408ea1b1b9fb3e03d","signature":false,"impliedFormat":1},{"version":"1abbf67c218d23c2ce76887caac2df6c7dab3d97ba2b65348432b876f510002a","signature":false,"impliedFormat":1},{"version":"1a82deef4c1d39f6882f28d275cad4c01f907b9b39be9cbc472fcf2cf051e05b","signature":false,"impliedFormat":1},{"version":"4b20fcf10a5413680e39f5666464859fc56b1003e7dfe2405ced82371ebd49b6","signature":false,"impliedFormat":1},{"version":"c06ef3b2569b1c1ad99fcd7fe5fba8d466e2619da5375dfa940a94e0feea899b","signature":false,"impliedFormat":1},{"version":"f7d628893c9fa52ba3ab01bcb5e79191636c4331ee5667ecc6373cbccff8ae12","signature":false,"impliedFormat":1},{"version":"1d879125d1ec570bf04bc1f362fdbe0cb538315c7ac4bcfcdf0c1e9670846aa6","signature":false,"impliedFormat":1},{"version":"dad97c99382889e9c7d1a9d8275500ff71235130fae9f8916fdbf3641d56e592","signature":false,"impliedFormat":1},{"version":"a6dba407fc287f1e25454e75028c91bbc00675f2d1c4e8b3edcc36c08611a486","signature":false,"impliedFormat":1},{"version":"d663134457d8d669ae0df34eabd57028bddc04fc444c4bc04bc5215afc91e1f4","signature":false,"impliedFormat":1},{"version":"e91f7b1344577a02f051b9b471f33044fef8334a76dc9e1de003d17595a5219b","signature":false,"impliedFormat":1},{"version":"c0723195c85e19656d6b5b9fdb81d3f3403c1ae4679e722c6ea058c516b38d12","signature":false,"impliedFormat":1},{"version":"b55eb9f72166093b5460d34b34f5d8699c968de3bc3fc696e40f2c93f2ebf650","signature":false,"impliedFormat":1},{"version":"71d9eb4c4e99456b78ae182fb20a5dfc20eb1667f091dbb9335b3c017dd1c783","signature":false,"impliedFormat":1},{"version":"cfa846a7b7847a1d973605fbb8c91f47f3a0f0643c18ac05c47077ebc72e71c7","signature":false,"impliedFormat":1},{"version":"1594da19968752a22b2ac48c2d0e60575700e745c577a8a4a676b841238ad5bb","signature":false,"impliedFormat":1},{"version":"e0cee12109e0a10a4c3d6769fcc7644b7c1ea7f52365bea51728f5af29f8a137","signature":false,"impliedFormat":1},{"version":"7d4254b4c6c67a29d5e7f65e67d72540480ac2cfb041ca484847f5ae70480b62","signature":false,"impliedFormat":1},{"version":"3536968defef8a75514f547ead5e2e9c1e984820290ec9b00c5fdfb6ef786535","signature":false,"impliedFormat":1},{"version":"d83773870080c30a230e322ce13a9c6f3398e8dacea4ea8a83e26370f3bac23e","signature":false,"impliedFormat":1},{"version":"dcfeaf98d66314fec29a9076c4290e45d0b196a65827becc19138e9c7b855f37","signature":false,"impliedFormat":1},{"version":"6849fe9210fe4946d5f085bfed36758f33dc6ae15a751338d178dd4daa017c46","signature":false,"impliedFormat":1},{"version":"888cda0fa66d7f74e985a3f7b1af1f64b8ff03eb3d5e80d051c3cbdeb7f32ab7","signature":false,"impliedFormat":1},{"version":"60681e13f3545be5e9477acb752b741eae6eaf4cc01658a25ec05bff8b82a2ef","signature":false,"impliedFormat":1},{"version":"ffae4e1e06aa848a1e4bcef162cd1c48e5909b26223515981310af9c036bdfc7","signature":false,"impliedFormat":1},{"version":"a57b1802794433adec9ff3fed12aa79d671faed86c49b09e02e1ac41b4f1d33a","signature":false,"impliedFormat":1},{"version":"34e16eb7c31768a11a08aebcfb3d70d7b8f0b016197e98d8419e566ceae6d6c8","signature":false,"impliedFormat":1},{"version":"f94ec1f7e4b709d26960306c9082a7a1b728a6e13089346aa48ba57c74cbf47e","signature":false,"impliedFormat":1},{"version":"9a11cb4033405e96c247cd5aa29790212aaffdd127869e8a5219103f0b389fd5","signature":false,"impliedFormat":1},{"version":"01479d9d5a5dda16d529b91811375187f61a06e74be294a35ecce77e0b9e8d6c","signature":false,"impliedFormat":1},{"version":"aff5213585cb72e94054dfe17250ff315f3569b3919d1ef1ad235f37c4ee894e","signature":false,"impliedFormat":1},{"version":"fb2ea35e1be6388d722d7725e2b49c697d34d9c890c3b96758faaeb86d35cef8","signature":false,"impliedFormat":1},{"version":"ce0df82a9ae6f914ba08409d4d883983cc08e6d59eb2df02d8e4d68309e7848b","signature":false,"impliedFormat":1},{"version":"1a4dc28334a926d90ba6a2d811ba0ff6c22775fcc13679521f034c124269fd40","signature":false,"impliedFormat":1},{"version":"f05315ff85714f0b87cc0b54bcd3dde2716e5a6b99aedcc19cad02bf2403e08c","signature":false,"impliedFormat":1},{"version":"5fad3b31fc17a5bc58095118a8b160f5260964787c52e7eb51e3d4fcf5d4a6f0","signature":false,"impliedFormat":1},{"version":"72105519d0390262cf0abe84cf41c926ade0ff475d35eb21307b2f94de985778","signature":false,"impliedFormat":1},{"version":"456006a6975b26c0a1785feddae165f6d307e2d601ffde27e21fc4a790e448a4","signature":false,"impliedFormat":1},{"version":"c857e0aae3f5f444abd791ec81206020fbcc1223e187316677e026d1c1d6fe08","signature":false,"impliedFormat":1},{"version":"ccf6dd45b708fb74ba9ed0f2478d4eb9195c9dfef0ff83a6092fa3cf2ff53b4f","signature":false,"impliedFormat":1},{"version":"1fe0d18b111e1145a7e7601855bccd4ca20f24e3b9a5aba6bb1fa9d1a7059170","signature":false,"impliedFormat":1},{"version":"5632c3c26d420c063eebe64c45b1248b9492a67bf44f1d0c57e9dc8f6cf449bb","signature":false,"impliedFormat":1},{"version":"0df5aa619ab12993a39ea6dae062ee46eadbb4d738916460e636ada52bced75b","signature":false,"impliedFormat":1},{"version":"8fca3039857709484e5893c05c1f9126ab7451fa6c29e19bb8c2411a2e937345","signature":false,"impliedFormat":1},{"version":"35069c2c417bd7443ae7c7cafd1de02f665bf015479fec998985ffbbf500628c","signature":false,"impliedFormat":1},{"version":"10ab7be91f87ebe8916b62cf28af2e45b5601fc7b0e311adf838f912c6b31dd8","signature":false,"impliedFormat":1},{"version":"bc636fbc08e0979ceb7eb0731a33000283d77a33b62e1f71ee65be50394e40ba","signature":false,"impliedFormat":1},{"version":"7e0b7f91c5ab6e33f511efc640d36e6f933510b11be24f98836a20a2dc914c2d","signature":false,"impliedFormat":1},{"version":"045b752f44bf9bbdcaffd882424ab0e15cb8d11fa94e1448942e338c8ef19fba","signature":false,"impliedFormat":1},{"version":"2894c56cad581928bb37607810af011764a2f511f575d28c9f4af0f2ef02d1ab","signature":false,"impliedFormat":1},{"version":"0a72186f94215d020cb386f7dca81d7495ab6c17066eb07d0f44a5bf33c1b21a","signature":false,"impliedFormat":1},{"version":"75bbd3be047d539988a0ff0b56384ef7a6a25f3b676ad96bee547d44c31622a7","signature":false,"impliedFormat":1},{"version":"42960001a776b089ade681ab5cfddc936e0afb0615133ec1841f3dee89d3e1bf","signature":false,"impliedFormat":1},{"version":"0aedb02516baf3e66b2c1db9fef50666d6ed257edac0f866ea32f1aa05aa474f","signature":false,"impliedFormat":1},{"version":"da47712b394d944328245482603bc6f416d3949b67c9392279caab595076b510","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"37d0071d8f0a06dc55c2c5e0ec3391affd4fd107c53410bf358196ec0bf3923f","signature":false,"impliedFormat":1},{"version":"b213dad76ca37fd552274c9499056e1c0d9c1bd38a55bb7f68b22ba6b84c3ad7","signature":false,"impliedFormat":1},{"version":"c30436b130b6218b7714314dc41d3f459590db4bdf099eecd51cb1bda32109a8","signature":false,"impliedFormat":1},{"version":"20fa37b636fdcc1746ea0738f733d0aed17890d1cd7cb1b2f37010222c23f13e","signature":false,"impliedFormat":1},{"version":"d90b9f1520366d713a73bd30c5a9eb0040d0fb6076aff370796bc776fd705943","signature":false,"impliedFormat":1},{"version":"bc03c3c352f689e38c0ddd50c39b1e65d59273991bfc8858a9e3c0ebb79c023b","signature":false,"impliedFormat":1},{"version":"19df3488557c2fc9b4d8f0bac0fd20fb59aa19dec67c81f93813951a81a867f8","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b25350193e103ae90423c5418ddb0ad1168dc9c393c9295ef34980b990030617","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"bef86adb77316505c6b471da1d9b8c9e428867c2566270e8894d4d773a1c4dc2","signature":false,"impliedFormat":1},{"version":"5a49adaef698b7ad7e6127949fa1b0bbd3d46b7cbd11c54e392a4dcdd51f5190","signature":false,"impliedFormat":1},{"version":"6ee598cdfdd0fa52039dca135b3dfff7b49035dc13292143e0a93843e3861967","signature":false,"impliedFormat":1},{"version":"27be6622e2922a1b412eb057faa854831b95db9db5035c3f6d4b677b902ab3b7","signature":false,"impliedFormat":1},{"version":"5c634644d45a1b6bc7b05e71e05e52ec04f3d73d9ac85d5927f647a5f965181a","signature":false,"impliedFormat":1},{"version":"2489bf04d77dc025ba67f49f1a56eb24b9db477d5ff88123d887e163ed1776aa","signature":false,"impliedFormat":1},{"version":"63a7595a5015e65262557f883463f934904959da563b4f788306f699411e9bac","signature":false,"impliedFormat":1},{"version":"4ba137d6553965703b6b55fd2000b4e07ba365f8caeb0359162ad7247f9707a6","signature":false,"impliedFormat":1},{"version":"0b77b819b5417775fccb20c678293cf614c054a5b1a65421a5b933a9124ba998","signature":false,"impliedFormat":1},{"version":"eb5acb58487367e502d994b57e2c58255d8241f481ea8efa8e79af23af3f41c2","signature":false,"impliedFormat":1},{"version":"9252d498a77517aab5d8d4b5eb9d71e4b225bbc7123df9713e08181de63180f6","signature":false,"impliedFormat":1},{"version":"b1f1d57fde8247599731b24a733395c880a6561ec0c882efaaf20d7df968c5af","signature":false,"impliedFormat":1},{"version":"f1f4095f04343ad6e6825eba41eb50f1555685560dde164179a467e65c4a921c","signature":false,"impliedFormat":1},{"version":"35e6379c3f7cb27b111ad4c1aa69538fd8e788ab737b8ff7596a1b40e96f4f90","signature":false,"impliedFormat":1},{"version":"1fffe726740f9787f15b532e1dc870af3cd964dbe29e191e76121aa3dd8693f2","signature":false,"impliedFormat":1},{"version":"5a3ea721d03a361ccbdd7390ccd75f6e84cbca3a3f01f4b331ecc9af31890c49","signature":false,"impliedFormat":1},{"version":"e7dfaee4af38d45b1cab8a1ee0b3bc1f85ddcf64545ed391d675d78ae6526274","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e8daa443eaf9a27fd382cc1f8ebe30330c0f4d89511cfb469166874806751d35","signature":false,"impliedFormat":1},{"version":"af48e58339188d5737b608d41411a9c054685413d8ae88b8c1d0d9bfabdf6e7e","signature":false,"impliedFormat":1},{"version":"616775f16134fa9d01fc677ad3f76e68c051a056c22ab552c64cc281a9686790","signature":false,"impliedFormat":1},{"version":"65c24a8baa2cca1de069a0ba9fba82a173690f52d7e2d0f1f7542d59d5eb4db0","signature":false,"impliedFormat":1},{"version":"f9fe6af238339a0e5f7563acee3178f51db37f32a2e7c09f85273098cee7ec49","signature":false,"impliedFormat":1},{"version":"1de8c302fd35220d8f29dea378a4ae45199dc8ff83ca9923aca1400f2b28848a","signature":false,"impliedFormat":1},{"version":"77e71242e71ebf8528c5802993697878f0533db8f2299b4d36aa015bae08a79c","signature":false,"impliedFormat":1},{"version":"98a787be42bd92f8c2a37d7df5f13e5992da0d967fab794adbb7ee18370f9849","signature":false,"impliedFormat":1},{"version":"332248ee37cca52903572e66c11bef755ccc6e235835e63d3c3e60ddda3e9b93","signature":false,"impliedFormat":1},{"version":"94e8cc88ae2ef3d920bb3bdc369f48436db123aa2dc07f683309ad8c9968a1e1","signature":false,"impliedFormat":1},{"version":"4545c1a1ceca170d5d83452dd7c4994644c35cf676a671412601689d9a62da35","signature":false,"impliedFormat":1},{"version":"320f4091e33548b554d2214ce5fc31c96631b513dffa806e2e3a60766c8c49d9","signature":false,"impliedFormat":1},{"version":"a2d648d333cf67b9aeac5d81a1a379d563a8ffa91ddd61c6179f68de724260ff","signature":false,"impliedFormat":1},{"version":"d90d5f524de38889d1e1dbc2aeef00060d779f8688c02766ddb9ca195e4a713d","signature":false,"impliedFormat":1},{"version":"07ed3ddab975995eea41b22f3010506fb9f5fb301d04820b07d7a1aee5477d7c","signature":false,"impliedFormat":1},{"version":"969d8b0965849f4bae7cab0ba90bd1e1220e95999c2c6f01117fa7500901c017","signature":false,"impliedFormat":1},{"version":"6ec840ee5e2bc103f557fe38b1d585ee250540468713d7634ee066de372bf332","signature":false,"impliedFormat":1},{"version":"b0309e1eda99a9e76f87c18992d9c3689b0938266242835dd4611f2b69efe456","signature":false,"impliedFormat":1},{"version":"47699512e6d8bebf7be488182427189f999affe3addc1c87c882d36b7f2d0b0e","signature":false,"impliedFormat":1},{"version":"6ceb10ca57943be87ff9debe978f4ab73593c0c85ee802c051a93fc96aaf7a20","signature":false,"impliedFormat":1},{"version":"1de3ffe0cc28a9fe2ac761ece075826836b5a02f340b412510a59ba1d41a505a","signature":false,"impliedFormat":1},{"version":"e46d6cc08d243d8d0d83986f609d830991f00450fb234f5b2f861648c42dc0d8","signature":false,"impliedFormat":1},{"version":"1c0a98de1323051010ce5b958ad47bc1c007f7921973123c999300e2b7b0ecc0","signature":false,"impliedFormat":1},{"version":"ff863d17c6c659440f7c5c536e4db7762d8c2565547b2608f36b798a743606ca","signature":false,"impliedFormat":1},{"version":"5412ad0043cd60d1f1406fc12cb4fb987e9a734decbdd4db6f6acf71791e36fe","signature":false,"impliedFormat":1},{"version":"ad036a85efcd9e5b4f7dd5c1a7362c8478f9a3b6c3554654ca24a29aa850a9c5","signature":false,"impliedFormat":1},{"version":"fedebeae32c5cdd1a85b4e0504a01996e4a8adf3dfa72876920d3dd6e42978e7","signature":false,"impliedFormat":1},{"version":"e297c0a524edee7677939122f90027bfbe5f2698939d9a85728e5044b39c7124","signature":false,"impliedFormat":1},{"version":"cdf21eee8007e339b1b9945abf4a7b44930b1d695cc528459e68a3adc39a622e","signature":false,"impliedFormat":1},{"version":"bc9ee0192f056b3d5527bcd78dc3f9e527a9ba2bdc0a2c296fbc9027147df4b2","signature":false,"impliedFormat":1},{"version":"b62381cae176db34f003cc6172ee8f3e0122014889d66391aa73698105cf4934","signature":false,"impliedFormat":1},{"version":"1d9c0a9a6df4e8f29dc84c25c5aa0bb1da5456ebede7a03e03df08bb8b27bae6","signature":false,"impliedFormat":1},{"version":"84380af21da938a567c65ef95aefb5354f676368ee1a1cbb4cae81604a4c7d17","signature":false,"impliedFormat":1},{"version":"1af3e1f2a5d1332e136f8b0b95c0e6c0a02aaabd5092b36b64f3042a03debf28","signature":false,"impliedFormat":1},{"version":"30d8da250766efa99490fc02801047c2c6d72dd0da1bba6581c7e80d1d8842a4","signature":false,"impliedFormat":1},{"version":"03566202f5553bd2d9de22dfab0c61aa163cabb64f0223c08431fb3fc8f70280","signature":false,"impliedFormat":1},{"version":"41eb514d9ce0a6e87957f08a4b7af70d93f87637f37dee706e2d92a6601c25a9","signature":false,"impliedFormat":1},{"version":"e7765aa8bcb74a38b3230d212b4547686eb9796621ffb4367a104451c3f9614f","signature":false,"impliedFormat":1},{"version":"1de80059b8078ea5749941c9f863aa970b4735bdbb003be4925c853a8b6b4450","signature":false,"impliedFormat":1},{"version":"1d079c37fa53e3c21ed3fa214a27507bda9991f2a41458705b19ed8c2b61173d","signature":false,"impliedFormat":1},{"version":"5bf5c7a44e779790d1eb54c234b668b15e34affa95e78eada73e5757f61ed76a","signature":false,"impliedFormat":1},{"version":"5835a6e0d7cd2738e56b671af0e561e7c1b4fb77751383672f4b009f4e161d70","signature":false,"impliedFormat":1},{"version":"4b7f74b772140395e7af67c4841be1ab867c11b3b82a51b1aeb692822b76c872","signature":false,"impliedFormat":1},{"version":"7bd01f0f28cd3aeb2046274d85208e245965f6f2948edf4f7b2057bcf9f22ccc","signature":false,"impliedFormat":99},{"version":"d2f2cf2b8cc92bea913cda4a076e0f790b23a21e84f989d12f0116a7fe3906e0","signature":false,"impliedFormat":99},{"version":"6de125ea94866c736c6d58d68eb15272cf7d1020a5b459fea1c660027eca9a90","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f5b20bc288ee49989c95b20847fc93b96bf61cc0845598897a6a53a967dd7d07","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"064ac1c2ac4b2867c2ceaa74bbdce0cb6a4c16e7c31a6497097159c18f74aa7c","signature":false,"impliedFormat":1},{"version":"3dc14e1ab45e497e5d5e4295271d54ff689aeae00b4277979fdd10fa563540ae","signature":false,"impliedFormat":1},{"version":"d3b315763d91265d6b0e7e7fa93cfdb8a80ce7cdd2d9f55ba0f37a22db00bdb8","signature":false,"impliedFormat":1},{"version":"b789bf89eb19c777ed1e956dbad0925ca795701552d22e68fd130a032008b9f9","signature":false,"impliedFormat":1},{"version":"edb84c20047c79799d21125532b5db923d191c9a5c3960e839921b55d798792e","signature":false,"affectsGlobalScope":true},{"version":"7b550dda9686c16f36a17bf9051d5dbf31e98555b30d114ac49fc49a1e712651","signature":false},{"version":"39b291bd5573a774ce84578c0504210bd26ff8592b6c39840665ab4c7ab0ab28","signature":false},{"version":"b0f524110629cb347d8933e49f5d13f642c5e239286ed7aba382161ba9e4c605","signature":false},{"version":"e0f27c149a0cd92e5d8c6f18b8838fe5e69f509635bed9ff5fd669f68013c99a","signature":false},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","signature":false,"impliedFormat":1},{"version":"52dcc257df5119fb66d864625112ce5033ac51a4c2afe376a0b299d2f7f76e4a","signature":false,"impliedFormat":1},{"version":"e5bab5f871ef708d52d47b3e5d0aa72a08ee7a152f33931d9a60809711a2a9a3","signature":false,"impliedFormat":1},{"version":"e16dc2a81595736024a206c7d5c8a39bfe2e6039208ef29981d0d95434ba8fcf","signature":false,"impliedFormat":1},{"version":"cc4a4903fb698ca1d961d4c10dce658aa3a479faf40509d526f122b044eaf6a4","signature":false,"impliedFormat":1},{"version":"19ee8416e6473ed6c7adb868fa796b5653cf0fa2a337658e677eaa0d134388c3","signature":false,"impliedFormat":1},{"version":"1328ab4e442614b28cdb3d4b414cf68325c0da0dca07287a338d0654b7a00261","signature":false,"impliedFormat":1},{"version":"a039dc21f045919f3cbee2ec13812cc6cc3eebc99dae4be00973230f468d19a6","signature":false,"impliedFormat":1},{"version":"3fbe57af01460e49dcd29df55d6931e1672bc6f1be0fb073d11410bc16f9037d","signature":false,"impliedFormat":1},{"version":"f760be449e8562ec5c09bb5187e8e1eabf3c113c0c58cddda53ef8c69f3e2131","signature":false,"impliedFormat":1},{"version":"44325ed13294fce6ab825b82947bbeed2611db7dad9d9135260192f375e5a189","signature":false,"impliedFormat":1},{"version":"e392e8fb5b514eafc585601c1d781485aa6dd6a320e75daf1064a4c6918a1b45","signature":false,"impliedFormat":1},{"version":"46e4a36e8ddbdfb4e7330e11c81c970dc8b218611df9183d39c41c5f8c653b55","signature":false,"impliedFormat":1},{"version":"370bde134aa8c2abc926d0e99d3a4d5d5dba65c6ee65459137e4f02670cbf841","signature":false,"impliedFormat":1},{"version":"6332f565867cf4a740a70e30f31cefba37ef7cebcf74f22eab8d744fde6d193e","signature":false,"impliedFormat":1},{"version":"2977b7884aedc895a1d0c9c210c7cf3272c29d6959a08a6fa3ff71e0aff08175","signature":false,"impliedFormat":1},{"version":"17f2922d41ddd032830a91371c948cd9ce903b35c95adca72271a54584f19b0b","signature":false,"impliedFormat":1},{"version":"3eed76ede2a1a14d7c9bb0a642041282dcc264811139d3dd275c9fe14efc9840","signature":false,"impliedFormat":1},{"version":"e3cf0611709328b449ec13f8c436712d62003620ce480139fae46ce001c2ee9f","signature":false,"impliedFormat":1},{"version":"8d369483f0c2b9ee388129cfdb6a43bc8112b377e86a41884bd06e19ce04f4c1","signature":false,"impliedFormat":99},{"version":"b558c9a18ea4e6e4157124465c3ef1063e64640da139e67be5edb22f534f2f08","signature":false,"impliedFormat":1},{"version":"01374379f82be05d25c08d2f30779fa4a4c41895a18b93b33f14aeef51768692","signature":false,"impliedFormat":1},{"version":"b0dee183d4e65cf938242efaf3d833c6b645afb35039d058496965014f158141","signature":false,"impliedFormat":1},{"version":"c0bbbf84d3fbd85dd60d040c81e8964cc00e38124a52e9c5dcdedf45fea3f213","signature":false,"impliedFormat":1},{"version":"2f4107ea41ee463f1a630c31f89280fdf894e83f63d7d1ea1582a78fb479d87d","signature":false},{"version":"d1906262319846475cc1d67d8fdf25a32f05d7efaceae4c16c06e83b6f830e77","signature":false},{"version":"3be1508e900bed75064c05ae21fd5d838a43162995db7ccbfb6d35f59f3c90c2","signature":false},{"version":"4751a1d0fa8482200b4752e9ae9df28f26ab588fad9e65e6dea4ee833c107eab","signature":false},{"version":"bb30c52634975cf5b434821e8d10c6a3f1109426654aa795715330a01cda8055","signature":false},{"version":"c73cefbbf6b4601f86ddafb7c9052a5fe3b9f2db081f739dd62ebfb224599267","signature":false},{"version":"a6d6261e3b07631ed8fcdcbac44be4c7a7ee6f07574626a0e704db5c8570fc43","signature":false},{"version":"46e209b7c12f25a04292bcf8246ff12300c5c6863e356f6c8335a7846546bd51","signature":false},{"version":"97945b2d6e6a4e11483c3eb4e43fa3011919e4fd6fe01721db4642a09b6e5e0a","signature":false},{"version":"cdef43a22e14703c4c68beaab22fc060fb4015ce52d37ae4425810172fa78bcd","signature":false},{"version":"b4fabf9c73b548ce2a5a98b38dd3494bdf6d4683129bbc8ed696bc4c08faf9f6","signature":false},{"version":"27a6c23b0a3e80abd7596c895a6fb42856961fec7d80d39781399ee828923461","signature":false},{"version":"6698630dbc675452d618741c416e79adaf7373db4d1422721da47df7e1e0ba03","signature":false},{"version":"08ab6e69f243ab1df39b77c43918c78dd68b6398066bf623f123484431b1d698","signature":false},{"version":"40eb4eb274d7def754b3352c23328af96a69261fe5e99d20df41f1d5de8d0f5e","signature":false,"impliedFormat":1},{"version":"9be4e3267e0473e1d1a480773ec68f8eb388ed7a489d0747b26e5cd4e91dac35","signature":false},{"version":"2272a1dc5bd71cbd6f76ae4c3017daddd7ade95b3e1191faf69880339da26a98","signature":false},{"version":"73c078fcbc0fa04ba70b1c3e5a3dea6a980d8765079cdbfb40f903eb8daa4319","signature":false,"impliedFormat":99},{"version":"5297e84d3de08bbe3c00f964d1c74f89cf101d59a4826b335654f44ff41529a8","signature":false,"impliedFormat":99},{"version":"355b33af59287683501f76cbf7d6a141544c5ff1ae5f5c0701a3f89cc38e5238","signature":false,"impliedFormat":99},{"version":"280a996092ab956e80dc7bb7497d472ca5c1be23a9c52ac771f5c750ede462b9","signature":false,"impliedFormat":99},{"version":"32227e56a81d8ef1bdff21458db5b36baf3ca17071131034404c922fbd50c73e","signature":false},{"version":"34e0a321e5431e4edc3051cc75a717b834c6b8aa9e72f27b9c07d6572bed96e5","signature":false},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","signature":false,"impliedFormat":1},{"version":"293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","signature":false,"impliedFormat":1},{"version":"833e92c058d033cde3f29a6c7603f517001d1ddd8020bc94d2067a3bc69b2a8e","signature":false,"impliedFormat":1},{"version":"08b2fae7b0f553ad9f79faec864b179fc58bc172e295a70943e8585dd85f600c","signature":false,"impliedFormat":1},{"version":"f12edf1672a94c578eca32216839604f1e1c16b40a1896198deabf99c882b340","signature":false,"impliedFormat":1},{"version":"e3498cf5e428e6c6b9e97bd88736f26d6cf147dedbfa5a8ad3ed8e05e059af8a","signature":false,"impliedFormat":1},{"version":"dba3f34531fd9b1b6e072928b6f885aa4d28dd6789cbd0e93563d43f4b62da53","signature":false,"impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","signature":false,"impliedFormat":1},{"version":"e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","signature":false,"impliedFormat":1},{"version":"2329d90062487e1eaca87b5e06abcbbeeecf80a82f65f949fd332cfcf824b87b","signature":false,"impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","signature":false,"impliedFormat":1},{"version":"4fdb529707247a1a917a4626bfb6a293d52cd8ee57ccf03830ec91d39d606d6d","signature":false,"impliedFormat":1},{"version":"a9ebb67d6bbead6044b43714b50dcb77b8f7541ffe803046fdec1714c1eba206","signature":false,"impliedFormat":1},{"version":"5780b706cece027f0d4444fbb4e1af62dc51e19da7c3d3719f67b22b033859b9","signature":false,"impliedFormat":1},{"version":"800de8bb8ea525980e16dd155bb6e6847e7fdeccaf816e5c2674e1a24c5bfc9a","signature":false,"impliedFormat":1},{"version":"88efe27bebddb62da9655a9f093e0c27719647e96747f16650489dc9671075d6","signature":false,"impliedFormat":1},{"version":"e348f128032c4807ad9359a1fff29fcbc5f551c81be807bfa86db5a45649b7ba","signature":false,"impliedFormat":1},{"version":"8ee6b07974528da39b7835556e12dd3198c0a13e4a9de321217cd2044f3de22e","signature":false,"impliedFormat":1},{"version":"deefd8c43b40f9797c3921d78d3f9243959621a17b817be7f5d95c149f23a9dd","signature":false,"impliedFormat":1},{"version":"5f12132800d430adbe59b49c2c0354d85a71ada7d756e34250a655baa8ad4ae5","signature":false,"impliedFormat":1},{"version":"ec27c0cee1436f58e785f621703d19d588ebbd489eca245e5198b4d6b715790d","signature":false,"impliedFormat":1},{"version":"b16e757e4c35434065120a2b3bf13a518fc9e621dc9c2ed668f91635a9dc4e75","signature":false,"impliedFormat":1},{"version":"5e6208a4c6a1c94d05104b8809c3531e864932c27e2f65d070293d11d9d9eaf5","signature":false,"impliedFormat":1},{"version":"ea0e3c7d1347a549ac7ec32d3c61a30e473dbbbc901d458064db03f673128145","signature":false,"impliedFormat":1},{"version":"4374cefdde5c6e9bad52b0436e887b8325b8f407c12035194ad02c28f1553a3a","signature":false,"impliedFormat":1},{"version":"5f1ba0898eb0a54a644cb9c95c2240beaa961d87fd080cbb90807a6cc03daeb3","signature":false,"impliedFormat":1},{"version":"8e92ee8710ba85b158c5d91b0bbc9d0d033f5e062b6e70178063f01b20f63a14","signature":false,"impliedFormat":1},{"version":"ee933420aacba1f60aa70fb8ba47c5e69001b005073b71973114587089a13c7f","signature":false,"impliedFormat":1},{"version":"0a0714999d0a5bdfacd15c7b34cffbcc6f263f6cb0ccb42076cdc541c6987797","signature":false,"impliedFormat":1},{"version":"56584bfc655f9df64afc0f22f7d1122c29e5b74b342c203b891e19de9fa37de8","signature":false,"impliedFormat":1},{"version":"40ec58f0fadd0b3981b3d383e1c12fa0680115ae9f018387fc2cfc0bbcf23204","signature":false,"impliedFormat":1},{"version":"849b9e7283b7309a4556c9b90bb8e2dfc27751f157798065bbc513dcddb09a8c","signature":false,"impliedFormat":1},{"version":"76bba0c97594248c1be19af32d5799f7eff51cec2926d8e4dd59267d7636a0b4","signature":false,"impliedFormat":1},{"version":"10e109212c7be8a9f66e988e5d6c2a8900c9d14bf6beadf5fa70d32ada3425cf","signature":false,"impliedFormat":1},{"version":"f4558bcdc26690cc593cd59217cd17d8e00af0f5fbd0c4f1c0d71ba75029c42e","signature":false,"impliedFormat":1},{"version":"51d621c4e724720dd1b7ba6374d8a5b988beeda22d620ac84634a13691b631d9","signature":false,"impliedFormat":1},{"version":"f57a588d8f6b3ce5c8b494f2dc759a8885eaee18e80a4952df47de45403fedbe","signature":false,"impliedFormat":1},{"version":"34735727b3fe7a0ed0651a0f88d06449163d1989a2b2de7f047473adc7c1c383","signature":false,"impliedFormat":1},{"version":"a5b13abc88ab3186e713c445e59e2f6eee20c6167943517bc2f56985d89b8c55","signature":false,"impliedFormat":1},{"version":"05fa48042b74e4de7ff9dff2e3abab4c2aac944488ef993761faf06c28410aba","signature":false,"impliedFormat":1},{"version":"7ae65fe95b18205e241e6695cb2c61c0828d660aca7d08f68781b439a800e6b8","signature":false,"impliedFormat":1},{"version":"c2c8c166199d3a7bd093152437d1f6399d05e458a9ca9364456feecba920cda4","signature":false,"impliedFormat":1},{"version":"369b7270eeeb37982203b2cb18c7302947b89bf5818c1d3d2e95a0418f02b74e","signature":false,"impliedFormat":1},{"version":"94f95d223e2783b0aef4d15d7f6990a6a550fe17d099c501395f690337f7105e","signature":false,"impliedFormat":1},{"version":"945be5a9505194381cfd4a8551a5f0ae48090847e454fecf834e054207c5a57b","signature":false,"impliedFormat":1},{"version":"d1e8b78a5ce49cee9ef4cd2565d4645d269c6fd0650e3592f85ba481f13da3a3","signature":false,"impliedFormat":1},{"version":"d7386a1ebe9a3eae227a5561c898c10cacb61a49f941c5a18cdf593f979c693c","signature":false,"impliedFormat":1},{"version":"708733f625436da7047894887c1c17fa53b43094f36c9c3b1ce39d99aafd0a4b","signature":false,"impliedFormat":1},{"version":"2ad61964f27122a3ef7cf261f8b3dbda6b0f96be6687397151709bf34e5d5c76","signature":false,"impliedFormat":1},{"version":"302d3d92502a06fa7071406fa96d5c7f897006d73622aaf322df8405abc6f773","signature":false,"impliedFormat":1},{"version":"d21e12bd347e56a5b525c03a288450f730bed8a27b3f19e498566f72b5fd8da3","signature":false},{"version":"0098507a37b48e5113d700842ad9bfcb2b9725287775bef574b72baf94b52e93","signature":false},{"version":"08c165c88c2b2bd4b06e601e24abf015edd6d24cd591053099342a12923d6b90","signature":false},{"version":"91e5fdfc8e8e5925b69d42fc4e6185e92c65e130b1ef1c4cb5293aca513f747b","signature":false},{"version":"08117a455ef2778dd1dda45791dc92ac3ca1fef3cc9b6dd68900c92a18afa042","signature":false},{"version":"1a5ef691ad07a3720daaa89b3c04f2a34cdcc1365f7a2b092d4c68923c01c7f5","signature":false},{"version":"8bdf850ff791f1577457cc93a46503fcff9dbe01feafd312418865ac36488c93","signature":false},{"version":"8f7e5e8e0b61bd8242c1243274859b1489f6479e2b2104f2d3cef3533670e9e9","signature":false},{"version":"31cbb619f6b7b59fc3981f870432b984708e7d04068b6282b8987cb262397d25","signature":false},{"version":"10750f59e7ec441f1afd5a6019a87372f1e8b8c0823a369c00f7edeea8e68fa3","signature":false},{"version":"9edb2868898daf4a1c8aedfe6300f9ee18416e98dcd9a21397562e2ed5343e73","signature":false},{"version":"de0699419250de709f95cfd0826df8b9d26ed87c913eb8e1691d2a6882cd9d4d","signature":false},{"version":"e7c2f40dc99121500ad108a4f86541d29cac105ed018f994c7c5a2836e77b257","signature":false,"impliedFormat":1},{"version":"90e930283286ab117ab89f00589cf89ab5e9992bc57e79f303b36ee14649bdd9","signature":false,"impliedFormat":1},{"version":"6d48a6c907c668a6d6eda66acec4242e367c983e073100e35c1e234c424ad1a4","signature":false,"impliedFormat":1},{"version":"68a0e898d6c39160f1326ef922508914498c7a2d0b5a0d9222b7928d343214eb","signature":false,"impliedFormat":1},{"version":"69d96a8522b301a9e923ac4e42dd37fc942763740b183dffa3d51aca87f978d5","signature":false,"impliedFormat":1},{"version":"ff2fadad64868f1542a69edeadf5c5519e9c89e33bec267605298f8d172417c7","signature":false,"impliedFormat":1},{"version":"2866ae69517d6605a28d0c8d5dff4f15a0b876eeb8e5a1cbc51631d9c6793d3f","signature":false,"impliedFormat":1},{"version":"f8c4434aa8cbd4ede2a75cbc5532b6a12c9cac67c3095ed907e54f3f89d2e628","signature":false,"impliedFormat":1},{"version":"0b8adc0ae60a47acf65575952eee568b3d497f9975e3162f408052a99e65f488","signature":false,"impliedFormat":1},{"version":"ede9879d22f7ce68a8c99e455acab32fc45091c6eed9625549742b03e1f1ac1a","signature":false,"impliedFormat":1},{"version":"0e8c007c6e404da951c3d98a489ac0a3e9b6567648b997c03445ac69d7938c1c","signature":false,"impliedFormat":1},{"version":"f2a4866bed198a7c804b58ee39efe74c66ecdcf2dfebef0b9895d534a50790c4","signature":false,"impliedFormat":1},{"version":"ad72538d0c5e417ee6621e1b54691c274bcacaa1807c9895c5fa6d40b45fb631","signature":false,"impliedFormat":1},{"version":"4f851c59f3112702f6178e76204f839e3156daa98b5b7d7e3fc407a6c5764118","signature":false,"impliedFormat":1},{"version":"57511f723968d2f41dd2d55b9fbc5d0f3107af4e4227db0fb357c904bd34e690","signature":false,"impliedFormat":1},{"version":"9585df69c074d82dda33eadd6e5dccd164659f59b09bd5a0d25874770cf6042d","signature":false,"impliedFormat":1},{"version":"f6f6ce3e3718c2e7592e09d91c43b44318d47bca8ee353426252c694127f2dcb","signature":false,"impliedFormat":1},{"version":"4f70076586b8e194ef3d1b9679d626a9a61d449ba7e91dfc73cbe3904b538aa0","signature":false,"impliedFormat":1},{"version":"6d5838c172ff503ef37765b86019b80e3abe370105b2e1c4510d6098b0e84414","signature":false,"impliedFormat":1},{"version":"1876dac2baa902e2b7ebed5e03b95f338192dc03a6e4b0731733d675ba4048f3","signature":false,"impliedFormat":1},{"version":"8086407dd2a53ce700125037abf419bddcce43c14b3cf5ea3ac1ebded5cad011","signature":false,"impliedFormat":1},{"version":"c2501eb4c4e05c2d4de551a4bace9c28d06a0d89b228443f69eb3d7f9049fbd6","signature":false,"impliedFormat":1},{"version":"1829f790849d54ea3d736c61fdefd3237bede9c5784f4c15dfdafb7e0a9b8f63","signature":false,"impliedFormat":1},{"version":"5392feeda1bf0a1cc755f7339ea486b7a4d0d019774da8057ddc85347359ed63","signature":false,"impliedFormat":1},{"version":"c998117afca3af8432598c7e8d530d8376d0ca4871a34137db8caa1e94d94818","signature":false,"impliedFormat":1},{"version":"4e465f7e9a161a5a5248a18af79dbfbf06e8e1255bfdc8f63ab15475a2ba48bd","signature":false,"impliedFormat":1},{"version":"e0353c5070349846fe9835d782a8ce338d6d4172c603d14a6b364d6354957a4e","signature":false,"impliedFormat":1},{"version":"323133630008263f857a6d8350e36fb7f6e8d221ec0a425b075c20290570c020","signature":false,"impliedFormat":1},{"version":"c04e691d64b97e264ca4d000c287a53f2a75527556962cdbe3e8e2b301dac906","signature":false,"impliedFormat":1},{"version":"3733dba5107de9152f98da9bcb21bf6c91ac385f3b22f30ed08d0dc5e74c966f","signature":false,"impliedFormat":1},{"version":"d3ec922ddd9677696ee0552f10e95c4e59f85bb8c93fd76cd41b2dd93988ff39","signature":false,"impliedFormat":1},{"version":"0492c0d35e05c0fdd638980e02f3a7cdec18b311959fc730d85ed7e1d4ff38a7","signature":false,"impliedFormat":1},{"version":"c7122ba860d3497fa04a112d424ee88b50c482360042972bcf0917c5b82f4484","signature":false,"impliedFormat":1},{"version":"838f52090a0d39dce3c42e0ccb0db8db250c712c1fa2cd36799910c8f8a7f7bf","signature":false,"impliedFormat":1},{"version":"116ec624095373939de9edb03619916226f5e5b6e93cd761c4bda4efecb104fc","signature":false,"impliedFormat":1},{"version":"8e6b8259bfd8c8c3d6ed79349b7f2f69476d255aede2cd6c0acb0869ad8c6fdd","signature":false,"impliedFormat":1},{"version":"7152342ad31671d8ad068506b657f2c60cd25fda8978663117d3d50ecb18d413","signature":false},{"version":"404d991273b153289454e355181dec30b65c111634955638904ce7c726b77a1e","signature":false},{"version":"809270805b2c673c6a43635425222b77e422fe019c15b6bc54253b5d349d8f7a","signature":false},{"version":"933e05166cc43d768b3a3684e245feb295156726e447cce7d1d18846e93537fa","signature":false},{"version":"fb5ce60308493c79ad5f21adea2846197c690ca6a2102ee83bda58a9ce31c8ad","signature":false},{"version":"234240fc267e541b4657533fee4ddb711e8b316501d53f2942bf5bac0aa8a4b0","signature":false},{"version":"597f37a3cb4780be6b327e9776954603bf933735e37d3434618cfbbafc322a32","signature":false},{"version":"42aa1829808ab5c7a59e625cdc044fbe94ba1bc5e8e3e4d910e9337535e61656","signature":false},{"version":"07fc9ae20c9d5674575f6238ff93e9f16f9c3c851c063d07cf733c85b31c688a","signature":false},{"version":"b374378a78ee082b6f8a149bc308501e5882aad883e43efe923ea31bc24f64b5","signature":false},{"version":"d1986184a09a52db8228cb2bb2a61a8c05c9354e5b93cec8e2628d8579c892d7","signature":false},{"version":"a839561c86c30afba9c6aa9682f006c537a3b3f3e25c115719a698a126bdedfe","signature":false},{"version":"751764bb94219b4ce8f5475dc35d3de2e432fea01a0c9610cd7f69ad05e398c6","signature":false,"impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","signature":false,"impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","signature":false,"impliedFormat":1}],"root":[[535,539],[564,577],579,580,585,586,[637,648],[685,696]],"options":{"allowJs":false,"composite":false,"declarationMap":false,"emitDeclarationOnly":false,"esModuleInterop":true,"jsx":4,"module":99,"skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[695,1],[535,2],[696,3],[638,4],[639,5],[641,6],[642,4],[643,7],[644,5],[586,8],[645,4],[646,9],[647,10],[648,11],[688,12],[689,13],[690,14],[685,15],[691,16],[692,17],[565,18],[566,18],[567,18],[569,18],[568,18],[570,18],[573,19],[575,20],[576,21],[577,22],[686,7],[580,23],[579,24],[574,25],[637,26],[693,27],[585,28],[694,29],[687,30],[571,31],[537,31],[572,2],[640,7],[538,32],[536,33],[539,34],[636,35],[634,36],[635,37],[379,2],[581,2],[582,38],[583,39],[584,40],[684,41],[663,42],[673,43],[670,43],[671,44],[655,44],[669,44],[650,43],[656,45],[659,46],[664,47],[652,45],[653,44],[666,48],[651,45],[657,45],[660,45],[665,45],[667,44],[654,44],[668,44],[662,49],[658,50],[683,51],[661,52],[672,53],[649,44],[674,44],[675,44],[676,44],[677,44],[678,44],[679,44],[680,44],[681,44],[682,44],[697,2],[698,2],[699,2],[143,54],[144,54],[145,55],[97,56],[146,57],[147,58],[148,59],[92,2],[95,60],[93,2],[94,2],[149,61],[150,62],[151,63],[152,64],[153,65],[154,66],[155,66],[156,67],[157,68],[158,69],[159,70],[98,2],[96,2],[160,71],[161,72],[162,73],[196,74],[163,75],[164,2],[165,76],[166,77],[167,78],[168,79],[169,80],[170,81],[171,82],[172,83],[173,84],[174,84],[175,85],[176,2],[177,86],[178,87],[180,88],[179,89],[181,90],[182,91],[183,92],[184,93],[185,94],[186,95],[187,96],[188,97],[189,98],[190,99],[191,100],[192,101],[193,102],[99,2],[100,2],[101,2],[139,103],[140,2],[141,2],[142,90],[194,104],[195,105],[200,106],[464,107],[201,108],[199,109],[466,110],[465,111],[197,112],[462,2],[198,113],[83,2],[85,114],[461,107],[231,107],[84,2],[578,107],[487,115],[492,1],[499,116],[482,117],[235,2],[243,118],[383,119],[386,120],[358,2],[371,121],[378,122],[260,2],[360,2],[241,2],[357,123],[403,124],[242,2],[233,125],[385,126],[387,127],[388,128],[459,129],[352,130],[305,131],[365,132],[366,133],[364,134],[363,2],[359,135],[384,136],[244,137],[429,2],[430,138],[271,139],[245,140],[272,139],[308,139],[211,139],[381,141],[380,2],[370,142],[477,2],[220,2],[498,143],[437,144],[438,145],[434,146],[516,2],[335,2],[439,147],[435,148],[521,149],[520,150],[515,2],[286,2],[338,151],[337,2],[514,152],[436,107],[291,153],[298,154],[300,155],[290,2],[295,156],[297,157],[299,158],[294,159],[292,2],[296,160],[517,2],[513,2],[519,161],[518,2],[289,162],[508,163],[511,164],[279,165],[278,166],[277,167],[524,107],[276,168],[265,2],[526,2],[527,107],[528,169],[203,2],[367,170],[368,171],[369,172],[207,2],[372,2],[227,173],[202,2],[451,107],[209,174],[450,175],[449,176],[440,2],[441,2],[448,2],[443,2],[446,177],[442,2],[444,178],[447,179],[445,178],[240,2],[237,2],[238,139],[392,2],[397,180],[398,181],[396,182],[394,183],[395,184],[390,2],[457,147],[232,147],[486,185],[493,186],[497,187],[326,188],[325,2],[320,2],[473,189],[481,190],[353,191],[354,192],[432,193],[342,2],[455,194],[330,107],[347,195],[458,196],[343,2],[346,197],[344,2],[456,198],[453,199],[452,2],[454,2],[350,2],[428,200],[215,201],[328,202],[332,203],[348,204],[351,205],[340,206],[333,207],[480,208],[406,209],[324,210],[212,211],[479,212],[208,213],[399,214],[391,2],[400,215],[417,216],[389,2],[416,217],[91,2],[411,218],[236,2],[431,219],[407,2],[221,2],[223,2],[362,2],[415,220],[239,2],[263,221],[349,222],[269,223],[329,2],[414,2],[393,2],[419,224],[420,225],[361,2],[422,226],[424,227],[423,228],[373,2],[413,211],[426,229],[323,230],[412,231],[418,232],[248,2],[252,2],[251,2],[250,2],[255,2],[249,2],[258,2],[257,2],[254,2],[253,2],[256,2],[259,233],[247,2],[315,234],[314,2],[319,235],[316,236],[318,237],[321,235],[317,236],[228,238],[307,239],[476,240],[474,2],[503,241],[505,242],[469,243],[504,244],[216,245],[213,245],[246,2],[230,246],[229,247],[225,248],[226,249],[234,250],[262,250],[273,250],[309,251],[274,251],[218,252],[217,2],[313,253],[312,254],[311,255],[310,256],[219,257],[460,258],[261,259],[468,260],[433,261],[463,262],[467,263],[356,264],[355,265],[336,266],[322,267],[304,268],[306,269],[303,270],[425,271],[327,2],[491,2],[224,272],[427,273],[475,274],[334,2],[264,275],[341,276],[339,277],[266,278],[401,279],[470,2],[267,280],[402,280],[489,2],[488,2],[490,2],[472,2],[471,2],[404,281],[331,2],[301,282],[222,283],[280,2],[206,284],[268,2],[495,107],[205,2],[507,285],[288,107],[501,147],[287,286],[484,287],[285,285],[210,2],[509,288],[283,107],[284,107],[275,2],[204,2],[282,289],[281,290],[270,291],[345,83],[405,83],[421,2],[409,292],[408,2],[293,162],[214,2],[302,107],[478,173],[485,293],[86,107],[89,294],[90,295],[87,107],[88,2],[382,296],[377,297],[376,2],[375,298],[374,2],[483,299],[494,300],[496,301],[500,302],[502,303],[506,304],[534,305],[510,305],[533,306],[512,307],[522,308],[523,309],[525,310],[529,311],[532,173],[531,2],[530,312],[556,313],[554,314],[555,315],[543,316],[544,314],[551,317],[542,318],[547,319],[557,2],[548,320],[553,321],[559,322],[558,323],[541,324],[549,325],[550,326],[545,327],[552,313],[546,328],[601,2],[617,329],[618,329],[619,329],[633,330],[620,331],[621,331],[622,332],[614,333],[612,334],[603,2],[607,335],[611,336],[609,337],[616,338],[604,339],[605,340],[606,341],[608,342],[610,343],[613,344],[615,345],[623,331],[624,331],[625,331],[626,329],[627,331],[628,331],[602,331],[629,2],[631,346],[630,331],[632,329],[410,347],[540,2],[562,348],[561,2],[560,2],[563,349],[81,2],[82,2],[13,2],[14,2],[16,2],[15,2],[2,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[23,2],[24,2],[3,2],[25,2],[26,2],[4,2],[27,2],[31,2],[28,2],[29,2],[30,2],[32,2],[33,2],[34,2],[5,2],[35,2],[36,2],[37,2],[38,2],[6,2],[42,2],[39,2],[40,2],[41,2],[43,2],[7,2],[44,2],[49,2],[50,2],[45,2],[46,2],[47,2],[48,2],[8,2],[54,2],[51,2],[52,2],[53,2],[55,2],[9,2],[56,2],[57,2],[58,2],[60,2],[59,2],[61,2],[62,2],[10,2],[63,2],[64,2],[65,2],[11,2],[66,2],[67,2],[68,2],[69,2],[70,2],[1,2],[71,2],[72,2],[12,2],[76,2],[74,2],[79,2],[78,2],[73,2],[77,2],[75,2],[80,2],[117,350],[127,351],[116,350],[137,352],[108,353],[107,354],[136,312],[130,355],[135,356],[110,357],[124,358],[109,359],[133,360],[105,361],[104,312],[134,362],[106,363],[111,364],[112,2],[115,364],[102,2],[138,365],[128,366],[119,367],[120,368],[122,369],[118,370],[121,371],[131,312],[113,372],[114,373],[123,374],[103,375],[126,366],[125,364],[129,2],[132,376],[600,377],[592,378],[599,379],[594,2],[595,2],[593,380],[596,381],[587,2],[588,2],[589,377],[591,382],[597,2],[598,383],[590,384],[564,385]],"changeFileSet":[695,535,696,638,639,641,642,643,644,586,645,646,647,648,688,689,690,685,691,692,565,566,567,569,568,570,573,575,576,577,686,580,579,574,637,693,585,694,687,571,537,572,640,538,536,539,636,634,635,379,581,582,583,584,684,663,673,670,671,655,669,650,656,659,664,652,653,666,651,657,660,665,667,654,668,662,658,683,661,672,649,674,675,676,677,678,679,680,681,682,697,698,699,143,144,145,97,146,147,148,92,95,93,94,149,150,151,152,153,154,155,156,157,158,159,98,96,160,161,162,196,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,180,179,181,182,183,184,185,186,187,188,189,190,191,192,193,99,100,101,139,140,141,142,194,195,200,464,201,199,466,465,197,462,198,83,85,461,231,84,578,487,492,499,482,235,243,383,386,358,371,378,260,360,241,357,403,242,233,385,387,388,459,352,305,365,366,364,363,359,384,244,429,430,271,245,272,308,211,381,380,370,477,220,498,437,438,434,516,335,439,435,521,520,515,286,338,337,514,436,291,298,300,290,295,297,299,294,292,296,517,513,519,518,289,508,511,279,278,277,524,276,265,526,527,528,203,367,368,369,207,372,227,202,451,209,450,449,440,441,448,443,446,442,444,447,445,240,237,238,392,397,398,396,394,395,390,457,232,486,493,497,326,325,320,473,481,353,354,432,342,455,330,347,458,343,346,344,456,453,452,454,350,428,215,328,332,348,351,340,333,480,406,324,212,479,208,399,391,400,417,389,416,91,411,236,431,407,221,223,362,415,239,263,349,269,329,414,393,419,420,361,422,424,423,373,413,426,323,412,418,248,252,251,250,255,249,258,257,254,253,256,259,247,315,314,319,316,318,321,317,228,307,476,474,503,505,469,504,216,213,246,230,229,225,226,234,262,273,309,274,218,217,313,312,311,310,219,460,261,468,433,463,467,356,355,336,322,304,306,303,425,327,491,224,427,475,334,264,341,339,266,401,470,267,402,489,488,490,472,471,404,331,301,222,280,206,268,495,205,507,288,501,287,484,285,210,509,283,284,275,204,282,281,270,345,405,421,409,408,293,214,302,478,485,86,89,90,87,88,382,377,376,375,374,483,494,496,500,502,506,534,510,533,512,522,523,525,529,532,531,530,556,554,555,543,544,551,542,547,557,548,553,559,558,541,549,550,545,552,546,601,617,618,619,633,620,621,622,614,612,603,607,611,609,616,604,605,606,608,610,613,615,623,624,625,626,627,628,602,629,631,630,632,410,540,562,561,560,563,81,82,13,14,16,15,2,17,18,19,20,21,22,23,24,3,25,26,4,27,31,28,29,30,32,33,34,5,35,36,37,38,6,42,39,40,41,43,7,44,49,50,45,46,47,48,8,54,51,52,53,55,9,56,57,58,60,59,61,62,10,63,64,65,11,66,67,68,69,70,1,71,72,12,76,74,79,78,73,77,75,80,117,127,116,137,108,107,136,130,135,110,124,109,133,105,104,134,106,111,112,115,102,138,128,119,120,122,118,121,131,113,114,123,103,126,125,129,132,600,592,599,594,595,593,596,587,588,589,591,597,598,590,564],"version":"5.9.3"} \ No newline at end of file +{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/next/dist/styled-jsx/types/css.d.ts","../../node_modules/next/dist/styled-jsx/types/macro.d.ts","../../node_modules/next/dist/styled-jsx/types/style.d.ts","../../node_modules/next/dist/styled-jsx/types/global.d.ts","../../node_modules/next/dist/styled-jsx/types/index.d.ts","../../node_modules/next/dist/server/get-page-files.d.ts","../../node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/@types/node/compatibility/index.d.ts","../../node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/@types/node/web-globals/events.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/undici-types/retry-handler.d.ts","../../node_modules/undici-types/retry-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/util.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/eventsource.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/@types/node/web-globals/navigator.d.ts","../../node_modules/@types/node/web-globals/storage.d.ts","../../node_modules/@types/node/web-globals/streams.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/inspector.generated.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/sea.d.ts","../../node_modules/@types/node/sqlite.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/react/canary.d.ts","../../node_modules/@types/react/experimental.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/canary.d.ts","../../node_modules/@types/react-dom/experimental.d.ts","../../node_modules/next/dist/lib/fallback.d.ts","../../node_modules/next/dist/compiled/webpack/webpack.d.ts","../../node_modules/next/dist/shared/lib/modern-browserslist-target.d.ts","../../node_modules/next/dist/shared/lib/entry-constants.d.ts","../../node_modules/next/dist/shared/lib/constants.d.ts","../../node_modules/next/dist/lib/bundler.d.ts","../../node_modules/next/dist/server/config.d.ts","../../node_modules/next/dist/lib/load-custom-routes.d.ts","../../node_modules/next/dist/shared/lib/image-config.d.ts","../../node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.d.ts","../../node_modules/next/dist/server/body-streams.d.ts","../../node_modules/next/dist/server/request/search-params.d.ts","../../node_modules/next/dist/shared/lib/segment-cache/vary-params-decoding.d.ts","../../node_modules/next/dist/server/app-render/vary-params.d.ts","../../node_modules/next/dist/server/request/params.d.ts","../../node_modules/next/dist/server/route-kind.d.ts","../../node_modules/next/dist/server/route-definitions/route-definition.d.ts","../../node_modules/next/dist/server/route-matches/route-match.d.ts","../../node_modules/next/dist/client/components/app-router-headers.d.ts","../../node_modules/next/dist/server/lib/cache-control.d.ts","../../node_modules/next/dist/shared/lib/app-router-types.d.ts","../../node_modules/next/dist/server/lib/cache-handlers/types.d.ts","../../node_modules/next/dist/server/use-cache/use-cache-wrapper.d.ts","../../node_modules/next/dist/server/resume-data-cache/cache-store.d.ts","../../node_modules/next/dist/server/resume-data-cache/resume-data-cache.d.ts","../../node_modules/next/dist/lib/constants.d.ts","../../node_modules/next/dist/server/render-result.d.ts","../../node_modules/next/dist/server/response-cache/types.d.ts","../../node_modules/next/dist/server/response-cache/index.d.ts","../../node_modules/@types/react/jsx-runtime.d.ts","../../node_modules/next/dist/next-devtools/userspace/pages/pages-dev-overlay-setup.d.ts","../../node_modules/next/dist/build/static-paths/types.d.ts","../../node_modules/next/dist/server/route-definitions/app-page-route-definition.d.ts","../../node_modules/next/dist/build/adapter/setup-node-env.external.d.ts","../../node_modules/next/dist/server/instrumentation/types.d.ts","../../node_modules/next/dist/lib/setup-exception-listeners.d.ts","../../node_modules/next/dist/lib/worker.d.ts","../../node_modules/next/dist/server/lib/experimental/ppr.d.ts","../../node_modules/next/dist/lib/page-types.d.ts","../../node_modules/next/dist/build/segment-config/app/app-segment-config.d.ts","../../node_modules/next/dist/build/segment-config/pages/pages-segment-config.d.ts","../../node_modules/next/dist/build/analysis/get-page-static-info.d.ts","../../node_modules/next/dist/build/webpack/loaders/get-module-build-info.d.ts","../../node_modules/next/dist/build/webpack/plugins/middleware-plugin.d.ts","../../node_modules/next/dist/server/require-hook.d.ts","../../node_modules/next/dist/server/node-polyfill-crypto.d.ts","../../node_modules/next/dist/server/node-environment-baseline.d.ts","../../node_modules/next/dist/server/node-environment-extensions/error-inspect.d.ts","../../node_modules/next/dist/server/node-environment-extensions/console-file.d.ts","../../node_modules/next/dist/server/node-environment-extensions/console-exit.d.ts","../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.d.ts","../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.d.ts","../../node_modules/next/dist/server/node-environment-extensions/random.d.ts","../../node_modules/next/dist/server/node-environment-extensions/date.d.ts","../../node_modules/next/dist/server/node-environment-extensions/web-crypto.d.ts","../../node_modules/next/dist/server/node-environment-extensions/node-crypto.d.ts","../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.d.ts","../../node_modules/next/dist/server/node-environment.d.ts","../../node_modules/next/dist/build/page-extensions-type.d.ts","../../node_modules/next/dist/server/route-modules/app-page/module.compiled.d.ts","../../node_modules/next/dist/server/route-definitions/app-route-route-definition.d.ts","../../node_modules/next/dist/server/lib/i18n-provider.d.ts","../../node_modules/next/dist/server/web/next-url.d.ts","../../node_modules/next/dist/compiled/@edge-runtime/cookies/index.d.ts","../../node_modules/next/dist/server/web/spec-extension/cookies.d.ts","../../node_modules/next/dist/server/web/spec-extension/request.d.ts","../../node_modules/next/dist/shared/lib/deep-readonly.d.ts","../../node_modules/next/dist/server/lib/incremental-cache/index.d.ts","../../node_modules/next/dist/shared/lib/router/utils/middleware-route-matcher.d.ts","../../node_modules/next/dist/build/webpack/plugins/flight-manifest-plugin.d.ts","../../node_modules/next/dist/build/webpack/plugins/next-font-manifest-plugin.d.ts","../../node_modules/next/dist/server/route-definitions/locale-route-definition.d.ts","../../node_modules/next/dist/server/route-definitions/pages-route-definition.d.ts","../../node_modules/next/dist/shared/lib/mitt.d.ts","../../node_modules/next/dist/client/with-router.d.ts","../../node_modules/next/dist/client/router.d.ts","../../node_modules/next/dist/client/route-loader.d.ts","../../node_modules/next/dist/client/page-loader.d.ts","../../node_modules/next/dist/shared/lib/bloom-filter.d.ts","../../node_modules/next/dist/shared/lib/router/router.d.ts","../../node_modules/next/dist/shared/lib/router-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/loadable-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/loadable.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/image-config-context.shared-runtime.d.ts","../../node_modules/next/dist/client/components/readonly-url-search-params.d.ts","../../node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.d.ts","../../node_modules/next/dist/client/flight-data-helpers.d.ts","../../node_modules/next/dist/client/components/segment-cache/cache-key.d.ts","../../node_modules/next/dist/client/components/router-reducer/fetch-server-response.d.ts","../../node_modules/next/dist/client/components/segment-cache/types.d.ts","../../node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.d.ts","../../node_modules/next/dist/client/components/segment-cache/scheduler.d.ts","../../node_modules/next/dist/client/components/segment-cache/cache-map.d.ts","../../node_modules/next/dist/client/components/segment-cache/vary-path.d.ts","../../node_modules/next/dist/client/components/segment-cache/cache.d.ts","../../node_modules/next/dist/client/components/router-reducer/ppr-navigations.d.ts","../../node_modules/next/dist/client/components/segment-cache/navigation.d.ts","../../node_modules/next/dist/client/components/router-reducer/router-reducer-types.d.ts","../../node_modules/next/dist/shared/lib/app-router-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.d.ts","../../node_modules/next/dist/server/route-modules/pages/vendored/contexts/entrypoints.d.ts","../../node_modules/next/dist/server/route-modules/pages/module.compiled.d.ts","../../node_modules/next/dist/build/templates/pages.d.ts","../../node_modules/next/dist/server/route-modules/pages/module.d.ts","../../node_modules/next/dist/server/render.d.ts","../../node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.d.ts","../../node_modules/next/dist/server/route-definitions/pages-api-route-definition.d.ts","../../node_modules/next/dist/server/route-matches/pages-api-route-match.d.ts","../../node_modules/next/dist/server/route-matchers/route-matcher.d.ts","../../node_modules/next/dist/server/route-matcher-providers/route-matcher-provider.d.ts","../../node_modules/next/dist/server/route-matcher-managers/route-matcher-manager.d.ts","../../node_modules/next/dist/server/normalizers/normalizer.d.ts","../../node_modules/next/dist/server/normalizers/locale-route-normalizer.d.ts","../../node_modules/next/dist/server/normalizers/request/pathname-normalizer.d.ts","../../node_modules/next/dist/server/normalizers/request/suffix.d.ts","../../node_modules/next/dist/server/normalizers/request/rsc.d.ts","../../node_modules/next/dist/server/normalizers/request/next-data.d.ts","../../node_modules/next/dist/server/after/builtin-request-context.d.ts","../../node_modules/next/dist/server/normalizers/request/segment-prefix-rsc.d.ts","../../node_modules/next/dist/server/route-modules/pages/builtin/_error.d.ts","../../node_modules/next/dist/server/load-default-error-components.d.ts","../../node_modules/next/dist/server/base-server.d.ts","../../node_modules/next/dist/server/after/after.d.ts","../../node_modules/next/dist/server/after/after-context.d.ts","../../node_modules/next/dist/server/use-cache/cache-life.d.ts","../../node_modules/next/dist/server/app-render/work-async-storage-instance.d.ts","../../node_modules/next/dist/server/lib/lazy-result.d.ts","../../node_modules/next/dist/server/app-render/create-error-handler.d.ts","../../node_modules/next/dist/shared/lib/action-revalidation-kind.d.ts","../../node_modules/next/dist/server/app-render/work-async-storage.external.d.ts","../../node_modules/next/dist/server/async-storage/work-store.d.ts","../../node_modules/next/dist/server/web/http.d.ts","../../node_modules/next/dist/client/components/hooks-server-context.d.ts","../../node_modules/next/dist/server/route-modules/app-route/shared-modules.d.ts","../../node_modules/next/dist/client/components/redirect-status-code.d.ts","../../node_modules/next/dist/client/components/redirect-error.d.ts","../../node_modules/next/dist/server/web/spec-extension/adapters/request-cookies.d.ts","../../node_modules/next/dist/server/async-storage/draft-mode-provider.d.ts","../../node_modules/next/dist/server/web/spec-extension/adapters/headers.d.ts","../../node_modules/next/dist/server/app-render/cache-signal.d.ts","../../node_modules/next/dist/server/app-render/instant-validation/boundary-tracking.d.ts","../../node_modules/next/dist/server/app-render/instant-validation/instant-validation-error.d.ts","../../node_modules/next/dist/shared/lib/router/utils/parse-relative-url.d.ts","../../node_modules/next/dist/server/app-render/instant-validation/instant-samples.d.ts","../../node_modules/next/dist/server/app-render/dynamic-rendering.d.ts","../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.d.ts","../../node_modules/next/dist/server/lib/implicit-tags.d.ts","../../node_modules/next/dist/server/app-render/staged-rendering.d.ts","../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.d.ts","../../node_modules/next/dist/build/templates/app-route.d.ts","../../node_modules/next/dist/server/app-render/action-async-storage-instance.d.ts","../../node_modules/next/dist/server/app-render/action-async-storage.external.d.ts","../../node_modules/next/dist/server/route-modules/app-route/module.d.ts","../../node_modules/next/dist/server/route-modules/app-route/module.compiled.d.ts","../../node_modules/next/dist/build/segment-config/app/app-segments.d.ts","../../node_modules/next/dist/build/get-supported-browsers.d.ts","../../node_modules/next/dist/build/utils.d.ts","../../node_modules/next/dist/build/rendering-mode.d.ts","../../node_modules/next/dist/server/lib/router-utils/build-prefetch-segment-data-route.d.ts","../../node_modules/next/dist/server/lib/cpu-profile.d.ts","../../node_modules/next/dist/build/turborepo-access-trace/types.d.ts","../../node_modules/next/dist/build/turborepo-access-trace/result.d.ts","../../node_modules/next/dist/build/turborepo-access-trace/helpers.d.ts","../../node_modules/next/dist/build/turborepo-access-trace/index.d.ts","../../node_modules/next/dist/export/routes/types.d.ts","../../node_modules/next/dist/export/types.d.ts","../../node_modules/next/dist/export/worker.d.ts","../../node_modules/next/dist/build/worker.d.ts","../../node_modules/next/dist/build/index.d.ts","../../node_modules/next/dist/lib/coalesced-function.d.ts","../../node_modules/next/dist/server/lib/router-utils/types.d.ts","../../node_modules/next/dist/trace/types.d.ts","../../node_modules/next/dist/trace/trace.d.ts","../../node_modules/next/dist/trace/shared.d.ts","../../node_modules/next/dist/trace/index.d.ts","../../node_modules/next/dist/build/load-jsconfig.d.ts","../../node_modules/@next/env/dist/index.d.ts","../../node_modules/next/dist/build/webpack/plugins/telemetry-plugin/use-cache-tracker-utils.d.ts","../../node_modules/next/dist/build/webpack/plugins/telemetry-plugin/telemetry-plugin.d.ts","../../node_modules/next/dist/telemetry/storage.d.ts","../../node_modules/next/dist/build/build-context.d.ts","../../node_modules/next/dist/build/webpack-config.d.ts","../../node_modules/next/dist/build/swc/generated-native.d.ts","../../node_modules/next/dist/build/define-env.d.ts","../../node_modules/next/dist/build/swc/index.d.ts","../../node_modules/next/dist/build/swc/types.d.ts","../../node_modules/next/dist/server/dev/parse-version-info.d.ts","../../node_modules/next/dist/next-devtools/shared/types.d.ts","../../node_modules/next/dist/server/dev/dev-indicator-server-state.d.ts","../../node_modules/next/dist/next-devtools/dev-overlay/cache-indicator.d.ts","../../node_modules/next/dist/server/lib/parse-stack.d.ts","../../node_modules/next/dist/next-devtools/server/shared.d.ts","../../node_modules/next/dist/next-devtools/shared/stack-frame.d.ts","../../node_modules/next/dist/next-devtools/dev-overlay/utils/get-error-by-type.d.ts","../../node_modules/next/dist/next-devtools/dev-overlay/container/runtime-error/render-error.d.ts","../../node_modules/next/dist/next-devtools/dev-overlay/shared.d.ts","../../node_modules/next/dist/server/dev/debug-channel.d.ts","../../node_modules/next/dist/server/dev/hot-reloader-types.d.ts","../../node_modules/next/dist/server/web/spec-extension/fetch-event.d.ts","../../node_modules/next/dist/server/web/spec-extension/response.d.ts","../../node_modules/next/dist/build/segment-config/middleware/middleware-config.d.ts","../../node_modules/next/dist/server/web/types.d.ts","../../node_modules/next/dist/shared/lib/router/utils/parse-url.d.ts","../../node_modules/next/dist/server/base-http/node.d.ts","../../node_modules/next/dist/server/lib/async-callback-set.d.ts","../../node_modules/next/dist/shared/lib/router/utils/route-regex.d.ts","../../node_modules/next/dist/shared/lib/router/utils/route-matcher.d.ts","../../node_modules/sharp/lib/index.d.ts","../../node_modules/next/dist/server/image-optimizer.d.ts","../../node_modules/next/dist/server/next-server.d.ts","../../node_modules/next/dist/server/lib/types.d.ts","../../node_modules/next/dist/server/lib/lru-cache.d.ts","../../node_modules/next/dist/server/lib/dev-bundler-service.d.ts","../../node_modules/next/dist/server/dev/static-paths-worker.d.ts","../../node_modules/next/dist/server/dev/next-dev-server.d.ts","../../node_modules/next/dist/server/next.d.ts","../../node_modules/next/dist/server/lib/render-server.d.ts","../../node_modules/next/dist/server/lib/router-server.d.ts","../../node_modules/next/dist/shared/lib/router/utils/path-match.d.ts","../../node_modules/next/dist/server/lib/router-utils/filesystem.d.ts","../../node_modules/next/dist/server/lib/router-utils/setup-dev-bundler.d.ts","../../node_modules/next/dist/server/lib/router-utils/router-server-context.d.ts","../../node_modules/next/dist/server/route-modules/route-module.d.ts","../../node_modules/next/dist/server/load-components.d.ts","../../node_modules/next/dist/server/web/adapter.d.ts","../../node_modules/next/dist/server/app-render/types.d.ts","../../node_modules/next/dist/build/webpack/loaders/metadata/types.d.ts","../../node_modules/next/dist/build/webpack/loaders/next-app-loader/index.d.ts","../../node_modules/next/dist/server/lib/app-dir-module.d.ts","../../node_modules/next/dist/server/app-render/app-render.d.ts","../../node_modules/next/dist/server/route-modules/app-page/vendored/contexts/entrypoints.d.ts","../../node_modules/next/dist/client/components/error-boundary.d.ts","../../node_modules/next/dist/client/components/layout-router.d.ts","../../node_modules/next/dist/client/components/render-from-template-context.d.ts","../../node_modules/next/dist/client/components/client-page.d.ts","../../node_modules/next/dist/client/components/client-segment.d.ts","../../node_modules/next/dist/client/components/http-access-fallback/error-boundary.d.ts","../../node_modules/next/dist/lib/metadata/types/alternative-urls-types.d.ts","../../node_modules/next/dist/lib/metadata/types/extra-types.d.ts","../../node_modules/next/dist/lib/metadata/types/metadata-types.d.ts","../../node_modules/next/dist/lib/metadata/types/manifest-types.d.ts","../../node_modules/next/dist/lib/metadata/types/opengraph-types.d.ts","../../node_modules/next/dist/lib/metadata/types/twitter-types.d.ts","../../node_modules/next/dist/lib/metadata/types/metadata-interface.d.ts","../../node_modules/next/dist/lib/metadata/types/resolvers.d.ts","../../node_modules/next/dist/lib/metadata/types/icons.d.ts","../../node_modules/next/dist/lib/metadata/resolve-metadata.d.ts","../../node_modules/next/dist/lib/metadata/metadata.d.ts","../../node_modules/next/dist/lib/framework/boundary-components.d.ts","../../node_modules/next/dist/server/app-render/rsc/preloads.d.ts","../../node_modules/next/dist/server/app-render/rsc/postpone.d.ts","../../node_modules/next/dist/server/app-render/rsc/taint.d.ts","../../node_modules/next/dist/server/app-render/collect-segment-data.d.ts","../../node_modules/next/dist/server/app-render/instant-validation/instant-validation.d.ts","../../node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.d.ts","../../node_modules/next/dist/server/app-render/entry-base.d.ts","../../node_modules/next/dist/build/templates/app-page.d.ts","../../node_modules/next/dist/server/route-modules/app-page/helpers/prerender-manifest-matcher.d.ts","../../node_modules/@types/react/jsx-dev-runtime.d.ts","../../node_modules/@types/react/compiler-runtime.d.ts","../../node_modules/next/dist/server/route-modules/app-page/vendored/rsc/entrypoints.d.ts","../../node_modules/@types/react-dom/client.d.ts","../../node_modules/@types/react-dom/static.d.ts","../../node_modules/@types/react-dom/server.d.ts","../../node_modules/next/dist/server/route-modules/app-page/vendored/ssr/entrypoints.d.ts","../../node_modules/next/dist/server/route-modules/app-page/module.d.ts","../../node_modules/next/dist/server/request/fallback-params.d.ts","../../node_modules/next/dist/server/web/spec-extension/image-response.d.ts","../../node_modules/next/dist/server/web/spec-extension/user-agent.d.ts","../../node_modules/next/dist/server/web/spec-extension/url-pattern.d.ts","../../node_modules/next/dist/server/after/index.d.ts","../../node_modules/next/dist/server/request/connection.d.ts","../../node_modules/next/dist/server/web/exports/index.d.ts","../../node_modules/next/dist/server/request-meta.d.ts","../../node_modules/next/dist/cli/next-test.d.ts","../../node_modules/next/dist/shared/lib/size-limit.d.ts","../../node_modules/next/dist/server/config-shared.d.ts","../../node_modules/next/dist/server/base-http/index.d.ts","../../node_modules/next/dist/server/api-utils/index.d.ts","../../node_modules/next/dist/build/adapter/build-complete.d.ts","../../node_modules/next/dist/types.d.ts","../../node_modules/next/dist/shared/lib/html-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/utils.d.ts","../../node_modules/next/dist/pages/_app.d.ts","../../node_modules/next/app.d.ts","../../node_modules/next/dist/server/web/spec-extension/unstable-cache.d.ts","../../node_modules/next/dist/server/web/spec-extension/revalidate.d.ts","../../node_modules/next/dist/server/web/spec-extension/unstable-no-store.d.ts","../../node_modules/next/dist/server/use-cache/cache-tag.d.ts","../../node_modules/next/cache.d.ts","../../node_modules/next/dist/pages/_document.d.ts","../../node_modules/next/document.d.ts","../../node_modules/next/dist/shared/lib/dynamic.d.ts","../../node_modules/next/dynamic.d.ts","../../node_modules/next/dist/pages/_error.d.ts","../../node_modules/next/dist/client/components/catch-error.d.ts","../../node_modules/next/dist/api/error.d.ts","../../node_modules/next/error.d.ts","../../node_modules/next/dist/shared/lib/head.d.ts","../../node_modules/next/head.d.ts","../../node_modules/next/dist/server/request/cookies.d.ts","../../node_modules/next/dist/server/request/headers.d.ts","../../node_modules/next/dist/server/request/draft-mode.d.ts","../../node_modules/next/headers.d.ts","../../node_modules/next/dist/shared/lib/get-img-props.d.ts","../../node_modules/next/dist/client/image-component.d.ts","../../node_modules/next/dist/shared/lib/image-external.d.ts","../../node_modules/next/image.d.ts","../../node_modules/next/dist/client/link.d.ts","../../node_modules/next/link.d.ts","../../node_modules/next/dist/client/components/unrecognized-action-error.d.ts","../../node_modules/next/dist/client/components/redirect.d.ts","../../node_modules/next/dist/client/components/not-found.d.ts","../../node_modules/next/dist/client/components/forbidden.d.ts","../../node_modules/next/dist/client/components/unauthorized.d.ts","../../node_modules/next/dist/client/components/unstable-rethrow.server.d.ts","../../node_modules/next/dist/client/components/unstable-rethrow.d.ts","../../node_modules/next/dist/client/components/navigation.react-server.d.ts","../../node_modules/next/dist/client/components/navigation.d.ts","../../node_modules/next/navigation.d.ts","../../node_modules/next/router.d.ts","../../node_modules/next/dist/client/script.d.ts","../../node_modules/next/script.d.ts","../../node_modules/next/dist/compiled/@edge-runtime/primitives/url.d.ts","../../node_modules/next/dist/compiled/@vercel/og/satori/index.d.ts","../../node_modules/next/dist/compiled/@vercel/og/types.d.ts","../../node_modules/next/server.d.ts","../../node_modules/next/types/global.d.ts","../../node_modules/next/types/compiled.d.ts","../../node_modules/next/types.d.ts","../../node_modules/next/index.d.ts","../../node_modules/next/image-types/global.d.ts","../types/routes.d.ts","../../next-env.d.ts","../../lib/auth.ts","../../middleware.ts","../../next.config.ts","../../node_modules/source-map-js/source-map.d.ts","../../node_modules/postcss/lib/previous-map.d.ts","../../node_modules/postcss/lib/input.d.ts","../../node_modules/postcss/lib/css-syntax-error.d.ts","../../node_modules/postcss/lib/declaration.d.ts","../../node_modules/postcss/lib/root.d.ts","../../node_modules/postcss/lib/warning.d.ts","../../node_modules/postcss/lib/lazy-result.d.ts","../../node_modules/postcss/lib/no-work-result.d.ts","../../node_modules/postcss/lib/processor.d.ts","../../node_modules/postcss/lib/result.d.ts","../../node_modules/postcss/lib/document.d.ts","../../node_modules/postcss/lib/rule.d.ts","../../node_modules/postcss/lib/node.d.ts","../../node_modules/postcss/lib/comment.d.ts","../../node_modules/postcss/lib/container.d.ts","../../node_modules/postcss/lib/at-rule.d.ts","../../node_modules/postcss/lib/list.d.ts","../../node_modules/postcss/lib/postcss.d.ts","../../node_modules/postcss/lib/postcss.d.mts","../../node_modules/tailwindcss/types/generated/corepluginlist.d.ts","../../node_modules/tailwindcss/types/generated/colors.d.ts","../../node_modules/tailwindcss/types/config.d.ts","../../node_modules/tailwindcss/types/index.d.ts","../../tailwind.config.ts","../../app/api/customer-imports/confirm/route.ts","../../app/api/customer-imports/preview/route.ts","../../app/api/login/route.ts","../../app/api/logout/route.ts","../../app/api/me/route.ts","../../app/api/report-settings/route.ts","../../app/api/report-settings/preview/route.ts","../../app/api/v1/[...path]/route.ts","../../lib/api.ts","../../lib/users-query.d.ts","../../app/layout.tsx","../../components/brand/brand-logo.tsx","../../app/loading.tsx","../../app/not-found.tsx","../../app/page.tsx","../../node_modules/lucide-react/dist/lucide-react.d.ts","../../components/auth.tsx","../../components/app-shell.tsx","../../node_modules/@tanstack/query-core/build/modern/_tsup-dts-rollup.d.ts","../../node_modules/@tanstack/query-core/build/modern/index.d.ts","../../node_modules/@tanstack/react-query/build/modern/_tsup-dts-rollup.d.ts","../../node_modules/@tanstack/react-query/build/modern/index.d.ts","../../components/query-provider.tsx","../../app/(app)/layout.tsx","../../node_modules/zod/v3/helpers/typealiases.d.cts","../../node_modules/zod/v3/helpers/util.d.cts","../../node_modules/zod/v3/index.d.cts","../../node_modules/zod/v3/zoderror.d.cts","../../node_modules/zod/v3/locales/en.d.cts","../../node_modules/zod/v3/errors.d.cts","../../node_modules/zod/v3/helpers/parseutil.d.cts","../../node_modules/zod/v3/helpers/enumutil.d.cts","../../node_modules/zod/v3/helpers/errorutil.d.cts","../../node_modules/zod/v3/helpers/partialutil.d.cts","../../node_modules/zod/v3/standard-schema.d.cts","../../node_modules/zod/v3/types.d.cts","../../node_modules/zod/v3/external.d.cts","../../node_modules/zod/index.d.cts","../../node_modules/react-hook-form/dist/constants.d.ts","../../node_modules/react-hook-form/dist/utils/createsubject.d.ts","../../node_modules/react-hook-form/dist/types/events.d.ts","../../node_modules/react-hook-form/dist/types/path/common.d.ts","../../node_modules/react-hook-form/dist/types/path/eager.d.ts","../../node_modules/react-hook-form/dist/types/path/index.d.ts","../../node_modules/react-hook-form/dist/types/fieldarray.d.ts","../../node_modules/react-hook-form/dist/types/resolvers.d.ts","../../node_modules/react-hook-form/dist/types/form.d.ts","../../node_modules/react-hook-form/dist/types/utils.d.ts","../../node_modules/react-hook-form/dist/types/fields.d.ts","../../node_modules/react-hook-form/dist/types/errors.d.ts","../../node_modules/react-hook-form/dist/types/validator.d.ts","../../node_modules/react-hook-form/dist/types/controller.d.ts","../../node_modules/react-hook-form/dist/types/watch.d.ts","../../node_modules/react-hook-form/dist/types/index.d.ts","../../node_modules/react-hook-form/dist/controller.d.ts","../../node_modules/react-hook-form/dist/form.d.ts","../../node_modules/react-hook-form/dist/formstatesubscribe.d.ts","../../node_modules/react-hook-form/dist/logic/appenderrors.d.ts","../../node_modules/react-hook-form/dist/logic/createformcontrol.d.ts","../../node_modules/react-hook-form/dist/logic/index.d.ts","../../node_modules/react-hook-form/dist/usecontroller.d.ts","../../node_modules/react-hook-form/dist/usefieldarray.d.ts","../../node_modules/react-hook-form/dist/useform.d.ts","../../node_modules/react-hook-form/dist/useformcontext.d.ts","../../node_modules/react-hook-form/dist/useformstate.d.ts","../../node_modules/react-hook-form/dist/usewatch.d.ts","../../node_modules/react-hook-form/dist/utils/get.d.ts","../../node_modules/react-hook-form/dist/utils/set.d.ts","../../node_modules/react-hook-form/dist/utils/index.d.ts","../../node_modules/react-hook-form/dist/watch.d.ts","../../node_modules/react-hook-form/dist/index.d.ts","../../node_modules/@hookform/resolvers/zod/dist/types.d.ts","../../node_modules/@hookform/resolvers/zod/dist/zod.d.ts","../../node_modules/@hookform/resolvers/zod/dist/index.d.ts","../../components/crud-page.tsx","../../app/(app)/contacts/page.tsx","../../app/(app)/customers/page.tsx","../../app/(app)/customers/import/page.tsx","../../lib/validation-result.tsx","../../app/(app)/dashboard/page.tsx","../../app/(app)/devices/page.tsx","../../app/(app)/documents/page.tsx","../../app/(app)/equipment/page.tsx","../../app/(app)/locations/page.tsx","../../app/(app)/profile/security/page.tsx","../../app/(app)/settings/report-layout/page.tsx","../../app/(app)/users/page.tsx","../../node_modules/@tanstack/table-core/build/lib/utils.d.ts","../../node_modules/@tanstack/table-core/build/lib/core/table.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/columnvisibility.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/columnordering.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/columnpinning.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/rowpinning.d.ts","../../node_modules/@tanstack/table-core/build/lib/core/headers.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/columnfaceting.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/globalfaceting.d.ts","../../node_modules/@tanstack/table-core/build/lib/filterfns.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/columnfiltering.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/globalfiltering.d.ts","../../node_modules/@tanstack/table-core/build/lib/sortingfns.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/rowsorting.d.ts","../../node_modules/@tanstack/table-core/build/lib/aggregationfns.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/columngrouping.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/rowexpanding.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/columnsizing.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/rowpagination.d.ts","../../node_modules/@tanstack/table-core/build/lib/features/rowselection.d.ts","../../node_modules/@tanstack/table-core/build/lib/core/row.d.ts","../../node_modules/@tanstack/table-core/build/lib/core/cell.d.ts","../../node_modules/@tanstack/table-core/build/lib/core/column.d.ts","../../node_modules/@tanstack/table-core/build/lib/types.d.ts","../../node_modules/@tanstack/table-core/build/lib/columnhelper.d.ts","../../node_modules/@tanstack/table-core/build/lib/utils/getcorerowmodel.d.ts","../../node_modules/@tanstack/table-core/build/lib/utils/getexpandedrowmodel.d.ts","../../node_modules/@tanstack/table-core/build/lib/utils/getfacetedminmaxvalues.d.ts","../../node_modules/@tanstack/table-core/build/lib/utils/getfacetedrowmodel.d.ts","../../node_modules/@tanstack/table-core/build/lib/utils/getfaceteduniquevalues.d.ts","../../node_modules/@tanstack/table-core/build/lib/utils/getfilteredrowmodel.d.ts","../../node_modules/@tanstack/table-core/build/lib/utils/getgroupedrowmodel.d.ts","../../node_modules/@tanstack/table-core/build/lib/utils/getpaginationrowmodel.d.ts","../../node_modules/@tanstack/table-core/build/lib/utils/getsortedrowmodel.d.ts","../../node_modules/@tanstack/table-core/build/lib/index.d.ts","../../node_modules/@tanstack/react-table/build/lib/index.d.ts","../../app/(app)/validations/page.tsx","../../components/action-button.tsx","../../components/validations/validation-editor.tsx","../../app/(app)/validations/[id]/edit/page.tsx","../../app/(app)/validations/[id]/preview/page.tsx","../../app/(app)/validations/new/page.tsx","../../app/(app)/validations/quick-start/page.tsx","../../app/(auth)/login/page.tsx","../../components/data-table.tsx","../../components/resource-page.tsx","../types/cache-life.d.ts","../types/validator.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.ts"],"fileIdsList":[[97,146,163,164,488,489,490,491],[97,146,163,164],[97,146,163,164,231,529,532,535,565,566,567,568,569,570,571,572,575,579,588,640,641,642,644,645,646,647,648,649,650,651,688,691,692,693,694,695],[97,146,163,164,231,573,581,586,602,639],[85,97,146,163,164,231,512,580,581],[97,146,163,164,231,573,602,639],[97,146,163,164,231,512,573,576,580,581,586,643],[97,146,163,164,231,580],[97,146,163,164,231,581,582,587],[85,97,146,163,164,231,573,580,581,602,635,638],[85,97,146,163,164,231,580,581,586],[85,97,146,163,164,231,573,574,580,581,586,602,635,638],[97,146,163,164,231,522,690],[85,97,146,163,164,231,512,522,573,580,581],[97,146,163,164,231,690],[85,97,146,163,164,231,512,573,580,581,586,643,687],[85,97,146,163,164,231,573,580,581,586],[85,97,146,163,164,231,573,576,580,581,602,635,638],[97,146,163,164,231,506,529,537],[97,146,163,164,231,530,533],[97,146,163,164,231,576],[97,146,163,164,231,512,576],[97,146,163,164,231,522],[85,97,146,163,164,231,512,522,576,580,581],[85,97,146,163,164,231,522,573],[97,146,163,164,231,510],[85,97,146,163,164,231,573,580,581,586,602,635,638],[97,146,163,164,231,687],[85,97,146,163,164,231,586],[97,146,163,164,231,573,580,581,586,687,696],[85,97,146,163,164,231,573,580,581,586,602,635,638,643,689],[97,146,163,164,231],[97,146,163,164,231,529,537],[97,146,163,164,533,534,535],[97,146,163,164,231,533],[97,146,163,164,636,637],[97,146,163,164,602,635],[97,146,163,164,636],[97,146,163,164,583],[85,97,146,163,164,231,584],[97,146,163,164,585],[85,97,146,163,164,686],[97,146,163,164,667],[97,146,163,164,652,675],[97,146,163,164,675],[97,146,163,164,675,686],[97,146,163,164,661,675,686],[97,146,163,164,666,675,686],[97,146,163,164,656,675],[97,146,163,164,664,675,686],[97,146,163,164,662],[97,146,163,164,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685],[97,146,163,164,665],[97,146,163,164,652,653,654,655,656,657,658,659,660,662,663,665,667,668,669,670,671,672,673,674],[97,143,144,146,163,164],[97,145,146,163,164],[146,163,164],[97,146,151,163,164,181],[97,146,147,152,157,163,164,166,178,189],[97,146,147,148,157,163,164,166],[92,93,94,97,146,163,164],[97,146,149,163,164,190],[97,146,150,151,158,163,164,167],[97,146,151,163,164,178,186],[97,146,152,154,157,163,164,166],[97,145,146,153,163,164],[97,146,154,155,163,164],[97,146,156,157,163,164],[97,145,146,157,163,164],[97,146,157,158,159,163,164,178,189],[97,146,157,158,159,163,164,173,178,181],[97,138,146,154,157,160,163,164,166,178,189],[97,146,157,158,160,161,163,164,166,178,186,189],[97,146,160,162,163,164,178,186,189],[95,96,97,98,99,100,101,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195],[97,146,157,163,164],[97,146,163,164,165,189],[97,146,154,157,163,164,166,178],[97,146,163,164,167],[97,146,163,164,168],[97,145,146,163,164,169],[97,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195],[97,146,163,164,171],[97,146,163,164,172],[97,146,157,163,164,173,174],[97,146,163,164,173,175,190,192],[97,146,158,163,164],[97,146,157,163,164,178,179,181],[97,146,163,164,180,181],[97,146,163,164,178,179],[97,146,163,164,181],[97,146,163,164,182],[97,143,146,163,164,178,183,189],[97,146,157,163,164,184,185],[97,146,163,164,184,185],[97,146,151,163,164,166,178,186],[97,146,163,164,187],[97,146,163,164,166,188],[97,146,160,163,164,172,189],[97,146,151,163,164,190],[97,146,163,164,178,191],[97,146,163,164,165,192],[97,146,163,164,193],[97,138,146,163,164],[97,138,146,157,159,163,164,169,178,181,189,191,192,194],[97,146,163,164,178,195],[85,89,97,146,163,164,197,198,199,201,483,528],[85,97,146,163,164],[85,89,97,146,163,164,197,198,199,200,464,483,528],[85,89,97,146,163,164,197,198,200,201,483,528],[85,97,146,163,164,201,464,465],[85,97,146,163,164,201,464],[85,89,97,146,163,164,198,199,200,201,483,528],[85,89,97,146,163,164,197,199,200,201,483,528],[83,84,97,146,163,164],[97,146,163,164,486],[97,146,163,164,434,497,498],[97,146,163,164,206,207,209,221,245,360,371,479],[97,146,163,164,209,240,241,242,244,479],[97,146,163,164,209,377,379,381,382,384,479,481],[97,146,163,164,209,243,280,479],[97,146,163,164,207,209,220,221,227,233,238,359,360,361,370,479,481],[97,146,163,164,479],[97,146,163,164,216,222,241,261,356],[97,146,163,164,209],[97,146,163,164,202,216,222],[97,146,163,164,388],[97,146,163,164,385,386,388],[97,146,163,164,385,387,479],[97,146,160,163,164,261,458,476],[97,146,160,163,164,332,335,351,356,476],[97,146,160,163,164,304,476],[97,146,163,164,364],[97,146,163,164,363,364,365],[97,146,163,164,363],[91,97,146,160,163,164,202,209,221,227,233,239,241,245,246,259,260,327,357,358,371,479,483],[97,146,163,164,206,209,243,280,377,378,383,479,531],[97,146,163,164,243,531],[97,146,163,164,206,260,429,479,531],[97,146,163,164,531],[97,146,163,164,209,243,244,531],[97,146,163,164,380,531],[97,146,163,164,246,359,362,369],[85,97,146,163,164,434],[97,146,163,164,172,216,231],[97,146,163,164,216,231],[85,97,146,163,164,301],[85,97,146,163,164,231],[85,97,146,163,164,222,231,434],[97,146,163,164,216,287,301,302,513,520],[97,146,163,164,286,514,515,516,517,519],[97,146,163,164,337],[97,146,163,164,337,338],[97,146,163,164,220,222,289,290],[97,146,163,164,222,296,297],[97,146,163,164,222,291,299],[97,146,163,164,296],[97,146,163,164,214,222,289,290,291,292,293,294,295,296,299],[97,146,163,164,222,289,296,297,298,300],[97,146,163,164,222,290,292,293],[97,146,163,164,290,292,295,297],[97,146,163,164,518],[97,146,163,164,222],[85,97,146,163,164,210,507],[85,97,146,163,164,189],[85,97,146,163,164,243,278],[85,97,146,163,164,243,371],[97,146,163,164,276,281],[85,97,146,163,164,277,485],[85,89,97,146,160,163,164,197,198,199,200,201,483,527],[97,146,160,163,164,222],[97,146,160,163,164,221,226,307,324,366,367,371,426,428,479,480],[97,146,163,164,259,368],[97,146,163,164,483],[97,146,163,164,208],[85,97,146,163,164,213,216,431,447,449],[97,146,163,164,172,216,431,446,447,448,530],[97,146,163,164,440,441,442,443,444,445],[97,146,163,164,442],[97,146,163,164,446],[97,146,163,164,231,395,396,398],[85,97,146,163,164,222,389,390,391,392,397],[97,146,163,164,395,397],[97,146,163,164,393],[97,146,163,164,394],[85,97,146,163,164,231,277,485],[85,97,146,163,164,231,484,485],[85,97,146,163,164,231,485],[97,146,163,164,324,325],[97,146,163,164,325],[97,146,160,163,164,480,485],[97,146,163,164,354],[97,145,146,163,164,353],[97,146,163,164,216,222,228,230,332,345,349,351,428,431,468,469,476,480],[97,146,163,164,222,271,293],[97,146,163,164,332,343,346,351],[85,97,146,163,164,213,216,332,335,351,354,388,435,436,437,438,439,450,451,452,453,454,455,456,457,531],[97,146,163,164,213,216,241,332,339,340,341,344,345],[97,146,163,164,178,222,241,343,350,431,432,476],[97,146,163,164,347],[97,146,160,163,164,172,210,222,226,236,268,269,272,324,327,392,426,427,468,479,480,481,483,531],[97,146,163,164,213,214,216],[97,146,163,164,332],[97,145,146,163,164,241,268,269,326,327,328,329,330,331,480],[97,146,163,164,351],[97,145,146,163,164,215,216,226,230,266,332,339,340,341,342,343,346,347,348,349,350,469],[97,146,160,163,164,266,267,339,480,481],[97,146,163,164,241,269,324,327,332,428,480],[97,146,160,163,164,479,481],[97,146,160,163,164,178,476,480,481],[97,146,160,163,164,172,202,216,221,228,230,233,236,243,263,268,269,270,271,272,307,308,310,313,315,318,319,320,321,323,371,426,428,476,479,480,481],[97,146,160,163,164,178],[97,146,163,164,209,210,211,239,476,477,478,483,485,531],[97,146,163,164,206,207,479],[97,146,163,164,400],[97,146,160,163,164,178,189,218,384,388,389,390,391,392,398,399,531],[97,146,163,164,172,189,202,216,218,230,233,269,308,313,323,324,377,404,405,406,412,415,416,426,428,476,479],[97,146,163,164,233,239,246,259,269,327,479],[97,146,160,163,164,189,210,221,230,269,410,476,479],[97,146,163,164,430],[97,146,160,163,164,400,413,414,423],[97,146,163,164,476,479],[97,146,163,164,329,469],[97,146,163,164,230,268,371,485],[97,146,160,163,164,172,208,313,373,377,406,412,415,418,476],[97,146,160,163,164,246,259,377,419],[97,146,163,164,209,270,371,421,479,481],[97,146,160,163,164,189,392,479],[97,146,160,163,164,243,270,371,372,373,382,400,420,422,479],[91,97,146,160,163,164,268,425,483,485],[97,146,163,164,322,426],[97,146,160,163,164,172,216,219,221,222,228,230,236,245,246,259,269,272,308,310,320,323,324,371,404,405,406,407,409,411,426,428,476,485],[97,146,160,163,164,178,246,412,417,423,476],[97,146,163,164,249,250,251,252,253,254,255,256,257,258],[97,146,163,164,263,314],[97,146,163,164,316],[97,146,163,164,314],[97,146,163,164,316,317],[97,146,160,163,164,220,221,222,226,227,480],[97,146,160,163,164,172,208,210,228,232,268,271,272,306,426,476,481,483,485],[97,146,160,163,164,172,189,212,219,220,230,232,269,424,469,475,480],[97,146,163,164,339],[97,146,163,164,340],[97,146,163,164,222,233,468],[97,146,163,164,341],[97,146,163,164,215],[97,146,163,164,217,229],[97,146,160,163,164,217,221,228],[97,146,163,164,224,229],[97,146,163,164,225],[97,146,163,164,217,218],[97,146,163,164,217,273],[97,146,163,164,217],[97,146,163,164,219,263,312],[97,146,163,164,311],[97,146,163,164,216,218,219],[97,146,163,164,219,309],[97,146,163,164,216,218],[97,146,163,164,268,371],[97,146,163,164,468],[97,146,160,163,164,189,228,230,234,268,371,425,428,431,432,433,459,460,463,467,469,476,480],[97,146,163,164,282,285,287,288,301,302],[85,97,146,163,164,199,201,231,461,462],[85,97,146,163,164,199,201,231,461,462,466],[97,146,163,164,355],[97,146,163,164,241,262,267,268,332,333,334,335,336,338,351,352,354,357,425,428,479,481],[97,146,163,164,301],[97,146,160,163,164,306,476],[97,146,163,164,306],[97,146,160,163,164,228,274,303,305,307,425,476,483,485],[97,146,163,164,282,283,284,285,287,288,301,302,484],[91,97,146,160,163,164,172,189,217,218,230,236,268,269,272,371,423,424,426,476,479,480,483],[97,146,163,164,213,216,223],[97,146,163,164,267,269,401,404],[97,146,163,164,267,402,470,471,472,473,474],[97,146,160,163,164,263,479],[97,146,160,163,164],[97,146,163,164,266,351],[97,146,163,164,265],[97,146,163,164,267,320],[97,146,163,164,264,266,479],[97,146,160,163,164,212,267,401,402,403,476,479,480],[85,97,146,163,164,216,222,300],[85,97,146,163,164,214],[97,146,163,164,204,205],[85,97,146,163,164,210],[85,97,146,163,164,216,286],[85,91,97,146,163,164,268,272,483,485],[97,146,163,164,210,507,508],[85,97,146,163,164,281],[85,97,146,163,164,172,189,208,275,277,279,280,485],[97,146,163,164,216,243,480],[97,146,163,164,216,408],[85,97,146,158,160,163,164,172,206,208,281,379,483,484],[85,97,146,163,164,197,198,199,200,201,483,528],[85,86,87,88,89,97,146,163,164],[97,146,151,163,164],[97,146,163,164,374,375,376],[97,146,163,164,374],[85,89,97,146,160,162,163,164,172,196,197,198,199,200,201,202,208,236,241,418,446,481,482,485,528],[97,146,163,164,493],[97,146,163,164,495],[97,146,163,164,499],[97,146,163,164,501],[97,146,163,164,503,504,505],[97,146,163,164,509],[90,97,146,163,164,487,492,494,496,500,502,506,510,512,522,523,525,529,530,531,532],[97,146,163,164,511],[97,146,163,164,521],[97,146,163,164,277],[97,146,163,164,524],[97,145,146,163,164,267,401,402,404,470,471,473,474,526,528],[97,146,163,164,196],[97,146,163,164,555],[97,146,163,164,553,555],[97,146,163,164,544,552,553,554,556,558],[97,146,163,164,542],[97,146,163,164,545,550,555,558],[97,146,163,164,541,558],[97,146,163,164,545,546,549,550,551,558],[97,146,163,164,545,546,547,549,550,558],[97,146,163,164,542,543,544,545,546,550,551,552,554,555,556,558],[97,146,163,164,558],[97,146,163,164,540,542,543,544,545,546,547,549,550,551,552,553,554,555,556,557],[97,146,163,164,540,558],[97,146,163,164,545,547,548,550,551,558],[97,146,163,164,549,558],[97,146,163,164,550,551,555,558],[97,146,163,164,543,553],[85,97,146,163,164,618],[97,146,163,164,618,619,620,621,624,625,626,627,628,629,630,633,634],[97,146,163,164,618],[97,146,163,164,622,623],[85,97,146,163,164,615,618],[97,146,163,164,612,613,615],[97,146,163,164,608,611,613,615],[97,146,163,164,612,615],[85,97,146,163,164,603,604,605,608,609,610,612,613,614,615],[97,146,163,164,605,608,609,610,611,612,613,614,615,616,617],[97,146,163,164,612],[97,146,163,164,606,612,613],[97,146,163,164,606,607],[97,146,163,164,611,613,614],[97,146,163,164,611],[97,146,163,164,603,608,611,613,614],[85,97,146,163,164,608,611,612,613],[97,146,163,164,631,632],[97,146,163,164,178,196],[97,146,163,164,560,561],[97,146,163,164,559,562],[97,110,114,146,163,164,189],[97,110,146,163,164,178,189],[97,105,146,163,164],[97,107,110,146,163,164,186,189],[97,146,163,164,166,186],[97,105,146,163,164,196],[97,107,110,146,163,164,166,189],[97,102,103,106,109,146,157,163,164,178,189],[97,110,117,146,163,164],[97,102,108,146,163,164],[97,110,131,132,146,163,164],[97,106,110,146,163,164,181,189,196],[97,131,146,163,164,196],[97,104,105,146,163,164,196],[97,110,146,163,164],[97,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132,133,134,135,136,137,146,163,164],[97,110,125,146,163,164],[97,110,117,118,146,163,164],[97,108,110,118,119,146,163,164],[97,109,146,163,164],[97,102,105,110,146,163,164],[97,110,114,118,119,146,163,164],[97,114,146,163,164],[97,108,110,113,146,163,164,189],[97,102,107,110,117,146,163,164],[97,146,163,164,178],[97,105,110,131,146,163,164,194,196],[97,146,163,164,601],[97,146,163,164,592,593],[97,146,163,164,589,590,592,594,595,600],[97,146,163,164,590,592],[97,146,163,164,600],[97,146,163,164,592],[97,146,163,164,589,590,592,595,596,597,598,599],[97,146,163,164,589,590,591],[97,146,163,164,231,563]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","signature":false,"impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","signature":false,"impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","signature":false,"impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","signature":false,"impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","signature":false,"impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","signature":false,"impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","signature":false,"impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","signature":false,"impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","signature":false,"impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","signature":false,"impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","signature":false,"impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"7e29f41b158de217f94cb9676bf9cbd0cd9b5a46e1985141ed36e075c52bf6ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","signature":false,"impliedFormat":1},{"version":"dc782ff85b2cb10075ecffc158af7bfb27ff97bf8491c917efea0c3d622d5ac4","signature":false,"impliedFormat":1},{"version":"acd8fd5090ac73902278889c38336ff3f48af6ba03aa665eb34a75e7ba1dccc4","signature":false,"impliedFormat":1},{"version":"d6258883868fb2680d2ca96bc8b1352cab69874581493e6d52680c5ffecdb6cc","signature":false,"impliedFormat":1},{"version":"1b61d259de5350f8b1e5db06290d31eaebebc6baafd5f79d314b5af9256d7153","signature":false,"impliedFormat":1},{"version":"f258e3960f324a956fc76a3d3d9e964fff2244ff5859dcc6ce5951e5413ca826","signature":false,"impliedFormat":1},{"version":"643f7232d07bf75e15bd8f658f664d6183a0efaca5eb84b48201c7671a266979","signature":false,"impliedFormat":1},{"version":"21da358700a3893281ce0c517a7a30cbd46be020d9f0c3f2834d0a8ad1f5fc75","signature":false,"impliedFormat":1},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","signature":false,"impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","signature":false,"impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","signature":false,"impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","signature":false,"impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","signature":false,"impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","signature":false,"impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","signature":false,"impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","signature":false,"impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","signature":false,"impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","signature":false,"impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","signature":false,"impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","signature":false,"impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","signature":false,"impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","signature":false,"impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","signature":false,"impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","signature":false,"impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","signature":false,"impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","signature":false,"impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","signature":false,"impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","signature":false,"impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","signature":false,"impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","signature":false,"impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","signature":false,"impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","signature":false,"impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","signature":false,"impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","signature":false,"impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","signature":false,"impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","signature":false,"impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","signature":false,"impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","signature":false,"impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","signature":false,"impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","signature":false,"impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","signature":false,"impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","signature":false,"impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","signature":false,"impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","signature":false,"impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","signature":false,"impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","signature":false,"impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","signature":false,"impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","signature":false,"impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","signature":false,"impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","signature":false,"impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","signature":false,"impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","signature":false,"impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","signature":false,"impliedFormat":1},{"version":"78dbea00e90d2df8ea3dbef0cc379d95b8be9b71cd6bde4c28728f306811803b","signature":false,"impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","signature":false,"impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","signature":false,"impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","signature":false,"impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e1e46d0a9837ee058c100501080c920fa98081ea3956af0374308ba6f22a33e","signature":false,"impliedFormat":1},{"version":"272ca407e0c9068bdc5152552d876e68037ceae3de62e529306403e973dec8e1","signature":false,"impliedFormat":1},{"version":"fa7834c715d5357e4540cee40ce96c3250ddb67a7b879a6b7fa0e86d6696f121","signature":false,"impliedFormat":1},{"version":"22dfb07a7ab15b66ac043829056fe70124844636ae719551812ac631ba04985b","signature":false,"impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","signature":false,"impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","signature":false,"impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","signature":false,"impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"a6f137d651076822d4fe884287e68fd61785a0d3d1fdb250a5059b691fa897db","signature":false,"impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","signature":false,"impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","signature":false,"impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"bceb58df66ab8fb00170df20cd813978c5ab84be1d285710c4eb005d8e9d8efb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","signature":false,"impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","signature":false,"impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","signature":false,"impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","signature":false,"impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","signature":false,"impliedFormat":1},{"version":"0cb167c371eaa8c869f8a7656a7296f2e4fae43b4d8b803a680236b24794e5f9","signature":false,"impliedFormat":1},{"version":"0a839dba0287cc0481ad4beedd48a1c64acf1e212ae865d1315f7007ca215161","signature":false,"impliedFormat":1},{"version":"38dc4655376cd1a4bd6bb3763d92949233e33d38d3dd3cbea7bbf218175a38ef","signature":false,"impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","signature":false,"impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","signature":false,"impliedFormat":1},{"version":"d61e0a64cd175208ac0b83670151a9a6b5916f0d1ffcdc5c29c90b1cebfc5045","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","signature":false,"impliedFormat":1},{"version":"48a679952eefe4cb776d5a0e1ccba2d3eb53b57448bbb7abc1fcebcbd5440188","signature":false,"impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","signature":false,"impliedFormat":1},{"version":"2d14da6ecb49bf828d83948765ec2d3a579d476bbb9645e749610baa6ec880ca","signature":false,"impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","signature":false,"impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","signature":false,"impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","signature":false,"impliedFormat":1},{"version":"0aef708fb4c7a6b915e8305cbfac40cd207b032dbaabe9a01889a5fff3254681","signature":false,"impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","signature":false,"impliedFormat":1},{"version":"ad9bdafb4e7abf14cc53ce7970486a84c87831e62891e5dfe798ddcd55e84701","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"358765d5ea8afd285d4fd1532e78b88273f18cb3f87403a9b16fef61ac9fdcfe","signature":false,"impliedFormat":1},{"version":"71d3ae6a5e73ca4130762560425e00984ebaff64d5353a3333d1bb7eb86ef336","signature":false,"impliedFormat":1},{"version":"2beff543f6e9a9701df88daeee3cdd70a34b4a1c11cb4c734472195a5cb2af54","signature":false,"impliedFormat":1},{"version":"2e07abf27aa06353d46f4448c0bbac73431f6065eef7113128a5cd804d0c384d","signature":false,"impliedFormat":1},{"version":"be1cc4d94ea60cbe567bc29ed479d42587bf1e6cba490f123d329976b0fe4ee5","signature":false,"impliedFormat":1},{"version":"42bc0e1a903408137c3df2b06dfd7e402cdab5bbfa5fcfb871b22ebfdb30bd0b","signature":false,"impliedFormat":1},{"version":"9894dafe342b976d251aac58e616ac6df8db91fb9d98934ff9dd103e9e82578f","signature":false,"impliedFormat":1},{"version":"413df52d4ea14472c2fa5bee62f7a40abd1eb49be0b9722ee01ee4e52e63beb2","signature":false,"impliedFormat":1},{"version":"db6d2d9daad8a6d83f281af12ce4355a20b9a3e71b82b9f57cddcca0a8964a96","signature":false,"impliedFormat":1},{"version":"446a50749b24d14deac6f8843e057a6355dd6437d1fac4f9e5ce4a5071f34bff","signature":false,"impliedFormat":1},{"version":"182e9fcbe08ac7c012e0a6e2b5798b4352470be29a64fdc114d23c2bab7d5106","signature":false,"impliedFormat":1},{"version":"2f4e6b4d39426a1b85ecf4bdeb9dddbf4d9b3397d95d8555d46f925c9519ec7d","signature":false,"impliedFormat":1},{"version":"78a2869ad0cbf3f9045dda08c0d4562b7e1b2bfe07b19e0db072f5c3c56e9584","signature":false,"impliedFormat":1},{"version":"89d5d28d4f57e000b836ac273079be1b75710e28ce14750d081fb420d37e2ca5","signature":false,"impliedFormat":1},{"version":"fd4e24ccff3966390600d7f5d6aa1fed5a512e92ada735ea5fbc933d313ad3d3","signature":false,"impliedFormat":1},{"version":"b7cddfe1aa6b86b5fad3c9ccb30d05b3ccb165aebbf112f48d2d8a5f69dd98b1","signature":false,"impliedFormat":1},{"version":"a86f82d646a739041d6702101afa82dcb935c416dd93cbca7fd754fd0282ce1f","signature":false,"impliedFormat":1},{"version":"ad0d1d75d129b1c80f911be438d6b61bfa8703930a8ff2be2f0e1f8a91841c64","signature":false,"impliedFormat":1},{"version":"bd2c7ada3dee03653d3f601011d30072194bc3970cd93208f9588fbdc0c69347","signature":false,"impliedFormat":1},{"version":"e480da45d32313e7174b265674da504f075f59ef326852f0c5a5d863b438ae85","signature":false,"impliedFormat":1},{"version":"ad54850f61fcf5d014e11be80d2f46fea9265cfa7e77456da876f7833ef81769","signature":false,"impliedFormat":1},{"version":"6f7c9e8bd2b5b6a080b07080065f94900bd3c7e5ebbd3047bc33fcce2fab1dd8","signature":false,"impliedFormat":1},{"version":"3e7efde639c6a6c3edb9847b3f61e308bf7a69685b92f665048c45132f51c218","signature":false,"impliedFormat":1},{"version":"df45ca1176e6ac211eae7ddf51336dc075c5314bc5c253651bae639defd5eec5","signature":false,"impliedFormat":1},{"version":"8a0e762ceb20c7e72504feef83d709468a70af4abccb304f32d6b9bac1129b2c","signature":false,"impliedFormat":1},{"version":"da5950ee2a90721df6f3fba45f5d05308f7e4c35835392215dd2cd404505e2de","signature":false,"impliedFormat":1},{"version":"ce75b1aebb33d510ff28af960a9221410a3eaf7f18fc5f21f9404075fba77256","signature":false,"impliedFormat":1},{"version":"f42d5fed19610d485c646a0c430e768115567d078c7fc855c57b0c578b3d6cd3","signature":false,"impliedFormat":1},{"version":"ee8df1cb8d0faaca4013a1b442e99130769ce06f438d18d510fed95890067563","signature":false,"impliedFormat":1},{"version":"d5630f2ad9b4541e5ce891648121022f9412ecdca1820baa1f0104f70fd7eff7","signature":false,"impliedFormat":1},{"version":"4d15375ab13497104bc8fe56fdef2b5fd6853f29255737d23a33fa306ff7fd69","signature":false,"impliedFormat":1},{"version":"2cd3fc1d0d6a1e85baffd2d4f50f5efb192b5446eef567e97c94765402f0aad4","signature":false,"impliedFormat":1},{"version":"e4cbf2f1e89ecccaddd2c045e600ae41b732295953fb06247c7dcbc2d281ed30","signature":false,"impliedFormat":1},{"version":"6dcedaef57dff0d79a05ab0ab602cde74db803d1e765468bf91263786a383e1b","signature":false,"impliedFormat":1},{"version":"8c1697d90c394a6fd955b98eae01238eff628e129b987a68aea10f898a48e7da","signature":false,"impliedFormat":1},{"version":"7580e62139cb2b44a0270c8d01abcbfcba2819a02514a527342447fa69b34ef1","signature":false,"impliedFormat":1},{"version":"b838d4c72740eb0afd284bf7575b74c624b105eff2e8c7b4aeead57e7ac320ff","signature":false,"impliedFormat":1},{"version":"f374cb24e93e7798c4d9e83ff872fa52d2cdb36306392b840a6ddf46cb925cb6","signature":false,"impliedFormat":1},{"version":"d10d63718e1646c2279e3b33831f82c60e31f622b2b7020f1196409ca4c09242","signature":false,"impliedFormat":1},{"version":"106c6025f1d99fd468fd8bf6e5bda724e11e5905a4076c5d29790b6c3745e50c","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"148679c6d0f449210a96e7d2e562d589e56fcde87f843a92808b3ff103f1a774","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"02436d7e9ead85e09a2f8e27d5f47d9464bced31738dec138ca735390815c9f0","signature":false,"impliedFormat":1},{"version":"f8d5ff8eafd37499f2b6a98659dd9b45a321de186b8db6b6142faed0fea3de77","signature":false,"impliedFormat":1},{"version":"c86fe861cf1b4c46a0fb7d74dffe596cf679a2e5e8b1456881313170f092e3fa","signature":false,"impliedFormat":1},{"version":"a22dd55aa4d39906252000ab8e8a1b83b195eef7f4274eb51e457c1f11cf6580","signature":false,"impliedFormat":1},{"version":"540cc83ab772a2c6bc509fe1354f314825b5dba3669efdfbe4693ecd3048e34f","signature":false,"impliedFormat":1},{"version":"121b0696021ab885c570bbeb331be8ad82c6efe2f3b93a6e63874901bebc13e3","signature":false,"impliedFormat":1},{"version":"612d9da66bb046a9c1e2e8d026245ded881fc4b9f98cbfae714415d57ee0ae0b","signature":false,"impliedFormat":1},{"version":"32c2ad9494dad5d11b0564a619fee18f388db6c1e9e2cd3c360b3122549691eb","signature":false,"impliedFormat":1},{"version":"6c301d40aec56a74ec7bd7324e31a728dadf9bfba3e96def02938d3d973534ec","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","signature":false,"impliedFormat":1},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","signature":false,"impliedFormat":1},{"version":"aa14cee20aa0db79f8df101fc027d929aec10feb5b8a8da3b9af3895d05b7ba2","signature":false,"impliedFormat":1},{"version":"493c700ac3bd317177b2eb913805c87fe60d4e8af4fb39c41f04ba81fae7e170","signature":false,"impliedFormat":1},{"version":"aeb554d876c6b8c818da2e118d8b11e1e559adbe6bf606cc9a611c1b6c09f670","signature":false,"impliedFormat":1},{"version":"acf5a2ac47b59ca07afa9abbd2b31d001bf7448b041927befae2ea5b1951d9f9","signature":false,"impliedFormat":1},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","signature":false,"impliedFormat":1},{"version":"d71291eff1e19d8762a908ba947e891af44749f3a2cbc5bd2ec4b72f72ea795f","signature":false,"impliedFormat":1},{"version":"c0480e03db4b816dff2682b347c95f2177699525c54e7e6f6aa8ded890b76be7","signature":false,"impliedFormat":1},{"version":"25a5f6fd3a2243c859eddc99ab5fba11d970af2fe7a5df9c32b7668f76f97b01","signature":false,"impliedFormat":1},{"version":"8d207e1f9d2c30d6f77dfa693f3827c3fbf0d89240297e10bdfe1041d433df68","signature":false,"impliedFormat":1},{"version":"b620391fe8060cf9bedc176a4d01366e6574d7a71e0ac0ab344a4e76576fcbb8","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"2652448ac55a2010a1f71dd141f828b682298d39728f9871e1cdf8696ef443fd","signature":false,"impliedFormat":1},{"version":"d682336018141807fb602709e2d95a192828fcb8d5ba06dda3833a8ea98f69e3","signature":false,"impliedFormat":1},{"version":"6124e973eab8c52cabf3c07575204efc1784aca6b0a30c79eb85fe240a857efa","signature":false,"impliedFormat":1},{"version":"0d891735a21edc75df51f3eb995e18149e119d1ce22fd40db2b260c5960b914e","signature":false,"impliedFormat":1},{"version":"3b414b99a73171e1c4b7b7714e26b87d6c5cb03d200352da5342ab4088a54c85","signature":false,"impliedFormat":1},{"version":"4fbd3116e00ed3a6410499924b6403cc9367fdca303e34838129b328058ede40","signature":false,"impliedFormat":1},{"version":"9c82171d836c47486074e4ca8e059735bf97b205e70b196535b5efd40cbe1bc5","signature":false,"impliedFormat":1},{"version":"8c70ddc0c22d85e56011d49fddfaae3405eb53d47b59327b9dd589e82df672e7","signature":false,"impliedFormat":1},{"version":"2f9c89cbb29d362290531b48880a4024f258c6033aaeb7e59fbc62db26819650","signature":false,"impliedFormat":1},{"version":"a365c4d3bed3be4e4e20793c999c51f5cd7e6792322f14650949d827fbcd170f","signature":false,"impliedFormat":1},{"version":"c5426dbfc1cf90532f66965a7aa8c1136a78d4d0f96d8180ecbfc11d7722f1a5","signature":false,"impliedFormat":1},{"version":"65a15fc47900787c0bd18b603afb98d33ede930bed1798fc984d5ebb78b26cf9","signature":false,"impliedFormat":1},{"version":"9d202701f6e0744adb6314d03d2eb8fc994798fc83d91b691b75b07626a69801","signature":false,"impliedFormat":1},{"version":"de9d2df7663e64e3a91bf495f315a7577e23ba088f2949d5ce9ec96f44fba37d","signature":false,"impliedFormat":1},{"version":"c7af78a2ea7cb1cd009cfb5bdb48cd0b03dad3b54f6da7aab615c2e9e9d570c5","signature":false,"impliedFormat":1},{"version":"1ee45496b5f8bdee6f7abc233355898e5bf9bd51255db65f5ff7ede617ca0027","signature":false,"impliedFormat":1},{"version":"273782b8454e78f6a8b30d2cfbf6860499c930595095fcc1689637115f0eddda","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3fbdd025f9d4d820414417eeb4107ffa0078d454a033b506e22d3a23bc3d9c41","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"dba114fb6a32b355a9cfc26ca2276834d72fe0e94cd2c3494005547025015369","signature":false,"impliedFormat":1},{"version":"a8f8e6ab2fa07b45251f403548b78eaf2022f3c2254df3dc186cb2671fe4996d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"fa6c12a7c0f6b84d512f200690bfc74819e99efae69e4c95c4cd30f6884c526e","signature":false,"impliedFormat":1},{"version":"f1c32f9ce9c497da4dc215c3bc84b722ea02497d35f9134db3bb40a8d918b92b","signature":false,"impliedFormat":1},{"version":"b73c319af2cc3ef8f6421308a250f328836531ea3761823b4cabbd133047aefa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e433b0337b8106909e7953015e8fa3f2d30797cea27141d1c5b135365bb975a6","signature":false,"impliedFormat":1},{"version":"9f9bb6755a8ce32d656ffa4763a8144aa4f274d6b69b59d7c32811031467216e","signature":false,"impliedFormat":1},{"version":"5c32bdfbd2d65e8fffbb9fbda04d7165e9181b08dad61154961852366deb7540","signature":false,"impliedFormat":1},{"version":"ddff7fc6edbdc5163a09e22bf8df7bef75f75369ebd7ecea95ba55c4386e2441","signature":false,"impliedFormat":1},{"version":"0c05e9842ec4f8b7bfebfd3ca61604bb8c914ba8da9b5337c4f25da427a005f2","signature":false,"impliedFormat":1},{"version":"faed7a5153215dbd6ebe76dfdcc0af0cfe760f7362bed43284be544308b114cf","signature":false,"impliedFormat":1},{"version":"7029e566b8df176f703fb59fd437a38670c7a0e02c58b2d66dfb5b2e2b2defdb","signature":false,"impliedFormat":1},{"version":"7f2aa4d4989a82530aaac3f72b3dceca90e9c25bee0b1a327e8a08a1262435ad","signature":false,"impliedFormat":1},{"version":"d96b39301d0ded3f1a27b47759676a33a02f6f5049bfcbde81e533fd10f50dcb","signature":false,"impliedFormat":1},{"version":"e9f147ecca73d9346a4c073432843c159ccbe50bdcb678a78f6da10eae2cecf4","signature":false,"impliedFormat":1},{"version":"de061f7d72bd65c06fc1419f841dfdcb29a8e22fe6fa527d1e6eb20b897d4de0","signature":false,"impliedFormat":1},{"version":"663beafc2446079574570cba86e9b15f986f908ddb1b01274509970126fee945","signature":false,"impliedFormat":1},{"version":"a3102887d5058bf4cb5b37fa6964c09e9527c42053b3b5c642b89878620748de","signature":false,"impliedFormat":1},{"version":"0aaaa1727edd29673d85c9b26d7ca4d54e5407a48586903c51b48b7f7d196f61","signature":false,"impliedFormat":1},{"version":"d35bca0b261bff02635758c48e8ab99c61c420d0dfabbcf467e847171d876b7d","signature":false,"impliedFormat":1},{"version":"3bc12c40d90c342ff88a3d876996c555ed5cbee5fe8c3308a240b321f401ee46","signature":false,"impliedFormat":1},{"version":"ba130768aae855a5477e9e148e5c879548e6e7ccbcc56fd1934c8a18ea5b7569","signature":false,"impliedFormat":1},{"version":"2e4f37ffe8862b14d8e24ae8763daaa8340c0df0b859d9a9733def0eee7562d9","signature":false,"impliedFormat":1},{"version":"d38530db0601215d6d767f280e3a3c54b2a83b709e8d9001acb6f61c67e965fc","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"b499af2054a037a162b3b72cd886f48bbf32a3502c865c6e29fac7d2ab3ce0b5","signature":false,"impliedFormat":1},{"version":"b83cb14474fa60c5f3ec660146b97d122f0735627f80d82dd03e8caa39b4388c","signature":false,"impliedFormat":1},{"version":"48773ca557b0319c2ee62ae249cf52a81709e8be139920d6479a66274de7c4ed","signature":false,"impliedFormat":1},{"version":"7274fbffbd7c9589d8d0ffba68157237afd5cecff1e99881ea3399127e60572f","signature":false,"impliedFormat":1},{"version":"b73cbf0a72c8800cf8f96a9acfe94f3ad32ca71342a8908b8ae484d61113f647","signature":false,"impliedFormat":1},{"version":"bae6dd176832f6423966647382c0d7ba9e63f8c167522f09a982f086cd4e8b23","signature":false,"impliedFormat":1},{"version":"20865ac316b8893c1a0cc383ccfc1801443fbcc2a7255be166cf90d03fac88c9","signature":false,"impliedFormat":1},{"version":"c9958eb32126a3843deedda8c22fb97024aa5d6dd588b90af2d7f2bfac540f23","signature":false,"impliedFormat":1},{"version":"461d0ad8ae5f2ff981778af912ba71b37a8426a33301daa00f21c6ccb27f8156","signature":false,"impliedFormat":1},{"version":"e927c2c13c4eaf0a7f17e6022eee8519eb29ef42c4c13a31e81a611ab8c95577","signature":false,"impliedFormat":1},{"version":"fcafff163ca5e66d3b87126e756e1b6dfa8c526aa9cd2a2b0a9da837d81bbd72","signature":false,"impliedFormat":1},{"version":"70246ad95ad8a22bdfe806cb5d383a26c0c6e58e7207ab9c431f1cb175aca657","signature":false,"impliedFormat":1},{"version":"f00f3aa5d64ff46e600648b55a79dcd1333458f7a10da2ed594d9f0a44b76d0b","signature":false,"impliedFormat":1},{"version":"772d8d5eb158b6c92412c03228bd9902ccb1457d7a705b8129814a5d1a6308fc","signature":false,"impliedFormat":1},{"version":"802e797bcab5663b2c9f63f51bdf67eff7c41bc64c0fd65e6da3e7941359e2f7","signature":false,"impliedFormat":1},{"version":"b01bd582a6e41457bc56e6f0f9de4cb17f33f5f3843a7cf8210ac9c18472fb0f","signature":false,"impliedFormat":1},{"version":"8b4327413e5af38cd8cb97c59f48c3c866015d5d642f28518e3a891c469f240e","signature":false,"impliedFormat":1},{"version":"4cceef18d7f088e797a463e90b7a9dad10c6bc667724b7686e3e740ae00122be","signature":false,"impliedFormat":1},{"version":"7ee86fbb3754388e004de0ef9e6505485ddfb3be7640783d6d015711c03d302d","signature":false,"impliedFormat":1},{"version":"cc1954b539604b1e562319119ac7e888172208b32ca873f9a357a92c826bd046","signature":false,"impliedFormat":1},{"version":"a67b87d0281c97dfc1197ef28dfe397fc2c865ccd41f7e32b53f647184cc7307","signature":false,"impliedFormat":1},{"version":"771ffb773f1ddd562492a6b9aaca648192ac3f056f0e1d997678ff97dbb6bf9b","signature":false,"impliedFormat":1},{"version":"43e96a3d5d1411ab40ba2f61d6a3192e58177bcf3b133a80ad2a16591611726d","signature":false,"impliedFormat":1},{"version":"232f70c0cf2b432f3a6e56a8dc3417103eb162292a9fd376d51a3a9ea5fbbf6f","signature":false,"impliedFormat":1},{"version":"bb8f2dbc03533abca2066ce4655c119bff353dd4514375beb93c08590c03e023","signature":false,"impliedFormat":1},{"version":"706dd95827e7ebaabda91d5db2b755233e0952d98570e9c032b0f066a15c1177","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0b103e9abfe82d14c0ad06a55d9f91d6747154ef7cacc73cf27ecad2bfb3afcf","signature":false,"impliedFormat":1},{"version":"cd9304972e6d616197fb44fce00540a904f38b54306a1951b5dbeaf3c01ab5bd","signature":false,"impliedFormat":1},{"version":"77438e2c397a3db78407621cfc57241a305b310ddea2c185f1d555248297f587","signature":false,"impliedFormat":1},{"version":"120599fd965257b1f4d0ff794bc696162832d9d8467224f4665f713a3119078b","signature":false,"impliedFormat":1},{"version":"43ba4f2fa8c698f5c304d21a3ef596741e8e85a810b7c1f9b692653791d8d97a","signature":false,"impliedFormat":1},{"version":"5433f33b0a20300cca35d2f229a7fc20b0e8477c44be2affeb21cb464af60c76","signature":false,"impliedFormat":1},{"version":"db036c56f79186da50af66511d37d9fe77fa6793381927292d17f81f787bb195","signature":false,"impliedFormat":1},{"version":"a6805fcafed712aea7759f8bc731014f9d22738c1d6ef9d43b8091d1d48346d5","signature":false,"impliedFormat":1},{"version":"c49469a5349b3cc1965710b5b0f98ed6c028686aa8450bcb3796728873eb923e","signature":false,"impliedFormat":1},{"version":"4a889f2c763edb4d55cb624257272ac10d04a1cad2ed2948b10ed4a7fda2a428","signature":false,"impliedFormat":1},{"version":"7bb79aa2fead87d9d56294ef71e056487e848d7b550c9a367523ee5416c44cfa","signature":false,"impliedFormat":1},{"version":"d88ea80a6447d7391f52352ec97e56b52ebec934a4a4af6e2464cfd8b39c3ba8","signature":false,"impliedFormat":1},{"version":"142617b3cdf902b69c6464c9fbd942b60ab3e733ca18c032b19e0f7e2adbefe8","signature":false,"impliedFormat":1},{"version":"0b603555f1881f87256ffd6344d3e3ed6d466c2e701eabf381f28be8c2125892","signature":false,"impliedFormat":1},{"version":"897e4f7662488e3ecc79e743bdd3b78f13bdb69a97851afa5b440c4211e32ea9","signature":false,"impliedFormat":1},{"version":"e2e1c6d3b2d93add5200bd7bc1a8cccb4e446836b2111ece45db8683a2c765de","signature":false,"impliedFormat":1},{"version":"251b03d5cd243854ce870d9a9a39f491faf69898c5d6b5eee28cc7649c57417b","signature":false,"impliedFormat":1},{"version":"27ff4196654e6373c9af16b6165120e2dd2169f9ad6abb5c935af5abd8c7938c","signature":false,"impliedFormat":1},{"version":"2c4de79f406d137390608e8c0a44fba2ff8e00bacfcae7c9d1781fef10e9440d","signature":false,"impliedFormat":1},{"version":"07ba23a10465791be5d22deaf5ef7de7658774ddff53721e5ea17fedea1bc721","signature":false,"impliedFormat":1},{"version":"dca8c645c5afeb03b1ecedbf16323f33e7d0afaa6256c8e047e6e38087a97f53","signature":false,"impliedFormat":1},{"version":"775f181bd4a533d6f8b5e55ec1d9f1624559720ae8a70e9432258da26b38d27c","signature":false,"impliedFormat":1},{"version":"796273b2edc72e78a04e86d7c58ae94d370ab93a0ddf40b1aa85a37a1c29ecd7","signature":false,"impliedFormat":1},{"version":"5df15a69187d737d6d8d066e189ae4f97e41f4d53712a46b2710ff9f8563ec9f","signature":false,"impliedFormat":1},{"version":"7715134a0cf07dd41a9da2895d708625a3a303a0385e355ecaaf0b8bfaef2550","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"622694a8522b46f6310c2a9b5d2530dde1e2854cb5829354e6d1ff8f371cf469","signature":false,"impliedFormat":1},{"version":"cd8ce8d68567f62dd580b3c3c37777ac3f5b81944c7417f5ea83030eab533385","signature":false,"impliedFormat":1},{"version":"e5c939d896565dcac0f6fbdbada11284e7728ef26a069561c09aa5aa4a788393","signature":false,"impliedFormat":1},{"version":"9e2739b32f741859263fdba0244c194ca8e96da49b430377930b8f721d77c000","signature":false,"impliedFormat":1},{"version":"a9e6c0ff3f8186fccd05752cf75fc94e147c02645087ac6de5cc16403323d870","signature":false,"impliedFormat":1},{"version":"49af4b52f0d4d2304c5f2c6fe5fab3e153e0acc38830d0202821b877c097dd02","signature":false,"impliedFormat":1},{"version":"49c346823ba6d4b12278c12c977fb3a31c06b9ca719015978cb145eb86da1c61","signature":false,"impliedFormat":1},{"version":"bfac6e50eaa7e73bb66b7e052c38fdc8ccfc8dbde2777648642af33cf349f7f1","signature":false,"impliedFormat":1},{"version":"92f7c1a4da7fbfd67a2228d1687d5c2e1faa0ba865a94d3550a3941d7527a45d","signature":false,"impliedFormat":1},{"version":"f53b120213a9289d9a26f5af90c4c686dd71d91487a0aa5451a38366c70dc64b","signature":false,"impliedFormat":1},{"version":"e68b8e5a1df7c1be2bc105141456ecba70215806e1c28bfbc5c12bfce4be6e68","signature":false,"impliedFormat":1},{"version":"511c8f02329808d47d00b859c532ae9115590048b17325a946c74dac48428650","signature":false,"impliedFormat":1},{"version":"57d67b72e06059adc5e9454de26bbfe567d412b962a501d263c75c2db430f40e","signature":false,"impliedFormat":1},{"version":"b5f9e66625783eefcbe3d2da074b2e7ba2066d61ce3fc6ef4f22805ad946cab4","signature":false,"impliedFormat":1},{"version":"e37115962d284b9f7a37c2bdd2add50f88365dde41f5e0ff591ffc48a8ec7575","signature":false,"impliedFormat":1},{"version":"6459054aabb306821a043e02b89d54da508e3a6966601a41e71c166e4ea1474f","signature":false,"impliedFormat":1},{"version":"bb37588926aba35c9283fe8d46ebf4e79ffe976343105f5c6d45f282793352b2","signature":false,"impliedFormat":1},{"version":"f89488602bec98a142072fae7ea5ba99431a569ff580c64b7be39896474799d8","signature":false,"impliedFormat":1},{"version":"bbbc47961f39a57df103cf4ca3bb8f8732b4b6678a18225a0aa76d59c466956c","signature":false,"impliedFormat":1},{"version":"2e6114a7dd6feeef85b2c80120fdbfb59a5529c0dcc5bfa8447b6996c97a69f5","signature":false,"impliedFormat":1},{"version":"2ffb043dc5163458e473b7010859f86e01dc4edffcae0a93d885d028b426a546","signature":false,"impliedFormat":1},{"version":"c8f004e6036aa1c764ad4ec543cf89a5c1893a9535c80ef3f2b653e370de45e6","signature":false,"impliedFormat":1},{"version":"dd80b1e600d00f5c6a6ba23f455b84a7db121219e68f89f10552c54ba46e4dc9","signature":false,"impliedFormat":1},{"version":"b064c36f35de7387d71c599bfcf28875849a1dbc733e82bd26cae3d1cd060521","signature":false,"impliedFormat":1},{"version":"05c7280d72f3ed26f346cbe7cbbbb002fb7f15739197cbbee6ab3fd1a6cb9347","signature":false,"impliedFormat":1},{"version":"8de9fe97fa9e00ec00666fa77ab6e91b35d25af8ca75dabcb01e14ad3299b150","signature":false,"impliedFormat":1},{"version":"04b7b2e0832dfd3c31e81df3975e8d8fda28e7ff999b0aa2932608a8f6661d5c","signature":false,"impliedFormat":1},{"version":"ca2d34c6ed5cbd3070b8b6f32f42ae54adcc6499c1e4b99f0a5798b3f27cc653","signature":false,"impliedFormat":1},{"version":"9ec68995e66dd6b9dac834bf5ae85fde802714ea2e82151a5d1d53ef01b463ef","signature":false,"impliedFormat":1},{"version":"5c4d626b4902f2ef8a1cc146d761d276cef988016dc674e3b98fbad70e64bc9f","signature":false,"impliedFormat":1},{"version":"fdfaa0aad899524962e2955287b5b991ffe3be50f64e02eb60c933ca44644a94","signature":false,"impliedFormat":1},{"version":"53c972a0f9bc3a4ec70fff7314123ea8cfcf75b3703046f767d2dc1eea87b2fb","signature":false,"impliedFormat":1},{"version":"f974e4a06953682a2c15d5bd5114c0284d5abf8bc0fe4da25cb9159427b70072","signature":false,"impliedFormat":1},{"version":"50256e9c31318487f3752b7ac12ff365c8949953e04568009c8705db802776fb","signature":false,"impliedFormat":1},{"version":"7d73b24e7bf31dfb8a931ca6c4245f6bb0814dfae17e4b60c9e194a631fe5f7b","signature":false,"impliedFormat":1},{"version":"d130c5f73768de51402351d5dc7d1b36eaec980ca697846e53156e4ea9911476","signature":false,"impliedFormat":1},{"version":"413586add0cfe7369b64979d4ec2ed56c3f771c0667fbde1bf1f10063ede0b08","signature":false,"impliedFormat":1},{"version":"06472528e998d152375ad3bd8ebcb69ff4694fd8d2effaf60a9d9f25a37a097a","signature":false,"impliedFormat":1},{"version":"7303b45138d2511035056a5901a1490ebdcbf055cbb1276f8629c5121cbe733e","signature":false,"impliedFormat":1},{"version":"27f874cd5327507eeff699a74567f60c1215b94509f4308633a7b01922471ed2","signature":false,"impliedFormat":1},{"version":"a401617604fa1f6ce437b81689563dfdc377069e4c58465dbd8d16069aede0a5","signature":false,"impliedFormat":1},{"version":"2c6cf04bc525caf6546e859e8ef10bfb9573837ec0bc5ec7b53a7b1b8ca72781","signature":false,"impliedFormat":1},{"version":"8695dec09ad439b0ceef3776ea68a232e381135b516878f0901ed2ea114fd0fe","signature":false,"impliedFormat":1},{"version":"304b44b1e97dd4c94697c3313df89a578dca4930a104454c99863f1784a54357","signature":false,"impliedFormat":1},{"version":"0a437ae178f999b46b6153d79095b60c42c996bc0458c04955f1c996dc68b971","signature":false,"impliedFormat":1},{"version":"74b2a5e5197bd0f2e0077a1ea7c07455bbea67b87b0869d9786d55104006784f","signature":false,"impliedFormat":1},{"version":"4a7baeb6325920044f66c0f8e5e6f1f52e06e6d87588d837bdf44feb6f35c664","signature":false,"impliedFormat":1},{"version":"87cc05fe13108f02e12da7e3efd8e360fef78d96a0c9e11408ea1b1b9fb3e03d","signature":false,"impliedFormat":1},{"version":"1abbf67c218d23c2ce76887caac2df6c7dab3d97ba2b65348432b876f510002a","signature":false,"impliedFormat":1},{"version":"1a82deef4c1d39f6882f28d275cad4c01f907b9b39be9cbc472fcf2cf051e05b","signature":false,"impliedFormat":1},{"version":"4b20fcf10a5413680e39f5666464859fc56b1003e7dfe2405ced82371ebd49b6","signature":false,"impliedFormat":1},{"version":"c06ef3b2569b1c1ad99fcd7fe5fba8d466e2619da5375dfa940a94e0feea899b","signature":false,"impliedFormat":1},{"version":"f7d628893c9fa52ba3ab01bcb5e79191636c4331ee5667ecc6373cbccff8ae12","signature":false,"impliedFormat":1},{"version":"1d879125d1ec570bf04bc1f362fdbe0cb538315c7ac4bcfcdf0c1e9670846aa6","signature":false,"impliedFormat":1},{"version":"dad97c99382889e9c7d1a9d8275500ff71235130fae9f8916fdbf3641d56e592","signature":false,"impliedFormat":1},{"version":"a6dba407fc287f1e25454e75028c91bbc00675f2d1c4e8b3edcc36c08611a486","signature":false,"impliedFormat":1},{"version":"d663134457d8d669ae0df34eabd57028bddc04fc444c4bc04bc5215afc91e1f4","signature":false,"impliedFormat":1},{"version":"e91f7b1344577a02f051b9b471f33044fef8334a76dc9e1de003d17595a5219b","signature":false,"impliedFormat":1},{"version":"c0723195c85e19656d6b5b9fdb81d3f3403c1ae4679e722c6ea058c516b38d12","signature":false,"impliedFormat":1},{"version":"b55eb9f72166093b5460d34b34f5d8699c968de3bc3fc696e40f2c93f2ebf650","signature":false,"impliedFormat":1},{"version":"71d9eb4c4e99456b78ae182fb20a5dfc20eb1667f091dbb9335b3c017dd1c783","signature":false,"impliedFormat":1},{"version":"cfa846a7b7847a1d973605fbb8c91f47f3a0f0643c18ac05c47077ebc72e71c7","signature":false,"impliedFormat":1},{"version":"1594da19968752a22b2ac48c2d0e60575700e745c577a8a4a676b841238ad5bb","signature":false,"impliedFormat":1},{"version":"e0cee12109e0a10a4c3d6769fcc7644b7c1ea7f52365bea51728f5af29f8a137","signature":false,"impliedFormat":1},{"version":"7d4254b4c6c67a29d5e7f65e67d72540480ac2cfb041ca484847f5ae70480b62","signature":false,"impliedFormat":1},{"version":"3536968defef8a75514f547ead5e2e9c1e984820290ec9b00c5fdfb6ef786535","signature":false,"impliedFormat":1},{"version":"d83773870080c30a230e322ce13a9c6f3398e8dacea4ea8a83e26370f3bac23e","signature":false,"impliedFormat":1},{"version":"dcfeaf98d66314fec29a9076c4290e45d0b196a65827becc19138e9c7b855f37","signature":false,"impliedFormat":1},{"version":"6849fe9210fe4946d5f085bfed36758f33dc6ae15a751338d178dd4daa017c46","signature":false,"impliedFormat":1},{"version":"888cda0fa66d7f74e985a3f7b1af1f64b8ff03eb3d5e80d051c3cbdeb7f32ab7","signature":false,"impliedFormat":1},{"version":"60681e13f3545be5e9477acb752b741eae6eaf4cc01658a25ec05bff8b82a2ef","signature":false,"impliedFormat":1},{"version":"ffae4e1e06aa848a1e4bcef162cd1c48e5909b26223515981310af9c036bdfc7","signature":false,"impliedFormat":1},{"version":"a57b1802794433adec9ff3fed12aa79d671faed86c49b09e02e1ac41b4f1d33a","signature":false,"impliedFormat":1},{"version":"34e16eb7c31768a11a08aebcfb3d70d7b8f0b016197e98d8419e566ceae6d6c8","signature":false,"impliedFormat":1},{"version":"f94ec1f7e4b709d26960306c9082a7a1b728a6e13089346aa48ba57c74cbf47e","signature":false,"impliedFormat":1},{"version":"9a11cb4033405e96c247cd5aa29790212aaffdd127869e8a5219103f0b389fd5","signature":false,"impliedFormat":1},{"version":"01479d9d5a5dda16d529b91811375187f61a06e74be294a35ecce77e0b9e8d6c","signature":false,"impliedFormat":1},{"version":"aff5213585cb72e94054dfe17250ff315f3569b3919d1ef1ad235f37c4ee894e","signature":false,"impliedFormat":1},{"version":"fb2ea35e1be6388d722d7725e2b49c697d34d9c890c3b96758faaeb86d35cef8","signature":false,"impliedFormat":1},{"version":"ce0df82a9ae6f914ba08409d4d883983cc08e6d59eb2df02d8e4d68309e7848b","signature":false,"impliedFormat":1},{"version":"1a4dc28334a926d90ba6a2d811ba0ff6c22775fcc13679521f034c124269fd40","signature":false,"impliedFormat":1},{"version":"f05315ff85714f0b87cc0b54bcd3dde2716e5a6b99aedcc19cad02bf2403e08c","signature":false,"impliedFormat":1},{"version":"5fad3b31fc17a5bc58095118a8b160f5260964787c52e7eb51e3d4fcf5d4a6f0","signature":false,"impliedFormat":1},{"version":"72105519d0390262cf0abe84cf41c926ade0ff475d35eb21307b2f94de985778","signature":false,"impliedFormat":1},{"version":"456006a6975b26c0a1785feddae165f6d307e2d601ffde27e21fc4a790e448a4","signature":false,"impliedFormat":1},{"version":"c857e0aae3f5f444abd791ec81206020fbcc1223e187316677e026d1c1d6fe08","signature":false,"impliedFormat":1},{"version":"ccf6dd45b708fb74ba9ed0f2478d4eb9195c9dfef0ff83a6092fa3cf2ff53b4f","signature":false,"impliedFormat":1},{"version":"1fe0d18b111e1145a7e7601855bccd4ca20f24e3b9a5aba6bb1fa9d1a7059170","signature":false,"impliedFormat":1},{"version":"5632c3c26d420c063eebe64c45b1248b9492a67bf44f1d0c57e9dc8f6cf449bb","signature":false,"impliedFormat":1},{"version":"0df5aa619ab12993a39ea6dae062ee46eadbb4d738916460e636ada52bced75b","signature":false,"impliedFormat":1},{"version":"8fca3039857709484e5893c05c1f9126ab7451fa6c29e19bb8c2411a2e937345","signature":false,"impliedFormat":1},{"version":"35069c2c417bd7443ae7c7cafd1de02f665bf015479fec998985ffbbf500628c","signature":false,"impliedFormat":1},{"version":"10ab7be91f87ebe8916b62cf28af2e45b5601fc7b0e311adf838f912c6b31dd8","signature":false,"impliedFormat":1},{"version":"bc636fbc08e0979ceb7eb0731a33000283d77a33b62e1f71ee65be50394e40ba","signature":false,"impliedFormat":1},{"version":"7e0b7f91c5ab6e33f511efc640d36e6f933510b11be24f98836a20a2dc914c2d","signature":false,"impliedFormat":1},{"version":"045b752f44bf9bbdcaffd882424ab0e15cb8d11fa94e1448942e338c8ef19fba","signature":false,"impliedFormat":1},{"version":"2894c56cad581928bb37607810af011764a2f511f575d28c9f4af0f2ef02d1ab","signature":false,"impliedFormat":1},{"version":"0a72186f94215d020cb386f7dca81d7495ab6c17066eb07d0f44a5bf33c1b21a","signature":false,"impliedFormat":1},{"version":"75bbd3be047d539988a0ff0b56384ef7a6a25f3b676ad96bee547d44c31622a7","signature":false,"impliedFormat":1},{"version":"42960001a776b089ade681ab5cfddc936e0afb0615133ec1841f3dee89d3e1bf","signature":false,"impliedFormat":1},{"version":"0aedb02516baf3e66b2c1db9fef50666d6ed257edac0f866ea32f1aa05aa474f","signature":false,"impliedFormat":1},{"version":"da47712b394d944328245482603bc6f416d3949b67c9392279caab595076b510","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"37d0071d8f0a06dc55c2c5e0ec3391affd4fd107c53410bf358196ec0bf3923f","signature":false,"impliedFormat":1},{"version":"b213dad76ca37fd552274c9499056e1c0d9c1bd38a55bb7f68b22ba6b84c3ad7","signature":false,"impliedFormat":1},{"version":"c30436b130b6218b7714314dc41d3f459590db4bdf099eecd51cb1bda32109a8","signature":false,"impliedFormat":1},{"version":"20fa37b636fdcc1746ea0738f733d0aed17890d1cd7cb1b2f37010222c23f13e","signature":false,"impliedFormat":1},{"version":"d90b9f1520366d713a73bd30c5a9eb0040d0fb6076aff370796bc776fd705943","signature":false,"impliedFormat":1},{"version":"bc03c3c352f689e38c0ddd50c39b1e65d59273991bfc8858a9e3c0ebb79c023b","signature":false,"impliedFormat":1},{"version":"19df3488557c2fc9b4d8f0bac0fd20fb59aa19dec67c81f93813951a81a867f8","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b25350193e103ae90423c5418ddb0ad1168dc9c393c9295ef34980b990030617","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"bef86adb77316505c6b471da1d9b8c9e428867c2566270e8894d4d773a1c4dc2","signature":false,"impliedFormat":1},{"version":"5a49adaef698b7ad7e6127949fa1b0bbd3d46b7cbd11c54e392a4dcdd51f5190","signature":false,"impliedFormat":1},{"version":"6ee598cdfdd0fa52039dca135b3dfff7b49035dc13292143e0a93843e3861967","signature":false,"impliedFormat":1},{"version":"27be6622e2922a1b412eb057faa854831b95db9db5035c3f6d4b677b902ab3b7","signature":false,"impliedFormat":1},{"version":"5c634644d45a1b6bc7b05e71e05e52ec04f3d73d9ac85d5927f647a5f965181a","signature":false,"impliedFormat":1},{"version":"2489bf04d77dc025ba67f49f1a56eb24b9db477d5ff88123d887e163ed1776aa","signature":false,"impliedFormat":1},{"version":"63a7595a5015e65262557f883463f934904959da563b4f788306f699411e9bac","signature":false,"impliedFormat":1},{"version":"4ba137d6553965703b6b55fd2000b4e07ba365f8caeb0359162ad7247f9707a6","signature":false,"impliedFormat":1},{"version":"0b77b819b5417775fccb20c678293cf614c054a5b1a65421a5b933a9124ba998","signature":false,"impliedFormat":1},{"version":"eb5acb58487367e502d994b57e2c58255d8241f481ea8efa8e79af23af3f41c2","signature":false,"impliedFormat":1},{"version":"9252d498a77517aab5d8d4b5eb9d71e4b225bbc7123df9713e08181de63180f6","signature":false,"impliedFormat":1},{"version":"b1f1d57fde8247599731b24a733395c880a6561ec0c882efaaf20d7df968c5af","signature":false,"impliedFormat":1},{"version":"f1f4095f04343ad6e6825eba41eb50f1555685560dde164179a467e65c4a921c","signature":false,"impliedFormat":1},{"version":"35e6379c3f7cb27b111ad4c1aa69538fd8e788ab737b8ff7596a1b40e96f4f90","signature":false,"impliedFormat":1},{"version":"1fffe726740f9787f15b532e1dc870af3cd964dbe29e191e76121aa3dd8693f2","signature":false,"impliedFormat":1},{"version":"5a3ea721d03a361ccbdd7390ccd75f6e84cbca3a3f01f4b331ecc9af31890c49","signature":false,"impliedFormat":1},{"version":"e7dfaee4af38d45b1cab8a1ee0b3bc1f85ddcf64545ed391d675d78ae6526274","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e8daa443eaf9a27fd382cc1f8ebe30330c0f4d89511cfb469166874806751d35","signature":false,"impliedFormat":1},{"version":"af48e58339188d5737b608d41411a9c054685413d8ae88b8c1d0d9bfabdf6e7e","signature":false,"impliedFormat":1},{"version":"616775f16134fa9d01fc677ad3f76e68c051a056c22ab552c64cc281a9686790","signature":false,"impliedFormat":1},{"version":"65c24a8baa2cca1de069a0ba9fba82a173690f52d7e2d0f1f7542d59d5eb4db0","signature":false,"impliedFormat":1},{"version":"f9fe6af238339a0e5f7563acee3178f51db37f32a2e7c09f85273098cee7ec49","signature":false,"impliedFormat":1},{"version":"1de8c302fd35220d8f29dea378a4ae45199dc8ff83ca9923aca1400f2b28848a","signature":false,"impliedFormat":1},{"version":"77e71242e71ebf8528c5802993697878f0533db8f2299b4d36aa015bae08a79c","signature":false,"impliedFormat":1},{"version":"98a787be42bd92f8c2a37d7df5f13e5992da0d967fab794adbb7ee18370f9849","signature":false,"impliedFormat":1},{"version":"332248ee37cca52903572e66c11bef755ccc6e235835e63d3c3e60ddda3e9b93","signature":false,"impliedFormat":1},{"version":"94e8cc88ae2ef3d920bb3bdc369f48436db123aa2dc07f683309ad8c9968a1e1","signature":false,"impliedFormat":1},{"version":"4545c1a1ceca170d5d83452dd7c4994644c35cf676a671412601689d9a62da35","signature":false,"impliedFormat":1},{"version":"320f4091e33548b554d2214ce5fc31c96631b513dffa806e2e3a60766c8c49d9","signature":false,"impliedFormat":1},{"version":"a2d648d333cf67b9aeac5d81a1a379d563a8ffa91ddd61c6179f68de724260ff","signature":false,"impliedFormat":1},{"version":"d90d5f524de38889d1e1dbc2aeef00060d779f8688c02766ddb9ca195e4a713d","signature":false,"impliedFormat":1},{"version":"07ed3ddab975995eea41b22f3010506fb9f5fb301d04820b07d7a1aee5477d7c","signature":false,"impliedFormat":1},{"version":"969d8b0965849f4bae7cab0ba90bd1e1220e95999c2c6f01117fa7500901c017","signature":false,"impliedFormat":1},{"version":"6ec840ee5e2bc103f557fe38b1d585ee250540468713d7634ee066de372bf332","signature":false,"impliedFormat":1},{"version":"b0309e1eda99a9e76f87c18992d9c3689b0938266242835dd4611f2b69efe456","signature":false,"impliedFormat":1},{"version":"47699512e6d8bebf7be488182427189f999affe3addc1c87c882d36b7f2d0b0e","signature":false,"impliedFormat":1},{"version":"6ceb10ca57943be87ff9debe978f4ab73593c0c85ee802c051a93fc96aaf7a20","signature":false,"impliedFormat":1},{"version":"1de3ffe0cc28a9fe2ac761ece075826836b5a02f340b412510a59ba1d41a505a","signature":false,"impliedFormat":1},{"version":"e46d6cc08d243d8d0d83986f609d830991f00450fb234f5b2f861648c42dc0d8","signature":false,"impliedFormat":1},{"version":"1c0a98de1323051010ce5b958ad47bc1c007f7921973123c999300e2b7b0ecc0","signature":false,"impliedFormat":1},{"version":"ff863d17c6c659440f7c5c536e4db7762d8c2565547b2608f36b798a743606ca","signature":false,"impliedFormat":1},{"version":"5412ad0043cd60d1f1406fc12cb4fb987e9a734decbdd4db6f6acf71791e36fe","signature":false,"impliedFormat":1},{"version":"ad036a85efcd9e5b4f7dd5c1a7362c8478f9a3b6c3554654ca24a29aa850a9c5","signature":false,"impliedFormat":1},{"version":"fedebeae32c5cdd1a85b4e0504a01996e4a8adf3dfa72876920d3dd6e42978e7","signature":false,"impliedFormat":1},{"version":"e297c0a524edee7677939122f90027bfbe5f2698939d9a85728e5044b39c7124","signature":false,"impliedFormat":1},{"version":"cdf21eee8007e339b1b9945abf4a7b44930b1d695cc528459e68a3adc39a622e","signature":false,"impliedFormat":1},{"version":"bc9ee0192f056b3d5527bcd78dc3f9e527a9ba2bdc0a2c296fbc9027147df4b2","signature":false,"impliedFormat":1},{"version":"b62381cae176db34f003cc6172ee8f3e0122014889d66391aa73698105cf4934","signature":false,"impliedFormat":1},{"version":"1d9c0a9a6df4e8f29dc84c25c5aa0bb1da5456ebede7a03e03df08bb8b27bae6","signature":false,"impliedFormat":1},{"version":"84380af21da938a567c65ef95aefb5354f676368ee1a1cbb4cae81604a4c7d17","signature":false,"impliedFormat":1},{"version":"1af3e1f2a5d1332e136f8b0b95c0e6c0a02aaabd5092b36b64f3042a03debf28","signature":false,"impliedFormat":1},{"version":"30d8da250766efa99490fc02801047c2c6d72dd0da1bba6581c7e80d1d8842a4","signature":false,"impliedFormat":1},{"version":"03566202f5553bd2d9de22dfab0c61aa163cabb64f0223c08431fb3fc8f70280","signature":false,"impliedFormat":1},{"version":"41eb514d9ce0a6e87957f08a4b7af70d93f87637f37dee706e2d92a6601c25a9","signature":false,"impliedFormat":1},{"version":"e7765aa8bcb74a38b3230d212b4547686eb9796621ffb4367a104451c3f9614f","signature":false,"impliedFormat":1},{"version":"1de80059b8078ea5749941c9f863aa970b4735bdbb003be4925c853a8b6b4450","signature":false,"impliedFormat":1},{"version":"1d079c37fa53e3c21ed3fa214a27507bda9991f2a41458705b19ed8c2b61173d","signature":false,"impliedFormat":1},{"version":"5bf5c7a44e779790d1eb54c234b668b15e34affa95e78eada73e5757f61ed76a","signature":false,"impliedFormat":1},{"version":"5835a6e0d7cd2738e56b671af0e561e7c1b4fb77751383672f4b009f4e161d70","signature":false,"impliedFormat":1},{"version":"4b7f74b772140395e7af67c4841be1ab867c11b3b82a51b1aeb692822b76c872","signature":false,"impliedFormat":1},{"version":"7bd01f0f28cd3aeb2046274d85208e245965f6f2948edf4f7b2057bcf9f22ccc","signature":false,"impliedFormat":99},{"version":"d2f2cf2b8cc92bea913cda4a076e0f790b23a21e84f989d12f0116a7fe3906e0","signature":false,"impliedFormat":99},{"version":"6de125ea94866c736c6d58d68eb15272cf7d1020a5b459fea1c660027eca9a90","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f5b20bc288ee49989c95b20847fc93b96bf61cc0845598897a6a53a967dd7d07","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"064ac1c2ac4b2867c2ceaa74bbdce0cb6a4c16e7c31a6497097159c18f74aa7c","signature":false,"impliedFormat":1},{"version":"3dc14e1ab45e497e5d5e4295271d54ff689aeae00b4277979fdd10fa563540ae","signature":false,"impliedFormat":1},{"version":"d3b315763d91265d6b0e7e7fa93cfdb8a80ce7cdd2d9f55ba0f37a22db00bdb8","signature":false,"impliedFormat":1},{"version":"b789bf89eb19c777ed1e956dbad0925ca795701552d22e68fd130a032008b9f9","signature":false,"impliedFormat":1},{"version":"d63049e62770772ca1892994dcce653e9df2523ec5853d4daa8d70da4a971b35","signature":false,"affectsGlobalScope":true},{"version":"7b550dda9686c16f36a17bf9051d5dbf31e98555b30d114ac49fc49a1e712651","signature":false},{"version":"39b291bd5573a774ce84578c0504210bd26ff8592b6c39840665ab4c7ab0ab28","signature":false},{"version":"b0f524110629cb347d8933e49f5d13f642c5e239286ed7aba382161ba9e4c605","signature":false},{"version":"e0f27c149a0cd92e5d8c6f18b8838fe5e69f509635bed9ff5fd669f68013c99a","signature":false},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","signature":false,"impliedFormat":1},{"version":"52dcc257df5119fb66d864625112ce5033ac51a4c2afe376a0b299d2f7f76e4a","signature":false,"impliedFormat":1},{"version":"e5bab5f871ef708d52d47b3e5d0aa72a08ee7a152f33931d9a60809711a2a9a3","signature":false,"impliedFormat":1},{"version":"e16dc2a81595736024a206c7d5c8a39bfe2e6039208ef29981d0d95434ba8fcf","signature":false,"impliedFormat":1},{"version":"cc4a4903fb698ca1d961d4c10dce658aa3a479faf40509d526f122b044eaf6a4","signature":false,"impliedFormat":1},{"version":"19ee8416e6473ed6c7adb868fa796b5653cf0fa2a337658e677eaa0d134388c3","signature":false,"impliedFormat":1},{"version":"1328ab4e442614b28cdb3d4b414cf68325c0da0dca07287a338d0654b7a00261","signature":false,"impliedFormat":1},{"version":"a039dc21f045919f3cbee2ec13812cc6cc3eebc99dae4be00973230f468d19a6","signature":false,"impliedFormat":1},{"version":"3fbe57af01460e49dcd29df55d6931e1672bc6f1be0fb073d11410bc16f9037d","signature":false,"impliedFormat":1},{"version":"f760be449e8562ec5c09bb5187e8e1eabf3c113c0c58cddda53ef8c69f3e2131","signature":false,"impliedFormat":1},{"version":"44325ed13294fce6ab825b82947bbeed2611db7dad9d9135260192f375e5a189","signature":false,"impliedFormat":1},{"version":"e392e8fb5b514eafc585601c1d781485aa6dd6a320e75daf1064a4c6918a1b45","signature":false,"impliedFormat":1},{"version":"46e4a36e8ddbdfb4e7330e11c81c970dc8b218611df9183d39c41c5f8c653b55","signature":false,"impliedFormat":1},{"version":"370bde134aa8c2abc926d0e99d3a4d5d5dba65c6ee65459137e4f02670cbf841","signature":false,"impliedFormat":1},{"version":"6332f565867cf4a740a70e30f31cefba37ef7cebcf74f22eab8d744fde6d193e","signature":false,"impliedFormat":1},{"version":"2977b7884aedc895a1d0c9c210c7cf3272c29d6959a08a6fa3ff71e0aff08175","signature":false,"impliedFormat":1},{"version":"17f2922d41ddd032830a91371c948cd9ce903b35c95adca72271a54584f19b0b","signature":false,"impliedFormat":1},{"version":"3eed76ede2a1a14d7c9bb0a642041282dcc264811139d3dd275c9fe14efc9840","signature":false,"impliedFormat":1},{"version":"e3cf0611709328b449ec13f8c436712d62003620ce480139fae46ce001c2ee9f","signature":false,"impliedFormat":1},{"version":"8d369483f0c2b9ee388129cfdb6a43bc8112b377e86a41884bd06e19ce04f4c1","signature":false,"impliedFormat":99},{"version":"b558c9a18ea4e6e4157124465c3ef1063e64640da139e67be5edb22f534f2f08","signature":false,"impliedFormat":1},{"version":"01374379f82be05d25c08d2f30779fa4a4c41895a18b93b33f14aeef51768692","signature":false,"impliedFormat":1},{"version":"b0dee183d4e65cf938242efaf3d833c6b645afb35039d058496965014f158141","signature":false,"impliedFormat":1},{"version":"c0bbbf84d3fbd85dd60d040c81e8964cc00e38124a52e9c5dcdedf45fea3f213","signature":false,"impliedFormat":1},{"version":"2f4107ea41ee463f1a630c31f89280fdf894e83f63d7d1ea1582a78fb479d87d","signature":false},{"version":"718f815ae02fbdbad7c61fb90f2d86bc5bf39dc166bd7ce0db1fbfefc9c6cad9","signature":false},{"version":"a4e62af0514fde8f8caf404e47f033567fdea0c57bd322239e1accaa3b5bce61","signature":false},{"version":"d1906262319846475cc1d67d8fdf25a32f05d7efaceae4c16c06e83b6f830e77","signature":false},{"version":"3be1508e900bed75064c05ae21fd5d838a43162995db7ccbfb6d35f59f3c90c2","signature":false},{"version":"4751a1d0fa8482200b4752e9ae9df28f26ab588fad9e65e6dea4ee833c107eab","signature":false},{"version":"bb30c52634975cf5b434821e8d10c6a3f1109426654aa795715330a01cda8055","signature":false},{"version":"c73cefbbf6b4601f86ddafb7c9052a5fe3b9f2db081f739dd62ebfb224599267","signature":false},{"version":"a6d6261e3b07631ed8fcdcbac44be4c7a7ee6f07574626a0e704db5c8570fc43","signature":false},{"version":"9074af49eb19f2246b76b49a93fd5326f0c5464f9c4a2d840759fb7d197cb887","signature":false},{"version":"97945b2d6e6a4e11483c3eb4e43fa3011919e4fd6fe01721db4642a09b6e5e0a","signature":false},{"version":"cdef43a22e14703c4c68beaab22fc060fb4015ce52d37ae4425810172fa78bcd","signature":false},{"version":"b4fabf9c73b548ce2a5a98b38dd3494bdf6d4683129bbc8ed696bc4c08faf9f6","signature":false},{"version":"27a6c23b0a3e80abd7596c895a6fb42856961fec7d80d39781399ee828923461","signature":false},{"version":"6698630dbc675452d618741c416e79adaf7373db4d1422721da47df7e1e0ba03","signature":false},{"version":"08ab6e69f243ab1df39b77c43918c78dd68b6398066bf623f123484431b1d698","signature":false},{"version":"40eb4eb274d7def754b3352c23328af96a69261fe5e99d20df41f1d5de8d0f5e","signature":false,"impliedFormat":1},{"version":"9be4e3267e0473e1d1a480773ec68f8eb388ed7a489d0747b26e5cd4e91dac35","signature":false},{"version":"3fcada15291563bfa38cd385adbb5ab0cd26630f71dac5381e235b125c08133b","signature":false},{"version":"73c078fcbc0fa04ba70b1c3e5a3dea6a980d8765079cdbfb40f903eb8daa4319","signature":false,"impliedFormat":99},{"version":"5297e84d3de08bbe3c00f964d1c74f89cf101d59a4826b335654f44ff41529a8","signature":false,"impliedFormat":99},{"version":"355b33af59287683501f76cbf7d6a141544c5ff1ae5f5c0701a3f89cc38e5238","signature":false,"impliedFormat":99},{"version":"280a996092ab956e80dc7bb7497d472ca5c1be23a9c52ac771f5c750ede462b9","signature":false,"impliedFormat":99},{"version":"32227e56a81d8ef1bdff21458db5b36baf3ca17071131034404c922fbd50c73e","signature":false},{"version":"34e0a321e5431e4edc3051cc75a717b834c6b8aa9e72f27b9c07d6572bed96e5","signature":false},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","signature":false,"impliedFormat":1},{"version":"293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","signature":false,"impliedFormat":1},{"version":"833e92c058d033cde3f29a6c7603f517001d1ddd8020bc94d2067a3bc69b2a8e","signature":false,"impliedFormat":1},{"version":"08b2fae7b0f553ad9f79faec864b179fc58bc172e295a70943e8585dd85f600c","signature":false,"impliedFormat":1},{"version":"f12edf1672a94c578eca32216839604f1e1c16b40a1896198deabf99c882b340","signature":false,"impliedFormat":1},{"version":"e3498cf5e428e6c6b9e97bd88736f26d6cf147dedbfa5a8ad3ed8e05e059af8a","signature":false,"impliedFormat":1},{"version":"dba3f34531fd9b1b6e072928b6f885aa4d28dd6789cbd0e93563d43f4b62da53","signature":false,"impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","signature":false,"impliedFormat":1},{"version":"e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","signature":false,"impliedFormat":1},{"version":"2329d90062487e1eaca87b5e06abcbbeeecf80a82f65f949fd332cfcf824b87b","signature":false,"impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","signature":false,"impliedFormat":1},{"version":"4fdb529707247a1a917a4626bfb6a293d52cd8ee57ccf03830ec91d39d606d6d","signature":false,"impliedFormat":1},{"version":"a9ebb67d6bbead6044b43714b50dcb77b8f7541ffe803046fdec1714c1eba206","signature":false,"impliedFormat":1},{"version":"5780b706cece027f0d4444fbb4e1af62dc51e19da7c3d3719f67b22b033859b9","signature":false,"impliedFormat":1},{"version":"800de8bb8ea525980e16dd155bb6e6847e7fdeccaf816e5c2674e1a24c5bfc9a","signature":false,"impliedFormat":1},{"version":"88efe27bebddb62da9655a9f093e0c27719647e96747f16650489dc9671075d6","signature":false,"impliedFormat":1},{"version":"e348f128032c4807ad9359a1fff29fcbc5f551c81be807bfa86db5a45649b7ba","signature":false,"impliedFormat":1},{"version":"8ee6b07974528da39b7835556e12dd3198c0a13e4a9de321217cd2044f3de22e","signature":false,"impliedFormat":1},{"version":"deefd8c43b40f9797c3921d78d3f9243959621a17b817be7f5d95c149f23a9dd","signature":false,"impliedFormat":1},{"version":"5f12132800d430adbe59b49c2c0354d85a71ada7d756e34250a655baa8ad4ae5","signature":false,"impliedFormat":1},{"version":"ec27c0cee1436f58e785f621703d19d588ebbd489eca245e5198b4d6b715790d","signature":false,"impliedFormat":1},{"version":"b16e757e4c35434065120a2b3bf13a518fc9e621dc9c2ed668f91635a9dc4e75","signature":false,"impliedFormat":1},{"version":"5e6208a4c6a1c94d05104b8809c3531e864932c27e2f65d070293d11d9d9eaf5","signature":false,"impliedFormat":1},{"version":"ea0e3c7d1347a549ac7ec32d3c61a30e473dbbbc901d458064db03f673128145","signature":false,"impliedFormat":1},{"version":"4374cefdde5c6e9bad52b0436e887b8325b8f407c12035194ad02c28f1553a3a","signature":false,"impliedFormat":1},{"version":"5f1ba0898eb0a54a644cb9c95c2240beaa961d87fd080cbb90807a6cc03daeb3","signature":false,"impliedFormat":1},{"version":"8e92ee8710ba85b158c5d91b0bbc9d0d033f5e062b6e70178063f01b20f63a14","signature":false,"impliedFormat":1},{"version":"ee933420aacba1f60aa70fb8ba47c5e69001b005073b71973114587089a13c7f","signature":false,"impliedFormat":1},{"version":"0a0714999d0a5bdfacd15c7b34cffbcc6f263f6cb0ccb42076cdc541c6987797","signature":false,"impliedFormat":1},{"version":"56584bfc655f9df64afc0f22f7d1122c29e5b74b342c203b891e19de9fa37de8","signature":false,"impliedFormat":1},{"version":"40ec58f0fadd0b3981b3d383e1c12fa0680115ae9f018387fc2cfc0bbcf23204","signature":false,"impliedFormat":1},{"version":"849b9e7283b7309a4556c9b90bb8e2dfc27751f157798065bbc513dcddb09a8c","signature":false,"impliedFormat":1},{"version":"76bba0c97594248c1be19af32d5799f7eff51cec2926d8e4dd59267d7636a0b4","signature":false,"impliedFormat":1},{"version":"10e109212c7be8a9f66e988e5d6c2a8900c9d14bf6beadf5fa70d32ada3425cf","signature":false,"impliedFormat":1},{"version":"f4558bcdc26690cc593cd59217cd17d8e00af0f5fbd0c4f1c0d71ba75029c42e","signature":false,"impliedFormat":1},{"version":"51d621c4e724720dd1b7ba6374d8a5b988beeda22d620ac84634a13691b631d9","signature":false,"impliedFormat":1},{"version":"f57a588d8f6b3ce5c8b494f2dc759a8885eaee18e80a4952df47de45403fedbe","signature":false,"impliedFormat":1},{"version":"34735727b3fe7a0ed0651a0f88d06449163d1989a2b2de7f047473adc7c1c383","signature":false,"impliedFormat":1},{"version":"a5b13abc88ab3186e713c445e59e2f6eee20c6167943517bc2f56985d89b8c55","signature":false,"impliedFormat":1},{"version":"05fa48042b74e4de7ff9dff2e3abab4c2aac944488ef993761faf06c28410aba","signature":false,"impliedFormat":1},{"version":"7ae65fe95b18205e241e6695cb2c61c0828d660aca7d08f68781b439a800e6b8","signature":false,"impliedFormat":1},{"version":"c2c8c166199d3a7bd093152437d1f6399d05e458a9ca9364456feecba920cda4","signature":false,"impliedFormat":1},{"version":"369b7270eeeb37982203b2cb18c7302947b89bf5818c1d3d2e95a0418f02b74e","signature":false,"impliedFormat":1},{"version":"94f95d223e2783b0aef4d15d7f6990a6a550fe17d099c501395f690337f7105e","signature":false,"impliedFormat":1},{"version":"945be5a9505194381cfd4a8551a5f0ae48090847e454fecf834e054207c5a57b","signature":false,"impliedFormat":1},{"version":"d1e8b78a5ce49cee9ef4cd2565d4645d269c6fd0650e3592f85ba481f13da3a3","signature":false,"impliedFormat":1},{"version":"d7386a1ebe9a3eae227a5561c898c10cacb61a49f941c5a18cdf593f979c693c","signature":false,"impliedFormat":1},{"version":"708733f625436da7047894887c1c17fa53b43094f36c9c3b1ce39d99aafd0a4b","signature":false,"impliedFormat":1},{"version":"2ad61964f27122a3ef7cf261f8b3dbda6b0f96be6687397151709bf34e5d5c76","signature":false,"impliedFormat":1},{"version":"302d3d92502a06fa7071406fa96d5c7f897006d73622aaf322df8405abc6f773","signature":false,"impliedFormat":1},{"version":"d21e12bd347e56a5b525c03a288450f730bed8a27b3f19e498566f72b5fd8da3","signature":false},{"version":"0098507a37b48e5113d700842ad9bfcb2b9725287775bef574b72baf94b52e93","signature":false},{"version":"e14590567e671da6037aface6efa2da23e023c05798727fafeae8daa4dbf3782","signature":false},{"version":"c53d60c92119fc64fc7cc46b016941b0e0395ad8c206feb48488b5c884fdad5d","signature":false},{"version":"91e5fdfc8e8e5925b69d42fc4e6185e92c65e130b1ef1c4cb5293aca513f747b","signature":false},{"version":"08117a455ef2778dd1dda45791dc92ac3ca1fef3cc9b6dd68900c92a18afa042","signature":false},{"version":"1a5ef691ad07a3720daaa89b3c04f2a34cdcc1365f7a2b092d4c68923c01c7f5","signature":false},{"version":"8bdf850ff791f1577457cc93a46503fcff9dbe01feafd312418865ac36488c93","signature":false},{"version":"8f7e5e8e0b61bd8242c1243274859b1489f6479e2b2104f2d3cef3533670e9e9","signature":false},{"version":"31cbb619f6b7b59fc3981f870432b984708e7d04068b6282b8987cb262397d25","signature":false},{"version":"10750f59e7ec441f1afd5a6019a87372f1e8b8c0823a369c00f7edeea8e68fa3","signature":false},{"version":"9edb2868898daf4a1c8aedfe6300f9ee18416e98dcd9a21397562e2ed5343e73","signature":false},{"version":"de0699419250de709f95cfd0826df8b9d26ed87c913eb8e1691d2a6882cd9d4d","signature":false},{"version":"e7c2f40dc99121500ad108a4f86541d29cac105ed018f994c7c5a2836e77b257","signature":false,"impliedFormat":1},{"version":"90e930283286ab117ab89f00589cf89ab5e9992bc57e79f303b36ee14649bdd9","signature":false,"impliedFormat":1},{"version":"6d48a6c907c668a6d6eda66acec4242e367c983e073100e35c1e234c424ad1a4","signature":false,"impliedFormat":1},{"version":"68a0e898d6c39160f1326ef922508914498c7a2d0b5a0d9222b7928d343214eb","signature":false,"impliedFormat":1},{"version":"69d96a8522b301a9e923ac4e42dd37fc942763740b183dffa3d51aca87f978d5","signature":false,"impliedFormat":1},{"version":"ff2fadad64868f1542a69edeadf5c5519e9c89e33bec267605298f8d172417c7","signature":false,"impliedFormat":1},{"version":"2866ae69517d6605a28d0c8d5dff4f15a0b876eeb8e5a1cbc51631d9c6793d3f","signature":false,"impliedFormat":1},{"version":"f8c4434aa8cbd4ede2a75cbc5532b6a12c9cac67c3095ed907e54f3f89d2e628","signature":false,"impliedFormat":1},{"version":"0b8adc0ae60a47acf65575952eee568b3d497f9975e3162f408052a99e65f488","signature":false,"impliedFormat":1},{"version":"ede9879d22f7ce68a8c99e455acab32fc45091c6eed9625549742b03e1f1ac1a","signature":false,"impliedFormat":1},{"version":"0e8c007c6e404da951c3d98a489ac0a3e9b6567648b997c03445ac69d7938c1c","signature":false,"impliedFormat":1},{"version":"f2a4866bed198a7c804b58ee39efe74c66ecdcf2dfebef0b9895d534a50790c4","signature":false,"impliedFormat":1},{"version":"ad72538d0c5e417ee6621e1b54691c274bcacaa1807c9895c5fa6d40b45fb631","signature":false,"impliedFormat":1},{"version":"4f851c59f3112702f6178e76204f839e3156daa98b5b7d7e3fc407a6c5764118","signature":false,"impliedFormat":1},{"version":"57511f723968d2f41dd2d55b9fbc5d0f3107af4e4227db0fb357c904bd34e690","signature":false,"impliedFormat":1},{"version":"9585df69c074d82dda33eadd6e5dccd164659f59b09bd5a0d25874770cf6042d","signature":false,"impliedFormat":1},{"version":"f6f6ce3e3718c2e7592e09d91c43b44318d47bca8ee353426252c694127f2dcb","signature":false,"impliedFormat":1},{"version":"4f70076586b8e194ef3d1b9679d626a9a61d449ba7e91dfc73cbe3904b538aa0","signature":false,"impliedFormat":1},{"version":"6d5838c172ff503ef37765b86019b80e3abe370105b2e1c4510d6098b0e84414","signature":false,"impliedFormat":1},{"version":"1876dac2baa902e2b7ebed5e03b95f338192dc03a6e4b0731733d675ba4048f3","signature":false,"impliedFormat":1},{"version":"8086407dd2a53ce700125037abf419bddcce43c14b3cf5ea3ac1ebded5cad011","signature":false,"impliedFormat":1},{"version":"c2501eb4c4e05c2d4de551a4bace9c28d06a0d89b228443f69eb3d7f9049fbd6","signature":false,"impliedFormat":1},{"version":"1829f790849d54ea3d736c61fdefd3237bede9c5784f4c15dfdafb7e0a9b8f63","signature":false,"impliedFormat":1},{"version":"5392feeda1bf0a1cc755f7339ea486b7a4d0d019774da8057ddc85347359ed63","signature":false,"impliedFormat":1},{"version":"c998117afca3af8432598c7e8d530d8376d0ca4871a34137db8caa1e94d94818","signature":false,"impliedFormat":1},{"version":"4e465f7e9a161a5a5248a18af79dbfbf06e8e1255bfdc8f63ab15475a2ba48bd","signature":false,"impliedFormat":1},{"version":"e0353c5070349846fe9835d782a8ce338d6d4172c603d14a6b364d6354957a4e","signature":false,"impliedFormat":1},{"version":"323133630008263f857a6d8350e36fb7f6e8d221ec0a425b075c20290570c020","signature":false,"impliedFormat":1},{"version":"c04e691d64b97e264ca4d000c287a53f2a75527556962cdbe3e8e2b301dac906","signature":false,"impliedFormat":1},{"version":"3733dba5107de9152f98da9bcb21bf6c91ac385f3b22f30ed08d0dc5e74c966f","signature":false,"impliedFormat":1},{"version":"d3ec922ddd9677696ee0552f10e95c4e59f85bb8c93fd76cd41b2dd93988ff39","signature":false,"impliedFormat":1},{"version":"0492c0d35e05c0fdd638980e02f3a7cdec18b311959fc730d85ed7e1d4ff38a7","signature":false,"impliedFormat":1},{"version":"c7122ba860d3497fa04a112d424ee88b50c482360042972bcf0917c5b82f4484","signature":false,"impliedFormat":1},{"version":"838f52090a0d39dce3c42e0ccb0db8db250c712c1fa2cd36799910c8f8a7f7bf","signature":false,"impliedFormat":1},{"version":"116ec624095373939de9edb03619916226f5e5b6e93cd761c4bda4efecb104fc","signature":false,"impliedFormat":1},{"version":"8e6b8259bfd8c8c3d6ed79349b7f2f69476d255aede2cd6c0acb0869ad8c6fdd","signature":false,"impliedFormat":1},{"version":"7152342ad31671d8ad068506b657f2c60cd25fda8978663117d3d50ecb18d413","signature":false},{"version":"404d991273b153289454e355181dec30b65c111634955638904ce7c726b77a1e","signature":false},{"version":"809270805b2c673c6a43635425222b77e422fe019c15b6bc54253b5d349d8f7a","signature":false},{"version":"933e05166cc43d768b3a3684e245feb295156726e447cce7d1d18846e93537fa","signature":false},{"version":"fb5ce60308493c79ad5f21adea2846197c690ca6a2102ee83bda58a9ce31c8ad","signature":false},{"version":"234240fc267e541b4657533fee4ddb711e8b316501d53f2942bf5bac0aa8a4b0","signature":false},{"version":"597f37a3cb4780be6b327e9776954603bf933735e37d3434618cfbbafc322a32","signature":false},{"version":"42aa1829808ab5c7a59e625cdc044fbe94ba1bc5e8e3e4d910e9337535e61656","signature":false},{"version":"07fc9ae20c9d5674575f6238ff93e9f16f9c3c851c063d07cf733c85b31c688a","signature":false},{"version":"b374378a78ee082b6f8a149bc308501e5882aad883e43efe923ea31bc24f64b5","signature":false},{"version":"d1986184a09a52db8228cb2bb2a61a8c05c9354e5b93cec8e2628d8579c892d7","signature":false},{"version":"6e33142e2d7fbf5a6dc610b9ab1eb5e65f2d7ce1f925d3e32453320e55538f51","signature":false},{"version":"751764bb94219b4ce8f5475dc35d3de2e432fea01a0c9610cd7f69ad05e398c6","signature":false,"impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","signature":false,"impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","signature":false,"impliedFormat":1}],"root":[[535,539],[564,579],581,582,587,588,[639,651],[688,699]],"options":{"allowJs":false,"composite":false,"declarationMap":false,"emitDeclarationOnly":false,"esModuleInterop":true,"jsx":4,"module":99,"skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[698,1],[535,2],[699,3],[640,4],[642,5],[641,6],[644,7],[645,4],[646,8],[647,6],[588,9],[648,4],[649,10],[650,11],[651,12],[691,13],[692,14],[693,15],[688,16],[694,17],[695,18],[565,19],[566,19],[567,19],[568,19],[569,19],[571,19],[570,19],[572,19],[575,20],[577,21],[578,22],[579,23],[689,8],[582,24],[581,25],[576,26],[639,27],[696,28],[587,29],[697,30],[690,31],[573,32],[537,32],[574,2],[643,8],[538,33],[536,34],[539,35],[638,36],[636,37],[637,38],[379,2],[583,2],[584,39],[585,40],[586,41],[687,42],[666,43],[676,44],[673,44],[674,45],[658,45],[672,45],[653,44],[659,46],[662,47],[667,48],[655,46],[656,45],[669,49],[654,46],[660,46],[663,46],[668,46],[670,45],[657,45],[671,45],[665,50],[661,51],[686,52],[664,53],[675,54],[652,45],[677,45],[678,45],[679,45],[680,45],[681,45],[682,45],[683,45],[684,45],[685,45],[700,2],[701,2],[702,2],[143,55],[144,55],[145,56],[97,57],[146,58],[147,59],[148,60],[92,2],[95,61],[93,2],[94,2],[149,62],[150,63],[151,64],[152,65],[153,66],[154,67],[155,67],[156,68],[157,69],[158,70],[159,71],[98,2],[96,2],[160,72],[161,73],[162,74],[196,75],[163,76],[164,2],[165,77],[166,78],[167,79],[168,80],[169,81],[170,82],[171,83],[172,84],[173,85],[174,85],[175,86],[176,2],[177,87],[178,88],[180,89],[179,90],[181,91],[182,92],[183,93],[184,94],[185,95],[186,96],[187,97],[188,98],[189,99],[190,100],[191,101],[192,102],[193,103],[99,2],[100,2],[101,2],[139,104],[140,2],[141,2],[142,91],[194,105],[195,106],[200,107],[464,108],[201,109],[199,110],[466,111],[465,112],[197,113],[462,2],[198,114],[83,2],[85,115],[461,108],[231,108],[84,2],[580,108],[487,116],[492,1],[499,117],[482,118],[235,2],[243,119],[383,120],[386,121],[358,2],[371,122],[378,123],[260,2],[360,2],[241,2],[357,124],[403,125],[242,2],[233,126],[385,127],[387,128],[388,129],[459,130],[352,131],[305,132],[365,133],[366,134],[364,135],[363,2],[359,136],[384,137],[244,138],[429,2],[430,139],[271,140],[245,141],[272,140],[308,140],[211,140],[381,142],[380,2],[370,143],[477,2],[220,2],[498,144],[437,145],[438,146],[434,147],[516,2],[335,2],[439,148],[435,149],[521,150],[520,151],[515,2],[286,2],[338,152],[337,2],[514,153],[436,108],[291,154],[298,155],[300,156],[290,2],[295,157],[297,158],[299,159],[294,160],[292,2],[296,161],[517,2],[513,2],[519,162],[518,2],[289,163],[508,164],[511,165],[279,166],[278,167],[277,168],[524,108],[276,169],[265,2],[526,2],[527,108],[528,170],[203,2],[367,171],[368,172],[369,173],[207,2],[372,2],[227,174],[202,2],[451,108],[209,175],[450,176],[449,177],[440,2],[441,2],[448,2],[443,2],[446,178],[442,2],[444,179],[447,180],[445,179],[240,2],[237,2],[238,140],[392,2],[397,181],[398,182],[396,183],[394,184],[395,185],[390,2],[457,148],[232,148],[486,186],[493,187],[497,188],[326,189],[325,2],[320,2],[473,190],[481,191],[353,192],[354,193],[432,194],[342,2],[455,195],[330,108],[347,196],[458,197],[343,2],[346,198],[344,2],[456,199],[453,200],[452,2],[454,2],[350,2],[428,201],[215,202],[328,203],[332,204],[348,205],[351,206],[340,207],[333,208],[480,209],[406,210],[324,211],[212,212],[479,213],[208,214],[399,215],[391,2],[400,216],[417,217],[389,2],[416,218],[91,2],[411,219],[236,2],[431,220],[407,2],[221,2],[223,2],[362,2],[415,221],[239,2],[263,222],[349,223],[269,224],[329,2],[414,2],[393,2],[419,225],[420,226],[361,2],[422,227],[424,228],[423,229],[373,2],[413,212],[426,230],[323,231],[412,232],[418,233],[248,2],[252,2],[251,2],[250,2],[255,2],[249,2],[258,2],[257,2],[254,2],[253,2],[256,2],[259,234],[247,2],[315,235],[314,2],[319,236],[316,237],[318,238],[321,236],[317,237],[228,239],[307,240],[476,241],[474,2],[503,242],[505,243],[469,244],[504,245],[216,246],[213,246],[246,2],[230,247],[229,248],[225,249],[226,250],[234,251],[262,251],[273,251],[309,252],[274,252],[218,253],[217,2],[313,254],[312,255],[311,256],[310,257],[219,258],[460,259],[261,260],[468,261],[433,262],[463,263],[467,264],[356,265],[355,266],[336,267],[322,268],[304,269],[306,270],[303,271],[425,272],[327,2],[491,2],[224,273],[427,274],[475,275],[334,2],[264,276],[341,277],[339,278],[266,279],[401,280],[470,2],[267,281],[402,281],[489,2],[488,2],[490,2],[472,2],[471,2],[404,282],[331,2],[301,283],[222,284],[280,2],[206,285],[268,2],[495,108],[205,2],[507,286],[288,108],[501,148],[287,287],[484,288],[285,286],[210,2],[509,289],[283,108],[284,108],[275,2],[204,2],[282,290],[281,291],[270,292],[345,84],[405,84],[421,2],[409,293],[408,2],[293,163],[214,2],[302,108],[478,174],[485,294],[86,108],[89,295],[90,296],[87,108],[88,2],[382,297],[377,298],[376,2],[375,299],[374,2],[483,300],[494,301],[496,302],[500,303],[502,304],[506,305],[534,306],[510,306],[533,307],[512,308],[522,309],[523,310],[525,311],[529,312],[532,174],[531,2],[530,313],[556,314],[554,315],[555,316],[543,317],[544,315],[551,318],[542,319],[547,320],[557,2],[548,321],[553,322],[559,323],[558,324],[541,325],[549,326],[550,327],[545,328],[552,314],[546,329],[603,2],[619,330],[620,330],[621,330],[635,331],[622,332],[623,332],[624,333],[616,334],[614,335],[605,2],[609,336],[613,337],[611,338],[618,339],[606,340],[607,341],[608,342],[610,343],[612,344],[615,345],[617,346],[625,332],[626,332],[627,332],[628,330],[629,332],[630,332],[604,332],[631,2],[633,347],[632,332],[634,330],[410,348],[540,2],[562,349],[561,2],[560,2],[563,350],[81,2],[82,2],[13,2],[14,2],[16,2],[15,2],[2,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[23,2],[24,2],[3,2],[25,2],[26,2],[4,2],[27,2],[31,2],[28,2],[29,2],[30,2],[32,2],[33,2],[34,2],[5,2],[35,2],[36,2],[37,2],[38,2],[6,2],[42,2],[39,2],[40,2],[41,2],[43,2],[7,2],[44,2],[49,2],[50,2],[45,2],[46,2],[47,2],[48,2],[8,2],[54,2],[51,2],[52,2],[53,2],[55,2],[9,2],[56,2],[57,2],[58,2],[60,2],[59,2],[61,2],[62,2],[10,2],[63,2],[64,2],[65,2],[11,2],[66,2],[67,2],[68,2],[69,2],[70,2],[1,2],[71,2],[72,2],[12,2],[76,2],[74,2],[79,2],[78,2],[73,2],[77,2],[75,2],[80,2],[117,351],[127,352],[116,351],[137,353],[108,354],[107,355],[136,313],[130,356],[135,357],[110,358],[124,359],[109,360],[133,361],[105,362],[104,313],[134,363],[106,364],[111,365],[112,2],[115,365],[102,2],[138,366],[128,367],[119,368],[120,369],[122,370],[118,371],[121,372],[131,313],[113,373],[114,374],[123,375],[103,376],[126,367],[125,365],[129,2],[132,377],[602,378],[594,379],[601,380],[596,2],[597,2],[595,381],[598,382],[589,2],[590,2],[591,378],[593,383],[599,2],[600,384],[592,385],[564,386]],"changeFileSet":[698,535,699,640,642,641,644,645,646,647,588,648,649,650,651,691,692,693,688,694,695,565,566,567,568,569,571,570,572,575,577,578,579,689,582,581,576,639,696,587,697,690,573,537,574,643,538,536,539,638,636,637,379,583,584,585,586,687,666,676,673,674,658,672,653,659,662,667,655,656,669,654,660,663,668,670,657,671,665,661,686,664,675,652,677,678,679,680,681,682,683,684,685,700,701,702,143,144,145,97,146,147,148,92,95,93,94,149,150,151,152,153,154,155,156,157,158,159,98,96,160,161,162,196,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,180,179,181,182,183,184,185,186,187,188,189,190,191,192,193,99,100,101,139,140,141,142,194,195,200,464,201,199,466,465,197,462,198,83,85,461,231,84,580,487,492,499,482,235,243,383,386,358,371,378,260,360,241,357,403,242,233,385,387,388,459,352,305,365,366,364,363,359,384,244,429,430,271,245,272,308,211,381,380,370,477,220,498,437,438,434,516,335,439,435,521,520,515,286,338,337,514,436,291,298,300,290,295,297,299,294,292,296,517,513,519,518,289,508,511,279,278,277,524,276,265,526,527,528,203,367,368,369,207,372,227,202,451,209,450,449,440,441,448,443,446,442,444,447,445,240,237,238,392,397,398,396,394,395,390,457,232,486,493,497,326,325,320,473,481,353,354,432,342,455,330,347,458,343,346,344,456,453,452,454,350,428,215,328,332,348,351,340,333,480,406,324,212,479,208,399,391,400,417,389,416,91,411,236,431,407,221,223,362,415,239,263,349,269,329,414,393,419,420,361,422,424,423,373,413,426,323,412,418,248,252,251,250,255,249,258,257,254,253,256,259,247,315,314,319,316,318,321,317,228,307,476,474,503,505,469,504,216,213,246,230,229,225,226,234,262,273,309,274,218,217,313,312,311,310,219,460,261,468,433,463,467,356,355,336,322,304,306,303,425,327,491,224,427,475,334,264,341,339,266,401,470,267,402,489,488,490,472,471,404,331,301,222,280,206,268,495,205,507,288,501,287,484,285,210,509,283,284,275,204,282,281,270,345,405,421,409,408,293,214,302,478,485,86,89,90,87,88,382,377,376,375,374,483,494,496,500,502,506,534,510,533,512,522,523,525,529,532,531,530,556,554,555,543,544,551,542,547,557,548,553,559,558,541,549,550,545,552,546,603,619,620,621,635,622,623,624,616,614,605,609,613,611,618,606,607,608,610,612,615,617,625,626,627,628,629,630,604,631,633,632,634,410,540,562,561,560,563,81,82,13,14,16,15,2,17,18,19,20,21,22,23,24,3,25,26,4,27,31,28,29,30,32,33,34,5,35,36,37,38,6,42,39,40,41,43,7,44,49,50,45,46,47,48,8,54,51,52,53,55,9,56,57,58,60,59,61,62,10,63,64,65,11,66,67,68,69,70,1,71,72,12,76,74,79,78,73,77,75,80,117,127,116,137,108,107,136,130,135,110,124,109,133,105,104,134,106,111,112,115,102,138,128,119,120,122,118,121,131,113,114,123,103,126,125,129,132,602,594,601,596,597,595,598,589,590,591,593,599,600,592,564],"version":"5.9.3"} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/diagnostics/route-bundle-stats.json b/validation-suite/frontend/atlas/.next/diagnostics/route-bundle-stats.json index 20582350..e773ef5f 100644 --- a/validation-suite/frontend/atlas/.next/diagnostics/route-bundle-stats.json +++ b/validation-suite/frontend/atlas/.next/diagnostics/route-bundle-stats.json @@ -1,16 +1,16 @@ [ { "route": "/validations/[id]/edit", - "firstLoadUncompressedJsBytes": 751890, + "firstLoadUncompressedJsBytes": 752325, "firstLoadChunkPaths": [ ".next/static/chunks/05-c3ty_6dwfk.js", ".next/static/chunks/14mrh2-p_w84d.js", ".next/static/chunks/34jc288cp41wf.js", ".next/static/chunks/3ehzmerq6j-54.js", - ".next/static/chunks/3_bqwdscuc1c8.js", + ".next/static/chunks/05xkqica3e3uw.js", ".next/static/chunks/1_3g0o_0cezme.js", ".next/static/chunks/3ltfzh6dxauii.js", - ".next/static/chunks/2975f5i-zcw63.js", + ".next/static/chunks/43zs1l-r-4ddz.js", ".next/static/chunks/2zjueh7t2vecu.js", ".next/static/chunks/30wdrt2uam-rs.js", ".next/static/chunks/0n-zjr76qg7uq.js", @@ -21,16 +21,16 @@ }, { "route": "/validations/new", - "firstLoadUncompressedJsBytes": 751722, + "firstLoadUncompressedJsBytes": 752157, "firstLoadChunkPaths": [ ".next/static/chunks/05-c3ty_6dwfk.js", ".next/static/chunks/14mrh2-p_w84d.js", ".next/static/chunks/34jc288cp41wf.js", ".next/static/chunks/3ehzmerq6j-54.js", - ".next/static/chunks/3_bqwdscuc1c8.js", + ".next/static/chunks/05xkqica3e3uw.js", ".next/static/chunks/1diubaxj1tclp.js", ".next/static/chunks/3ltfzh6dxauii.js", - ".next/static/chunks/2975f5i-zcw63.js", + ".next/static/chunks/43zs1l-r-4ddz.js", ".next/static/chunks/2zjueh7t2vecu.js", ".next/static/chunks/30wdrt2uam-rs.js", ".next/static/chunks/0n-zjr76qg7uq.js", @@ -41,13 +41,13 @@ }, { "route": "/users", - "firstLoadUncompressedJsBytes": 734279, + "firstLoadUncompressedJsBytes": 734706, "firstLoadChunkPaths": [ ".next/static/chunks/05-c3ty_6dwfk.js", ".next/static/chunks/14mrh2-p_w84d.js", ".next/static/chunks/34jc288cp41wf.js", ".next/static/chunks/3ehzmerq6j-54.js", - ".next/static/chunks/3_bqwdscuc1c8.js", + ".next/static/chunks/05xkqica3e3uw.js", ".next/static/chunks/30zpouyx32v4r.js", ".next/static/chunks/3ltfzh6dxauii.js", ".next/static/chunks/2zjueh7t2vecu.js", @@ -60,13 +60,13 @@ }, { "route": "/devices", - "firstLoadUncompressedJsBytes": 729726, + "firstLoadUncompressedJsBytes": 730153, "firstLoadChunkPaths": [ ".next/static/chunks/05-c3ty_6dwfk.js", ".next/static/chunks/14mrh2-p_w84d.js", ".next/static/chunks/34jc288cp41wf.js", ".next/static/chunks/3ehzmerq6j-54.js", - ".next/static/chunks/3_bqwdscuc1c8.js", + ".next/static/chunks/05xkqica3e3uw.js", ".next/static/chunks/02io6dnnqj4wa.js", ".next/static/chunks/1ynnqp1y5f44o.js", ".next/static/chunks/2zjueh7t2vecu.js", @@ -78,14 +78,33 @@ ] }, { - "route": "/equipment", - "firstLoadUncompressedJsBytes": 729089, + "route": "/customers", + "firstLoadUncompressedJsBytes": 729550, "firstLoadChunkPaths": [ ".next/static/chunks/05-c3ty_6dwfk.js", ".next/static/chunks/14mrh2-p_w84d.js", ".next/static/chunks/34jc288cp41wf.js", ".next/static/chunks/3ehzmerq6j-54.js", - ".next/static/chunks/3_bqwdscuc1c8.js", + ".next/static/chunks/05xkqica3e3uw.js", + ".next/static/chunks/0lz93ryxnzgoq.js", + ".next/static/chunks/1ynnqp1y5f44o.js", + ".next/static/chunks/2zjueh7t2vecu.js", + ".next/static/chunks/30wdrt2uam-rs.js", + ".next/static/chunks/0n-zjr76qg7uq.js", + ".next/static/chunks/0iec5q4ack_04.js", + ".next/static/chunks/27jktro2p5rq9.js", + ".next/static/chunks/turbopack-06glzjf65-whj.js" + ] + }, + { + "route": "/equipment", + "firstLoadUncompressedJsBytes": 729516, + "firstLoadChunkPaths": [ + ".next/static/chunks/05-c3ty_6dwfk.js", + ".next/static/chunks/14mrh2-p_w84d.js", + ".next/static/chunks/34jc288cp41wf.js", + ".next/static/chunks/3ehzmerq6j-54.js", + ".next/static/chunks/05xkqica3e3uw.js", ".next/static/chunks/34frrgl3b8scb.js", ".next/static/chunks/1ynnqp1y5f44o.js", ".next/static/chunks/2zjueh7t2vecu.js", @@ -96,34 +115,15 @@ ".next/static/chunks/turbopack-06glzjf65-whj.js" ] }, - { - "route": "/customers", - "firstLoadUncompressedJsBytes": 728872, - "firstLoadChunkPaths": [ - ".next/static/chunks/05-c3ty_6dwfk.js", - ".next/static/chunks/14mrh2-p_w84d.js", - ".next/static/chunks/34jc288cp41wf.js", - ".next/static/chunks/3ehzmerq6j-54.js", - ".next/static/chunks/3_bqwdscuc1c8.js", - ".next/static/chunks/2-nz3xcpe_pw_.js", - ".next/static/chunks/1ynnqp1y5f44o.js", - ".next/static/chunks/2zjueh7t2vecu.js", - ".next/static/chunks/30wdrt2uam-rs.js", - ".next/static/chunks/0n-zjr76qg7uq.js", - ".next/static/chunks/0iec5q4ack_04.js", - ".next/static/chunks/27jktro2p5rq9.js", - ".next/static/chunks/turbopack-06glzjf65-whj.js" - ] - }, { "route": "/contacts", - "firstLoadUncompressedJsBytes": 728537, + "firstLoadUncompressedJsBytes": 728964, "firstLoadChunkPaths": [ ".next/static/chunks/05-c3ty_6dwfk.js", ".next/static/chunks/14mrh2-p_w84d.js", ".next/static/chunks/34jc288cp41wf.js", ".next/static/chunks/3ehzmerq6j-54.js", - ".next/static/chunks/3_bqwdscuc1c8.js", + ".next/static/chunks/05xkqica3e3uw.js", ".next/static/chunks/0-krs176t54dw.js", ".next/static/chunks/1ynnqp1y5f44o.js", ".next/static/chunks/2zjueh7t2vecu.js", @@ -136,13 +136,13 @@ }, { "route": "/locations", - "firstLoadUncompressedJsBytes": 728532, + "firstLoadUncompressedJsBytes": 728959, "firstLoadChunkPaths": [ ".next/static/chunks/05-c3ty_6dwfk.js", ".next/static/chunks/14mrh2-p_w84d.js", ".next/static/chunks/34jc288cp41wf.js", ".next/static/chunks/3ehzmerq6j-54.js", - ".next/static/chunks/3_bqwdscuc1c8.js", + ".next/static/chunks/05xkqica3e3uw.js", ".next/static/chunks/1m4and-haqgqz.js", ".next/static/chunks/1ynnqp1y5f44o.js", ".next/static/chunks/2zjueh7t2vecu.js", @@ -155,13 +155,13 @@ }, { "route": "/profile/security", - "firstLoadUncompressedJsBytes": 711271, + "firstLoadUncompressedJsBytes": 711698, "firstLoadChunkPaths": [ ".next/static/chunks/05-c3ty_6dwfk.js", ".next/static/chunks/14mrh2-p_w84d.js", ".next/static/chunks/34jc288cp41wf.js", ".next/static/chunks/3ehzmerq6j-54.js", - ".next/static/chunks/3_bqwdscuc1c8.js", + ".next/static/chunks/05xkqica3e3uw.js", ".next/static/chunks/19-dmj7e3s4r_.js", ".next/static/chunks/3ltfzh6dxauii.js", ".next/static/chunks/2zjueh7t2vecu.js", @@ -174,14 +174,14 @@ }, { "route": "/validations", - "firstLoadUncompressedJsBytes": 691299, + "firstLoadUncompressedJsBytes": 691641, "firstLoadChunkPaths": [ ".next/static/chunks/05-c3ty_6dwfk.js", ".next/static/chunks/14mrh2-p_w84d.js", ".next/static/chunks/34jc288cp41wf.js", ".next/static/chunks/3ehzmerq6j-54.js", - ".next/static/chunks/3_bqwdscuc1c8.js", - ".next/static/chunks/0ti1a2yw9pft4.js", + ".next/static/chunks/05xkqica3e3uw.js", + ".next/static/chunks/41jx6c5jfr1py.js", ".next/static/chunks/26jh-4z-ujjfh.js", ".next/static/chunks/2zjueh7t2vecu.js", ".next/static/chunks/30wdrt2uam-rs.js", @@ -211,13 +211,13 @@ }, { "route": "/validations/quick-start", - "firstLoadUncompressedJsBytes": 636173, + "firstLoadUncompressedJsBytes": 636600, "firstLoadChunkPaths": [ ".next/static/chunks/05-c3ty_6dwfk.js", ".next/static/chunks/14mrh2-p_w84d.js", ".next/static/chunks/34jc288cp41wf.js", ".next/static/chunks/3ehzmerq6j-54.js", - ".next/static/chunks/3_bqwdscuc1c8.js", + ".next/static/chunks/05xkqica3e3uw.js", ".next/static/chunks/0t7m1oc6w_u-y.js", ".next/static/chunks/2zjueh7t2vecu.js", ".next/static/chunks/30wdrt2uam-rs.js", @@ -229,14 +229,14 @@ }, { "route": "/settings/report-layout", - "firstLoadUncompressedJsBytes": 634119, + "firstLoadUncompressedJsBytes": 634546, "firstLoadChunkPaths": [ ".next/static/chunks/05-c3ty_6dwfk.js", ".next/static/chunks/14mrh2-p_w84d.js", ".next/static/chunks/34jc288cp41wf.js", ".next/static/chunks/3ehzmerq6j-54.js", - ".next/static/chunks/3_bqwdscuc1c8.js", - ".next/static/chunks/413udcsynwnhe.js", + ".next/static/chunks/05xkqica3e3uw.js", + ".next/static/chunks/3cjefmw3itjkw.js", ".next/static/chunks/2zjueh7t2vecu.js", ".next/static/chunks/30wdrt2uam-rs.js", ".next/static/chunks/0n-zjr76qg7uq.js", @@ -247,14 +247,32 @@ }, { "route": "/dashboard", - "firstLoadUncompressedJsBytes": 630511, + "firstLoadUncompressedJsBytes": 630956, "firstLoadChunkPaths": [ ".next/static/chunks/05-c3ty_6dwfk.js", ".next/static/chunks/14mrh2-p_w84d.js", ".next/static/chunks/34jc288cp41wf.js", ".next/static/chunks/3ehzmerq6j-54.js", - ".next/static/chunks/3_bqwdscuc1c8.js", - ".next/static/chunks/2toi33zq_ydim.js", + ".next/static/chunks/05xkqica3e3uw.js", + ".next/static/chunks/2c7prz40q05zp.js", + ".next/static/chunks/2zjueh7t2vecu.js", + ".next/static/chunks/30wdrt2uam-rs.js", + ".next/static/chunks/0n-zjr76qg7uq.js", + ".next/static/chunks/0iec5q4ack_04.js", + ".next/static/chunks/27jktro2p5rq9.js", + ".next/static/chunks/turbopack-06glzjf65-whj.js" + ] + }, + { + "route": "/customers/import", + "firstLoadUncompressedJsBytes": 620618, + "firstLoadChunkPaths": [ + ".next/static/chunks/05-c3ty_6dwfk.js", + ".next/static/chunks/14mrh2-p_w84d.js", + ".next/static/chunks/34jc288cp41wf.js", + ".next/static/chunks/3ehzmerq6j-54.js", + ".next/static/chunks/05xkqica3e3uw.js", + ".next/static/chunks/0o13c7nb3wcya.js", ".next/static/chunks/2zjueh7t2vecu.js", ".next/static/chunks/30wdrt2uam-rs.js", ".next/static/chunks/0n-zjr76qg7uq.js", @@ -265,13 +283,13 @@ }, { "route": "/validations/[id]/preview", - "firstLoadUncompressedJsBytes": 612846, + "firstLoadUncompressedJsBytes": 613273, "firstLoadChunkPaths": [ ".next/static/chunks/05-c3ty_6dwfk.js", ".next/static/chunks/14mrh2-p_w84d.js", ".next/static/chunks/34jc288cp41wf.js", ".next/static/chunks/3ehzmerq6j-54.js", - ".next/static/chunks/3_bqwdscuc1c8.js", + ".next/static/chunks/05xkqica3e3uw.js", ".next/static/chunks/3bmssrj1g6gvs.js", ".next/static/chunks/2zjueh7t2vecu.js", ".next/static/chunks/30wdrt2uam-rs.js", @@ -283,13 +301,13 @@ }, { "route": "/documents", - "firstLoadUncompressedJsBytes": 608772, + "firstLoadUncompressedJsBytes": 609199, "firstLoadChunkPaths": [ ".next/static/chunks/05-c3ty_6dwfk.js", ".next/static/chunks/14mrh2-p_w84d.js", ".next/static/chunks/34jc288cp41wf.js", ".next/static/chunks/3ehzmerq6j-54.js", - ".next/static/chunks/3_bqwdscuc1c8.js", + ".next/static/chunks/05xkqica3e3uw.js", ".next/static/chunks/2zjueh7t2vecu.js", ".next/static/chunks/30wdrt2uam-rs.js", ".next/static/chunks/0n-zjr76qg7uq.js", diff --git a/validation-suite/frontend/atlas/.next/fallback-build-manifest.json b/validation-suite/frontend/atlas/.next/fallback-build-manifest.json index 65fea591..5c9a6650 100644 --- a/validation-suite/frontend/atlas/.next/fallback-build-manifest.json +++ b/validation-suite/frontend/atlas/.next/fallback-build-manifest.json @@ -5,9 +5,9 @@ "devFiles": [], "polyfillFiles": [], "lowPriorityFiles": [ - "static/T1Sq4P6mWswk2NfmBZrTz/_buildManifest.js", - "static/T1Sq4P6mWswk2NfmBZrTz/_ssgManifest.js", - "static/T1Sq4P6mWswk2NfmBZrTz/_clientMiddlewareManifest.js" + "static/MO_FrTIQMTyIgUY4at_vj/_buildManifest.js", + "static/MO_FrTIQMTyIgUY4at_vj/_ssgManifest.js", + "static/MO_FrTIQMTyIgUY4at_vj/_clientMiddlewareManifest.js" ], "rootMainFiles": [] } \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/prerender-manifest.json b/validation-suite/frontend/atlas/.next/prerender-manifest.json index cb283143..6373fddd 100644 --- a/validation-suite/frontend/atlas/.next/prerender-manifest.json +++ b/validation-suite/frontend/atlas/.next/prerender-manifest.json @@ -122,6 +122,30 @@ "x-next-revalidate-tag-token" ] }, + "/customers/import": { + "experimentalBypassFor": [ + { + "type": "header", + "key": "next-action" + }, + { + "type": "header", + "key": "content-type", + "value": "multipart/form-data;.*" + } + ], + "initialRevalidateSeconds": false, + "srcRoute": "/customers/import", + "dataRoute": "/customers/import.rsc", + "allowHeader": [ + "host", + "x-matched-path", + "x-prerender-revalidate", + "x-prerender-revalidate-if-generated", + "x-next-revalidated-tags", + "x-next-revalidate-tag-token" + ] + }, "/dashboard": { "experimentalBypassFor": [ { diff --git a/validation-suite/frontend/atlas/.next/routes-manifest.json b/validation-suite/frontend/atlas/.next/routes-manifest.json index 651a1310..584faa9a 100644 --- a/validation-suite/frontend/atlas/.next/routes-manifest.json +++ b/validation-suite/frontend/atlas/.next/routes-manifest.json @@ -66,6 +66,18 @@ "routeKeys": {}, "namedRegex": "^/_not\\-found(?:/)?$" }, + { + "page": "/api/customer-imports/confirm", + "regex": "^/api/customer\\-imports/confirm(?:/)?$", + "routeKeys": {}, + "namedRegex": "^/api/customer\\-imports/confirm(?:/)?$" + }, + { + "page": "/api/customer-imports/preview", + "regex": "^/api/customer\\-imports/preview(?:/)?$", + "routeKeys": {}, + "namedRegex": "^/api/customer\\-imports/preview(?:/)?$" + }, { "page": "/api/login", "regex": "^/api/login(?:/)?$", @@ -108,6 +120,12 @@ "routeKeys": {}, "namedRegex": "^/customers(?:/)?$" }, + { + "page": "/customers/import", + "regex": "^/customers/import(?:/)?$", + "routeKeys": {}, + "namedRegex": "^/customers/import(?:/)?$" + }, { "page": "/dashboard", "regex": "^/dashboard(?:/)?$", diff --git a/validation-suite/frontend/atlas/.next/server/app-paths-manifest.json b/validation-suite/frontend/atlas/.next/server/app-paths-manifest.json index 1e6577cb..0eaa9595 100644 --- a/validation-suite/frontend/atlas/.next/server/app-paths-manifest.json +++ b/validation-suite/frontend/atlas/.next/server/app-paths-manifest.json @@ -1,5 +1,6 @@ { "/(app)/contacts/page": "app/(app)/contacts/page.js", + "/(app)/customers/import/page": "app/(app)/customers/import/page.js", "/(app)/customers/page": "app/(app)/customers/page.js", "/(app)/dashboard/page": "app/(app)/dashboard/page.js", "/(app)/devices/page": "app/(app)/devices/page.js", @@ -17,6 +18,8 @@ "/(auth)/login/page": "app/(auth)/login/page.js", "/_global-error/page": "app/_global-error/page.js", "/_not-found/page": "app/_not-found/page.js", + "/api/customer-imports/confirm/route": "app/api/customer-imports/confirm/route.js", + "/api/customer-imports/preview/route": "app/api/customer-imports/preview/route.js", "/api/login/route": "app/api/login/route.js", "/api/logout/route": "app/api/logout/route.js", "/api/me/route": "app/api/me/route.js", diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/contacts/page.js.nft.json b/validation-suite/frontend/atlas/.next/server/app/(app)/contacts/page.js.nft.json index 7c8d0a4b..1f765e2c 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/contacts/page.js.nft.json +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/contacts/page.js.nft.json @@ -1 +1 @@ -{"version":1,"files":["../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../node_modules/@swc/helpers/package.json","../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../node_modules/next/dist/client/lib/console.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../node_modules/next/dist/lib/constants.js","../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../node_modules/next/dist/lib/is-error.js","../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../node_modules/next/dist/server/node-environment.js","../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../node_modules/next/dist/server/require-hook.js","../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../node_modules/next/package.json","../../../../../node_modules/react/cjs/react.development.js","../../../../../node_modules/react/cjs/react.production.js","../../../../../node_modules/react/index.js","../../../../../node_modules/react/package.json","../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../chunks/ssr/[root-of-the-server]__131fw97._.js","../../../chunks/ssr/[turbopack]_runtime.js","../../../chunks/ssr/_0b7nppq._.js","../../../chunks/ssr/_0kezen4._.js","../../../chunks/ssr/_0nxz7mr._.js","../../../chunks/ssr/_0um1dzw._.js","../../../chunks/ssr/_0v6sf8t._.js","../../../chunks/ssr/_0yv2mfm._.js","../../../chunks/ssr/_next-internal_server_app_(app)_contacts_page_actions_0xstysf.js","../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../chunks/ssr/components_1g-t6zb._.js","../../../chunks/ssr/node_modules_0d_chie._.js","../../../chunks/ssr/node_modules_0h91jdk._.js","../../../chunks/ssr/node_modules_12j4hea._.js","../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_1v8-mvc.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file +{"version":1,"files":["../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../node_modules/@swc/helpers/package.json","../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../node_modules/next/dist/client/lib/console.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../node_modules/next/dist/lib/constants.js","../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../node_modules/next/dist/lib/is-error.js","../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../node_modules/next/dist/server/node-environment.js","../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../node_modules/next/dist/server/require-hook.js","../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../node_modules/next/package.json","../../../../../node_modules/react/cjs/react.development.js","../../../../../node_modules/react/cjs/react.production.js","../../../../../node_modules/react/index.js","../../../../../node_modules/react/package.json","../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../chunks/ssr/[root-of-the-server]__131fw97._.js","../../../chunks/ssr/[turbopack]_runtime.js","../../../chunks/ssr/_0arfgns._.js","../../../chunks/ssr/_0b7nppq._.js","../../../chunks/ssr/_0kezen4._.js","../../../chunks/ssr/_0nxz7mr._.js","../../../chunks/ssr/_0um1dzw._.js","../../../chunks/ssr/_0yv2mfm._.js","../../../chunks/ssr/_next-internal_server_app_(app)_contacts_page_actions_0xstysf.js","../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../chunks/ssr/components_1g-t6zb._.js","../../../chunks/ssr/node_modules_0d_chie._.js","../../../chunks/ssr/node_modules_0h91jdk._.js","../../../chunks/ssr/node_modules_12j4hea._.js","../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_1v8-mvc.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/contacts/page_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/(app)/contacts/page_client-reference-manifest.js index a397914a..9ecdf1a8 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/contacts/page_client-reference-manifest.js +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/contacts/page_client-reference-manifest.js @@ -1,3 +1,3 @@ globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/(app)/contacts/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/app/(app)/contacts/page.tsx ":{"id":44838,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/0-krs176t54dw.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false},"[project]/app/(app)/contacts/page.tsx":{"id":44838,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/0-krs176t54dw.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"44838":{"*":{"id":67984,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_0nxz7mr._.js","server/chunks/ssr/node_modules_12j4hea._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"44838":{"*":{"id":41838,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/contacts/page":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js"],"[project]/app/(app)/contacts/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js","static/chunks/0-krs176t54dw.js","static/chunks/1ynnqp1y5f44o.js"]}}; +globalThis.__RSC_MANIFEST["/(app)/contacts/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/app/(app)/contacts/page.tsx ":{"id":44838,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0-krs176t54dw.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false},"[project]/app/(app)/contacts/page.tsx":{"id":44838,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0-krs176t54dw.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"44838":{"*":{"id":67984,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_0nxz7mr._.js","server/chunks/ssr/node_modules_12j4hea._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"44838":{"*":{"id":41838,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/contacts/page":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js"],"[project]/app/(app)/contacts/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js","static/chunks/0-krs176t54dw.js","static/chunks/1ynnqp1y5f44o.js"]}}; diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page.js b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page.js new file mode 100644 index 00000000..0e3dbaac --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page.js @@ -0,0 +1,16 @@ +var R=require("../../../../chunks/ssr/[turbopack]_runtime.js")("server/app/(app)/customers/import/page.js") +R.c("server/chunks/ssr/[root-of-the-server]__1ncuiz7._.js") +R.c("server/chunks/ssr/node_modules_next_dist_0bw_x_7._.js") +R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0npvcom.js") +R.c("server/chunks/ssr/[root-of-the-server]__0_kl8he._.js") +R.c("server/chunks/ssr/[root-of-the-server]__0g84hko._.js") +R.c("server/chunks/ssr/app_layout_tsx_2144vk_._.js") +R.c("server/chunks/ssr/_0um1dzw._.js") +R.c("server/chunks/ssr/_0kezen4._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js") +R.c("server/chunks/ssr/_0b7nppq._.js") +R.c("server/chunks/ssr/_next-internal_server_app_(app)_customers_import_page_actions_20ppyww.js") +R.m(98158) +module.exports=R.m(98158).exports diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page.js.map b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page.js.map new file mode 100644 index 00000000..c15d7ec0 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page.js.nft.json b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page.js.nft.json new file mode 100644 index 00000000..e76a0bf0 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../../node_modules/@swc/helpers/package.json","../../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../../node_modules/next/dist/client/lib/console.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../../node_modules/next/dist/lib/constants.js","../../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../../node_modules/next/dist/lib/is-error.js","../../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../../node_modules/next/dist/server/node-environment.js","../../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../../node_modules/next/dist/server/require-hook.js","../../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../node_modules/next/package.json","../../../../../../node_modules/react/cjs/react.development.js","../../../../../../node_modules/react/cjs/react.production.js","../../../../../../node_modules/react/index.js","../../../../../../node_modules/react/package.json","../../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../../chunks/ssr/[root-of-the-server]__1ncuiz7._.js","../../../../chunks/ssr/[turbopack]_runtime.js","../../../../chunks/ssr/_0arfgns._.js","../../../../chunks/ssr/_0b7nppq._.js","../../../../chunks/ssr/_0kezen4._.js","../../../../chunks/ssr/_0um1dzw._.js","../../../../chunks/ssr/_0yv2mfm._.js","../../../../chunks/ssr/_1i3n8ki._.js","../../../../chunks/ssr/_next-internal_server_app_(app)_customers_import_page_actions_20ppyww.js","../../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../../chunks/ssr/components_1g-t6zb._.js","../../../../chunks/ssr/node_modules_0d_chie._.js","../../../../chunks/ssr/node_modules_0h91jdk._.js","../../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0npvcom.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/app-paths-manifest.json b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/app-paths-manifest.json new file mode 100644 index 00000000..263a11c2 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/(app)/customers/import/page": "app/(app)/customers/import/page.js" +} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/build-manifest.json b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/build-manifest.json new file mode 100644 index 00000000..6a440472 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/build-manifest.json @@ -0,0 +1,18 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [ + "static/chunks/0cz1d0mv5g_q7.js" + ], + "lowPriorityFiles": [], + "rootMainFiles": [ + "static/chunks/2zjueh7t2vecu.js", + "static/chunks/30wdrt2uam-rs.js", + "static/chunks/0n-zjr76qg7uq.js", + "static/chunks/0iec5q4ack_04.js", + "static/chunks/27jktro2p5rq9.js", + "static/chunks/turbopack-06glzjf65-whj.js" + ], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/next-font-manifest.json b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/next-font-manifest.json new file mode 100644 index 00000000..e0cc4007 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/next-font-manifest.json @@ -0,0 +1,6 @@ +{ + "pages": {}, + "app": {}, + "appUsingSizeAdjust": false, + "pagesUsingSizeAdjust": false +} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/react-loadable-manifest.json b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/react-loadable-manifest.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/react-loadable-manifest.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/server-reference-manifest.json b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/server-reference-manifest.json new file mode 100644 index 00000000..27a92af5 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page/server-reference-manifest.json @@ -0,0 +1,4 @@ +{ + "node": {}, + "edge": {} +} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page_client-reference-manifest.js new file mode 100644 index 00000000..bf4fa721 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/import/page_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/(app)/customers/import/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/app/(app)/customers/import/page.tsx ":{"id":92158,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0o13c7nb3wcya.js"],"async":false},"[project]/app/(app)/customers/import/page.tsx":{"id":92158,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0o13c7nb3wcya.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"92158":{"*":{"id":50010,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_1i3n8ki._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"92158":{"*":{"id":11885,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/customers/import/page":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js"],"[project]/app/(app)/customers/import/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js","static/chunks/0o13c7nb3wcya.js"]}}; + diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/customers/page.js.nft.json b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/page.js.nft.json index ebf6317e..133b9c7f 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/customers/page.js.nft.json +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/page.js.nft.json @@ -1 +1 @@ -{"version":1,"files":["../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../node_modules/@swc/helpers/package.json","../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../node_modules/next/dist/client/lib/console.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../node_modules/next/dist/lib/constants.js","../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../node_modules/next/dist/lib/is-error.js","../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../node_modules/next/dist/server/node-environment.js","../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../node_modules/next/dist/server/require-hook.js","../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../node_modules/next/package.json","../../../../../node_modules/react/cjs/react.development.js","../../../../../node_modules/react/cjs/react.production.js","../../../../../node_modules/react/index.js","../../../../../node_modules/react/package.json","../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../chunks/ssr/[root-of-the-server]__1a7ggz1._.js","../../../chunks/ssr/[turbopack]_runtime.js","../../../chunks/ssr/_0b7nppq._.js","../../../chunks/ssr/_0iy5o-h._.js","../../../chunks/ssr/_0kezen4._.js","../../../chunks/ssr/_0um1dzw._.js","../../../chunks/ssr/_0v6sf8t._.js","../../../chunks/ssr/_0yv2mfm._.js","../../../chunks/ssr/_next-internal_server_app_(app)_customers_page_actions_0ypluz6.js","../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../chunks/ssr/components_1g-t6zb._.js","../../../chunks/ssr/node_modules_0d_chie._.js","../../../chunks/ssr/node_modules_0h91jdk._.js","../../../chunks/ssr/node_modules_12j4hea._.js","../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_081l-n0.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file +{"version":1,"files":["../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../node_modules/@swc/helpers/package.json","../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../node_modules/next/dist/client/lib/console.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../node_modules/next/dist/lib/constants.js","../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../node_modules/next/dist/lib/is-error.js","../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../node_modules/next/dist/server/node-environment.js","../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../node_modules/next/dist/server/require-hook.js","../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../node_modules/next/package.json","../../../../../node_modules/react/cjs/react.development.js","../../../../../node_modules/react/cjs/react.production.js","../../../../../node_modules/react/index.js","../../../../../node_modules/react/package.json","../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../chunks/ssr/[root-of-the-server]__1a7ggz1._.js","../../../chunks/ssr/[turbopack]_runtime.js","../../../chunks/ssr/_0arfgns._.js","../../../chunks/ssr/_0b7nppq._.js","../../../chunks/ssr/_0iy5o-h._.js","../../../chunks/ssr/_0kezen4._.js","../../../chunks/ssr/_0um1dzw._.js","../../../chunks/ssr/_0yv2mfm._.js","../../../chunks/ssr/_next-internal_server_app_(app)_customers_page_actions_0ypluz6.js","../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../chunks/ssr/components_1g-t6zb._.js","../../../chunks/ssr/node_modules_0d_chie._.js","../../../chunks/ssr/node_modules_0h91jdk._.js","../../../chunks/ssr/node_modules_12j4hea._.js","../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_081l-n0.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/customers/page_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/page_client-reference-manifest.js index 693da1ab..f2b883e2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/customers/page_client-reference-manifest.js +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/customers/page_client-reference-manifest.js @@ -1,3 +1,3 @@ globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/(app)/customers/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/app/(app)/customers/page.tsx ":{"id":15495,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/2-nz3xcpe_pw_.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false},"[project]/app/(app)/customers/page.tsx":{"id":15495,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/2-nz3xcpe_pw_.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"15495":{"*":{"id":32623,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_0iy5o-h._.js","server/chunks/ssr/node_modules_12j4hea._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"15495":{"*":{"id":51493,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/customers/page":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js"],"[project]/app/(app)/customers/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js","static/chunks/2-nz3xcpe_pw_.js","static/chunks/1ynnqp1y5f44o.js"]}}; +globalThis.__RSC_MANIFEST["/(app)/customers/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/app/(app)/customers/page.tsx ":{"id":15495,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0lz93ryxnzgoq.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false},"[project]/app/(app)/customers/page.tsx":{"id":15495,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0lz93ryxnzgoq.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"15495":{"*":{"id":32623,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_0iy5o-h._.js","server/chunks/ssr/node_modules_12j4hea._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"15495":{"*":{"id":51493,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/customers/page":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js"],"[project]/app/(app)/customers/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js","static/chunks/0lz93ryxnzgoq.js","static/chunks/1ynnqp1y5f44o.js"]}}; diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/dashboard/page.js.nft.json b/validation-suite/frontend/atlas/.next/server/app/(app)/dashboard/page.js.nft.json index 1deea855..6cdb708e 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/dashboard/page.js.nft.json +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/dashboard/page.js.nft.json @@ -1 +1 @@ -{"version":1,"files":["../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../node_modules/@swc/helpers/package.json","../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../node_modules/next/dist/client/lib/console.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../node_modules/next/dist/lib/constants.js","../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../node_modules/next/dist/lib/is-error.js","../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../node_modules/next/dist/server/node-environment.js","../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../node_modules/next/dist/server/require-hook.js","../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../node_modules/next/package.json","../../../../../node_modules/react/cjs/react.development.js","../../../../../node_modules/react/cjs/react.production.js","../../../../../node_modules/react/index.js","../../../../../node_modules/react/package.json","../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../chunks/ssr/[root-of-the-server]__1igzz_l._.js","../../../chunks/ssr/[turbopack]_runtime.js","../../../chunks/ssr/_0b7nppq._.js","../../../chunks/ssr/_0kezen4._.js","../../../chunks/ssr/_0um1dzw._.js","../../../chunks/ssr/_0v6sf8t._.js","../../../chunks/ssr/_0yv2mfm._.js","../../../chunks/ssr/_101_axp._.js","../../../chunks/ssr/_next-internal_server_app_(app)_dashboard_page_actions_19--7_-.js","../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../chunks/ssr/components_1g-t6zb._.js","../../../chunks/ssr/node_modules_0d_chie._.js","../../../chunks/ssr/node_modules_0h91jdk._.js","../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_1-h6epm.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file +{"version":1,"files":["../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../node_modules/@swc/helpers/package.json","../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../node_modules/next/dist/client/lib/console.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../node_modules/next/dist/lib/constants.js","../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../node_modules/next/dist/lib/is-error.js","../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../node_modules/next/dist/server/node-environment.js","../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../node_modules/next/dist/server/require-hook.js","../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../node_modules/next/package.json","../../../../../node_modules/react/cjs/react.development.js","../../../../../node_modules/react/cjs/react.production.js","../../../../../node_modules/react/index.js","../../../../../node_modules/react/package.json","../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../chunks/ssr/[root-of-the-server]__1igzz_l._.js","../../../chunks/ssr/[turbopack]_runtime.js","../../../chunks/ssr/_0arfgns._.js","../../../chunks/ssr/_0b7nppq._.js","../../../chunks/ssr/_0kezen4._.js","../../../chunks/ssr/_0um1dzw._.js","../../../chunks/ssr/_0yv2mfm._.js","../../../chunks/ssr/_1_mr0l7._.js","../../../chunks/ssr/_next-internal_server_app_(app)_dashboard_page_actions_19--7_-.js","../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../chunks/ssr/components_1g-t6zb._.js","../../../chunks/ssr/node_modules_0d_chie._.js","../../../chunks/ssr/node_modules_0h91jdk._.js","../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_1-h6epm.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/dashboard/page_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/(app)/dashboard/page_client-reference-manifest.js index 1e000c85..6eea148c 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/dashboard/page_client-reference-manifest.js +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/dashboard/page_client-reference-manifest.js @@ -1,3 +1,3 @@ globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/(app)/dashboard/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/app/(app)/dashboard/page.tsx ":{"id":45388,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/2toi33zq_ydim.js"],"async":false},"[project]/app/(app)/dashboard/page.tsx":{"id":45388,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/2toi33zq_ydim.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"45388":{"*":{"id":51739,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_101_axp._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"45388":{"*":{"id":7089,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/dashboard/page":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js"],"[project]/app/(app)/dashboard/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js","static/chunks/2toi33zq_ydim.js"]}}; +globalThis.__RSC_MANIFEST["/(app)/dashboard/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/app/(app)/dashboard/page.tsx ":{"id":45388,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/2c7prz40q05zp.js"],"async":false},"[project]/app/(app)/dashboard/page.tsx":{"id":45388,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/2c7prz40q05zp.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"45388":{"*":{"id":51739,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_1_mr0l7._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"45388":{"*":{"id":7089,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/dashboard/page":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js"],"[project]/app/(app)/dashboard/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js","static/chunks/2c7prz40q05zp.js"]}}; diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/devices/page.js.nft.json b/validation-suite/frontend/atlas/.next/server/app/(app)/devices/page.js.nft.json index 41f7b84a..f4dc628b 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/devices/page.js.nft.json +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/devices/page.js.nft.json @@ -1 +1 @@ -{"version":1,"files":["../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../node_modules/@swc/helpers/package.json","../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../node_modules/next/dist/client/lib/console.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../node_modules/next/dist/lib/constants.js","../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../node_modules/next/dist/lib/is-error.js","../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../node_modules/next/dist/server/node-environment.js","../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../node_modules/next/dist/server/require-hook.js","../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../node_modules/next/package.json","../../../../../node_modules/react/cjs/react.development.js","../../../../../node_modules/react/cjs/react.production.js","../../../../../node_modules/react/index.js","../../../../../node_modules/react/package.json","../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../chunks/ssr/[root-of-the-server]__1az92__._.js","../../../chunks/ssr/[turbopack]_runtime.js","../../../chunks/ssr/_0b7nppq._.js","../../../chunks/ssr/_0kezen4._.js","../../../chunks/ssr/_0um1dzw._.js","../../../chunks/ssr/_0v6sf8t._.js","../../../chunks/ssr/_0wli_2u._.js","../../../chunks/ssr/_0yv2mfm._.js","../../../chunks/ssr/_next-internal_server_app_(app)_devices_page_actions_0fljvmv.js","../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../chunks/ssr/components_1g-t6zb._.js","../../../chunks/ssr/node_modules_0d_chie._.js","../../../chunks/ssr/node_modules_0h91jdk._.js","../../../chunks/ssr/node_modules_12j4hea._.js","../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_1r3f_tz.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file +{"version":1,"files":["../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../node_modules/@swc/helpers/package.json","../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../node_modules/next/dist/client/lib/console.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../node_modules/next/dist/lib/constants.js","../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../node_modules/next/dist/lib/is-error.js","../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../node_modules/next/dist/server/node-environment.js","../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../node_modules/next/dist/server/require-hook.js","../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../node_modules/next/package.json","../../../../../node_modules/react/cjs/react.development.js","../../../../../node_modules/react/cjs/react.production.js","../../../../../node_modules/react/index.js","../../../../../node_modules/react/package.json","../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../chunks/ssr/[root-of-the-server]__1az92__._.js","../../../chunks/ssr/[turbopack]_runtime.js","../../../chunks/ssr/_0arfgns._.js","../../../chunks/ssr/_0b7nppq._.js","../../../chunks/ssr/_0kezen4._.js","../../../chunks/ssr/_0um1dzw._.js","../../../chunks/ssr/_0wli_2u._.js","../../../chunks/ssr/_0yv2mfm._.js","../../../chunks/ssr/_next-internal_server_app_(app)_devices_page_actions_0fljvmv.js","../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../chunks/ssr/components_1g-t6zb._.js","../../../chunks/ssr/node_modules_0d_chie._.js","../../../chunks/ssr/node_modules_0h91jdk._.js","../../../chunks/ssr/node_modules_12j4hea._.js","../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_1r3f_tz.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/devices/page_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/(app)/devices/page_client-reference-manifest.js index 8cd1b05f..759271bb 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/devices/page_client-reference-manifest.js +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/devices/page_client-reference-manifest.js @@ -1,3 +1,3 @@ globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/(app)/devices/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/app/(app)/devices/page.tsx ":{"id":84028,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/02io6dnnqj4wa.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false},"[project]/app/(app)/devices/page.tsx":{"id":84028,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/02io6dnnqj4wa.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"84028":{"*":{"id":42073,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_0wli_2u._.js","server/chunks/ssr/node_modules_12j4hea._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"84028":{"*":{"id":62019,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/devices/page":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js"],"[project]/app/(app)/devices/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js","static/chunks/02io6dnnqj4wa.js","static/chunks/1ynnqp1y5f44o.js"]}}; +globalThis.__RSC_MANIFEST["/(app)/devices/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/app/(app)/devices/page.tsx ":{"id":84028,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/02io6dnnqj4wa.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false},"[project]/app/(app)/devices/page.tsx":{"id":84028,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/02io6dnnqj4wa.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"84028":{"*":{"id":42073,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_0wli_2u._.js","server/chunks/ssr/node_modules_12j4hea._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"84028":{"*":{"id":62019,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/devices/page":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js"],"[project]/app/(app)/devices/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js","static/chunks/02io6dnnqj4wa.js","static/chunks/1ynnqp1y5f44o.js"]}}; diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/documents/page.js.nft.json b/validation-suite/frontend/atlas/.next/server/app/(app)/documents/page.js.nft.json index 9c63140c..147d6f3a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/documents/page.js.nft.json +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/documents/page.js.nft.json @@ -1 +1 @@ -{"version":1,"files":["../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../node_modules/@swc/helpers/package.json","../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../node_modules/next/dist/client/lib/console.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../node_modules/next/dist/lib/constants.js","../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../node_modules/next/dist/lib/is-error.js","../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../node_modules/next/dist/server/node-environment.js","../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../node_modules/next/dist/server/require-hook.js","../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../node_modules/next/package.json","../../../../../node_modules/react/cjs/react.development.js","../../../../../node_modules/react/cjs/react.production.js","../../../../../node_modules/react/index.js","../../../../../node_modules/react/package.json","../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../chunks/ssr/[root-of-the-server]__0rekl0u._.js","../../../chunks/ssr/[turbopack]_runtime.js","../../../chunks/ssr/_0b7nppq._.js","../../../chunks/ssr/_0kezen4._.js","../../../chunks/ssr/_0um1dzw._.js","../../../chunks/ssr/_0v6sf8t._.js","../../../chunks/ssr/_0yv2mfm._.js","../../../chunks/ssr/_next-internal_server_app_(app)_documents_page_actions_0y28ku2.js","../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../chunks/ssr/components_1g-t6zb._.js","../../../chunks/ssr/node_modules_0d_chie._.js","../../../chunks/ssr/node_modules_0h91jdk._.js","../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0ufybhg.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file +{"version":1,"files":["../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../node_modules/@swc/helpers/package.json","../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../node_modules/next/dist/client/lib/console.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../node_modules/next/dist/lib/constants.js","../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../node_modules/next/dist/lib/is-error.js","../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../node_modules/next/dist/server/node-environment.js","../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../node_modules/next/dist/server/require-hook.js","../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../node_modules/next/package.json","../../../../../node_modules/react/cjs/react.development.js","../../../../../node_modules/react/cjs/react.production.js","../../../../../node_modules/react/index.js","../../../../../node_modules/react/package.json","../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../chunks/ssr/[root-of-the-server]__0rekl0u._.js","../../../chunks/ssr/[turbopack]_runtime.js","../../../chunks/ssr/_0arfgns._.js","../../../chunks/ssr/_0b7nppq._.js","../../../chunks/ssr/_0kezen4._.js","../../../chunks/ssr/_0um1dzw._.js","../../../chunks/ssr/_0yv2mfm._.js","../../../chunks/ssr/_next-internal_server_app_(app)_documents_page_actions_0y28ku2.js","../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../chunks/ssr/components_1g-t6zb._.js","../../../chunks/ssr/node_modules_0d_chie._.js","../../../chunks/ssr/node_modules_0h91jdk._.js","../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0ufybhg.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/documents/page_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/(app)/documents/page_client-reference-manifest.js index 5f740d13..95aa3531 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/documents/page_client-reference-manifest.js +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/documents/page_client-reference-manifest.js @@ -1,3 +1,3 @@ globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/(app)/documents/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js"]}}; +globalThis.__RSC_MANIFEST["/(app)/documents/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js"]}}; diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/equipment/page.js.nft.json b/validation-suite/frontend/atlas/.next/server/app/(app)/equipment/page.js.nft.json index c3002c6a..09b28c24 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/equipment/page.js.nft.json +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/equipment/page.js.nft.json @@ -1 +1 @@ -{"version":1,"files":["../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../node_modules/@swc/helpers/package.json","../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../node_modules/next/dist/client/lib/console.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../node_modules/next/dist/lib/constants.js","../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../node_modules/next/dist/lib/is-error.js","../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../node_modules/next/dist/server/node-environment.js","../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../node_modules/next/dist/server/require-hook.js","../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../node_modules/next/package.json","../../../../../node_modules/react/cjs/react.development.js","../../../../../node_modules/react/cjs/react.production.js","../../../../../node_modules/react/index.js","../../../../../node_modules/react/package.json","../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../chunks/ssr/[root-of-the-server]__1yyih4q._.js","../../../chunks/ssr/[turbopack]_runtime.js","../../../chunks/ssr/_0b7nppq._.js","../../../chunks/ssr/_0kezen4._.js","../../../chunks/ssr/_0um1dzw._.js","../../../chunks/ssr/_0v6sf8t._.js","../../../chunks/ssr/_0yv2mfm._.js","../../../chunks/ssr/_1ysowk8._.js","../../../chunks/ssr/_next-internal_server_app_(app)_equipment_page_actions_1kpyh4_.js","../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../chunks/ssr/components_1g-t6zb._.js","../../../chunks/ssr/node_modules_0d_chie._.js","../../../chunks/ssr/node_modules_0h91jdk._.js","../../../chunks/ssr/node_modules_12j4hea._.js","../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_1iadf3k.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file +{"version":1,"files":["../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../node_modules/@swc/helpers/package.json","../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../node_modules/next/dist/client/lib/console.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../node_modules/next/dist/lib/constants.js","../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../node_modules/next/dist/lib/is-error.js","../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../node_modules/next/dist/server/node-environment.js","../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../node_modules/next/dist/server/require-hook.js","../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../node_modules/next/package.json","../../../../../node_modules/react/cjs/react.development.js","../../../../../node_modules/react/cjs/react.production.js","../../../../../node_modules/react/index.js","../../../../../node_modules/react/package.json","../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../chunks/ssr/[root-of-the-server]__1yyih4q._.js","../../../chunks/ssr/[turbopack]_runtime.js","../../../chunks/ssr/_0arfgns._.js","../../../chunks/ssr/_0b7nppq._.js","../../../chunks/ssr/_0kezen4._.js","../../../chunks/ssr/_0um1dzw._.js","../../../chunks/ssr/_0yv2mfm._.js","../../../chunks/ssr/_1ysowk8._.js","../../../chunks/ssr/_next-internal_server_app_(app)_equipment_page_actions_1kpyh4_.js","../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../chunks/ssr/components_1g-t6zb._.js","../../../chunks/ssr/node_modules_0d_chie._.js","../../../chunks/ssr/node_modules_0h91jdk._.js","../../../chunks/ssr/node_modules_12j4hea._.js","../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_1iadf3k.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/equipment/page_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/(app)/equipment/page_client-reference-manifest.js index 4bc890d4..3fa47f72 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/equipment/page_client-reference-manifest.js +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/equipment/page_client-reference-manifest.js @@ -1,3 +1,3 @@ globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/(app)/equipment/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/app/(app)/equipment/page.tsx ":{"id":57175,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/34frrgl3b8scb.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false},"[project]/app/(app)/equipment/page.tsx":{"id":57175,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/34frrgl3b8scb.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"57175":{"*":{"id":21623,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_1ysowk8._.js","server/chunks/ssr/node_modules_12j4hea._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"57175":{"*":{"id":46469,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/equipment/page":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js"],"[project]/app/(app)/equipment/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js","static/chunks/34frrgl3b8scb.js","static/chunks/1ynnqp1y5f44o.js"]}}; +globalThis.__RSC_MANIFEST["/(app)/equipment/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/app/(app)/equipment/page.tsx ":{"id":57175,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/34frrgl3b8scb.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false},"[project]/app/(app)/equipment/page.tsx":{"id":57175,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/34frrgl3b8scb.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"57175":{"*":{"id":21623,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_1ysowk8._.js","server/chunks/ssr/node_modules_12j4hea._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"57175":{"*":{"id":46469,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/equipment/page":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js"],"[project]/app/(app)/equipment/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js","static/chunks/34frrgl3b8scb.js","static/chunks/1ynnqp1y5f44o.js"]}}; diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/locations/page.js.nft.json b/validation-suite/frontend/atlas/.next/server/app/(app)/locations/page.js.nft.json index 5f4ecb8f..965cb75a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/locations/page.js.nft.json +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/locations/page.js.nft.json @@ -1 +1 @@ -{"version":1,"files":["../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../node_modules/@swc/helpers/package.json","../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../node_modules/next/dist/client/lib/console.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../node_modules/next/dist/lib/constants.js","../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../node_modules/next/dist/lib/is-error.js","../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../node_modules/next/dist/server/node-environment.js","../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../node_modules/next/dist/server/require-hook.js","../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../node_modules/next/package.json","../../../../../node_modules/react/cjs/react.development.js","../../../../../node_modules/react/cjs/react.production.js","../../../../../node_modules/react/index.js","../../../../../node_modules/react/package.json","../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../chunks/ssr/[root-of-the-server]__07y38up._.js","../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../chunks/ssr/[turbopack]_runtime.js","../../../chunks/ssr/_0b7nppq._.js","../../../chunks/ssr/_0kezen4._.js","../../../chunks/ssr/_0um1dzw._.js","../../../chunks/ssr/_0v6sf8t._.js","../../../chunks/ssr/_0yv2mfm._.js","../../../chunks/ssr/_1-ytrce._.js","../../../chunks/ssr/_next-internal_server_app_(app)_locations_page_actions_218l_2w.js","../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../chunks/ssr/components_1g-t6zb._.js","../../../chunks/ssr/node_modules_0d_chie._.js","../../../chunks/ssr/node_modules_0h91jdk._.js","../../../chunks/ssr/node_modules_12j4hea._.js","../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_06uthtk.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file +{"version":1,"files":["../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../node_modules/@swc/helpers/package.json","../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../node_modules/next/dist/client/lib/console.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../node_modules/next/dist/lib/constants.js","../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../node_modules/next/dist/lib/is-error.js","../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../node_modules/next/dist/server/node-environment.js","../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../node_modules/next/dist/server/require-hook.js","../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../node_modules/next/package.json","../../../../../node_modules/react/cjs/react.development.js","../../../../../node_modules/react/cjs/react.production.js","../../../../../node_modules/react/index.js","../../../../../node_modules/react/package.json","../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../chunks/ssr/[root-of-the-server]__07y38up._.js","../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../chunks/ssr/[turbopack]_runtime.js","../../../chunks/ssr/_0arfgns._.js","../../../chunks/ssr/_0b7nppq._.js","../../../chunks/ssr/_0kezen4._.js","../../../chunks/ssr/_0um1dzw._.js","../../../chunks/ssr/_0yv2mfm._.js","../../../chunks/ssr/_1-ytrce._.js","../../../chunks/ssr/_next-internal_server_app_(app)_locations_page_actions_218l_2w.js","../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../chunks/ssr/components_1g-t6zb._.js","../../../chunks/ssr/node_modules_0d_chie._.js","../../../chunks/ssr/node_modules_0h91jdk._.js","../../../chunks/ssr/node_modules_12j4hea._.js","../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_06uthtk.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/locations/page_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/(app)/locations/page_client-reference-manifest.js index 7a50c3a4..b138aaf2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/locations/page_client-reference-manifest.js +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/locations/page_client-reference-manifest.js @@ -1,3 +1,3 @@ globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/(app)/locations/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/app/(app)/locations/page.tsx ":{"id":23448,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/1m4and-haqgqz.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false},"[project]/app/(app)/locations/page.tsx":{"id":23448,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/1m4and-haqgqz.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"23448":{"*":{"id":61291,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_1-ytrce._.js","server/chunks/ssr/node_modules_12j4hea._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"23448":{"*":{"id":19736,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/locations/page":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js"],"[project]/app/(app)/locations/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js","static/chunks/1m4and-haqgqz.js","static/chunks/1ynnqp1y5f44o.js"]}}; +globalThis.__RSC_MANIFEST["/(app)/locations/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/app/(app)/locations/page.tsx ":{"id":23448,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/1m4and-haqgqz.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false},"[project]/app/(app)/locations/page.tsx":{"id":23448,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/1m4and-haqgqz.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"23448":{"*":{"id":61291,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_1-ytrce._.js","server/chunks/ssr/node_modules_12j4hea._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"23448":{"*":{"id":19736,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/locations/page":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js"],"[project]/app/(app)/locations/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js","static/chunks/1m4and-haqgqz.js","static/chunks/1ynnqp1y5f44o.js"]}}; diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/profile/security/page.js.nft.json b/validation-suite/frontend/atlas/.next/server/app/(app)/profile/security/page.js.nft.json index ac9183f8..d150c0ac 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/profile/security/page.js.nft.json +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/profile/security/page.js.nft.json @@ -1 +1 @@ -{"version":1,"files":["../../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../../node_modules/@swc/helpers/package.json","../../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../../node_modules/next/dist/client/lib/console.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../../node_modules/next/dist/lib/constants.js","../../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../../node_modules/next/dist/lib/is-error.js","../../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../../node_modules/next/dist/server/node-environment.js","../../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../../node_modules/next/dist/server/require-hook.js","../../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../node_modules/next/package.json","../../../../../../node_modules/react/cjs/react.development.js","../../../../../../node_modules/react/cjs/react.production.js","../../../../../../node_modules/react/index.js","../../../../../../node_modules/react/package.json","../../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../../chunks/ssr/[root-of-the-server]__1ndd3za._.js","../../../../chunks/ssr/[turbopack]_runtime.js","../../../../chunks/ssr/_0b7nppq._.js","../../../../chunks/ssr/_0kezen4._.js","../../../../chunks/ssr/_0um1dzw._.js","../../../../chunks/ssr/_0v6sf8t._.js","../../../../chunks/ssr/_0yv2mfm._.js","../../../../chunks/ssr/_1zxnuxr._.js","../../../../chunks/ssr/_next-internal_server_app_(app)_profile_security_page_actions_186m5ns.js","../../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../../chunks/ssr/components_1g-t6zb._.js","../../../../chunks/ssr/node_modules_0d_chie._.js","../../../../chunks/ssr/node_modules_0efpcn9._.js","../../../../chunks/ssr/node_modules_0h91jdk._.js","../../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_074mvrv.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file +{"version":1,"files":["../../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../../node_modules/@swc/helpers/package.json","../../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../../node_modules/next/dist/client/lib/console.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../../node_modules/next/dist/lib/constants.js","../../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../../node_modules/next/dist/lib/is-error.js","../../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../../node_modules/next/dist/server/node-environment.js","../../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../../node_modules/next/dist/server/require-hook.js","../../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../node_modules/next/package.json","../../../../../../node_modules/react/cjs/react.development.js","../../../../../../node_modules/react/cjs/react.production.js","../../../../../../node_modules/react/index.js","../../../../../../node_modules/react/package.json","../../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../../chunks/ssr/[root-of-the-server]__1ndd3za._.js","../../../../chunks/ssr/[turbopack]_runtime.js","../../../../chunks/ssr/_0arfgns._.js","../../../../chunks/ssr/_0b7nppq._.js","../../../../chunks/ssr/_0kezen4._.js","../../../../chunks/ssr/_0um1dzw._.js","../../../../chunks/ssr/_0yv2mfm._.js","../../../../chunks/ssr/_1zxnuxr._.js","../../../../chunks/ssr/_next-internal_server_app_(app)_profile_security_page_actions_186m5ns.js","../../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../../chunks/ssr/components_1g-t6zb._.js","../../../../chunks/ssr/node_modules_0d_chie._.js","../../../../chunks/ssr/node_modules_0efpcn9._.js","../../../../chunks/ssr/node_modules_0h91jdk._.js","../../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_074mvrv.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/profile/security/page_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/(app)/profile/security/page_client-reference-manifest.js index 9186487b..a0a2412a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/profile/security/page_client-reference-manifest.js +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/profile/security/page_client-reference-manifest.js @@ -1,3 +1,3 @@ globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/(app)/profile/security/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/app/(app)/profile/security/page.tsx ":{"id":53155,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/19-dmj7e3s4r_.js","/_next/static/chunks/3ltfzh6dxauii.js"],"async":false},"[project]/app/(app)/profile/security/page.tsx":{"id":53155,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/19-dmj7e3s4r_.js","/_next/static/chunks/3ltfzh6dxauii.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"53155":{"*":{"id":15318,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_1zxnuxr._.js","server/chunks/ssr/node_modules_0efpcn9._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"53155":{"*":{"id":82753,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/profile/security/page":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js"],"[project]/app/(app)/profile/security/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js","static/chunks/19-dmj7e3s4r_.js","static/chunks/3ltfzh6dxauii.js"]}}; +globalThis.__RSC_MANIFEST["/(app)/profile/security/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/app/(app)/profile/security/page.tsx ":{"id":53155,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/19-dmj7e3s4r_.js","/_next/static/chunks/3ltfzh6dxauii.js"],"async":false},"[project]/app/(app)/profile/security/page.tsx":{"id":53155,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/19-dmj7e3s4r_.js","/_next/static/chunks/3ltfzh6dxauii.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"53155":{"*":{"id":15318,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_1zxnuxr._.js","server/chunks/ssr/node_modules_0efpcn9._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"53155":{"*":{"id":82753,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/profile/security/page":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js"],"[project]/app/(app)/profile/security/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js","static/chunks/19-dmj7e3s4r_.js","static/chunks/3ltfzh6dxauii.js"]}}; diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/settings/report-layout/page.js.nft.json b/validation-suite/frontend/atlas/.next/server/app/(app)/settings/report-layout/page.js.nft.json index fdf32dc2..3222a704 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/settings/report-layout/page.js.nft.json +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/settings/report-layout/page.js.nft.json @@ -1 +1 @@ -{"version":1,"files":["../../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../../node_modules/@swc/helpers/package.json","../../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../../node_modules/next/dist/client/lib/console.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../../node_modules/next/dist/lib/constants.js","../../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../../node_modules/next/dist/lib/is-error.js","../../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../../node_modules/next/dist/server/node-environment.js","../../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../../node_modules/next/dist/server/require-hook.js","../../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../node_modules/next/package.json","../../../../../../node_modules/react/cjs/react.development.js","../../../../../../node_modules/react/cjs/react.production.js","../../../../../../node_modules/react/index.js","../../../../../../node_modules/react/package.json","../../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../../chunks/ssr/[root-of-the-server]__1k-o3m5._.js","../../../../chunks/ssr/[turbopack]_runtime.js","../../../../chunks/ssr/_0b7nppq._.js","../../../../chunks/ssr/_0js1deh._.js","../../../../chunks/ssr/_0kezen4._.js","../../../../chunks/ssr/_0um1dzw._.js","../../../../chunks/ssr/_0v6sf8t._.js","../../../../chunks/ssr/_0yv2mfm._.js","../../../../chunks/ssr/_next-internal_server_app_(app)_settings_report-layout_page_actions_0w06-xg.js","../../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../../chunks/ssr/components_1g-t6zb._.js","../../../../chunks/ssr/node_modules_0d_chie._.js","../../../../chunks/ssr/node_modules_0h91jdk._.js","../../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_20zv5y1.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file +{"version":1,"files":["../../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../../node_modules/@swc/helpers/package.json","../../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../../node_modules/next/dist/client/lib/console.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../../node_modules/next/dist/lib/constants.js","../../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../../node_modules/next/dist/lib/is-error.js","../../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../../node_modules/next/dist/server/node-environment.js","../../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../../node_modules/next/dist/server/require-hook.js","../../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../node_modules/next/package.json","../../../../../../node_modules/react/cjs/react.development.js","../../../../../../node_modules/react/cjs/react.production.js","../../../../../../node_modules/react/index.js","../../../../../../node_modules/react/package.json","../../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../../chunks/ssr/[root-of-the-server]__1k-o3m5._.js","../../../../chunks/ssr/[turbopack]_runtime.js","../../../../chunks/ssr/_0arfgns._.js","../../../../chunks/ssr/_0b7nppq._.js","../../../../chunks/ssr/_0kezen4._.js","../../../../chunks/ssr/_0nmawq4._.js","../../../../chunks/ssr/_0um1dzw._.js","../../../../chunks/ssr/_0yv2mfm._.js","../../../../chunks/ssr/_next-internal_server_app_(app)_settings_report-layout_page_actions_0w06-xg.js","../../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../../chunks/ssr/components_1g-t6zb._.js","../../../../chunks/ssr/node_modules_0d_chie._.js","../../../../chunks/ssr/node_modules_0h91jdk._.js","../../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_20zv5y1.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/settings/report-layout/page_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/(app)/settings/report-layout/page_client-reference-manifest.js index a8997b4d..43abee4d 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/settings/report-layout/page_client-reference-manifest.js +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/settings/report-layout/page_client-reference-manifest.js @@ -1,3 +1,3 @@ globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/(app)/settings/report-layout/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/app/(app)/settings/report-layout/page.tsx ":{"id":95241,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/413udcsynwnhe.js"],"async":false},"[project]/app/(app)/settings/report-layout/page.tsx":{"id":95241,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/413udcsynwnhe.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"95241":{"*":{"id":86794,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_0js1deh._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"95241":{"*":{"id":29925,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/settings/report-layout/page":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js"],"[project]/app/(app)/settings/report-layout/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js","static/chunks/413udcsynwnhe.js"]}}; +globalThis.__RSC_MANIFEST["/(app)/settings/report-layout/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/app/(app)/settings/report-layout/page.tsx ":{"id":95241,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/3cjefmw3itjkw.js"],"async":false},"[project]/app/(app)/settings/report-layout/page.tsx":{"id":95241,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/3cjefmw3itjkw.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"95241":{"*":{"id":86794,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_0nmawq4._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"95241":{"*":{"id":29925,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/settings/report-layout/page":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js"],"[project]/app/(app)/settings/report-layout/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js","static/chunks/3cjefmw3itjkw.js"]}}; diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/users/page.js.nft.json b/validation-suite/frontend/atlas/.next/server/app/(app)/users/page.js.nft.json index 9f7c55f9..ecda3b4e 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/users/page.js.nft.json +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/users/page.js.nft.json @@ -1 +1 @@ -{"version":1,"files":["../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../node_modules/@swc/helpers/package.json","../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../node_modules/next/dist/client/lib/console.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../node_modules/next/dist/lib/constants.js","../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../node_modules/next/dist/lib/is-error.js","../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../node_modules/next/dist/server/node-environment.js","../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../node_modules/next/dist/server/require-hook.js","../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../node_modules/next/package.json","../../../../../node_modules/react/cjs/react.development.js","../../../../../node_modules/react/cjs/react.production.js","../../../../../node_modules/react/index.js","../../../../../node_modules/react/package.json","../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../chunks/ssr/[root-of-the-server]__1engqks._.js","../../../chunks/ssr/[turbopack]_runtime.js","../../../chunks/ssr/_03n4ybq._.js","../../../chunks/ssr/_0b7nppq._.js","../../../chunks/ssr/_0kezen4._.js","../../../chunks/ssr/_0um1dzw._.js","../../../chunks/ssr/_0v6sf8t._.js","../../../chunks/ssr/_0yv2mfm._.js","../../../chunks/ssr/_next-internal_server_app_(app)_users_page_actions_0ijsr_-.js","../../../chunks/ssr/app_(app)_users_page_tsx_0lgadgp._.js","../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../chunks/ssr/components_1g-t6zb._.js","../../../chunks/ssr/node_modules_0d_chie._.js","../../../chunks/ssr/node_modules_0efpcn9._.js","../../../chunks/ssr/node_modules_0h91jdk._.js","../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_01xj5tn.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file +{"version":1,"files":["../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../node_modules/@swc/helpers/package.json","../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../node_modules/next/dist/client/lib/console.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../node_modules/next/dist/lib/constants.js","../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../node_modules/next/dist/lib/is-error.js","../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../node_modules/next/dist/server/node-environment.js","../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../node_modules/next/dist/server/require-hook.js","../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../node_modules/next/package.json","../../../../../node_modules/react/cjs/react.development.js","../../../../../node_modules/react/cjs/react.production.js","../../../../../node_modules/react/index.js","../../../../../node_modules/react/package.json","../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../chunks/ssr/[root-of-the-server]__1engqks._.js","../../../chunks/ssr/[turbopack]_runtime.js","../../../chunks/ssr/_03n4ybq._.js","../../../chunks/ssr/_0arfgns._.js","../../../chunks/ssr/_0b7nppq._.js","../../../chunks/ssr/_0kezen4._.js","../../../chunks/ssr/_0um1dzw._.js","../../../chunks/ssr/_0yv2mfm._.js","../../../chunks/ssr/_next-internal_server_app_(app)_users_page_actions_0ijsr_-.js","../../../chunks/ssr/app_(app)_users_page_tsx_0lgadgp._.js","../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../chunks/ssr/components_1g-t6zb._.js","../../../chunks/ssr/node_modules_0d_chie._.js","../../../chunks/ssr/node_modules_0efpcn9._.js","../../../chunks/ssr/node_modules_0h91jdk._.js","../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_01xj5tn.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/users/page_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/(app)/users/page_client-reference-manifest.js index 5c1a21fe..c9fdbe97 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/users/page_client-reference-manifest.js +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/users/page_client-reference-manifest.js @@ -1,3 +1,3 @@ globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/(app)/users/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/app/(app)/users/page.tsx ":{"id":47086,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/30zpouyx32v4r.js","/_next/static/chunks/3ltfzh6dxauii.js"],"async":false},"[project]/app/(app)/users/page.tsx":{"id":47086,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/30zpouyx32v4r.js","/_next/static/chunks/3ltfzh6dxauii.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"47086":{"*":{"id":3212,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_03n4ybq._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","server/chunks/ssr/app_(app)_users_page_tsx_0lgadgp._.js","server/chunks/ssr/node_modules_0efpcn9._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"47086":{"*":{"id":44490,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/users/page":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js"],"[project]/app/(app)/users/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js","static/chunks/30zpouyx32v4r.js","static/chunks/3ltfzh6dxauii.js"]}}; +globalThis.__RSC_MANIFEST["/(app)/users/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/app/(app)/users/page.tsx ":{"id":47086,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/30zpouyx32v4r.js","/_next/static/chunks/3ltfzh6dxauii.js"],"async":false},"[project]/app/(app)/users/page.tsx":{"id":47086,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/30zpouyx32v4r.js","/_next/static/chunks/3ltfzh6dxauii.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"47086":{"*":{"id":3212,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_03n4ybq._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","server/chunks/ssr/app_(app)_users_page_tsx_0lgadgp._.js","server/chunks/ssr/node_modules_0efpcn9._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"47086":{"*":{"id":44490,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/users/page":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js"],"[project]/app/(app)/users/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js","static/chunks/30zpouyx32v4r.js","static/chunks/3ltfzh6dxauii.js"]}}; diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/[id]/edit/page.js.nft.json b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/[id]/edit/page.js.nft.json index c914f4d1..f69eec52 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/[id]/edit/page.js.nft.json +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/[id]/edit/page.js.nft.json @@ -1 +1 @@ -{"version":1,"files":["../../../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../../../node_modules/@swc/helpers/package.json","../../../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../../../node_modules/next/dist/client/lib/console.js","../../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../../../node_modules/next/dist/lib/constants.js","../../../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../../../node_modules/next/dist/lib/is-error.js","../../../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../../../node_modules/next/dist/server/node-environment.js","../../../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../../../node_modules/next/dist/server/require-hook.js","../../../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../../node_modules/next/package.json","../../../../../../../node_modules/react/cjs/react.development.js","../../../../../../../node_modules/react/cjs/react.production.js","../../../../../../../node_modules/react/index.js","../../../../../../../node_modules/react/package.json","../../../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../../../chunks/ssr/[root-of-the-server]__1wm6k2z._.js","../../../../../chunks/ssr/[turbopack]_runtime.js","../../../../../chunks/ssr/_0b7nppq._.js","../../../../../chunks/ssr/_0kezen4._.js","../../../../../chunks/ssr/_0um1dzw._.js","../../../../../chunks/ssr/_0v6sf8t._.js","../../../../../chunks/ssr/_0yv2mfm._.js","../../../../../chunks/ssr/_1ewnf_e._.js","../../../../../chunks/ssr/_next-internal_server_app_(app)_validations_[id]_edit_page_actions_09ot0ar.js","../../../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../../../chunks/ssr/components_1g-t6zb._.js","../../../../../chunks/ssr/components_validations_validation-editor_tsx_1twfibv._.js","../../../../../chunks/ssr/node_modules_0d_chie._.js","../../../../../chunks/ssr/node_modules_0efpcn9._.js","../../../../../chunks/ssr/node_modules_0h91jdk._.js","../../../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_03rtb1k.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file +{"version":1,"files":["../../../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../../../node_modules/@swc/helpers/package.json","../../../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../../../node_modules/next/dist/client/lib/console.js","../../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../../../node_modules/next/dist/lib/constants.js","../../../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../../../node_modules/next/dist/lib/is-error.js","../../../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../../../node_modules/next/dist/server/node-environment.js","../../../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../../../node_modules/next/dist/server/require-hook.js","../../../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../../node_modules/next/package.json","../../../../../../../node_modules/react/cjs/react.development.js","../../../../../../../node_modules/react/cjs/react.production.js","../../../../../../../node_modules/react/index.js","../../../../../../../node_modules/react/package.json","../../../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../../../chunks/ssr/[root-of-the-server]__1wm6k2z._.js","../../../../../chunks/ssr/[turbopack]_runtime.js","../../../../../chunks/ssr/_0arfgns._.js","../../../../../chunks/ssr/_0b7nppq._.js","../../../../../chunks/ssr/_0kezen4._.js","../../../../../chunks/ssr/_0um1dzw._.js","../../../../../chunks/ssr/_0xryq0e._.js","../../../../../chunks/ssr/_0yv2mfm._.js","../../../../../chunks/ssr/_next-internal_server_app_(app)_validations_[id]_edit_page_actions_09ot0ar.js","../../../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../../../chunks/ssr/components_1g-t6zb._.js","../../../../../chunks/ssr/components_validations_validation-editor_tsx_1twfibv._.js","../../../../../chunks/ssr/node_modules_0d_chie._.js","../../../../../chunks/ssr/node_modules_0efpcn9._.js","../../../../../chunks/ssr/node_modules_0h91jdk._.js","../../../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_03rtb1k.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/[id]/edit/page_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/[id]/edit/page_client-reference-manifest.js index 109dbf7b..82b5ba7f 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/[id]/edit/page_client-reference-manifest.js +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/[id]/edit/page_client-reference-manifest.js @@ -1,3 +1,3 @@ globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/(app)/validations/[id]/edit/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/app/(app)/validations/[id]/edit/page.tsx ":{"id":3030,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/1_3g0o_0cezme.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/2975f5i-zcw63.js"],"async":false},"[project]/app/(app)/validations/[id]/edit/page.tsx":{"id":3030,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/1_3g0o_0cezme.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/2975f5i-zcw63.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"3030":{"*":{"id":2560,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_1ewnf_e._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","server/chunks/ssr/components_validations_validation-editor_tsx_1twfibv._.js","server/chunks/ssr/node_modules_0efpcn9._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"3030":{"*":{"id":83163,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/validations/[id]/edit/page":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js"],"[project]/app/(app)/validations/[id]/edit/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js","static/chunks/1_3g0o_0cezme.js","static/chunks/3ltfzh6dxauii.js","static/chunks/2975f5i-zcw63.js"]}}; +globalThis.__RSC_MANIFEST["/(app)/validations/[id]/edit/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/app/(app)/validations/[id]/edit/page.tsx ":{"id":3030,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/1_3g0o_0cezme.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/43zs1l-r-4ddz.js"],"async":false},"[project]/app/(app)/validations/[id]/edit/page.tsx":{"id":3030,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/1_3g0o_0cezme.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/43zs1l-r-4ddz.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"3030":{"*":{"id":2560,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_0xryq0e._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","server/chunks/ssr/components_validations_validation-editor_tsx_1twfibv._.js","server/chunks/ssr/node_modules_0efpcn9._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"3030":{"*":{"id":83163,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/validations/[id]/edit/page":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js"],"[project]/app/(app)/validations/[id]/edit/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js","static/chunks/1_3g0o_0cezme.js","static/chunks/3ltfzh6dxauii.js","static/chunks/43zs1l-r-4ddz.js"]}}; diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/[id]/preview/page.js.nft.json b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/[id]/preview/page.js.nft.json index 4bdc3638..f3d09cb9 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/[id]/preview/page.js.nft.json +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/[id]/preview/page.js.nft.json @@ -1 +1 @@ -{"version":1,"files":["../../../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../../../node_modules/@swc/helpers/package.json","../../../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../../../node_modules/next/dist/client/lib/console.js","../../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../../../node_modules/next/dist/lib/constants.js","../../../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../../../node_modules/next/dist/lib/is-error.js","../../../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../../../node_modules/next/dist/server/node-environment.js","../../../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../../../node_modules/next/dist/server/require-hook.js","../../../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../../node_modules/next/package.json","../../../../../../../node_modules/react/cjs/react.development.js","../../../../../../../node_modules/react/cjs/react.production.js","../../../../../../../node_modules/react/index.js","../../../../../../../node_modules/react/package.json","../../../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../../../chunks/ssr/[root-of-the-server]__0v5_hl3._.js","../../../../../chunks/ssr/[turbopack]_runtime.js","../../../../../chunks/ssr/_0b7nppq._.js","../../../../../chunks/ssr/_0kezen4._.js","../../../../../chunks/ssr/_0um1dzw._.js","../../../../../chunks/ssr/_0v6sf8t._.js","../../../../../chunks/ssr/_0yv2mfm._.js","../../../../../chunks/ssr/_1k0zbdw._.js","../../../../../chunks/ssr/_next-internal_server_app_(app)_validations_[id]_preview_page_actions_05_vbg6.js","../../../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../../../chunks/ssr/components_1g-t6zb._.js","../../../../../chunks/ssr/node_modules_0d_chie._.js","../../../../../chunks/ssr/node_modules_0h91jdk._.js","../../../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_1h0k5cg.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file +{"version":1,"files":["../../../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../../../node_modules/@swc/helpers/package.json","../../../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../../../node_modules/next/dist/client/lib/console.js","../../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../../../node_modules/next/dist/lib/constants.js","../../../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../../../node_modules/next/dist/lib/is-error.js","../../../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../../../node_modules/next/dist/server/node-environment.js","../../../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../../../node_modules/next/dist/server/require-hook.js","../../../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../../node_modules/next/package.json","../../../../../../../node_modules/react/cjs/react.development.js","../../../../../../../node_modules/react/cjs/react.production.js","../../../../../../../node_modules/react/index.js","../../../../../../../node_modules/react/package.json","../../../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../../../chunks/ssr/[root-of-the-server]__0v5_hl3._.js","../../../../../chunks/ssr/[turbopack]_runtime.js","../../../../../chunks/ssr/_0arfgns._.js","../../../../../chunks/ssr/_0b7nppq._.js","../../../../../chunks/ssr/_0kezen4._.js","../../../../../chunks/ssr/_0um1dzw._.js","../../../../../chunks/ssr/_0yv2mfm._.js","../../../../../chunks/ssr/_1k0zbdw._.js","../../../../../chunks/ssr/_next-internal_server_app_(app)_validations_[id]_preview_page_actions_05_vbg6.js","../../../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../../../chunks/ssr/components_1g-t6zb._.js","../../../../../chunks/ssr/node_modules_0d_chie._.js","../../../../../chunks/ssr/node_modules_0h91jdk._.js","../../../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_1h0k5cg.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/[id]/preview/page_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/[id]/preview/page_client-reference-manifest.js index ac4a4569..984f11a6 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/[id]/preview/page_client-reference-manifest.js +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/[id]/preview/page_client-reference-manifest.js @@ -1,3 +1,3 @@ globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/(app)/validations/[id]/preview/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/app/(app)/validations/[id]/preview/page.tsx ":{"id":69216,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/3bmssrj1g6gvs.js"],"async":false},"[project]/app/(app)/validations/[id]/preview/page.tsx":{"id":69216,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/3bmssrj1g6gvs.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"69216":{"*":{"id":21504,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_1k0zbdw._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"69216":{"*":{"id":23464,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/validations/[id]/preview/page":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js"],"[project]/app/(app)/validations/[id]/preview/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js","static/chunks/3bmssrj1g6gvs.js"]}}; +globalThis.__RSC_MANIFEST["/(app)/validations/[id]/preview/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/app/(app)/validations/[id]/preview/page.tsx ":{"id":69216,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/3bmssrj1g6gvs.js"],"async":false},"[project]/app/(app)/validations/[id]/preview/page.tsx":{"id":69216,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/3bmssrj1g6gvs.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"69216":{"*":{"id":21504,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_1k0zbdw._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"69216":{"*":{"id":23464,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/validations/[id]/preview/page":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js"],"[project]/app/(app)/validations/[id]/preview/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js","static/chunks/3bmssrj1g6gvs.js"]}}; diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/new/page.js.nft.json b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/new/page.js.nft.json index 3bf80cd6..f8ada1c4 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/new/page.js.nft.json +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/new/page.js.nft.json @@ -1 +1 @@ -{"version":1,"files":["../../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../../node_modules/@swc/helpers/package.json","../../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../../node_modules/next/dist/client/lib/console.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../../node_modules/next/dist/lib/constants.js","../../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../../node_modules/next/dist/lib/is-error.js","../../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../../node_modules/next/dist/server/node-environment.js","../../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../../node_modules/next/dist/server/require-hook.js","../../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../node_modules/next/package.json","../../../../../../node_modules/react/cjs/react.development.js","../../../../../../node_modules/react/cjs/react.production.js","../../../../../../node_modules/react/index.js","../../../../../../node_modules/react/package.json","../../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../../chunks/ssr/[root-of-the-server]__08wvh2_._.js","../../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../../chunks/ssr/[turbopack]_runtime.js","../../../../chunks/ssr/_01izkzk._.js","../../../../chunks/ssr/_0b7nppq._.js","../../../../chunks/ssr/_0kezen4._.js","../../../../chunks/ssr/_0um1dzw._.js","../../../../chunks/ssr/_0v6sf8t._.js","../../../../chunks/ssr/_0yv2mfm._.js","../../../../chunks/ssr/_next-internal_server_app_(app)_validations_new_page_actions_211qtqr.js","../../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../../chunks/ssr/components_1g-t6zb._.js","../../../../chunks/ssr/components_validations_validation-editor_tsx_1twfibv._.js","../../../../chunks/ssr/node_modules_0d_chie._.js","../../../../chunks/ssr/node_modules_0efpcn9._.js","../../../../chunks/ssr/node_modules_0h91jdk._.js","../../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_04id1cb.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file +{"version":1,"files":["../../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../../node_modules/@swc/helpers/package.json","../../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../../node_modules/next/dist/client/lib/console.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../../node_modules/next/dist/lib/constants.js","../../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../../node_modules/next/dist/lib/is-error.js","../../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../../node_modules/next/dist/server/node-environment.js","../../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../../node_modules/next/dist/server/require-hook.js","../../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../node_modules/next/package.json","../../../../../../node_modules/react/cjs/react.development.js","../../../../../../node_modules/react/cjs/react.production.js","../../../../../../node_modules/react/index.js","../../../../../../node_modules/react/package.json","../../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../../chunks/ssr/[root-of-the-server]__08wvh2_._.js","../../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../../chunks/ssr/[turbopack]_runtime.js","../../../../chunks/ssr/_0454dxv._.js","../../../../chunks/ssr/_0arfgns._.js","../../../../chunks/ssr/_0b7nppq._.js","../../../../chunks/ssr/_0kezen4._.js","../../../../chunks/ssr/_0um1dzw._.js","../../../../chunks/ssr/_0yv2mfm._.js","../../../../chunks/ssr/_next-internal_server_app_(app)_validations_new_page_actions_211qtqr.js","../../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../../chunks/ssr/components_1g-t6zb._.js","../../../../chunks/ssr/components_validations_validation-editor_tsx_1twfibv._.js","../../../../chunks/ssr/node_modules_0d_chie._.js","../../../../chunks/ssr/node_modules_0efpcn9._.js","../../../../chunks/ssr/node_modules_0h91jdk._.js","../../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_04id1cb.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/new/page_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/new/page_client-reference-manifest.js index 95635adb..a8b07f34 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/new/page_client-reference-manifest.js +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/new/page_client-reference-manifest.js @@ -1,3 +1,3 @@ globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/(app)/validations/new/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/validations/validation-editor.tsx ":{"id":57344,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/1diubaxj1tclp.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/2975f5i-zcw63.js"],"async":false},"[project]/components/validations/validation-editor.tsx":{"id":57344,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/1diubaxj1tclp.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/2975f5i-zcw63.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"57344":{"*":{"id":27862,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_01izkzk._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","server/chunks/ssr/components_validations_validation-editor_tsx_1twfibv._.js","server/chunks/ssr/node_modules_0efpcn9._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"57344":{"*":{"id":33912,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/validations/new/page":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js"],"[project]/app/(app)/validations/new/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js","static/chunks/1diubaxj1tclp.js","static/chunks/3ltfzh6dxauii.js","static/chunks/2975f5i-zcw63.js"]}}; +globalThis.__RSC_MANIFEST["/(app)/validations/new/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/validations/validation-editor.tsx ":{"id":57344,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/1diubaxj1tclp.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/43zs1l-r-4ddz.js"],"async":false},"[project]/components/validations/validation-editor.tsx":{"id":57344,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/1diubaxj1tclp.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/43zs1l-r-4ddz.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"57344":{"*":{"id":27862,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_0454dxv._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","server/chunks/ssr/components_validations_validation-editor_tsx_1twfibv._.js","server/chunks/ssr/node_modules_0efpcn9._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"57344":{"*":{"id":33912,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/validations/new/page":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js"],"[project]/app/(app)/validations/new/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js","static/chunks/1diubaxj1tclp.js","static/chunks/3ltfzh6dxauii.js","static/chunks/43zs1l-r-4ddz.js"]}}; diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/page.js.nft.json b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/page.js.nft.json index 1aa497c9..bc5d087f 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/page.js.nft.json +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/page.js.nft.json @@ -1 +1 @@ -{"version":1,"files":["../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../node_modules/@swc/helpers/package.json","../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../node_modules/next/dist/client/lib/console.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../node_modules/next/dist/lib/constants.js","../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../node_modules/next/dist/lib/is-error.js","../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../node_modules/next/dist/server/node-environment.js","../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../node_modules/next/dist/server/require-hook.js","../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../node_modules/next/package.json","../../../../../node_modules/react/cjs/react.development.js","../../../../../node_modules/react/cjs/react.production.js","../../../../../node_modules/react/index.js","../../../../../node_modules/react/package.json","../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../chunks/ssr/[root-of-the-server]__0t3-vim._.js","../../../chunks/ssr/[turbopack]_runtime.js","../../../chunks/ssr/_052zwtf._.js","../../../chunks/ssr/_0b7nppq._.js","../../../chunks/ssr/_0kezen4._.js","../../../chunks/ssr/_0um1dzw._.js","../../../chunks/ssr/_0v6sf8t._.js","../../../chunks/ssr/_0yv2mfm._.js","../../../chunks/ssr/_next-internal_server_app_(app)_validations_page_actions_0tpcela.js","../../../chunks/ssr/app_(app)_validations_page_tsx_067l737._.js","../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../chunks/ssr/components_1g-t6zb._.js","../../../chunks/ssr/node_modules_0d_chie._.js","../../../chunks/ssr/node_modules_0h91jdk._.js","../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_1u5_ce1.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file +{"version":1,"files":["../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../node_modules/@swc/helpers/package.json","../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../node_modules/next/dist/client/lib/console.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../node_modules/next/dist/lib/constants.js","../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../node_modules/next/dist/lib/is-error.js","../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../node_modules/next/dist/server/node-environment.js","../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../node_modules/next/dist/server/require-hook.js","../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../node_modules/next/package.json","../../../../../node_modules/react/cjs/react.development.js","../../../../../node_modules/react/cjs/react.production.js","../../../../../node_modules/react/index.js","../../../../../node_modules/react/package.json","../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../chunks/ssr/[root-of-the-server]__0t3-vim._.js","../../../chunks/ssr/[turbopack]_runtime.js","../../../chunks/ssr/_0arfgns._.js","../../../chunks/ssr/_0b7nppq._.js","../../../chunks/ssr/_0kezen4._.js","../../../chunks/ssr/_0um1dzw._.js","../../../chunks/ssr/_0yv2mfm._.js","../../../chunks/ssr/_1-ty-5z._.js","../../../chunks/ssr/_next-internal_server_app_(app)_validations_page_actions_0tpcela.js","../../../chunks/ssr/app_(app)_validations_page_tsx_067l737._.js","../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../chunks/ssr/components_1g-t6zb._.js","../../../chunks/ssr/node_modules_0d_chie._.js","../../../chunks/ssr/node_modules_0h91jdk._.js","../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_1u5_ce1.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/page_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/page_client-reference-manifest.js index f245b588..8eab9a82 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/page_client-reference-manifest.js +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/page_client-reference-manifest.js @@ -1,3 +1,3 @@ globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/(app)/validations/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/app/(app)/validations/page.tsx ":{"id":62406,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/0ti1a2yw9pft4.js","/_next/static/chunks/26jh-4z-ujjfh.js"],"async":false},"[project]/app/(app)/validations/page.tsx":{"id":62406,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/0ti1a2yw9pft4.js","/_next/static/chunks/26jh-4z-ujjfh.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"62406":{"*":{"id":13500,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_052zwtf._.js","server/chunks/ssr/app_(app)_validations_page_tsx_067l737._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"62406":{"*":{"id":67658,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/validations/page":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js"],"[project]/app/(app)/validations/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js","static/chunks/0ti1a2yw9pft4.js","static/chunks/26jh-4z-ujjfh.js"]}}; +globalThis.__RSC_MANIFEST["/(app)/validations/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/app/(app)/validations/page.tsx ":{"id":62406,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/41jx6c5jfr1py.js","/_next/static/chunks/26jh-4z-ujjfh.js"],"async":false},"[project]/app/(app)/validations/page.tsx":{"id":62406,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/41jx6c5jfr1py.js","/_next/static/chunks/26jh-4z-ujjfh.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"62406":{"*":{"id":13500,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_1-ty-5z._.js","server/chunks/ssr/app_(app)_validations_page_tsx_067l737._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"62406":{"*":{"id":67658,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/validations/page":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js"],"[project]/app/(app)/validations/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js","static/chunks/41jx6c5jfr1py.js","static/chunks/26jh-4z-ujjfh.js"]}}; diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/quick-start/page.js.nft.json b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/quick-start/page.js.nft.json index 337ae5e7..a14f6cad 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/quick-start/page.js.nft.json +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/quick-start/page.js.nft.json @@ -1 +1 @@ -{"version":1,"files":["../../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../../node_modules/@swc/helpers/package.json","../../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../../node_modules/next/dist/client/lib/console.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../../node_modules/next/dist/lib/constants.js","../../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../../node_modules/next/dist/lib/is-error.js","../../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../../node_modules/next/dist/server/node-environment.js","../../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../../node_modules/next/dist/server/require-hook.js","../../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../node_modules/next/package.json","../../../../../../node_modules/react/cjs/react.development.js","../../../../../../node_modules/react/cjs/react.production.js","../../../../../../node_modules/react/index.js","../../../../../../node_modules/react/package.json","../../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../../chunks/ssr/[root-of-the-server]__0nd6jir._.js","../../../../chunks/ssr/[turbopack]_runtime.js","../../../../chunks/ssr/_0b7nppq._.js","../../../../chunks/ssr/_0kezen4._.js","../../../../chunks/ssr/_0um1dzw._.js","../../../../chunks/ssr/_0v6sf8t._.js","../../../../chunks/ssr/_0yv2mfm._.js","../../../../chunks/ssr/_1im67h4._.js","../../../../chunks/ssr/_next-internal_server_app_(app)_validations_quick-start_page_actions_1xc71wy.js","../../../../chunks/ssr/app_(app)_validations_quick-start_page_tsx_0l4nikf._.js","../../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../../chunks/ssr/components_1g-t6zb._.js","../../../../chunks/ssr/node_modules_0d_chie._.js","../../../../chunks/ssr/node_modules_0h91jdk._.js","../../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_1k72mbe.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file +{"version":1,"files":["../../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../../node_modules/@swc/helpers/package.json","../../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../../node_modules/next/dist/client/lib/console.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../../node_modules/next/dist/lib/constants.js","../../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../../node_modules/next/dist/lib/is-error.js","../../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../../node_modules/next/dist/server/node-environment.js","../../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../../node_modules/next/dist/server/require-hook.js","../../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../node_modules/next/package.json","../../../../../../node_modules/react/cjs/react.development.js","../../../../../../node_modules/react/cjs/react.production.js","../../../../../../node_modules/react/index.js","../../../../../../node_modules/react/package.json","../../../../chunks/ssr/[root-of-the-server]__01_9-e3._.js","../../../../chunks/ssr/[root-of-the-server]__0_kl8he._.js","../../../../chunks/ssr/[root-of-the-server]__0g84hko._.js","../../../../chunks/ssr/[root-of-the-server]__0nd6jir._.js","../../../../chunks/ssr/[turbopack]_runtime.js","../../../../chunks/ssr/_0arfgns._.js","../../../../chunks/ssr/_0b7nppq._.js","../../../../chunks/ssr/_0kezen4._.js","../../../../chunks/ssr/_0um1dzw._.js","../../../../chunks/ssr/_0yv2mfm._.js","../../../../chunks/ssr/_1im67h4._.js","../../../../chunks/ssr/_next-internal_server_app_(app)_validations_quick-start_page_actions_1xc71wy.js","../../../../chunks/ssr/app_(app)_validations_quick-start_page_tsx_0l4nikf._.js","../../../../chunks/ssr/app_layout_tsx_2144vk_._.js","../../../../chunks/ssr/components_1g-t6zb._.js","../../../../chunks/ssr/node_modules_0d_chie._.js","../../../../chunks/ssr/node_modules_0h91jdk._.js","../../../../chunks/ssr/node_modules_@tanstack_1bncelk._.js","../../../../chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js","../../../../chunks/ssr/node_modules_next_dist_06e9fq1._.js","../../../../chunks/ssr/node_modules_next_dist_0bw_x_7._.js","../../../../chunks/ssr/node_modules_next_dist_0uboya6._.js","../../../../chunks/ssr/node_modules_next_dist_1knwlsz._.js","../../../../chunks/ssr/node_modules_next_dist_1ymd6cg._.js","../../../../chunks/ssr/node_modules_next_dist_client_components_0p8s4lh._.js","../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0-o-goa.js","../../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0l_sp0x.js","../../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_1k72mbe.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/quick-start/page_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/quick-start/page_client-reference-manifest.js index 40478f13..4cda85c1 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(app)/validations/quick-start/page_client-reference-manifest.js +++ b/validation-suite/frontend/atlas/.next/server/app/(app)/validations/quick-start/page_client-reference-manifest.js @@ -1,3 +1,3 @@ globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/(app)/validations/quick-start/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"async":false},"[project]/app/(app)/validations/quick-start/page.tsx ":{"id":55557,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/0t7m1oc6w_u-y.js"],"async":false},"[project]/app/(app)/validations/quick-start/page.tsx":{"id":55557,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/0t7m1oc6w_u-y.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"55557":{"*":{"id":33806,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0v6sf8t._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_1im67h4._.js","server/chunks/ssr/app_(app)_validations_quick-start_page_tsx_0l4nikf._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"55557":{"*":{"id":34464,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(app)/validations/quick-start/page":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js"],"[project]/app/(app)/validations/quick-start/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3_bqwdscuc1c8.js","static/chunks/0t7m1oc6w_u-y.js"]}}; +globalThis.__RSC_MANIFEST["/(app)/validations/quick-start/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/components/app-shell.tsx ":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/app-shell.tsx":{"id":48026,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx ":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/auth.tsx":{"id":28779,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx ":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/components/query-provider.tsx":{"id":24487,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"async":false},"[project]/app/(app)/validations/quick-start/page.tsx ":{"id":55557,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0t7m1oc6w_u-y.js"],"async":false},"[project]/app/(app)/validations/quick-start/page.tsx":{"id":55557,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0t7m1oc6w_u-y.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"48026":{"*":{"id":87897,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"28779":{"*":{"id":12314,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"24487":{"*":{"id":98773,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js"],"async":false}},"55557":{"*":{"id":33806,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_0arfgns._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/components_1g-t6zb._.js","server/chunks/ssr/_0yv2mfm._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_@tanstack_1bncelk._.js","server/chunks/ssr/_1im67h4._.js","server/chunks/ssr/app_(app)_validations_quick-start_page_tsx_0l4nikf._.js","server/chunks/ssr/node_modules_@tanstack_react-query_build_modern_0qe3gn4._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"48026":{"*":{"id":42602,"name":"*","chunks":[],"async":false}},"28779":{"*":{"id":35440,"name":"*","chunks":[],"async":false}},"24487":{"*":{"id":29212,"name":"*","chunks":[],"async":false}},"55557":{"*":{"id":34464,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(app)/validations/quick-start/page":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(app)/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js"],"[project]/app/(app)/validations/quick-start/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/05xkqica3e3uw.js","static/chunks/0t7m1oc6w_u-y.js"]}}; diff --git a/validation-suite/frontend/atlas/.next/server/app/(auth)/login/page_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/(auth)/login/page_client-reference-manifest.js index 6430774d..bd4f2d49 100644 --- a/validation-suite/frontend/atlas/.next/server/app/(auth)/login/page_client-reference-manifest.js +++ b/validation-suite/frontend/atlas/.next/server/app/(auth)/login/page_client-reference-manifest.js @@ -1,3 +1,3 @@ globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/(auth)/login/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/app/(auth)/login/page.tsx ":{"id":23426,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/1lnah75lrauwn.js","/_next/static/chunks/3ltfzh6dxauii.js"],"async":false},"[project]/app/(auth)/login/page.tsx":{"id":23426,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/1lnah75lrauwn.js","/_next/static/chunks/3ltfzh6dxauii.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"23426":{"*":{"id":1577,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_08v2m74._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/node_modules_0efpcn9._.js","server/chunks/ssr/_0yv2mfm._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"23426":{"*":{"id":18466,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/(auth)/login/page":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(auth)/login/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/1lnah75lrauwn.js","static/chunks/3ltfzh6dxauii.js"]}}; +globalThis.__RSC_MANIFEST["/(auth)/login/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/app/(auth)/login/page.tsx ":{"id":23426,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/1lnah75lrauwn.js","/_next/static/chunks/3ltfzh6dxauii.js"],"async":false},"[project]/app/(auth)/login/page.tsx":{"id":23426,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/1lnah75lrauwn.js","/_next/static/chunks/3ltfzh6dxauii.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}},"23426":{"*":{"id":1577,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/_08v2m74._.js","server/chunks/ssr/node_modules_next_dist_1ymd6cg._.js","server/chunks/ssr/node_modules_0efpcn9._.js","server/chunks/ssr/_0yv2mfm._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"23426":{"*":{"id":18466,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/(auth)/login/page":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/(auth)/login/page":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/1lnah75lrauwn.js","static/chunks/3ltfzh6dxauii.js"]}}; diff --git a/validation-suite/frontend/atlas/.next/server/app/_global-error.html b/validation-suite/frontend/atlas/.next/server/app/_global-error.html index b11e3bb6..f68a3f3a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/_global-error.html +++ b/validation-suite/frontend/atlas/.next/server/app/_global-error.html @@ -1 +1 @@ -500: This page couldn’t load

This page couldn’t load

A server error occurred. Reload to try again.

\ No newline at end of file +500: This page couldn’t load

This page couldn’t load

A server error occurred. Reload to try again.

\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/_global-error.rsc b/validation-suite/frontend/atlas/.next/server/app/_global-error.rsc index f2a61d3a..96ece2d9 100644 --- a/validation-suite/frontend/atlas/.next/server/app/_global-error.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/_global-error.rsc @@ -6,7 +6,7 @@ 8:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] a:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] c:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],null]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],null]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} d:[] 7:"$Wd" 9:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/__PAGE__.segment.rsc index 4944ea7d..6b8b7248 100644 --- a/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/__PAGE__.segment.rsc @@ -1,5 +1,5 @@ 1:"$Sreact.fragment" 2:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 3:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} 4:null diff --git a/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/_full.segment.rsc index f2a61d3a..96ece2d9 100644 --- a/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/_full.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/_full.segment.rsc @@ -6,7 +6,7 @@ 8:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] a:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] c:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],null]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],null]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} d:[] 7:"$Wd" 9:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/_head.segment.rsc index d6c6330b..f3b24250 100644 --- a/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/_head.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/_head.segment.rsc @@ -2,4 +2,4 @@ 2:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 4:"$Sreact.suspense" -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/_index.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/_index.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/_index.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/_tree.segment.rsc index 8db1d621..fed0d641 100644 --- a/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/_tree.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/_global-error.segments/_tree.segment.rsc @@ -1 +1 @@ -0:{"tree":{"name":"","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}},"staleTime":300,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"tree":{"name":"","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/_not-found.html b/validation-suite/frontend/atlas/.next/server/app/_not-found.html index 824d0167..75122e74 100644 --- a/validation-suite/frontend/atlas/.next/server/app/_not-found.html +++ b/validation-suite/frontend/atlas/.next/server/app/_not-found.html @@ -1 +1 @@ -Validation Suite
SCHUBAMED Validation Suite

Seite nicht gefunden

Die angeforderte Seite ist nicht vorhanden oder wurde verschoben.

Zum Dashboard
\ No newline at end of file +Validation Suite
SCHUBAMED Validation Suite

Seite nicht gefunden

Die angeforderte Seite ist nicht vorhanden oder wurde verschoben.

Zum Dashboard
\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/_not-found.rsc b/validation-suite/frontend/atlas/.next/server/app/_not-found.rsc index 55506822..a25c1352 100644 --- a/validation-suite/frontend/atlas/.next/server/app/_not-found.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/_not-found.rsc @@ -9,8 +9,8 @@ b:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] d:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] f:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[["$","script","script-0",{"src":"/_next/static/chunks/3ehzmerq6j-54.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$8",null,{"name":"Next.MetadataOutlet","children":"$@9"}]}]]}],{},null,false,null]},null,false,"$@a"]},null,false,null],["$","$3","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$Lb",null,{"children":"$Lc"}],["$","div",null,{"hidden":true,"children":["$","$Ld",null,{"children":["$","$8",null,{"name":"Next.Metadata","children":"$Le"}]}]}],null]}],false]],"m":"$undefined","G":["$f",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[["$","script","script-0",{"src":"/_next/static/chunks/3ehzmerq6j-54.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$8",null,{"name":"Next.MetadataOutlet","children":"$@9"}]}]]}],{},null,false,null]},null,false,"$@a"]},null,false,null],["$","$3","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$Lb",null,{"children":"$Lc"}],["$","div",null,{"hidden":true,"children":["$","$Ld",null,{"children":["$","$8",null,{"name":"Next.Metadata","children":"$Le"}]}]}],null]}],false]],"m":"$undefined","G":["$f",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 10:[] a:"$W10" c:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_full.segment.rsc index 55506822..a25c1352 100644 --- a/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_full.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_full.segment.rsc @@ -9,8 +9,8 @@ b:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] d:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] f:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[["$","script","script-0",{"src":"/_next/static/chunks/3ehzmerq6j-54.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$8",null,{"name":"Next.MetadataOutlet","children":"$@9"}]}]]}],{},null,false,null]},null,false,"$@a"]},null,false,null],["$","$3","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$Lb",null,{"children":"$Lc"}],["$","div",null,{"hidden":true,"children":["$","$Ld",null,{"children":["$","$8",null,{"name":"Next.Metadata","children":"$Le"}]}]}],null]}],false]],"m":"$undefined","G":["$f",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[["$","script","script-0",{"src":"/_next/static/chunks/3ehzmerq6j-54.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$8",null,{"name":"Next.MetadataOutlet","children":"$@9"}]}]]}],{},null,false,null]},null,false,"$@a"]},null,false,null],["$","$3","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$Lb",null,{"children":"$Lc"}],["$","div",null,{"hidden":true,"children":["$","$Ld",null,{"children":["$","$8",null,{"name":"Next.Metadata","children":"$Le"}]}]}],null]}],false]],"m":"$undefined","G":["$f",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 10:[] a:"$W10" c:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_head.segment.rsc index 5fde6b1f..c78efe98 100644 --- a/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_head.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_head.segment.rsc @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_index.segment.rsc index 7b4ced23..c4bd1ed2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_index.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_index.segment.rsc @@ -4,5 +4,5 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_not-found.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_not-found.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_not-found.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_not-found.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc index d98dcefb..f1587fd9 100644 --- a/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc @@ -3,5 +3,5 @@ 3:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] 4:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 5:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L3",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[["$","script","script-0",{"src":"/_next/static/chunks/3ehzmerq6j-54.js","async":true}]],["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L3",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[["$","script","script-0",{"src":"/_next/static/chunks/3ehzmerq6j-54.js","async":true}]],["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} 6:null diff --git a/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_tree.segment.rsc index 7f4ee638..3b82def5 100644 --- a/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_tree.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/_not-found.segments/_tree.segment.rsc @@ -1,2 +1,2 @@ -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"/_not-found","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"/_not-found","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/_not-found/page_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/_not-found/page_client-reference-manifest.js index 96a69023..199cc23a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/_not-found/page_client-reference-manifest.js +++ b/validation-suite/frontend/atlas/.next/server/app/_not-found/page_client-reference-manifest.js @@ -1,3 +1,3 @@ globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/_not-found/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"]}}; +globalThis.__RSC_MANIFEST["/_not-found/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"]}}; diff --git a/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route.js b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route.js new file mode 100644 index 00000000..12fbd315 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route.js @@ -0,0 +1,7 @@ +var R=require("../../../../chunks/[turbopack]_runtime.js")("server/app/api/customer-imports/confirm/route.js") +R.c("server/chunks/[root-of-the-server]__1cid3cf._.js") +R.c("server/chunks/[root-of-the-server]__0domq1v._.js") +R.c("server/chunks/_14ra4y5._.js") +R.c("server/chunks/_next-internal_server_app_api_customer-imports_confirm_route_actions_1-98oae.js") +R.m(40833) +module.exports=R.m(40833).exports diff --git a/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route.js.map b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route.js.map new file mode 100644 index 00000000..c15d7ec0 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route.js.nft.json b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route.js.nft.json new file mode 100644 index 00000000..1b56e9a2 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../../node_modules/@swc/helpers/package.json","../../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../../node_modules/next/dist/client/lib/console.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../node_modules/next/dist/compiled/next-server/app-route-turbo.runtime.prod.js","../../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../../node_modules/next/dist/lib/constants.js","../../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../../node_modules/next/dist/lib/is-error.js","../../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../../node_modules/next/dist/server/node-environment.js","../../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../../node_modules/next/dist/server/require-hook.js","../../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../node_modules/next/package.json","../../../../../../node_modules/react/cjs/react.development.js","../../../../../../node_modules/react/cjs/react.production.js","../../../../../../node_modules/react/index.js","../../../../../../node_modules/react/package.json","../../../../chunks/[root-of-the-server]__0domq1v._.js","../../../../chunks/[root-of-the-server]__1cid3cf._.js","../../../../chunks/[turbopack]_runtime.js","../../../../chunks/_14ra4y5._.js","../../../../chunks/_next-internal_server_app_api_customer-imports_confirm_route_actions_1-98oae.js","./route_client-reference-manifest.js"]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route/app-paths-manifest.json b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route/app-paths-manifest.json new file mode 100644 index 00000000..14b79a25 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/api/customer-imports/confirm/route": "app/api/customer-imports/confirm/route.js" +} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route/build-manifest.json b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route/build-manifest.json new file mode 100644 index 00000000..973d8934 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route/build-manifest.json @@ -0,0 +1,9 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [], + "lowPriorityFiles": [], + "rootMainFiles": [], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route/server-reference-manifest.json b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route/server-reference-manifest.json new file mode 100644 index 00000000..27a92af5 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route/server-reference-manifest.json @@ -0,0 +1,4 @@ +{ + "node": {}, + "edge": {} +} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route_client-reference-manifest.js new file mode 100644 index 00000000..0affa083 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/confirm/route_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/api/customer-imports/confirm/route"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{},"ssrModuleMapping":{},"edgeSSRModuleMapping":{},"rscModuleMapping":{},"edgeRscModuleMapping":{},"entryCSSFiles":{},"entryJSFiles":{}}; + diff --git a/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route.js b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route.js new file mode 100644 index 00000000..3cb43682 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route.js @@ -0,0 +1,7 @@ +var R=require("../../../../chunks/[turbopack]_runtime.js")("server/app/api/customer-imports/preview/route.js") +R.c("server/chunks/[root-of-the-server]__0r7ghc3._.js") +R.c("server/chunks/[root-of-the-server]__0domq1v._.js") +R.c("server/chunks/_14ra4y5._.js") +R.c("server/chunks/_next-internal_server_app_api_customer-imports_preview_route_actions_1twf800.js") +R.m(56452) +module.exports=R.m(56452).exports diff --git a/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route.js.map b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route.js.map new file mode 100644 index 00000000..c15d7ec0 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route.js.nft.json b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route.js.nft.json new file mode 100644 index 00000000..e19791ff --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../../node_modules/@swc/helpers/package.json","../../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../../node_modules/next/dist/client/lib/console.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../node_modules/next/dist/compiled/next-server/app-route-turbo.runtime.prod.js","../../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../../node_modules/next/dist/lib/constants.js","../../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../../node_modules/next/dist/lib/is-error.js","../../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../../node_modules/next/dist/server/node-environment.js","../../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../../node_modules/next/dist/server/require-hook.js","../../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../node_modules/next/package.json","../../../../../../node_modules/react/cjs/react.development.js","../../../../../../node_modules/react/cjs/react.production.js","../../../../../../node_modules/react/index.js","../../../../../../node_modules/react/package.json","../../../../chunks/[root-of-the-server]__0domq1v._.js","../../../../chunks/[root-of-the-server]__0r7ghc3._.js","../../../../chunks/[turbopack]_runtime.js","../../../../chunks/_14ra4y5._.js","../../../../chunks/_next-internal_server_app_api_customer-imports_preview_route_actions_1twf800.js","./route_client-reference-manifest.js"]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route/app-paths-manifest.json b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route/app-paths-manifest.json new file mode 100644 index 00000000..ad7b4b0b --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/api/customer-imports/preview/route": "app/api/customer-imports/preview/route.js" +} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route/build-manifest.json b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route/build-manifest.json new file mode 100644 index 00000000..973d8934 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route/build-manifest.json @@ -0,0 +1,9 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [], + "lowPriorityFiles": [], + "rootMainFiles": [], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route/server-reference-manifest.json b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route/server-reference-manifest.json new file mode 100644 index 00000000..27a92af5 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route/server-reference-manifest.json @@ -0,0 +1,4 @@ +{ + "node": {}, + "edge": {} +} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route_client-reference-manifest.js new file mode 100644 index 00000000..f72ed938 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/api/customer-imports/preview/route_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/api/customer-imports/preview/route"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{},"ssrModuleMapping":{},"edgeSSRModuleMapping":{},"rscModuleMapping":{},"edgeRscModuleMapping":{},"entryCSSFiles":{},"entryJSFiles":{}}; + diff --git a/validation-suite/frontend/atlas/.next/server/app/contacts.html b/validation-suite/frontend/atlas/.next/server/app/contacts.html index 4f767e05..3ba3414e 100644 --- a/validation-suite/frontend/atlas/.next/server/app/contacts.html +++ b/validation-suite/frontend/atlas/.next/server/app/contacts.html @@ -1,2 +1,2 @@ -Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file +Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/contacts.rsc b/validation-suite/frontend/atlas/.next/server/app/contacts.rsc index e605dd98..b5a5b4ad 100644 --- a/validation-suite/frontend/atlas/.next/server/app/contacts.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/contacts.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[44838,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/0-krs176t54dw.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] +b:I[44838,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0-krs176t54dw.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","contacts"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["contacts",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0-krs176t54dw.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","contacts"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["contacts",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0-krs176t54dw.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/contacts.segments/!KGFwcCk.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/contacts.segments/!KGFwcCk.segment.rsc index 6bd49286..1763d71a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/contacts.segments/!KGFwcCk.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/contacts.segments/!KGFwcCk.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" -2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] 5:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 7:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] 8:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/contacts.segments/!KGFwcCk/contacts.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/contacts.segments/!KGFwcCk/contacts.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/contacts.segments/!KGFwcCk/contacts.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/contacts.segments/!KGFwcCk/contacts.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/contacts.segments/!KGFwcCk/contacts/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/contacts.segments/!KGFwcCk/contacts/__PAGE__.segment.rsc index 93131c3f..8a5deace 100644 --- a/validation-suite/frontend/atlas/.next/server/app/contacts.segments/!KGFwcCk/contacts/__PAGE__.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/contacts.segments/!KGFwcCk/contacts/__PAGE__.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -3:I[44838,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/0-krs176t54dw.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] +3:I[44838,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0-krs176t54dw.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] 6:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0-krs176t54dw.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0-krs176t54dw.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/validation-suite/frontend/atlas/.next/server/app/contacts.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/contacts.segments/_full.segment.rsc index e605dd98..b5a5b4ad 100644 --- a/validation-suite/frontend/atlas/.next/server/app/contacts.segments/_full.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/contacts.segments/_full.segment.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[44838,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/0-krs176t54dw.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] +b:I[44838,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0-krs176t54dw.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","contacts"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["contacts",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0-krs176t54dw.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","contacts"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["contacts",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0-krs176t54dw.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/contacts.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/contacts.segments/_head.segment.rsc index faf657ea..97a8c0f0 100644 --- a/validation-suite/frontend/atlas/.next/server/app/contacts.segments/_head.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/contacts.segments/_head.segment.rsc @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/contacts.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/contacts.segments/_index.segment.rsc index 7b4ced23..c4bd1ed2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/contacts.segments/_index.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/contacts.segments/_index.segment.rsc @@ -4,5 +4,5 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/contacts.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/contacts.segments/_tree.segment.rsc index 72bff8e7..7619bd4b 100644 --- a/validation-suite/frontend/atlas/.next/server/app/contacts.segments/_tree.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/contacts.segments/_tree.segment.rsc @@ -1,2 +1,2 @@ -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"contacts","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"contacts","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/customers.html b/validation-suite/frontend/atlas/.next/server/app/customers.html index e66082f2..a4c77417 100644 --- a/validation-suite/frontend/atlas/.next/server/app/customers.html +++ b/validation-suite/frontend/atlas/.next/server/app/customers.html @@ -1,2 +1,2 @@ -Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file +Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/customers.rsc b/validation-suite/frontend/atlas/.next/server/app/customers.rsc index 03342409..7e6adf01 100644 --- a/validation-suite/frontend/atlas/.next/server/app/customers.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/customers.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[15495,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/2-nz3xcpe_pw_.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] +b:I[15495,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0lz93ryxnzgoq.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","customers"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["customers",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2-nz3xcpe_pw_.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","customers"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["customers",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0lz93ryxnzgoq.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/customers.segments/!KGFwcCk.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/customers.segments/!KGFwcCk.segment.rsc index 6bd49286..1763d71a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/customers.segments/!KGFwcCk.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/customers.segments/!KGFwcCk.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" -2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] 5:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 7:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] 8:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/customers.segments/!KGFwcCk/customers.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/customers.segments/!KGFwcCk/customers.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/customers.segments/!KGFwcCk/customers.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/customers.segments/!KGFwcCk/customers.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/customers.segments/!KGFwcCk/customers/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/customers.segments/!KGFwcCk/customers/__PAGE__.segment.rsc index b44dda03..8e5d726d 100644 --- a/validation-suite/frontend/atlas/.next/server/app/customers.segments/!KGFwcCk/customers/__PAGE__.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/customers.segments/!KGFwcCk/customers/__PAGE__.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -3:I[15495,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/2-nz3xcpe_pw_.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] +3:I[15495,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0lz93ryxnzgoq.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] 6:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2-nz3xcpe_pw_.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0lz93ryxnzgoq.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/validation-suite/frontend/atlas/.next/server/app/customers.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/customers.segments/_full.segment.rsc index 03342409..7e6adf01 100644 --- a/validation-suite/frontend/atlas/.next/server/app/customers.segments/_full.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/customers.segments/_full.segment.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[15495,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/2-nz3xcpe_pw_.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] +b:I[15495,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0lz93ryxnzgoq.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","customers"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["customers",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2-nz3xcpe_pw_.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","customers"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["customers",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0lz93ryxnzgoq.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/customers.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/customers.segments/_head.segment.rsc index faf657ea..97a8c0f0 100644 --- a/validation-suite/frontend/atlas/.next/server/app/customers.segments/_head.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/customers.segments/_head.segment.rsc @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/customers.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/customers.segments/_index.segment.rsc index 7b4ced23..c4bd1ed2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/customers.segments/_index.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/customers.segments/_index.segment.rsc @@ -4,5 +4,5 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/customers.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/customers.segments/_tree.segment.rsc index 769ad8a4..30110c84 100644 --- a/validation-suite/frontend/atlas/.next/server/app/customers.segments/_tree.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/customers.segments/_tree.segment.rsc @@ -1,2 +1,2 @@ -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"customers","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"customers","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/customers/import.html b/validation-suite/frontend/atlas/.next/server/app/customers/import.html new file mode 100644 index 00000000..813c86ac --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/customers/import.html @@ -0,0 +1,2 @@ +Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/customers/import.meta b/validation-suite/frontend/atlas/.next/server/app/customers/import.meta new file mode 100644 index 00000000..cf87fc88 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/customers/import.meta @@ -0,0 +1,17 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/(app)/layout,_N_T_/(app)/customers/layout,_N_T_/(app)/customers/import/layout,_N_T_/(app)/customers/import/page,_N_T_/customers/import" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/!KGFwcCk/customers/import/__PAGE__", + "/!KGFwcCk/customers/import", + "/!KGFwcCk/customers", + "/!KGFwcCk", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/customers/import.rsc b/validation-suite/frontend/atlas/.next/server/app/customers/import.rsc new file mode 100644 index 00000000..c0458970 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/customers/import.rsc @@ -0,0 +1,26 @@ +1:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"LoadingBoundaryProvider"] +2:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] +3:"$Sreact.fragment" +4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] +5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] +6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] +a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] +b:I[92158,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0o13c7nb3wcya.js"],"default"] +e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] +f:"$Sreact.suspense" +12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] +14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] +16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","customers","import"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["customers",{"children":["import",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0o13c7nb3wcya.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} +17:[] +11:"$W17" +c:{} +d:"$0:f:0:1:1:children:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" +13:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +18:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] +10:null +15:[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L18","3",{}]] diff --git a/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/!KGFwcCk.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/!KGFwcCk.segment.rsc new file mode 100644 index 00000000..1763d71a --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/!KGFwcCk.segment.rsc @@ -0,0 +1,9 @@ +1:"$Sreact.fragment" +2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] +5:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] +6:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] +7:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] +8:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] +0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/!KGFwcCk/customers.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/!KGFwcCk/customers.segment.rsc new file mode 100644 index 00000000..9ebd02d3 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/!KGFwcCk/customers.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] +3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/!KGFwcCk/customers/import.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/!KGFwcCk/customers/import.segment.rsc new file mode 100644 index 00000000..9ebd02d3 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/!KGFwcCk/customers/import.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] +3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/!KGFwcCk/customers/import/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/!KGFwcCk/customers/import/__PAGE__.segment.rsc new file mode 100644 index 00000000..16a6b56c --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/!KGFwcCk/customers/import/__PAGE__.segment.rsc @@ -0,0 +1,9 @@ +1:"$Sreact.fragment" +2:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] +3:I[92158,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0o13c7nb3wcya.js"],"default"] +6:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] +7:"$Sreact.suspense" +0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0o13c7nb3wcya.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} +4:{} +5:"$0:rsc:props:children:0:props:serverProvidedParams:params" +8:null diff --git a/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/_full.segment.rsc new file mode 100644 index 00000000..c0458970 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/_full.segment.rsc @@ -0,0 +1,26 @@ +1:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"LoadingBoundaryProvider"] +2:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] +3:"$Sreact.fragment" +4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] +5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] +6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] +a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] +b:I[92158,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0o13c7nb3wcya.js"],"default"] +e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] +f:"$Sreact.suspense" +12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] +14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] +16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","customers","import"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["customers",{"children":["import",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0o13c7nb3wcya.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} +17:[] +11:"$W17" +c:{} +d:"$0:f:0:1:1:children:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" +13:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +18:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] +10:null +15:[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L18","3",{}]] diff --git a/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/_head.segment.rsc new file mode 100644 index 00000000..97a8c0f0 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/_head.segment.rsc @@ -0,0 +1,6 @@ +1:"$Sreact.fragment" +2:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] +4:"$Sreact.suspense" +5:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/_index.segment.rsc new file mode 100644 index 00000000..c4bd1ed2 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/_index.segment.rsc @@ -0,0 +1,8 @@ +1:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"LoadingBoundaryProvider"] +2:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] +3:"$Sreact.fragment" +4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] +5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] +6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/_tree.segment.rsc new file mode 100644 index 00000000..c9e84d12 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/app/customers/import.segments/_tree.segment.rsc @@ -0,0 +1,2 @@ +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"customers","param":null,"prefetchHints":0,"slots":{"children":{"name":"import","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/dashboard.html b/validation-suite/frontend/atlas/.next/server/app/dashboard.html index 77d98f15..20ef1649 100644 --- a/validation-suite/frontend/atlas/.next/server/app/dashboard.html +++ b/validation-suite/frontend/atlas/.next/server/app/dashboard.html @@ -1,2 +1,2 @@ -Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file +Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/dashboard.rsc b/validation-suite/frontend/atlas/.next/server/app/dashboard.rsc index 719d3c6b..029630c8 100644 --- a/validation-suite/frontend/atlas/.next/server/app/dashboard.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/dashboard.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[45388,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/2toi33zq_ydim.js"],"default"] +b:I[45388,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/2c7prz40q05zp.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","dashboard"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["dashboard",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2toi33zq_ydim.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","dashboard"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["dashboard",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2c7prz40q05zp.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/!KGFwcCk.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/!KGFwcCk.segment.rsc index 6bd49286..1763d71a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/!KGFwcCk.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/!KGFwcCk.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" -2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] 5:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 7:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] 8:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/!KGFwcCk/dashboard.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/!KGFwcCk/dashboard.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/!KGFwcCk/dashboard.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/!KGFwcCk/dashboard.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/!KGFwcCk/dashboard/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/!KGFwcCk/dashboard/__PAGE__.segment.rsc index 0b1777e0..f5b12ada 100644 --- a/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/!KGFwcCk/dashboard/__PAGE__.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/!KGFwcCk/dashboard/__PAGE__.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -3:I[45388,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/2toi33zq_ydim.js"],"default"] +3:I[45388,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/2c7prz40q05zp.js"],"default"] 6:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2toi33zq_ydim.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2c7prz40q05zp.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/_full.segment.rsc index 719d3c6b..029630c8 100644 --- a/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/_full.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/_full.segment.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[45388,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/2toi33zq_ydim.js"],"default"] +b:I[45388,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/2c7prz40q05zp.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","dashboard"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["dashboard",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2toi33zq_ydim.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","dashboard"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["dashboard",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2c7prz40q05zp.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/_head.segment.rsc index faf657ea..97a8c0f0 100644 --- a/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/_head.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/_head.segment.rsc @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/_index.segment.rsc index 7b4ced23..c4bd1ed2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/_index.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/_index.segment.rsc @@ -4,5 +4,5 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/_tree.segment.rsc index 3d2e9dd3..89892d58 100644 --- a/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/_tree.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/dashboard.segments/_tree.segment.rsc @@ -1,2 +1,2 @@ -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"dashboard","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"dashboard","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/devices.html b/validation-suite/frontend/atlas/.next/server/app/devices.html index de76a1a2..c04f1e26 100644 --- a/validation-suite/frontend/atlas/.next/server/app/devices.html +++ b/validation-suite/frontend/atlas/.next/server/app/devices.html @@ -1,2 +1,2 @@ -Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file +Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/devices.rsc b/validation-suite/frontend/atlas/.next/server/app/devices.rsc index bfb3377a..6627b991 100644 --- a/validation-suite/frontend/atlas/.next/server/app/devices.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/devices.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[84028,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/02io6dnnqj4wa.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] +b:I[84028,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/02io6dnnqj4wa.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","devices"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["devices",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/02io6dnnqj4wa.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","devices"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["devices",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/02io6dnnqj4wa.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/devices.segments/!KGFwcCk.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/devices.segments/!KGFwcCk.segment.rsc index 6bd49286..1763d71a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/devices.segments/!KGFwcCk.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/devices.segments/!KGFwcCk.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" -2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] 5:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 7:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] 8:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/devices.segments/!KGFwcCk/devices.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/devices.segments/!KGFwcCk/devices.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/devices.segments/!KGFwcCk/devices.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/devices.segments/!KGFwcCk/devices.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/devices.segments/!KGFwcCk/devices/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/devices.segments/!KGFwcCk/devices/__PAGE__.segment.rsc index 994a36f4..a91d0b5a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/devices.segments/!KGFwcCk/devices/__PAGE__.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/devices.segments/!KGFwcCk/devices/__PAGE__.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -3:I[84028,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/02io6dnnqj4wa.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] +3:I[84028,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/02io6dnnqj4wa.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] 6:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/02io6dnnqj4wa.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/02io6dnnqj4wa.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/validation-suite/frontend/atlas/.next/server/app/devices.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/devices.segments/_full.segment.rsc index bfb3377a..6627b991 100644 --- a/validation-suite/frontend/atlas/.next/server/app/devices.segments/_full.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/devices.segments/_full.segment.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[84028,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/02io6dnnqj4wa.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] +b:I[84028,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/02io6dnnqj4wa.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","devices"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["devices",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/02io6dnnqj4wa.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","devices"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["devices",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/02io6dnnqj4wa.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/devices.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/devices.segments/_head.segment.rsc index faf657ea..97a8c0f0 100644 --- a/validation-suite/frontend/atlas/.next/server/app/devices.segments/_head.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/devices.segments/_head.segment.rsc @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/devices.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/devices.segments/_index.segment.rsc index 7b4ced23..c4bd1ed2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/devices.segments/_index.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/devices.segments/_index.segment.rsc @@ -4,5 +4,5 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/devices.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/devices.segments/_tree.segment.rsc index a0190d93..025d94ff 100644 --- a/validation-suite/frontend/atlas/.next/server/app/devices.segments/_tree.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/devices.segments/_tree.segment.rsc @@ -1,2 +1,2 @@ -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"devices","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"devices","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/documents.html b/validation-suite/frontend/atlas/.next/server/app/documents.html index f7987a7c..5d740b08 100644 --- a/validation-suite/frontend/atlas/.next/server/app/documents.html +++ b/validation-suite/frontend/atlas/.next/server/app/documents.html @@ -1,2 +1,2 @@ -Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file +Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/documents.rsc b/validation-suite/frontend/atlas/.next/server/app/documents.rsc index 3ac49c11..ce03687b 100644 --- a/validation-suite/frontend/atlas/.next/server/app/documents.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/documents.rsc @@ -4,12 +4,12 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] 12:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","documents"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["documents",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","div",null,{"className":"space-y-6","children":[["$","header",null,{"children":[["$","h1",null,{"className":"text-3xl font-semibold text-text","children":"Dokumente"}],["$","p",null,{"className":"mt-2 text-text-light","children":"PDF, JPG, PNG, DOCX und XLSX mit Zuordnung zu Kunden, Geraeten, Validierungen und Pruefmitteln."}]]}],["$","section",null,{"className":"flex min-h-80 items-center justify-center rounded-lg border border-dashed border-primary/40 bg-surface p-8 text-center shadow-soft","children":["$","div",null,{"children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-upload mx-auto h-10 w-10 text-primary","children":["$La","$Lb","$Lc","$undefined"]}],"$Ld","$Le"]}]}]]}],null,"$Lf"]}],{},null,false,null]},null,false,"$@10"]},null,false,null]},null,false,null],"$L11",false]],"m":"$undefined","G":["$12",["$L13"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","documents"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["documents",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","div",null,{"className":"space-y-6","children":[["$","header",null,{"children":[["$","h1",null,{"className":"text-3xl font-semibold text-text","children":"Dokumente"}],["$","p",null,{"className":"mt-2 text-text-light","children":"PDF, JPG, PNG, DOCX und XLSX mit Zuordnung zu Kunden, Geraeten, Validierungen und Pruefmitteln."}]]}],["$","section",null,{"className":"flex min-h-80 items-center justify-center rounded-lg border border-dashed border-primary/40 bg-surface p-8 text-center shadow-soft","children":["$","div",null,{"children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-upload mx-auto h-10 w-10 text-primary","children":["$La","$Lb","$Lc","$undefined"]}],"$Ld","$Le"]}]}]]}],null,"$Lf"]}],{},null,false,null]},null,false,"$@10"]},null,false,null]},null,false,null],"$L11",false]],"m":"$undefined","G":["$12",["$L13"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 15:"$Sreact.suspense" 18:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] @@ -23,7 +23,7 @@ f:["$","$L14",null,{"children":["$","$15",null,{"name":"Next.MetadataOutlet","ch 17:[] 10:"$W17" 11:["$","$3","h",{"children":[null,["$","$L18",null,{"children":"$L19"}],["$","div",null,{"hidden":true,"children":["$","$L1a",null,{"children":["$","$15",null,{"name":"Next.Metadata","children":"$L1b"}]}]}],null]}] -13:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +13:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] 19:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 1c:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] 16:null diff --git a/validation-suite/frontend/atlas/.next/server/app/documents.segments/!KGFwcCk.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/documents.segments/!KGFwcCk.segment.rsc index 6bd49286..1763d71a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/documents.segments/!KGFwcCk.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/documents.segments/!KGFwcCk.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" -2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] 5:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 7:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] 8:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/documents.segments/!KGFwcCk/documents.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/documents.segments/!KGFwcCk/documents.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/documents.segments/!KGFwcCk/documents.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/documents.segments/!KGFwcCk/documents.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/documents.segments/!KGFwcCk/documents/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/documents.segments/!KGFwcCk/documents/__PAGE__.segment.rsc index 3576138a..6dab02dd 100644 --- a/validation-suite/frontend/atlas/.next/server/app/documents.segments/!KGFwcCk/documents/__PAGE__.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/documents.segments/!KGFwcCk/documents/__PAGE__.segment.rsc @@ -1,5 +1,5 @@ 1:"$Sreact.fragment" 2:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 3:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"space-y-6","children":[["$","header",null,{"children":[["$","h1",null,{"className":"text-3xl font-semibold text-text","children":"Dokumente"}],["$","p",null,{"className":"mt-2 text-text-light","children":"PDF, JPG, PNG, DOCX und XLSX mit Zuordnung zu Kunden, Geraeten, Validierungen und Pruefmitteln."}]]}],["$","section",null,{"className":"flex min-h-80 items-center justify-center rounded-lg border border-dashed border-primary/40 bg-surface p-8 text-center shadow-soft","children":["$","div",null,{"children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-upload mx-auto h-10 w-10 text-primary","children":[["$","path","ih7n3h",{"d":"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}],["$","polyline","t8dd8p",{"points":"17 8 12 3 7 8"}],["$","line","widbto",{"x1":"12","x2":"12","y1":"3","y2":"15"}],"$undefined"]}],["$","h2",null,{"className":"mt-4 text-xl font-semibold","children":"Drag & Drop Upload"}],["$","p",null,{"className":"mt-2 max-w-xl text-sm leading-6 text-text-light","children":"Die Dokumentenablage ist im Backend modelliert und fuer Upload-Flows vorbereitet."}]]}]}]]}],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"space-y-6","children":[["$","header",null,{"children":[["$","h1",null,{"className":"text-3xl font-semibold text-text","children":"Dokumente"}],["$","p",null,{"className":"mt-2 text-text-light","children":"PDF, JPG, PNG, DOCX und XLSX mit Zuordnung zu Kunden, Geraeten, Validierungen und Pruefmitteln."}]]}],["$","section",null,{"className":"flex min-h-80 items-center justify-center rounded-lg border border-dashed border-primary/40 bg-surface p-8 text-center shadow-soft","children":["$","div",null,{"children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-upload mx-auto h-10 w-10 text-primary","children":[["$","path","ih7n3h",{"d":"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}],["$","polyline","t8dd8p",{"points":"17 8 12 3 7 8"}],["$","line","widbto",{"x1":"12","x2":"12","y1":"3","y2":"15"}],"$undefined"]}],["$","h2",null,{"className":"mt-4 text-xl font-semibold","children":"Drag & Drop Upload"}],["$","p",null,{"className":"mt-2 max-w-xl text-sm leading-6 text-text-light","children":"Die Dokumentenablage ist im Backend modelliert und fuer Upload-Flows vorbereitet."}]]}]}]]}],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} 4:null diff --git a/validation-suite/frontend/atlas/.next/server/app/documents.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/documents.segments/_full.segment.rsc index 3ac49c11..ce03687b 100644 --- a/validation-suite/frontend/atlas/.next/server/app/documents.segments/_full.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/documents.segments/_full.segment.rsc @@ -4,12 +4,12 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] 12:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","documents"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["documents",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","div",null,{"className":"space-y-6","children":[["$","header",null,{"children":[["$","h1",null,{"className":"text-3xl font-semibold text-text","children":"Dokumente"}],["$","p",null,{"className":"mt-2 text-text-light","children":"PDF, JPG, PNG, DOCX und XLSX mit Zuordnung zu Kunden, Geraeten, Validierungen und Pruefmitteln."}]]}],["$","section",null,{"className":"flex min-h-80 items-center justify-center rounded-lg border border-dashed border-primary/40 bg-surface p-8 text-center shadow-soft","children":["$","div",null,{"children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-upload mx-auto h-10 w-10 text-primary","children":["$La","$Lb","$Lc","$undefined"]}],"$Ld","$Le"]}]}]]}],null,"$Lf"]}],{},null,false,null]},null,false,"$@10"]},null,false,null]},null,false,null],"$L11",false]],"m":"$undefined","G":["$12",["$L13"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","documents"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["documents",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","div",null,{"className":"space-y-6","children":[["$","header",null,{"children":[["$","h1",null,{"className":"text-3xl font-semibold text-text","children":"Dokumente"}],["$","p",null,{"className":"mt-2 text-text-light","children":"PDF, JPG, PNG, DOCX und XLSX mit Zuordnung zu Kunden, Geraeten, Validierungen und Pruefmitteln."}]]}],["$","section",null,{"className":"flex min-h-80 items-center justify-center rounded-lg border border-dashed border-primary/40 bg-surface p-8 text-center shadow-soft","children":["$","div",null,{"children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-upload mx-auto h-10 w-10 text-primary","children":["$La","$Lb","$Lc","$undefined"]}],"$Ld","$Le"]}]}]]}],null,"$Lf"]}],{},null,false,null]},null,false,"$@10"]},null,false,null]},null,false,null],"$L11",false]],"m":"$undefined","G":["$12",["$L13"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 15:"$Sreact.suspense" 18:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] @@ -23,7 +23,7 @@ f:["$","$L14",null,{"children":["$","$15",null,{"name":"Next.MetadataOutlet","ch 17:[] 10:"$W17" 11:["$","$3","h",{"children":[null,["$","$L18",null,{"children":"$L19"}],["$","div",null,{"hidden":true,"children":["$","$L1a",null,{"children":["$","$15",null,{"name":"Next.Metadata","children":"$L1b"}]}]}],null]}] -13:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +13:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] 19:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 1c:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] 16:null diff --git a/validation-suite/frontend/atlas/.next/server/app/documents.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/documents.segments/_head.segment.rsc index faf657ea..97a8c0f0 100644 --- a/validation-suite/frontend/atlas/.next/server/app/documents.segments/_head.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/documents.segments/_head.segment.rsc @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/documents.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/documents.segments/_index.segment.rsc index 7b4ced23..c4bd1ed2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/documents.segments/_index.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/documents.segments/_index.segment.rsc @@ -4,5 +4,5 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/documents.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/documents.segments/_tree.segment.rsc index f8bae397..cdff8158 100644 --- a/validation-suite/frontend/atlas/.next/server/app/documents.segments/_tree.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/documents.segments/_tree.segment.rsc @@ -1,2 +1,2 @@ -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"documents","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"documents","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/equipment.html b/validation-suite/frontend/atlas/.next/server/app/equipment.html index c35af97f..ae39adf6 100644 --- a/validation-suite/frontend/atlas/.next/server/app/equipment.html +++ b/validation-suite/frontend/atlas/.next/server/app/equipment.html @@ -1,2 +1,2 @@ -Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file +Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/equipment.rsc b/validation-suite/frontend/atlas/.next/server/app/equipment.rsc index 5c17e43f..98e14661 100644 --- a/validation-suite/frontend/atlas/.next/server/app/equipment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/equipment.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[57175,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/34frrgl3b8scb.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] +b:I[57175,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/34frrgl3b8scb.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","equipment"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["equipment",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/34frrgl3b8scb.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","equipment"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["equipment",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/34frrgl3b8scb.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/equipment.segments/!KGFwcCk.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/equipment.segments/!KGFwcCk.segment.rsc index 6bd49286..1763d71a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/equipment.segments/!KGFwcCk.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/equipment.segments/!KGFwcCk.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" -2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] 5:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 7:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] 8:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/equipment.segments/!KGFwcCk/equipment.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/equipment.segments/!KGFwcCk/equipment.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/equipment.segments/!KGFwcCk/equipment.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/equipment.segments/!KGFwcCk/equipment.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/equipment.segments/!KGFwcCk/equipment/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/equipment.segments/!KGFwcCk/equipment/__PAGE__.segment.rsc index b77ef706..a4437e4d 100644 --- a/validation-suite/frontend/atlas/.next/server/app/equipment.segments/!KGFwcCk/equipment/__PAGE__.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/equipment.segments/!KGFwcCk/equipment/__PAGE__.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -3:I[57175,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/34frrgl3b8scb.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] +3:I[57175,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/34frrgl3b8scb.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] 6:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/34frrgl3b8scb.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/34frrgl3b8scb.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/validation-suite/frontend/atlas/.next/server/app/equipment.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/equipment.segments/_full.segment.rsc index 5c17e43f..98e14661 100644 --- a/validation-suite/frontend/atlas/.next/server/app/equipment.segments/_full.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/equipment.segments/_full.segment.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[57175,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/34frrgl3b8scb.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] +b:I[57175,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/34frrgl3b8scb.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","equipment"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["equipment",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/34frrgl3b8scb.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","equipment"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["equipment",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/34frrgl3b8scb.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/equipment.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/equipment.segments/_head.segment.rsc index faf657ea..97a8c0f0 100644 --- a/validation-suite/frontend/atlas/.next/server/app/equipment.segments/_head.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/equipment.segments/_head.segment.rsc @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/equipment.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/equipment.segments/_index.segment.rsc index 7b4ced23..c4bd1ed2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/equipment.segments/_index.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/equipment.segments/_index.segment.rsc @@ -4,5 +4,5 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/equipment.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/equipment.segments/_tree.segment.rsc index 1144dae1..e7d7245e 100644 --- a/validation-suite/frontend/atlas/.next/server/app/equipment.segments/_tree.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/equipment.segments/_tree.segment.rsc @@ -1,2 +1,2 @@ -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"equipment","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"equipment","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/index.html b/validation-suite/frontend/atlas/.next/server/app/index.html index 39b16b33..43254b42 100644 --- a/validation-suite/frontend/atlas/.next/server/app/index.html +++ b/validation-suite/frontend/atlas/.next/server/app/index.html @@ -1 +1 @@ -Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file +Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/index.rsc b/validation-suite/frontend/atlas/.next/server/app/index.rsc index dab567f8..c85bc638 100644 --- a/validation-suite/frontend/atlas/.next/server/app/index.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/index.rsc @@ -9,8 +9,8 @@ b:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] d:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] f:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":["$L7",null,["$","$L8",null,{"children":["$","$9",null,{"name":"Next.MetadataOutlet","children":"$@a"}]}]]}],{},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$Lb",null,{"children":"$Lc"}],["$","div",null,{"hidden":true,"children":["$","$Ld",null,{"children":["$","$9",null,{"name":"Next.Metadata","children":"$Le"}]}]}],null]}],false]],"m":"$undefined","G":["$f",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":["$L7",null,["$","$L8",null,{"children":["$","$9",null,{"name":"Next.MetadataOutlet","children":"$@a"}]}]]}],{},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$Lb",null,{"children":"$Lc"}],["$","div",null,{"hidden":true,"children":["$","$Ld",null,{"children":["$","$9",null,{"name":"Next.Metadata","children":"$Le"}]}]}],null]}],false]],"m":"$undefined","G":["$f",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 7:E{"digest":"NEXT_REDIRECT;replace;/login;307;"} c:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 10:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] diff --git a/validation-suite/frontend/atlas/.next/server/app/index.segments/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/index.segments/__PAGE__.segment.rsc index 5b2211bd..0d4e2292 100644 --- a/validation-suite/frontend/atlas/.next/server/app/index.segments/__PAGE__.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/index.segments/__PAGE__.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 4:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":["$L2",null,["$","$L3",null,{"children":["$","$4",null,{"name":"Next.MetadataOutlet","children":"$@5"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":["$L2",null,["$","$L3",null,{"children":["$","$4",null,{"name":"Next.MetadataOutlet","children":"$@5"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} 5:null 2:E{"digest":"NEXT_REDIRECT;replace;/login;307;"} diff --git a/validation-suite/frontend/atlas/.next/server/app/index.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/index.segments/_full.segment.rsc index dab567f8..c85bc638 100644 --- a/validation-suite/frontend/atlas/.next/server/app/index.segments/_full.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/index.segments/_full.segment.rsc @@ -9,8 +9,8 @@ b:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] d:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] f:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":["$L7",null,["$","$L8",null,{"children":["$","$9",null,{"name":"Next.MetadataOutlet","children":"$@a"}]}]]}],{},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$Lb",null,{"children":"$Lc"}],["$","div",null,{"hidden":true,"children":["$","$Ld",null,{"children":["$","$9",null,{"name":"Next.Metadata","children":"$Le"}]}]}],null]}],false]],"m":"$undefined","G":["$f",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":["$L7",null,["$","$L8",null,{"children":["$","$9",null,{"name":"Next.MetadataOutlet","children":"$@a"}]}]]}],{},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$Lb",null,{"children":"$Lc"}],["$","div",null,{"hidden":true,"children":["$","$Ld",null,{"children":["$","$9",null,{"name":"Next.Metadata","children":"$Le"}]}]}],null]}],false]],"m":"$undefined","G":["$f",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 7:E{"digest":"NEXT_REDIRECT;replace;/login;307;"} c:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 10:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] diff --git a/validation-suite/frontend/atlas/.next/server/app/index.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/index.segments/_head.segment.rsc index faf657ea..97a8c0f0 100644 --- a/validation-suite/frontend/atlas/.next/server/app/index.segments/_head.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/index.segments/_head.segment.rsc @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/index.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/index.segments/_index.segment.rsc index 7b4ced23..c4bd1ed2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/index.segments/_index.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/index.segments/_index.segment.rsc @@ -4,5 +4,5 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/index.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/index.segments/_tree.segment.rsc index 960452ab..60c2a0b0 100644 --- a/validation-suite/frontend/atlas/.next/server/app/index.segments/_tree.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/index.segments/_tree.segment.rsc @@ -1,2 +1,2 @@ -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}},"staleTime":300,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/locations.html b/validation-suite/frontend/atlas/.next/server/app/locations.html index e46ce27f..b7ff8714 100644 --- a/validation-suite/frontend/atlas/.next/server/app/locations.html +++ b/validation-suite/frontend/atlas/.next/server/app/locations.html @@ -1,2 +1,2 @@ -Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file +Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/locations.rsc b/validation-suite/frontend/atlas/.next/server/app/locations.rsc index f0dd802b..0a1d4d52 100644 --- a/validation-suite/frontend/atlas/.next/server/app/locations.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/locations.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[23448,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/1m4and-haqgqz.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] +b:I[23448,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/1m4and-haqgqz.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","locations"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["locations",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1m4and-haqgqz.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","locations"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["locations",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1m4and-haqgqz.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/locations.segments/!KGFwcCk.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/locations.segments/!KGFwcCk.segment.rsc index 6bd49286..1763d71a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/locations.segments/!KGFwcCk.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/locations.segments/!KGFwcCk.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" -2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] 5:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 7:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] 8:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/locations.segments/!KGFwcCk/locations.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/locations.segments/!KGFwcCk/locations.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/locations.segments/!KGFwcCk/locations.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/locations.segments/!KGFwcCk/locations.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/locations.segments/!KGFwcCk/locations/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/locations.segments/!KGFwcCk/locations/__PAGE__.segment.rsc index 4ff3fac5..30139a27 100644 --- a/validation-suite/frontend/atlas/.next/server/app/locations.segments/!KGFwcCk/locations/__PAGE__.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/locations.segments/!KGFwcCk/locations/__PAGE__.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -3:I[23448,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/1m4and-haqgqz.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] +3:I[23448,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/1m4and-haqgqz.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] 6:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1m4and-haqgqz.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1m4and-haqgqz.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/validation-suite/frontend/atlas/.next/server/app/locations.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/locations.segments/_full.segment.rsc index f0dd802b..0a1d4d52 100644 --- a/validation-suite/frontend/atlas/.next/server/app/locations.segments/_full.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/locations.segments/_full.segment.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[23448,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/1m4and-haqgqz.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] +b:I[23448,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/1m4and-haqgqz.js","/_next/static/chunks/1ynnqp1y5f44o.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","locations"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["locations",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1m4and-haqgqz.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","locations"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["locations",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1m4and-haqgqz.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/1ynnqp1y5f44o.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/locations.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/locations.segments/_head.segment.rsc index faf657ea..97a8c0f0 100644 --- a/validation-suite/frontend/atlas/.next/server/app/locations.segments/_head.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/locations.segments/_head.segment.rsc @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/locations.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/locations.segments/_index.segment.rsc index 7b4ced23..c4bd1ed2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/locations.segments/_index.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/locations.segments/_index.segment.rsc @@ -4,5 +4,5 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/locations.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/locations.segments/_tree.segment.rsc index b28a8a9a..c706fcfd 100644 --- a/validation-suite/frontend/atlas/.next/server/app/locations.segments/_tree.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/locations.segments/_tree.segment.rsc @@ -1,2 +1,2 @@ -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"locations","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"locations","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/login.html b/validation-suite/frontend/atlas/.next/server/app/login.html index cde10b86..a022411e 100644 --- a/validation-suite/frontend/atlas/.next/server/app/login.html +++ b/validation-suite/frontend/atlas/.next/server/app/login.html @@ -1 +1 @@ -Validation Suite
SCHUBAMED Validation Suite

Anmelden

Sicherer Zugriff auf Atlas Workspace.

\ No newline at end of file +Validation Suite
SCHUBAMED Validation Suite

Anmelden

Sicherer Zugriff auf Atlas Workspace.

\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/login.rsc b/validation-suite/frontend/atlas/.next/server/app/login.rsc index 563965c3..d2b965e9 100644 --- a/validation-suite/frontend/atlas/.next/server/app/login.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/login.rsc @@ -11,8 +11,8 @@ c:"$Sreact.suspense" f:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 11:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 13:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","login"],"q":"","i":false,"f":[[["",{"children":["(auth)",{"children":["login",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$L7",null,{"Component":"$8","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@9","$@a"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1lnah75lrauwn.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}]],["$","$Lb",null,{"children":["$","$c",null,{"name":"Next.MetadataOutlet","children":"$@d"}]}]]}],{},null,false,null]},null,false,"$@e"]},null,false,"$@e"]},null,false,null],["$","$3","h",{"children":[null,["$","$Lf",null,{"children":"$L10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$c",null,{"name":"Next.Metadata","children":"$L12"}]}]}],null]}],false]],"m":"$undefined","G":["$13",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","login"],"q":"","i":false,"f":[[["",{"children":["(auth)",{"children":["login",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$L7",null,{"Component":"$8","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@9","$@a"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1lnah75lrauwn.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}]],["$","$Lb",null,{"children":["$","$c",null,{"name":"Next.MetadataOutlet","children":"$@d"}]}]]}],{},null,false,null]},null,false,"$@e"]},null,false,"$@e"]},null,false,null],["$","$3","h",{"children":[null,["$","$Lf",null,{"children":"$L10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$c",null,{"name":"Next.Metadata","children":"$L12"}]}]}],null]}],false]],"m":"$undefined","G":["$13",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 14:[] e:"$W14" 9:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/login.segments/!KGF1dGgp.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/login.segments/!KGF1dGgp.segment.rsc index e1624c40..12b83f9f 100644 --- a/validation-suite/frontend/atlas/.next/server/app/login.segments/!KGF1dGgp.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/login.segments/!KGF1dGgp.segment.rsc @@ -4,4 +4,4 @@ 4:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] 5:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] 6:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L4",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L5",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W6","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L4",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L5",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W6","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/login.segments/!KGF1dGgp/login.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/login.segments/!KGF1dGgp/login.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/login.segments/!KGF1dGgp/login.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/login.segments/!KGF1dGgp/login.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/login.segments/!KGF1dGgp/login/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/login.segments/!KGF1dGgp/login/__PAGE__.segment.rsc index ca6b3bd6..abd388bf 100644 --- a/validation-suite/frontend/atlas/.next/server/app/login.segments/!KGF1dGgp/login/__PAGE__.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/login.segments/!KGF1dGgp/login/__PAGE__.segment.rsc @@ -3,7 +3,7 @@ 3:I[23426,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/1lnah75lrauwn.js","/_next/static/chunks/3ltfzh6dxauii.js"],"default"] 6:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1lnah75lrauwn.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1lnah75lrauwn.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/validation-suite/frontend/atlas/.next/server/app/login.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/login.segments/_full.segment.rsc index 563965c3..d2b965e9 100644 --- a/validation-suite/frontend/atlas/.next/server/app/login.segments/_full.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/login.segments/_full.segment.rsc @@ -11,8 +11,8 @@ c:"$Sreact.suspense" f:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 11:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 13:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","login"],"q":"","i":false,"f":[[["",{"children":["(auth)",{"children":["login",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$L7",null,{"Component":"$8","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@9","$@a"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1lnah75lrauwn.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}]],["$","$Lb",null,{"children":["$","$c",null,{"name":"Next.MetadataOutlet","children":"$@d"}]}]]}],{},null,false,null]},null,false,"$@e"]},null,false,"$@e"]},null,false,null],["$","$3","h",{"children":[null,["$","$Lf",null,{"children":"$L10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$c",null,{"name":"Next.Metadata","children":"$L12"}]}]}],null]}],false]],"m":"$undefined","G":["$13",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","login"],"q":"","i":false,"f":[[["",{"children":["(auth)",{"children":["login",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$L7",null,{"Component":"$8","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@9","$@a"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1lnah75lrauwn.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}]],["$","$Lb",null,{"children":["$","$c",null,{"name":"Next.MetadataOutlet","children":"$@d"}]}]]}],{},null,false,null]},null,false,"$@e"]},null,false,"$@e"]},null,false,null],["$","$3","h",{"children":[null,["$","$Lf",null,{"children":"$L10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$c",null,{"name":"Next.Metadata","children":"$L12"}]}]}],null]}],false]],"m":"$undefined","G":["$13",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 14:[] e:"$W14" 9:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/login.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/login.segments/_head.segment.rsc index faf657ea..97a8c0f0 100644 --- a/validation-suite/frontend/atlas/.next/server/app/login.segments/_head.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/login.segments/_head.segment.rsc @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/login.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/login.segments/_index.segment.rsc index 7b4ced23..c4bd1ed2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/login.segments/_index.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/login.segments/_index.segment.rsc @@ -4,5 +4,5 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/login.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/login.segments/_tree.segment.rsc index 66859d92..da6ca2ae 100644 --- a/validation-suite/frontend/atlas/.next/server/app/login.segments/_tree.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/login.segments/_tree.segment.rsc @@ -1,2 +1,2 @@ -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(auth)","param":null,"prefetchHints":0,"slots":{"children":{"name":"login","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(auth)","param":null,"prefetchHints":0,"slots":{"children":{"name":"login","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/page_client-reference-manifest.js b/validation-suite/frontend/atlas/.next/server/app/page_client-reference-manifest.js index 99ff87ec..bf4ce5c4 100644 --- a/validation-suite/frontend/atlas/.next/server/app/page_client-reference-manifest.js +++ b/validation-suite/frontend/atlas/.next/server/app/page_client-reference-manifest.js @@ -1,3 +1,3 @@ globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/33g7vuk7-89na.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"]}}; +globalThis.__RSC_MANIFEST["/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0d_chie._.js","server/chunks/ssr/node_modules_next_dist_06e9fq1._.js","server/chunks/ssr/node_modules_next_dist_1knwlsz._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__01_9-e3._.js","server/chunks/ssr/node_modules_next_dist_0uboya6._.js","server/chunks/ssr/node_modules_0h91jdk._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/app/layout":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/loading":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/app/not-found":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/3yh08fx1c3mlz.css","inlined":false}]},"entryJSFiles":{"[project]/app/layout":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"],"[project]/app/loading":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/34jc288cp41wf.js"],"[project]/app/not-found":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js","static/chunks/3ehzmerq6j-54.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/05-c3ty_6dwfk.js","static/chunks/14mrh2-p_w84d.js"]}}; diff --git a/validation-suite/frontend/atlas/.next/server/app/profile/security.html b/validation-suite/frontend/atlas/.next/server/app/profile/security.html index ffeb6de0..fdc753e8 100644 --- a/validation-suite/frontend/atlas/.next/server/app/profile/security.html +++ b/validation-suite/frontend/atlas/.next/server/app/profile/security.html @@ -1,2 +1,2 @@ -Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file +Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/profile/security.rsc b/validation-suite/frontend/atlas/.next/server/app/profile/security.rsc index a3f8f4fc..7fa728c2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/profile/security.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/profile/security.rsc @@ -4,21 +4,21 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[53155,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/19-dmj7e3s4r_.js","/_next/static/chunks/3ltfzh6dxauii.js"],"default"] +b:I[53155,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/19-dmj7e3s4r_.js","/_next/static/chunks/3ltfzh6dxauii.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","profile","security"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["profile",{"children":["security",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/19-dmj7e3s4r_.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",["$L17"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","profile","security"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["profile",{"children":["security",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/19-dmj7e3s4r_.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",["$L17"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 18:[] 11:"$W18" -17:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +17:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] c:{} d:"$0:f:0:1:1:children:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 13:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/!KGFwcCk.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/!KGFwcCk.segment.rsc index 6bd49286..1763d71a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/!KGFwcCk.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/!KGFwcCk.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" -2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] 5:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 7:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] 8:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/!KGFwcCk/profile.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/!KGFwcCk/profile.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/!KGFwcCk/profile.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/!KGFwcCk/profile.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/!KGFwcCk/profile/security.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/!KGFwcCk/profile/security.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/!KGFwcCk/profile/security.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/!KGFwcCk/profile/security.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/!KGFwcCk/profile/security/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/!KGFwcCk/profile/security/__PAGE__.segment.rsc index 6cbe26d3..d11be105 100644 --- a/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/!KGFwcCk/profile/security/__PAGE__.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/!KGFwcCk/profile/security/__PAGE__.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -3:I[53155,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/19-dmj7e3s4r_.js","/_next/static/chunks/3ltfzh6dxauii.js"],"default"] +3:I[53155,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/19-dmj7e3s4r_.js","/_next/static/chunks/3ltfzh6dxauii.js"],"default"] 6:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/19-dmj7e3s4r_.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/19-dmj7e3s4r_.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/_full.segment.rsc index a3f8f4fc..7fa728c2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/_full.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/_full.segment.rsc @@ -4,21 +4,21 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[53155,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/19-dmj7e3s4r_.js","/_next/static/chunks/3ltfzh6dxauii.js"],"default"] +b:I[53155,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/19-dmj7e3s4r_.js","/_next/static/chunks/3ltfzh6dxauii.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","profile","security"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["profile",{"children":["security",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/19-dmj7e3s4r_.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",["$L17"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","profile","security"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["profile",{"children":["security",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/19-dmj7e3s4r_.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",["$L17"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 18:[] 11:"$W18" -17:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +17:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] c:{} d:"$0:f:0:1:1:children:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 13:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/_head.segment.rsc index faf657ea..97a8c0f0 100644 --- a/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/_head.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/_head.segment.rsc @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/_index.segment.rsc index 7b4ced23..c4bd1ed2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/_index.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/_index.segment.rsc @@ -4,5 +4,5 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/_tree.segment.rsc index 73e5c40d..ca484d8d 100644 --- a/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/_tree.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/profile/security.segments/_tree.segment.rsc @@ -1,2 +1,2 @@ -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"profile","param":null,"prefetchHints":0,"slots":{"children":{"name":"security","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}}}},"staleTime":300,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"profile","param":null,"prefetchHints":0,"slots":{"children":{"name":"security","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.html b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.html index edd4242b..560300bb 100644 --- a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.html +++ b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.html @@ -1,2 +1,2 @@ -Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file +Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.rsc b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.rsc index d594ea15..cc21827e 100644 --- a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[95241,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/413udcsynwnhe.js"],"default"] +b:I[95241,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/3cjefmw3itjkw.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","settings","report-layout"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["settings",{"children":["report-layout",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/413udcsynwnhe.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","settings","report-layout"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["settings",{"children":["report-layout",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/3cjefmw3itjkw.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/!KGFwcCk.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/!KGFwcCk.segment.rsc index 6bd49286..1763d71a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/!KGFwcCk.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/!KGFwcCk.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" -2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] 5:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 7:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] 8:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/!KGFwcCk/settings.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/!KGFwcCk/settings.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/!KGFwcCk/settings.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/!KGFwcCk/settings.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/!KGFwcCk/settings/report-layout.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/!KGFwcCk/settings/report-layout.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/!KGFwcCk/settings/report-layout.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/!KGFwcCk/settings/report-layout.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/!KGFwcCk/settings/report-layout/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/!KGFwcCk/settings/report-layout/__PAGE__.segment.rsc index 259b0b73..8446857c 100644 --- a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/!KGFwcCk/settings/report-layout/__PAGE__.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/!KGFwcCk/settings/report-layout/__PAGE__.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -3:I[95241,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/413udcsynwnhe.js"],"default"] +3:I[95241,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/3cjefmw3itjkw.js"],"default"] 6:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/413udcsynwnhe.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/3cjefmw3itjkw.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/_full.segment.rsc index d594ea15..cc21827e 100644 --- a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/_full.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/_full.segment.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[95241,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/413udcsynwnhe.js"],"default"] +b:I[95241,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/3cjefmw3itjkw.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","settings","report-layout"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["settings",{"children":["report-layout",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/413udcsynwnhe.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","settings","report-layout"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["settings",{"children":["report-layout",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/3cjefmw3itjkw.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/_head.segment.rsc index faf657ea..97a8c0f0 100644 --- a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/_head.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/_head.segment.rsc @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/_index.segment.rsc index 7b4ced23..c4bd1ed2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/_index.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/_index.segment.rsc @@ -4,5 +4,5 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/_tree.segment.rsc index 102f4102..9203f31c 100644 --- a/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/_tree.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/settings/report-layout.segments/_tree.segment.rsc @@ -1,2 +1,2 @@ -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"settings","param":null,"prefetchHints":0,"slots":{"children":{"name":"report-layout","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}}}},"staleTime":300,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"settings","param":null,"prefetchHints":0,"slots":{"children":{"name":"report-layout","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/users.html b/validation-suite/frontend/atlas/.next/server/app/users.html index 12cc3b3b..41de775c 100644 --- a/validation-suite/frontend/atlas/.next/server/app/users.html +++ b/validation-suite/frontend/atlas/.next/server/app/users.html @@ -1,2 +1,2 @@ -Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file +Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/users.rsc b/validation-suite/frontend/atlas/.next/server/app/users.rsc index c43c646a..fd0d2d97 100644 --- a/validation-suite/frontend/atlas/.next/server/app/users.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/users.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[47086,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/30zpouyx32v4r.js","/_next/static/chunks/3ltfzh6dxauii.js"],"default"] +b:I[47086,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/30zpouyx32v4r.js","/_next/static/chunks/3ltfzh6dxauii.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","users"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["users",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/30zpouyx32v4r.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","users"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["users",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/30zpouyx32v4r.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/users.segments/!KGFwcCk.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/users.segments/!KGFwcCk.segment.rsc index 6bd49286..1763d71a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/users.segments/!KGFwcCk.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/users.segments/!KGFwcCk.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" -2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] 5:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 7:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] 8:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/users.segments/!KGFwcCk/users.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/users.segments/!KGFwcCk/users.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/users.segments/!KGFwcCk/users.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/users.segments/!KGFwcCk/users.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/users.segments/!KGFwcCk/users/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/users.segments/!KGFwcCk/users/__PAGE__.segment.rsc index e1f66d78..c3ad55bc 100644 --- a/validation-suite/frontend/atlas/.next/server/app/users.segments/!KGFwcCk/users/__PAGE__.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/users.segments/!KGFwcCk/users/__PAGE__.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -3:I[47086,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/30zpouyx32v4r.js","/_next/static/chunks/3ltfzh6dxauii.js"],"default"] +3:I[47086,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/30zpouyx32v4r.js","/_next/static/chunks/3ltfzh6dxauii.js"],"default"] 6:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/30zpouyx32v4r.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/30zpouyx32v4r.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/validation-suite/frontend/atlas/.next/server/app/users.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/users.segments/_full.segment.rsc index c43c646a..fd0d2d97 100644 --- a/validation-suite/frontend/atlas/.next/server/app/users.segments/_full.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/users.segments/_full.segment.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[47086,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/30zpouyx32v4r.js","/_next/static/chunks/3ltfzh6dxauii.js"],"default"] +b:I[47086,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/30zpouyx32v4r.js","/_next/static/chunks/3ltfzh6dxauii.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","users"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["users",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/30zpouyx32v4r.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","users"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["users",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/30zpouyx32v4r.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/users.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/users.segments/_head.segment.rsc index faf657ea..97a8c0f0 100644 --- a/validation-suite/frontend/atlas/.next/server/app/users.segments/_head.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/users.segments/_head.segment.rsc @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/users.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/users.segments/_index.segment.rsc index 7b4ced23..c4bd1ed2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/users.segments/_index.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/users.segments/_index.segment.rsc @@ -4,5 +4,5 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/users.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/users.segments/_tree.segment.rsc index b4757630..fa3bd7c2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/users.segments/_tree.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/users.segments/_tree.segment.rsc @@ -1,2 +1,2 @@ -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"users","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"users","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations.html b/validation-suite/frontend/atlas/.next/server/app/validations.html index 1f5f76d4..63f84a65 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations.html +++ b/validation-suite/frontend/atlas/.next/server/app/validations.html @@ -1,2 +1,2 @@ -Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file +Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/validations.rsc b/validation-suite/frontend/atlas/.next/server/app/validations.rsc index 86ffc053..70647666 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[62406,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/0ti1a2yw9pft4.js","/_next/static/chunks/26jh-4z-ujjfh.js"],"default"] +b:I[62406,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/41jx6c5jfr1py.js","/_next/static/chunks/26jh-4z-ujjfh.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","validations"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0ti1a2yw9pft4.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/26jh-4z-ujjfh.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","validations"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/41jx6c5jfr1py.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/26jh-4z-ujjfh.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations.segments/!KGFwcCk.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations.segments/!KGFwcCk.segment.rsc index 6bd49286..1763d71a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations.segments/!KGFwcCk.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations.segments/!KGFwcCk.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" -2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] 5:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 7:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] 8:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations.segments/!KGFwcCk/validations.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations.segments/!KGFwcCk/validations.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations.segments/!KGFwcCk/validations.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations.segments/!KGFwcCk/validations.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations.segments/!KGFwcCk/validations/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations.segments/!KGFwcCk/validations/__PAGE__.segment.rsc index 510dd711..d650c54c 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations.segments/!KGFwcCk/validations/__PAGE__.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations.segments/!KGFwcCk/validations/__PAGE__.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -3:I[62406,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/0ti1a2yw9pft4.js","/_next/static/chunks/26jh-4z-ujjfh.js"],"default"] +3:I[62406,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/41jx6c5jfr1py.js","/_next/static/chunks/26jh-4z-ujjfh.js"],"default"] 6:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0ti1a2yw9pft4.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/26jh-4z-ujjfh.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/41jx6c5jfr1py.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/26jh-4z-ujjfh.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/validation-suite/frontend/atlas/.next/server/app/validations.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations.segments/_full.segment.rsc index 86ffc053..70647666 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations.segments/_full.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations.segments/_full.segment.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[62406,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/0ti1a2yw9pft4.js","/_next/static/chunks/26jh-4z-ujjfh.js"],"default"] +b:I[62406,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/41jx6c5jfr1py.js","/_next/static/chunks/26jh-4z-ujjfh.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","validations"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0ti1a2yw9pft4.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/26jh-4z-ujjfh.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","validations"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/41jx6c5jfr1py.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/26jh-4z-ujjfh.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations.segments/_head.segment.rsc index faf657ea..97a8c0f0 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations.segments/_head.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations.segments/_head.segment.rsc @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations.segments/_index.segment.rsc index 7b4ced23..c4bd1ed2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations.segments/_index.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations.segments/_index.segment.rsc @@ -4,5 +4,5 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations.segments/_tree.segment.rsc index 97e76900..f48c9efc 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations.segments/_tree.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations.segments/_tree.segment.rsc @@ -1,2 +1,2 @@ -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"validations","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"validations","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/new.html b/validation-suite/frontend/atlas/.next/server/app/validations/new.html index fdceb173..4f6d50c7 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/new.html +++ b/validation-suite/frontend/atlas/.next/server/app/validations/new.html @@ -1,2 +1,2 @@ -Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file +Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/new.rsc b/validation-suite/frontend/atlas/.next/server/app/validations/new.rsc index 63ae83fc..b80a7f39 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/new.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations/new.rsc @@ -4,21 +4,21 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] -a:I[57344,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/1diubaxj1tclp.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/2975f5i-zcw63.js"],"default"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] +a:I[57344,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/1diubaxj1tclp.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/43zs1l-r-4ddz.js"],"default"] b:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] c:"$Sreact.suspense" f:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 11:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 13:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","validations","new"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["new",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{}],[["$","script","script-0",{"src":"/_next/static/chunks/1diubaxj1tclp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/2975f5i-zcw63.js","async":true,"nonce":"$undefined"}]],["$","$Lb",null,{"children":["$","$c",null,{"name":"Next.MetadataOutlet","children":"$@d"}]}]]}],{},null,false,null]},null,false,"$@e"]},null,false,"$@e"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$Lf",null,{"children":"$L10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":"$L12"}]}],null]}],false]],"m":"$undefined","G":["$13",["$L14"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","validations","new"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["new",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{}],[["$","script","script-0",{"src":"/_next/static/chunks/1diubaxj1tclp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/43zs1l-r-4ddz.js","async":true,"nonce":"$undefined"}]],["$","$Lb",null,{"children":["$","$c",null,{"name":"Next.MetadataOutlet","children":"$@d"}]}]]}],{},null,false,null]},null,false,"$@e"]},null,false,"$@e"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$Lf",null,{"children":"$L10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":"$L12"}]}],null]}],false]],"m":"$undefined","G":["$13",["$L14"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 15:[] e:"$W15" 12:["$","$c",null,{"name":"Next.Metadata","children":"$L16"}] -14:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +14:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] 10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 17:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] d:null diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/!KGFwcCk.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/!KGFwcCk.segment.rsc index 6bd49286..1763d71a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/!KGFwcCk.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/!KGFwcCk.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" -2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] 5:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 7:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] 8:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/!KGFwcCk/validations.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/!KGFwcCk/validations.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/!KGFwcCk/validations.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/!KGFwcCk/validations.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/!KGFwcCk/validations/new.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/!KGFwcCk/validations/new.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/!KGFwcCk/validations/new.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/!KGFwcCk/validations/new.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/!KGFwcCk/validations/new/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/!KGFwcCk/validations/new/__PAGE__.segment.rsc index c1910d2d..0de096fc 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/!KGFwcCk/validations/new/__PAGE__.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/!KGFwcCk/validations/new/__PAGE__.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" -2:I[57344,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/1diubaxj1tclp.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/2975f5i-zcw63.js"],"default"] +2:I[57344,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/1diubaxj1tclp.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/43zs1l-r-4ddz.js"],"default"] 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 4:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{}],[["$","script","script-0",{"src":"/_next/static/chunks/1diubaxj1tclp.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/2975f5i-zcw63.js","async":true}]],["$","$L3",null,{"children":["$","$4",null,{"name":"Next.MetadataOutlet","children":"$@5"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{}],[["$","script","script-0",{"src":"/_next/static/chunks/1diubaxj1tclp.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/43zs1l-r-4ddz.js","async":true}]],["$","$L3",null,{"children":["$","$4",null,{"name":"Next.MetadataOutlet","children":"$@5"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} 5:null diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/_full.segment.rsc index 63ae83fc..b80a7f39 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/_full.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/_full.segment.rsc @@ -4,21 +4,21 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] -a:I[57344,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/1diubaxj1tclp.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/2975f5i-zcw63.js"],"default"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] +a:I[57344,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/1diubaxj1tclp.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/43zs1l-r-4ddz.js"],"default"] b:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] c:"$Sreact.suspense" f:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 11:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 13:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","validations","new"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["new",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{}],[["$","script","script-0",{"src":"/_next/static/chunks/1diubaxj1tclp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/2975f5i-zcw63.js","async":true,"nonce":"$undefined"}]],["$","$Lb",null,{"children":["$","$c",null,{"name":"Next.MetadataOutlet","children":"$@d"}]}]]}],{},null,false,null]},null,false,"$@e"]},null,false,"$@e"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$Lf",null,{"children":"$L10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":"$L12"}]}],null]}],false]],"m":"$undefined","G":["$13",["$L14"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","validations","new"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["new",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{}],[["$","script","script-0",{"src":"/_next/static/chunks/1diubaxj1tclp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/43zs1l-r-4ddz.js","async":true,"nonce":"$undefined"}]],["$","$Lb",null,{"children":["$","$c",null,{"name":"Next.MetadataOutlet","children":"$@d"}]}]]}],{},null,false,null]},null,false,"$@e"]},null,false,"$@e"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$Lf",null,{"children":"$L10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":"$L12"}]}],null]}],false]],"m":"$undefined","G":["$13",["$L14"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 15:[] e:"$W15" 12:["$","$c",null,{"name":"Next.Metadata","children":"$L16"}] -14:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +14:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] 10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 17:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] d:null diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/_head.segment.rsc index faf657ea..97a8c0f0 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/_head.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/_head.segment.rsc @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/_index.segment.rsc index 7b4ced23..c4bd1ed2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/_index.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/_index.segment.rsc @@ -4,5 +4,5 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/_tree.segment.rsc index 0f690e2b..212ca85d 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/_tree.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations/new.segments/_tree.segment.rsc @@ -1,2 +1,2 @@ -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"validations","param":null,"prefetchHints":0,"slots":{"children":{"name":"new","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}}}},"staleTime":300,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"validations","param":null,"prefetchHints":0,"slots":{"children":{"name":"new","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.html b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.html index 5e12cc15..4c2036f6 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.html +++ b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.html @@ -1,2 +1,2 @@ -Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file +Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.rsc b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.rsc index c9a1351b..b9d3a41c 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[55557,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/0t7m1oc6w_u-y.js"],"default"] +b:I[55557,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0t7m1oc6w_u-y.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","validations","quick-start"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["quick-start",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0t7m1oc6w_u-y.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","validations","quick-start"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["quick-start",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0t7m1oc6w_u-y.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/!KGFwcCk.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/!KGFwcCk.segment.rsc index 6bd49286..1763d71a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/!KGFwcCk.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/!KGFwcCk.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" -2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] 5:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 7:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] 8:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations/quick-start.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations/quick-start.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations/quick-start.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations/quick-start.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations/quick-start/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations/quick-start/__PAGE__.segment.rsc index f7307f25..6a9a960a 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations/quick-start/__PAGE__.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations/quick-start/__PAGE__.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -3:I[55557,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/0t7m1oc6w_u-y.js"],"default"] +3:I[55557,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0t7m1oc6w_u-y.js"],"default"] 6:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0t7m1oc6w_u-y.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0t7m1oc6w_u-y.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/_full.segment.rsc index c9a1351b..b9d3a41c 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/_full.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/_full.segment.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[55557,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/0t7m1oc6w_u-y.js"],"default"] +b:I[55557,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0t7m1oc6w_u-y.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","validations","quick-start"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["quick-start",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0t7m1oc6w_u-y.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","validations","quick-start"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["quick-start",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0t7m1oc6w_u-y.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/_head.segment.rsc index faf657ea..97a8c0f0 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/_head.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/_head.segment.rsc @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/_index.segment.rsc index 7b4ced23..c4bd1ed2 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/_index.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/_index.segment.rsc @@ -4,5 +4,5 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/_tree.segment.rsc index da895602..5a43493e 100644 --- a/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/_tree.segment.rsc +++ b/validation-suite/frontend/atlas/.next/server/app/validations/quick-start.segments/_tree.segment.rsc @@ -1,2 +1,2 @@ -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"validations","param":null,"prefetchHints":0,"slots":{"children":{"name":"quick-start","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}}}},"staleTime":300,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"validations","param":null,"prefetchHints":0,"slots":{"children":{"name":"quick-start","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/server/chunks/[root-of-the-server]__0r7ghc3._.js b/validation-suite/frontend/atlas/.next/server/chunks/[root-of-the-server]__0r7ghc3._.js new file mode 100644 index 00000000..517f988b --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/chunks/[root-of-the-server]__0r7ghc3._.js @@ -0,0 +1,3 @@ +module.exports=[93695,(e,t,r)=>{t.exports=e.x("next/dist/shared/lib/no-fallback-error.external.js",()=>require("next/dist/shared/lib/no-fallback-error.external.js"))},18622,(e,t,r)=>{t.exports=e.x("next/dist/compiled/next-server/app-page-turbo.runtime.prod.js",()=>require("next/dist/compiled/next-server/app-page-turbo.runtime.prod.js"))},56704,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/work-async-storage.external.js",()=>require("next/dist/server/app-render/work-async-storage.external.js"))},32319,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/work-unit-async-storage.external.js",()=>require("next/dist/server/app-render/work-unit-async-storage.external.js"))},24725,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/after-task-async-storage.external.js",()=>require("next/dist/server/app-render/after-task-async-storage.external.js"))},70406,(e,t,r)=>{t.exports=e.x("next/dist/compiled/@opentelemetry/api",()=>require("next/dist/compiled/@opentelemetry/api"))},56452,e=>{"use strict";var t=e.i(47909),r=e.i(74017),a=e.i(96250),n=e.i(59756),s=e.i(61916),i=e.i(74677),o=e.i(69741),l=e.i(16795),d=e.i(87718),u=e.i(95169),p=e.i(47587),c=e.i(66012),h=e.i(70101),v=e.i(26937),x=e.i(10372),R=e.i(93695);e.i(52474);var m=e.i(220),w=e.i(93458),g=e.i(89171),f=e.i(68105);let E=`${process.env.MERCURY_INTERNAL_URL??"http://mercury-api:8000"}/api/v1`;async function C(e){let t=await (0,w.cookies)(),r=t.get(f.AUTH_COOKIE_NAME)?.value;if(!r)return g.NextResponse.json({detail:"Not authenticated"},{status:401});let a=await fetch(`${E}/customer-imports/preview`,{method:"POST",headers:{Authorization:`Bearer ${r}`},body:await e.formData(),cache:"no-store"}),n=await a.json();return g.NextResponse.json(n,{status:a.status})}e.s(["POST",0,C],69878);var y=e.i(69878);let A=new t.AppRouteRouteModule({definition:{kind:r.RouteKind.APP_ROUTE,page:"/api/customer-imports/preview/route",pathname:"/api/customer-imports/preview",filename:"route",bundlePath:""},distDir:".next",relativeProjectDir:"",resolvedPagePath:"[project]/app/api/customer-imports/preview/route.ts",nextConfigOutput:"standalone",userland:y,...{}}),{workAsyncStorage:N,workUnitAsyncStorage:b,serverHooks:T}=A;async function P(e,t,a){a.requestMeta&&(0,n.setRequestMeta)(e,a.requestMeta),A.isDev&&(0,n.addRequestMeta)(e,"devRequestTimingInternalsEnd",process.hrtime.bigint());let w="/api/customer-imports/preview/route";w=w.replace(/\/index$/,"")||"/";let g=await A.prepare(e,t,{srcPage:w,multiZoneDraftMode:!1});if(!g)return t.statusCode=400,t.end("Bad Request"),null==a.waitUntil||a.waitUntil.call(a,Promise.resolve()),null;let{buildId:f,deploymentId:E,params:C,nextConfig:y,parsedUrl:N,isDraftMode:b,prerenderManifest:T,routerServerContext:P,isOnDemandRevalidate:_,revalidateOnlyGenerated:O,resolvedPathname:q,clientReferenceManifest:S,serverActionsManifest:k}=g,j=(0,o.normalizeAppPath)(w),U=!!(T.dynamicRoutes[j]||T.routes[q]),H=async()=>((null==P?void 0:P.render404)?await P.render404(e,t,N,!1):t.end("This page could not be found"),null);if(U&&!b){let e=!!T.routes[q],t=T.dynamicRoutes[j];if(t&&!1===t.fallback&&!e){if(y.adapterPath)return await H();throw new R.NoFallbackError}}let I=null;!U||A.isDev||b||(I="/index"===(I=q)?"/":I);let M=!0===A.isDev||!U,D=U&&!M;k&&S&&(0,i.setManifestsSingleton)({page:w,clientReferenceManifest:S,serverActionsManifest:k});let $=e.method||"GET",K=(0,s.getTracer)(),F=K.getActiveScopeSpan(),B=!!(null==P?void 0:P.isWrappedByNextServer),L=!!(0,n.getRequestMeta)(e,"minimalMode"),G=(0,n.getRequestMeta)(e,"incrementalCache")||await A.getIncrementalCache(e,y,T,L);null==G||G.resetRequestCache(),globalThis.__incrementalCache=G;let V={params:C,previewProps:T.preview,renderOpts:{experimental:{authInterrupts:!!y.experimental.authInterrupts},cacheComponents:!!y.cacheComponents,supportsDynamicResponse:M,incrementalCache:G,cacheLifeProfiles:y.cacheLife,waitUntil:a.waitUntil,onClose:e=>{t.on("close",e)},onAfterTaskError:void 0,onInstrumentationRequestError:(t,r,a,n)=>A.onRequestError(e,t,a,n,P)},sharedContext:{buildId:f,deploymentId:E}},W=new l.NodeNextRequest(e),X=new l.NodeNextResponse(t),z=d.NextRequestAdapter.fromNodeNextRequest(W,(0,d.signalFromNodeResponse)(t));try{let n,i=async e=>A.handle(z,V).finally(()=>{if(!e)return;e.setAttributes({"http.status_code":t.statusCode,"next.rsc":!1});let r=K.getRootSpanAttributes();if(!r)return;if(r.get("next.span_type")!==u.BaseServerSpan.handleRequest)return void console.warn(`Unexpected root span type '${r.get("next.span_type")}'. Please report this Next.js issue https://github.com/vercel/next.js`);let a=r.get("next.route");if(a){let t=`${$} ${a}`;e.setAttributes({"next.route":a,"http.route":a,"next.span_name":t}),e.updateName(t),n&&n!==e&&(n.setAttribute("http.route",a),n.updateName(t))}else e.updateName(`${$} ${w}`)}),o=async n=>{var s,o;let l=async({previousCacheEntry:r})=>{try{if(!L&&_&&O&&!r)return t.statusCode=404,t.setHeader("x-nextjs-cache","REVALIDATED"),t.end("This page could not be found"),null;let s=await i(n);e.fetchMetrics=V.renderOpts.fetchMetrics;let o=V.renderOpts.pendingWaitUntil;o&&a.waitUntil&&(a.waitUntil(o),o=void 0);let l=V.renderOpts.collectedTags;if(!U)return await (0,c.sendResponse)(W,X,s,V.renderOpts.pendingWaitUntil),null;{let e=await s.blob(),t=(0,h.toNodeOutgoingHttpHeaders)(s.headers);l&&(t[x.NEXT_CACHE_TAGS_HEADER]=l),!t["content-type"]&&e.type&&(t["content-type"]=e.type);let r=void 0!==V.renderOpts.collectedRevalidate&&!(V.renderOpts.collectedRevalidate>=x.INFINITE_CACHE)&&V.renderOpts.collectedRevalidate,a=void 0===V.renderOpts.collectedExpire||V.renderOpts.collectedExpire>=x.INFINITE_CACHE?void 0:V.renderOpts.collectedExpire;return{value:{kind:m.CachedRouteKind.APP_ROUTE,status:s.status,body:Buffer.from(await e.arrayBuffer()),headers:t},cacheControl:{revalidate:r,expire:a}}}}catch(t){throw(null==r?void 0:r.isStale)&&await A.onRequestError(e,t,{routerKind:"App Router",routePath:w,routeType:"route",revalidateReason:(0,p.getRevalidateReason)({isStaticGeneration:D,isOnDemandRevalidate:_})},!1,P),t}},d=await A.handleResponse({req:e,nextConfig:y,cacheKey:I,routeKind:r.RouteKind.APP_ROUTE,isFallback:!1,prerenderManifest:T,isRoutePPREnabled:!1,isOnDemandRevalidate:_,revalidateOnlyGenerated:O,responseGenerator:l,waitUntil:a.waitUntil,isMinimalMode:L});if(!U)return null;if((null==d||null==(s=d.value)?void 0:s.kind)!==m.CachedRouteKind.APP_ROUTE)throw Object.defineProperty(Error(`Invariant: app-route received invalid cache entry ${null==d||null==(o=d.value)?void 0:o.kind}`),"__NEXT_ERROR_CODE",{value:"E701",enumerable:!1,configurable:!0});L||t.setHeader("x-nextjs-cache",_?"REVALIDATED":d.isMiss?"MISS":d.isStale?"STALE":"HIT"),b&&t.setHeader("Cache-Control","private, no-cache, no-store, max-age=0, must-revalidate");let u=(0,h.fromNodeOutgoingHttpHeaders)(d.value.headers);return L&&U||u.delete(x.NEXT_CACHE_TAGS_HEADER),!d.cacheControl||t.getHeader("Cache-Control")||u.get("Cache-Control")||u.set("Cache-Control",(0,v.getCacheControlHeader)(d.cacheControl)),await (0,c.sendResponse)(W,X,new Response(d.value.body,{headers:u,status:d.value.status||200})),null};B&&F?await o(F):(n=K.getActiveScopeSpan(),await K.withPropagatedContext(e.headers,()=>K.trace(u.BaseServerSpan.handleRequest,{spanName:`${$} ${w}`,kind:s.SpanKind.SERVER,attributes:{"http.method":$,"http.target":e.url}},o),void 0,!B))}catch(t){if(t instanceof R.NoFallbackError||await A.onRequestError(e,t,{routerKind:"App Router",routePath:j,routeType:"route",revalidateReason:(0,p.getRevalidateReason)({isStaticGeneration:D,isOnDemandRevalidate:_})},!1,P),U)throw t;return await (0,c.sendResponse)(W,X,new Response(null,{status:500})),null}}e.s(["handler",0,P,"patchFetch",0,function(){return(0,a.patchFetch)({workAsyncStorage:N,workUnitAsyncStorage:b})},"routeModule",0,A,"serverHooks",0,T,"workAsyncStorage",0,N,"workUnitAsyncStorage",0,b],56452)}]; + +//# sourceMappingURL=%5Broot-of-the-server%5D__0r7ghc3._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/[root-of-the-server]__0r7ghc3._.js.map b/validation-suite/frontend/atlas/.next/server/chunks/[root-of-the-server]__0r7ghc3._.js.map new file mode 100644 index 00000000..a78b49d7 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/chunks/[root-of-the-server]__0r7ghc3._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../node_modules/next/dist/esm/build/templates/app-route.js","../../../app/api/customer-imports/preview/route.ts"],"sourcesContent":["import { AppRouteRouteModule } from \"next/dist/esm/server/route-modules/app-route/module.compiled\";\nimport { RouteKind } from \"next/dist/esm/server/route-kind\";\nimport { patchFetch as _patchFetch } from \"next/dist/esm/server/lib/patch-fetch\";\nimport { addRequestMeta, getRequestMeta, setRequestMeta } from \"next/dist/esm/server/request-meta\";\nimport { getTracer, SpanKind } from \"next/dist/esm/server/lib/trace/tracer\";\nimport { setManifestsSingleton } from \"next/dist/esm/server/app-render/manifests-singleton\";\nimport { normalizeAppPath } from \"next/dist/esm/shared/lib/router/utils/app-paths\";\nimport { NodeNextRequest, NodeNextResponse } from \"next/dist/esm/server/base-http/node\";\nimport { NextRequestAdapter, signalFromNodeResponse } from \"next/dist/esm/server/web/spec-extension/adapters/next-request\";\nimport { BaseServerSpan } from \"next/dist/esm/server/lib/trace/constants\";\nimport { getRevalidateReason } from \"next/dist/esm/server/instrumentation/utils\";\nimport { sendResponse } from \"next/dist/esm/server/send-response\";\nimport { fromNodeOutgoingHttpHeaders, toNodeOutgoingHttpHeaders } from \"next/dist/esm/server/web/utils\";\nimport { getCacheControlHeader } from \"next/dist/esm/server/lib/cache-control\";\nimport { INFINITE_CACHE, NEXT_CACHE_TAGS_HEADER } from \"next/dist/esm/lib/constants\";\nimport { NoFallbackError } from \"next/dist/esm/shared/lib/no-fallback-error.external\";\nimport { CachedRouteKind } from \"next/dist/esm/server/response-cache\";\nimport * as userland from \"INNER_APP_ROUTE\";\n// We inject the nextConfigOutput here so that we can use them in the route\n// module.\nconst nextConfigOutput = \"standalone\"\nconst routeModule = new AppRouteRouteModule({\n definition: {\n kind: RouteKind.APP_ROUTE,\n page: \"/api/customer-imports/preview/route\",\n pathname: \"/api/customer-imports/preview\",\n filename: \"route\",\n bundlePath: \"\"\n },\n distDir: process.env.__NEXT_RELATIVE_DIST_DIR || '',\n relativeProjectDir: process.env.__NEXT_RELATIVE_PROJECT_DIR || '',\n resolvedPagePath: \"[project]/app/api/customer-imports/preview/route.ts\",\n nextConfigOutput,\n // The static import is used for initialization (methods, dynamic, etc.).\n userland: userland,\n // In Turbopack dev mode, also provide a getter that calls require() on every\n // request. This re-reads from devModuleCache so HMR updates are picked up,\n // and the async wrapper unwraps async-module Promises (ESM-only\n // serverExternalPackages) automatically.\n ...process.env.TURBOPACK && process.env.__NEXT_DEV_SERVER ? {\n getUserland: ()=>import(\"INNER_APP_ROUTE\")\n } : {}\n});\n// Pull out the exports that we need to expose from the module. This should\n// be eliminated when we've moved the other routes to the new format. These\n// are used to hook into the route.\nconst { workAsyncStorage, workUnitAsyncStorage, serverHooks } = routeModule;\nfunction patchFetch() {\n return _patchFetch({\n workAsyncStorage,\n workUnitAsyncStorage\n });\n}\nexport { routeModule, workAsyncStorage, workUnitAsyncStorage, serverHooks, patchFetch, };\nexport async function handler(req, res, ctx) {\n if (ctx.requestMeta) {\n setRequestMeta(req, ctx.requestMeta);\n }\n if (routeModule.isDev) {\n addRequestMeta(req, 'devRequestTimingInternalsEnd', process.hrtime.bigint());\n }\n let srcPage = \"/api/customer-imports/preview/route\";\n // turbopack doesn't normalize `/index` in the page name\n // so we need to to process dynamic routes properly\n // TODO: fix turbopack providing differing value from webpack\n if (process.env.TURBOPACK) {\n srcPage = srcPage.replace(/\\/index$/, '') || '/';\n } else if (srcPage === '/index') {\n // we always normalize /index specifically\n srcPage = '/';\n }\n const multiZoneDraftMode = process.env.__NEXT_MULTI_ZONE_DRAFT_MODE;\n const prepareResult = await routeModule.prepare(req, res, {\n srcPage,\n multiZoneDraftMode\n });\n if (!prepareResult) {\n res.statusCode = 400;\n res.end('Bad Request');\n ctx.waitUntil == null ? void 0 : ctx.waitUntil.call(ctx, Promise.resolve());\n return null;\n }\n const { buildId, deploymentId, params, nextConfig, parsedUrl, isDraftMode, prerenderManifest, routerServerContext, isOnDemandRevalidate, revalidateOnlyGenerated, resolvedPathname, clientReferenceManifest, serverActionsManifest } = prepareResult;\n const normalizedSrcPage = normalizeAppPath(srcPage);\n let isIsr = Boolean(prerenderManifest.dynamicRoutes[normalizedSrcPage] || prerenderManifest.routes[resolvedPathname]);\n const render404 = async ()=>{\n // TODO: should route-module itself handle rendering the 404\n if (routerServerContext == null ? void 0 : routerServerContext.render404) {\n await routerServerContext.render404(req, res, parsedUrl, false);\n } else {\n res.end('This page could not be found');\n }\n return null;\n };\n if (isIsr && !isDraftMode) {\n const isPrerendered = Boolean(prerenderManifest.routes[resolvedPathname]);\n const prerenderInfo = prerenderManifest.dynamicRoutes[normalizedSrcPage];\n if (prerenderInfo) {\n if (prerenderInfo.fallback === false && !isPrerendered) {\n if (nextConfig.adapterPath) {\n return await render404();\n }\n throw new NoFallbackError();\n }\n }\n }\n let cacheKey = null;\n if (isIsr && !routeModule.isDev && !isDraftMode) {\n cacheKey = resolvedPathname;\n // ensure /index and / is normalized to one key\n cacheKey = cacheKey === '/index' ? '/' : cacheKey;\n }\n const supportsDynamicResponse = // If we're in development, we always support dynamic HTML\n routeModule.isDev === true || // If this is not SSG or does not have static paths, then it supports\n // dynamic HTML.\n !isIsr;\n // This is a revalidation request if the request is for a static\n // page and it is not being resumed from a postponed render and\n // it is not a dynamic RSC request then it is a revalidation\n // request.\n const isStaticGeneration = isIsr && !supportsDynamicResponse;\n // Before rendering (which initializes component tree modules), we have to\n // set the reference manifests to our global store so Server Action's\n // encryption util can access to them at the top level of the page module.\n if (serverActionsManifest && clientReferenceManifest) {\n setManifestsSingleton({\n page: srcPage,\n clientReferenceManifest,\n serverActionsManifest\n });\n }\n const method = req.method || 'GET';\n const tracer = getTracer();\n const activeSpan = tracer.getActiveScopeSpan();\n const isWrappedByNextServer = Boolean(routerServerContext == null ? void 0 : routerServerContext.isWrappedByNextServer);\n const isMinimalMode = Boolean(getRequestMeta(req, 'minimalMode'));\n const incrementalCache = getRequestMeta(req, 'incrementalCache') || await routeModule.getIncrementalCache(req, nextConfig, prerenderManifest, isMinimalMode);\n incrementalCache == null ? void 0 : incrementalCache.resetRequestCache();\n globalThis.__incrementalCache = incrementalCache;\n const context = {\n params,\n previewProps: prerenderManifest.preview,\n renderOpts: {\n experimental: {\n authInterrupts: Boolean(nextConfig.experimental.authInterrupts)\n },\n cacheComponents: Boolean(nextConfig.cacheComponents),\n supportsDynamicResponse,\n incrementalCache,\n cacheLifeProfiles: nextConfig.cacheLife,\n waitUntil: ctx.waitUntil,\n onClose: (cb)=>{\n res.on('close', cb);\n },\n onAfterTaskError: undefined,\n onInstrumentationRequestError: (error, _request, errorContext, silenceLog)=>routeModule.onRequestError(req, error, errorContext, silenceLog, routerServerContext)\n },\n sharedContext: {\n buildId,\n deploymentId\n }\n };\n const nodeNextReq = new NodeNextRequest(req);\n const nodeNextRes = new NodeNextResponse(res);\n const nextReq = NextRequestAdapter.fromNodeNextRequest(nodeNextReq, signalFromNodeResponse(res));\n try {\n let parentSpan;\n const invokeRouteModule = async (span)=>{\n return routeModule.handle(nextReq, context).finally(()=>{\n if (!span) return;\n span.setAttributes({\n 'http.status_code': res.statusCode,\n 'next.rsc': false\n });\n const rootSpanAttributes = tracer.getRootSpanAttributes();\n // We were unable to get attributes, probably OTEL is not enabled\n if (!rootSpanAttributes) {\n return;\n }\n if (rootSpanAttributes.get('next.span_type') !== BaseServerSpan.handleRequest) {\n console.warn(`Unexpected root span type '${rootSpanAttributes.get('next.span_type')}'. Please report this Next.js issue https://github.com/vercel/next.js`);\n return;\n }\n const route = rootSpanAttributes.get('next.route');\n if (route) {\n const name = `${method} ${route}`;\n span.setAttributes({\n 'next.route': route,\n 'http.route': route,\n 'next.span_name': name\n });\n span.updateName(name);\n // Propagate http.route to the parent span if one exists (e.g.\n // a platform-created HTTP span in adapter deployments).\n if (parentSpan && parentSpan !== span) {\n parentSpan.setAttribute('http.route', route);\n parentSpan.updateName(name);\n }\n } else {\n span.updateName(`${method} ${srcPage}`);\n }\n });\n };\n const handleResponse = async (currentSpan)=>{\n var _cacheEntry_value;\n const responseGenerator = async ({ previousCacheEntry })=>{\n try {\n if (!isMinimalMode && isOnDemandRevalidate && revalidateOnlyGenerated && !previousCacheEntry) {\n res.statusCode = 404;\n // on-demand revalidate always sets this header\n res.setHeader('x-nextjs-cache', 'REVALIDATED');\n res.end('This page could not be found');\n return null;\n }\n const response = await invokeRouteModule(currentSpan);\n req.fetchMetrics = context.renderOpts.fetchMetrics;\n let pendingWaitUntil = context.renderOpts.pendingWaitUntil;\n // Attempt using provided waitUntil if available\n // if it's not we fallback to sendResponse's handling\n if (pendingWaitUntil) {\n if (ctx.waitUntil) {\n ctx.waitUntil(pendingWaitUntil);\n pendingWaitUntil = undefined;\n }\n }\n const cacheTags = context.renderOpts.collectedTags;\n // If the request is for a static response, we can cache it so long\n // as it's not edge.\n if (isIsr) {\n const blob = await response.blob();\n // Copy the headers from the response.\n const headers = toNodeOutgoingHttpHeaders(response.headers);\n if (cacheTags) {\n headers[NEXT_CACHE_TAGS_HEADER] = cacheTags;\n }\n if (!headers['content-type'] && blob.type) {\n headers['content-type'] = blob.type;\n }\n const revalidate = typeof context.renderOpts.collectedRevalidate === 'undefined' || context.renderOpts.collectedRevalidate >= INFINITE_CACHE ? false : context.renderOpts.collectedRevalidate;\n const expire = typeof context.renderOpts.collectedExpire === 'undefined' || context.renderOpts.collectedExpire >= INFINITE_CACHE ? undefined : context.renderOpts.collectedExpire;\n // Create the cache entry for the response.\n const cacheEntry = {\n value: {\n kind: CachedRouteKind.APP_ROUTE,\n status: response.status,\n body: Buffer.from(await blob.arrayBuffer()),\n headers\n },\n cacheControl: {\n revalidate,\n expire\n }\n };\n return cacheEntry;\n } else {\n // send response without caching if not ISR\n await sendResponse(nodeNextReq, nodeNextRes, response, context.renderOpts.pendingWaitUntil);\n return null;\n }\n } catch (err) {\n // if this is a background revalidate we need to report\n // the request error here as it won't be bubbled\n if (previousCacheEntry == null ? void 0 : previousCacheEntry.isStale) {\n const silenceLog = false;\n await routeModule.onRequestError(req, err, {\n routerKind: 'App Router',\n routePath: srcPage,\n routeType: 'route',\n revalidateReason: getRevalidateReason({\n isStaticGeneration,\n isOnDemandRevalidate\n })\n }, silenceLog, routerServerContext);\n }\n throw err;\n }\n };\n const cacheEntry = await routeModule.handleResponse({\n req,\n nextConfig,\n cacheKey,\n routeKind: RouteKind.APP_ROUTE,\n isFallback: false,\n prerenderManifest,\n isRoutePPREnabled: false,\n isOnDemandRevalidate,\n revalidateOnlyGenerated,\n responseGenerator,\n waitUntil: ctx.waitUntil,\n isMinimalMode\n });\n // we don't create a cacheEntry for ISR\n if (!isIsr) {\n return null;\n }\n if ((cacheEntry == null ? void 0 : (_cacheEntry_value = cacheEntry.value) == null ? void 0 : _cacheEntry_value.kind) !== CachedRouteKind.APP_ROUTE) {\n var _cacheEntry_value1;\n throw Object.defineProperty(new Error(`Invariant: app-route received invalid cache entry ${cacheEntry == null ? void 0 : (_cacheEntry_value1 = cacheEntry.value) == null ? void 0 : _cacheEntry_value1.kind}`), \"__NEXT_ERROR_CODE\", {\n value: \"E701\",\n enumerable: false,\n configurable: true\n });\n }\n if (!isMinimalMode) {\n res.setHeader('x-nextjs-cache', isOnDemandRevalidate ? 'REVALIDATED' : cacheEntry.isMiss ? 'MISS' : cacheEntry.isStale ? 'STALE' : 'HIT');\n }\n // Draft mode should never be cached\n if (isDraftMode) {\n res.setHeader('Cache-Control', 'private, no-cache, no-store, max-age=0, must-revalidate');\n }\n const headers = fromNodeOutgoingHttpHeaders(cacheEntry.value.headers);\n if (!(isMinimalMode && isIsr)) {\n headers.delete(NEXT_CACHE_TAGS_HEADER);\n }\n // If cache control is already set on the response we don't\n // override it to allow users to customize it via next.config\n if (cacheEntry.cacheControl && !res.getHeader('Cache-Control') && !headers.get('Cache-Control')) {\n headers.set('Cache-Control', getCacheControlHeader(cacheEntry.cacheControl));\n }\n await sendResponse(nodeNextReq, nodeNextRes, // @ts-expect-error - Argument of type 'Buffer' is not assignable to parameter of type 'BodyInit | null | undefined'.\n new Response(cacheEntry.value.body, {\n headers,\n status: cacheEntry.value.status || 200\n }));\n return null;\n };\n // TODO: activeSpan code path is for when wrapped by\n // next-server can be removed when this is no longer used\n if (isWrappedByNextServer && activeSpan) {\n await handleResponse(activeSpan);\n } else {\n parentSpan = tracer.getActiveScopeSpan();\n await tracer.withPropagatedContext(req.headers, ()=>tracer.trace(BaseServerSpan.handleRequest, {\n spanName: `${method} ${srcPage}`,\n kind: SpanKind.SERVER,\n attributes: {\n 'http.method': method,\n 'http.target': req.url\n }\n }, handleResponse), undefined, !isWrappedByNextServer);\n }\n } catch (err) {\n if (!(err instanceof NoFallbackError)) {\n const silenceLog = false;\n await routeModule.onRequestError(req, err, {\n routerKind: 'App Router',\n routePath: normalizedSrcPage,\n routeType: 'route',\n revalidateReason: getRevalidateReason({\n isStaticGeneration,\n isOnDemandRevalidate\n })\n }, silenceLog, routerServerContext);\n }\n // rethrow so that we can handle serving error page\n // If this is during static generation, throw the error again.\n if (isIsr) throw err;\n // Otherwise, send a 500 response.\n await sendResponse(nodeNextReq, nodeNextRes, new Response(null, {\n status: 500\n }));\n return null;\n }\n}\n\n//# sourceMappingURL=app-route.js.map\n","import { cookies } from \"next/headers\";\nimport { NextRequest, NextResponse } from \"next/server\";\nimport { AUTH_COOKIE_NAME } from \"@/lib/auth\";\n\nconst mercuryBase = `${process.env.MERCURY_INTERNAL_URL ?? \"http://mercury-api:8000\"}/api/v1`;\n\nexport async function POST(request: NextRequest) {\n const cookieStore = await cookies();\n const token = cookieStore.get(AUTH_COOKIE_NAME)?.value;\n if (!token) {\n return NextResponse.json({ detail: \"Not authenticated\" }, { status: 401 });\n }\n const response = await fetch(`${mercuryBase}/customer-imports/preview`, {\n method: \"POST\",\n headers: { Authorization: `Bearer ${token}` },\n body: await request.formData(),\n cache: \"no-store\"\n });\n const data = await response.json();\n return NextResponse.json(data, { status: response.status });\n}\n"],"names":["mercuryBase","process","env","MERCURY_INTERNAL_URL","POST","request","cookieStore","token","get","value","json","detail","status","response","fetch","method","headers","Authorization","body","formData","cache","data"],"mappings":"m/BAAA,IAAA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,CAAA,CAAA,OAAA,IAAA,EAAA,EAAA,CAAA,CAAA,KChBA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OAEA,IAAMA,EAAc,CAAA,EAAGC,QAAQC,GAAG,CAACC,oBAAoB,EAAI,0BAA0B,OAAO,CAAC,CAEtF,eAAeC,EAAKC,CAAoB,EAC7C,IAAMC,EAAc,MAAM,CAAA,EAAA,EAAA,OAAA,AAAO,IAC3BC,EAAQD,EAAYE,GAAG,CAAC,EAAA,gBAAgB,GAAGC,MACjD,GAAI,CAACF,EACH,KADU,EACH,EAAA,YAAY,CAACG,IAAI,CAAC,CAAEC,OAAQ,mBAAoB,EAAG,CAAEC,OAAQ,GAAI,GAE1E,IAAMC,EAAW,MAAMC,MAAM,CAAA,EAAGd,EAAY,yBAAyB,CAAC,CAAE,CACtEe,OAAQ,OACRC,QAAS,CAAEC,cAAe,CAAC,OAAO,EAAEV,EAAAA,CAAO,AAAC,EAC5CW,KAAM,MAAMb,EAAQc,QAAQ,GAC5BC,MAAO,UACT,GACMC,EAAO,MAAMR,EAASH,IAAI,GAChC,OAAO,EAAA,YAAY,CAACA,IAAI,CAACW,EAAM,CAAET,OAAQC,EAASD,MAAM,AAAC,EAC3D,yBDHA,IAAA,EAAA,EAAA,CAAA,CAAA,OAIA,IAAM,EAAc,IAAI,EAAA,mBAAmB,CAAC,CACxC,WAAY,CACR,KAAM,EAAA,SAAS,CAAC,SAAS,CACzB,KAAM,sCACN,SAAU,gCACV,SAAU,QACV,WAAY,EAChB,EACA,QAAS,CAAA,OACT,IADiD,eACc,CAA3C,EACpB,iBAAkB,sDAClB,iBAZqB,aAcrB,SAAU,EAKV,GAAG,AAEC,CAAC,CAAC,AACV,GAIM,kBAAE,CAAgB,cAPwC,QAOtC,CAAoB,aAAE,CAAW,CAAE,CAAG,EAQzD,eAAe,EAAQ,CAAG,CAAE,CAAG,CAAE,CAAG,EACnC,EAAI,WAAW,EAAE,AACjB,CAAA,EAAA,EAAA,cAAA,AAAc,EAAC,EAAK,EAAI,WAAW,EAEnC,EAAY,KAAK,EAAE,AACnB,CAAA,EAAA,EAAA,cAAA,AAAc,EAAC,EAAK,+BAAgC,QAAQ,MAAM,CAAC,MAAM,IAE7E,IAAI,EAAU,sCAKV,EAAU,EAAQ,OAAO,CAAC,WAAY,KAAO,IAMjD,IAAM,EAAgB,MAAM,EAAY,OAAO,CAAC,EAAK,EAAK,SACtD,EACA,mBAHE,CAAA,CAIN,GACA,GAAI,CAAC,EAID,OAHA,EAAI,IADY,MACF,CAAG,IACjB,EAAI,GAAG,CAAC,eACR,AAAiB,OAAO,CAApB,IAAyB,KAAhB,EAAoB,EAAI,SAAS,CAAC,IAAI,CAAC,EAAK,QAAQ,OAAO,IACjE,KAEX,GAAM,SAAE,CAAO,cAAE,CAAY,QAAE,CAAM,YAAE,CAAU,WAAE,CAAS,aAAE,CAAW,mBAAE,CAAiB,qBAAE,CAAmB,sBAAE,CAAoB,yBAAE,CAAuB,kBAAE,CAAgB,yBAAE,CAAuB,uBAAE,CAAqB,CAAE,CAAG,EACjO,EAAoB,CAAA,EAAA,EAAA,gBAAA,AAAgB,EAAC,GACvC,GAAQ,EAAQ,EAAkB,aAAa,CAAC,EAAkB,EAAI,EAAkB,MAAM,CAAC,EAAA,AAAiB,EAC9G,EAAY,UAEV,CAAuB,QAAO,KAAK,EAAI,EAAoB,SAAA,AAAS,EAAE,AACtE,MAAM,EAAoB,SAAS,CAAC,EAAK,EAAK,GAAW,GAEzD,EAAI,GAAG,CAAC,gCAEL,MAEX,GAAI,GAAS,CAAC,EAAa,CACvB,IAAM,GAAgB,CAAQ,EAAkB,MAAM,CAAC,EAAiB,CAClE,EAAgB,EAAkB,aAAa,CAAC,EAAkB,CACxE,GAAI,IAC+B,IAA3B,EAAc,KADH,GACW,EAAc,CAAC,EAAe,CACpD,GAAI,EAAW,WAAW,CACtB,CADwB,MACjB,MAAM,GAEjB,OAAM,IAAI,EAAA,eAAe,AAC7B,CAER,CACA,IAAI,EAAW,MACX,GAAU,EAAY,IAAb,CAAkB,EAAK,EAAD,EAG/B,EAAW,AAAa,OAHqB,KAC7C,EAAW,CAAA,EAEwB,IAAM,CAAA,EAE7C,IAAM,EACgB,AAAtB,OAAY,CAAkB,IAAb,EAEjB,CAAC,EAKK,EAAqB,GAAS,CAAC,EAIjC,GAAyB,GACzB,CAAA,EAAA,EAAA,iBADkD,IAC7B,AAArB,EAAsB,CAClB,KAAM,YAbqF,cAc3F,EACA,uBACJ,GAEJ,IAAM,EAAS,EAAI,MAAM,EAAI,MACvB,EAAS,CAAA,EAAA,EAAA,SAAA,AAAS,IAClB,EAAa,EAAO,kBAAkB,GACtC,GAAwB,CAAQ,CAAuB,QAAO,KAAK,EAAI,EAAoB,qBAAA,AAAqB,EAChH,GAAgB,CAAQ,CAAA,EAAA,EAAA,cAAA,AAAc,EAAC,EAAK,eAC5C,EAAmB,CAAA,EAAA,EAAA,cAAA,AAAc,EAAC,EAAK,qBAAuB,MAAM,EAAY,mBAAmB,CAAC,EAAK,EAAY,EAAmB,EAC9I,AAAoB,OAAO,GAAS,EAAJ,AAAqB,iBAAiB,GACtE,WAAW,kBAAkB,CAAG,EAChC,IAAM,EAAU,CACZ,SACA,aAAc,EAAkB,OAAO,CACvC,WAAY,CACR,aAAc,CACV,gBAAgB,CAAQ,EAAW,YAAY,CAAC,cAAc,AAClE,EACA,iBAAiB,CAAQ,EAAW,eAAe,yBACnD,mBACA,EACA,kBAAmB,EAAW,SAAS,CACvC,UAAW,EAAI,SAAS,CACxB,QAAU,AAAD,IACL,EAAI,EAAE,CAAC,QAAS,EACpB,EACA,sBAAkB,EAClB,8BAA+B,CAAC,EAAO,EAAU,EAAc,IAAa,EAAY,cAAc,CAAC,EAAK,EAAO,EAAc,EAAY,EACjJ,EACA,cAAe,CACX,uBACA,CACJ,CACJ,EACM,EAAc,IAAI,EAAA,eAAe,CAAC,GAClC,EAAc,IAAI,EAAA,gBAAgB,CAAC,GACnC,EAAU,EAAA,kBAAkB,CAAC,mBAAmB,CAAC,EAAa,CAAA,EAAA,EAAA,sBAAA,AAAsB,EAAC,IAC3F,GAAI,CAEA,IADI,EACE,EAAoB,MAAO,GACtB,EAAY,MAAM,CAAC,EAAS,GAAS,OAAO,CAAC,KAChD,GAAI,CAAC,EAAM,OACX,EAAK,aAAa,CAAC,CACf,mBAAoB,EAAI,UAAU,CAClC,WAAY,EAChB,GACA,IAAM,EAAqB,EAAO,qBAAqB,GAEvD,GAAI,CAAC,EACD,OAEJ,GAAI,EAAmB,GAAG,CAAC,EAHF,kBAGwB,EAAA,cAAc,CAAC,aAAa,CAAE,YAC3E,QAAQ,IAAI,CAAC,CAAC,2BAA2B,EAAE,EAAmB,GAAG,CAAC,kBAAkB,qEAAqE,CAAC,EAG9J,IAAM,EAAQ,EAAmB,GAAG,CAAC,cACrC,GAAI,EAAO,CACP,IAAM,EAAO,CAAA,EAAG,EAAO,CAAC,EAAE,EAAA,CAAO,CACjC,EAAK,aAAa,CAAC,CACf,aAAc,EACd,aAAc,EACd,iBAAkB,CACtB,GACA,EAAK,UAAU,CAAC,GAGZ,GAAc,IAAe,IAC7B,EADmC,AACxB,YAAY,CAAC,aAAc,GACtC,EAAW,UAAU,CAAC,GAE9B,MACI,CADG,CACE,UAAU,CAAC,CAAA,EAAG,EAAO,CAAC,EAAE,EAAA,CAAS,CAE9C,GAEE,EAAiB,MAAO,QACtB,EA4FI,EA3FR,IAAM,EAAoB,MAAO,oBAAE,CAAkB,CAAE,IACnD,GAAI,CACA,GAAI,CAAC,GAAiB,GAAwB,GAA2B,CAAC,EAKtE,OAJA,EAAI,SADsF,CAC5E,CAAG,IAEjB,EAAI,SAAS,CAAC,iBAAkB,eAChC,EAAI,GAAG,CAAC,gCACD,KAEX,IAAM,EAAW,MAAM,EAAkB,GACzC,EAAI,YAAY,CAAG,EAAQ,UAAU,CAAC,YAAY,CAClD,IAAI,EAAmB,EAAQ,UAAU,CAAC,gBAAgB,CAGtD,GACI,EAAI,SAAS,EAAE,CACf,CAFc,CAEV,SAAS,CAAC,GACd,OAAmB,GAG3B,IAAM,EAAY,EAAQ,UAAU,CAAC,aAAa,CAGlD,IAAI,EA6BA,OADA,MAAM,CAAA,EAAA,EAAA,YAAA,AAAY,EAAC,EAAa,EAAa,EAAU,EAAQ,UAAU,CAAC,gBAAgB,EACnF,IA7BA,EACP,IAAM,EAAO,MAAM,EAAS,IAAI,GAE1B,EAAU,CAAA,EAAA,EAAA,yBAAA,AAAyB,EAAC,EAAS,OAAO,EACtD,IACA,CAAO,CAAC,EAAA,GADG,mBACmB,CAAC,CAAG,CAAA,EAElC,CAAC,CAAO,CAAC,eAAe,EAAI,EAAK,IAAI,EAAE,CACvC,CAAO,CAAC,eAAe,CAAG,EAAK,IAAA,AAAI,EAEvC,IAAM,EAAa,AAAkD,SAA3C,EAAQ,UAAU,CAAC,mBAAmB,IAAoB,EAAQ,UAAU,CAAC,mBAAmB,EAAI,EAAA,cAAA,AAAc,GAAG,AAAQ,EAAQ,UAAU,CAAC,mBAAmB,CACvL,EAAS,KAA8C,IAAvC,EAAQ,UAAU,CAAC,eAAe,EAAoB,EAAQ,UAAU,CAAC,eAAe,EAAI,EAAA,cAAc,MAAG,EAAY,EAAQ,UAAU,CAAC,eAAe,CAcjL,MAZmB,CAYZ,AAXH,MAAO,CACH,KAAM,EAAA,eAAe,CAAC,SAAS,CAC/B,OAAQ,EAAS,MAAM,CACvB,KAAM,OAAO,IAAI,CAAC,MAAM,EAAK,WAAW,YACxC,CACJ,EACA,aAAc,YACV,SACA,CACJ,CACJ,CAEJ,CAKJ,CAAE,KALS,CAKF,EAAK,CAeV,MAZ0B,MAAtB,EAA6B,KAAK,EAAI,EAAmB,OAAA,AAAO,EAAE,CAElE,MAAM,EAAY,cAAc,CAAC,EAAK,EAAK,CACvC,WAAY,aACZ,UAAW,EACX,UAAW,QACX,iBAAkB,CAAA,EAAA,EAAA,mBAAA,AAAmB,EAAC,oBAClC,uBACA,CACJ,EACJ,GAAG,AATgB,EASJ,GAEb,CACV,CACJ,EACM,EAAa,MAAM,EAAY,cAAc,CAAC,KAChD,EACA,sBACA,EACA,UAAW,EAAA,SAAS,CAAC,SAAS,CAC9B,YAAY,oBACZ,EACA,kBAAmB,wBACnB,EACA,4CACA,EACA,UAAW,EAAI,SAAS,eACxB,CACJ,GAEA,GAAI,CAAC,EACD,KADQ,EACD,KAEX,GAAI,CAAe,MAAd,CAAqB,EAAS,AAA0C,GAA9C,IAAK,EAAoB,EAAW,KAAK,AAAL,EAAiB,KAAK,EAAI,EAAkB,IAAI,IAAM,EAAA,eAAe,CAAC,SAAS,CAE9I,CAFgJ,KAE1I,OAAO,cAAc,CAAC,AAAI,MAAM,CAAC,kDAAkD,EAAgB,MAAd,CAAqB,EAAS,AAA2C,GAA/C,IAAK,EAAqB,EAAW,KAAA,AAAK,EAAY,KAAK,EAAI,EAAmB,IAAI,CAAA,CAAE,EAAG,oBAAqB,CACjO,MAAO,OACP,YAAY,EACZ,cAAc,CAClB,EAEA,CAAC,GACD,EAAI,SAAS,CADG,AACF,iBAAkB,EAAuB,cAAgB,EAAW,MAAM,CAAG,OAAS,EAAW,OAAO,CAAG,QAAU,OAGnI,GACA,EAAI,QADS,CACA,CAAC,gBAAiB,2DAEnC,IAAM,EAAU,CAAA,EAAA,EAAA,2BAAA,AAA2B,EAAC,EAAW,KAAK,CAAC,OAAO,EAcpE,OAbI,AAAE,CAAD,EAAkB,GACnB,EADwB,AAChB,GADmB,GACb,CAAC,EAAA,sBAAsB,GAIrC,EAAW,YAAY,EAAK,EAAD,AAAK,SAAS,CAAC,kBAAqB,EAAD,AAAS,GAAG,CAAC,kBAAkB,AAC7F,EAAQ,GAAG,CAAC,gBAAiB,CAAA,EAAA,EAAA,qBAAA,AAAqB,EAAC,EAAW,YAAY,GAE9E,MAAM,CAAA,EAAA,EAAA,YAAA,AAAY,EAAC,EAAa,EAChC,IAAI,SAAS,EAAW,KAAK,CAAC,IAAI,CAAE,SAChC,EACA,OAAQ,EAAW,KAAK,CAAC,MAAM,EAAI,GACvC,IACO,IACX,EAGI,GAAyB,EACzB,MAAM,EAAe,EADgB,EAGrC,EAAa,EAAO,kBAAkB,GACtC,MAAM,EAAO,qBAAqB,CAAC,EAAI,OAAO,CAAE,IAAI,EAAO,KAAK,CAAC,EAAA,cAAc,CAAC,aAAa,CAAE,CACvF,SAAU,CAAA,EAAG,EAAO,CAAC,EAAE,EAAA,CAAS,CAChC,KAAM,EAAA,QAAQ,CAAC,MAAM,CACrB,WAAY,CACR,cAAe,EACf,cAAe,EAAI,GAAG,AAC1B,CACJ,EAAG,GAAiB,OAAW,CAAC,GAE5C,CAAE,MAAO,EAAK,CAeV,GAdM,aAAe,EAAA,eAAe,EAEhC,CAFmC,KAE7B,EAAY,cAAc,CAAC,EAAK,EAAK,CACvC,WAAY,aACZ,UAAW,EACX,UAAW,QACX,iBAAkB,CAAA,EAAA,EAAA,mBAAA,AAAmB,EAAC,oBAClC,uBACA,CACJ,EACJ,GATmB,AAShB,EAAY,GAIf,EAAO,MAAM,EAKjB,OAHA,MAAM,CAAA,EAAA,EAAA,YAAA,AAAY,EAAC,EAAa,EAAa,IAAI,SAAS,KAAM,CAC5D,OAAQ,GACZ,IACO,IACX,CACJ,mCA5TA,SAAS,EACL,MAAO,CAAA,EAAA,EAAA,UAAA,AAAW,EAAC,kBACf,uBACA,CACJ,EACJ","ignoreList":[0]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/[root-of-the-server]__1cid3cf._.js b/validation-suite/frontend/atlas/.next/server/chunks/[root-of-the-server]__1cid3cf._.js new file mode 100644 index 00000000..6d16bef9 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/chunks/[root-of-the-server]__1cid3cf._.js @@ -0,0 +1,3 @@ +module.exports=[93695,(e,t,r)=>{t.exports=e.x("next/dist/shared/lib/no-fallback-error.external.js",()=>require("next/dist/shared/lib/no-fallback-error.external.js"))},18622,(e,t,r)=>{t.exports=e.x("next/dist/compiled/next-server/app-page-turbo.runtime.prod.js",()=>require("next/dist/compiled/next-server/app-page-turbo.runtime.prod.js"))},56704,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/work-async-storage.external.js",()=>require("next/dist/server/app-render/work-async-storage.external.js"))},32319,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/work-unit-async-storage.external.js",()=>require("next/dist/server/app-render/work-unit-async-storage.external.js"))},24725,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/after-task-async-storage.external.js",()=>require("next/dist/server/app-render/after-task-async-storage.external.js"))},70406,(e,t,r)=>{t.exports=e.x("next/dist/compiled/@opentelemetry/api",()=>require("next/dist/compiled/@opentelemetry/api"))},40833,e=>{"use strict";var t=e.i(47909),r=e.i(74017),a=e.i(96250),n=e.i(59756),s=e.i(61916),o=e.i(74677),i=e.i(69741),l=e.i(16795),d=e.i(87718),u=e.i(95169),p=e.i(47587),c=e.i(66012),h=e.i(70101),x=e.i(26937),R=e.i(10372),v=e.i(93695);e.i(52474);var m=e.i(220),f=e.i(93458),g=e.i(89171),w=e.i(68105);let E=`${process.env.MERCURY_INTERNAL_URL??"http://mercury-api:8000"}/api/v1`;async function C(e){let t=await (0,f.cookies)(),r=t.get(w.AUTH_COOKIE_NAME)?.value;if(!r)return g.NextResponse.json({detail:"Not authenticated"},{status:401});let a=await fetch(`${E}/customer-imports/confirm`,{method:"POST",headers:{Authorization:`Bearer ${r}`},body:await e.formData(),cache:"no-store"}),n=await a.json();return g.NextResponse.json(n,{status:a.status})}e.s(["POST",0,C],87142);var y=e.i(87142);let A=new t.AppRouteRouteModule({definition:{kind:r.RouteKind.APP_ROUTE,page:"/api/customer-imports/confirm/route",pathname:"/api/customer-imports/confirm",filename:"route",bundlePath:""},distDir:".next",relativeProjectDir:"",resolvedPagePath:"[project]/app/api/customer-imports/confirm/route.ts",nextConfigOutput:"standalone",userland:y,...{}}),{workAsyncStorage:N,workUnitAsyncStorage:b,serverHooks:T}=A;async function P(e,t,a){a.requestMeta&&(0,n.setRequestMeta)(e,a.requestMeta),A.isDev&&(0,n.addRequestMeta)(e,"devRequestTimingInternalsEnd",process.hrtime.bigint());let f="/api/customer-imports/confirm/route";f=f.replace(/\/index$/,"")||"/";let g=await A.prepare(e,t,{srcPage:f,multiZoneDraftMode:!1});if(!g)return t.statusCode=400,t.end("Bad Request"),null==a.waitUntil||a.waitUntil.call(a,Promise.resolve()),null;let{buildId:w,deploymentId:E,params:C,nextConfig:y,parsedUrl:N,isDraftMode:b,prerenderManifest:T,routerServerContext:P,isOnDemandRevalidate:_,revalidateOnlyGenerated:O,resolvedPathname:q,clientReferenceManifest:S,serverActionsManifest:k}=g,j=(0,i.normalizeAppPath)(f),U=!!(T.dynamicRoutes[j]||T.routes[q]),H=async()=>((null==P?void 0:P.render404)?await P.render404(e,t,N,!1):t.end("This page could not be found"),null);if(U&&!b){let e=!!T.routes[q],t=T.dynamicRoutes[j];if(t&&!1===t.fallback&&!e){if(y.adapterPath)return await H();throw new v.NoFallbackError}}let I=null;!U||A.isDev||b||(I="/index"===(I=q)?"/":I);let M=!0===A.isDev||!U,D=U&&!M;k&&S&&(0,o.setManifestsSingleton)({page:f,clientReferenceManifest:S,serverActionsManifest:k});let $=e.method||"GET",K=(0,s.getTracer)(),F=K.getActiveScopeSpan(),B=!!(null==P?void 0:P.isWrappedByNextServer),L=!!(0,n.getRequestMeta)(e,"minimalMode"),G=(0,n.getRequestMeta)(e,"incrementalCache")||await A.getIncrementalCache(e,y,T,L);null==G||G.resetRequestCache(),globalThis.__incrementalCache=G;let V={params:C,previewProps:T.preview,renderOpts:{experimental:{authInterrupts:!!y.experimental.authInterrupts},cacheComponents:!!y.cacheComponents,supportsDynamicResponse:M,incrementalCache:G,cacheLifeProfiles:y.cacheLife,waitUntil:a.waitUntil,onClose:e=>{t.on("close",e)},onAfterTaskError:void 0,onInstrumentationRequestError:(t,r,a,n)=>A.onRequestError(e,t,a,n,P)},sharedContext:{buildId:w,deploymentId:E}},W=new l.NodeNextRequest(e),X=new l.NodeNextResponse(t),z=d.NextRequestAdapter.fromNodeNextRequest(W,(0,d.signalFromNodeResponse)(t));try{let n,o=async e=>A.handle(z,V).finally(()=>{if(!e)return;e.setAttributes({"http.status_code":t.statusCode,"next.rsc":!1});let r=K.getRootSpanAttributes();if(!r)return;if(r.get("next.span_type")!==u.BaseServerSpan.handleRequest)return void console.warn(`Unexpected root span type '${r.get("next.span_type")}'. Please report this Next.js issue https://github.com/vercel/next.js`);let a=r.get("next.route");if(a){let t=`${$} ${a}`;e.setAttributes({"next.route":a,"http.route":a,"next.span_name":t}),e.updateName(t),n&&n!==e&&(n.setAttribute("http.route",a),n.updateName(t))}else e.updateName(`${$} ${f}`)}),i=async n=>{var s,i;let l=async({previousCacheEntry:r})=>{try{if(!L&&_&&O&&!r)return t.statusCode=404,t.setHeader("x-nextjs-cache","REVALIDATED"),t.end("This page could not be found"),null;let s=await o(n);e.fetchMetrics=V.renderOpts.fetchMetrics;let i=V.renderOpts.pendingWaitUntil;i&&a.waitUntil&&(a.waitUntil(i),i=void 0);let l=V.renderOpts.collectedTags;if(!U)return await (0,c.sendResponse)(W,X,s,V.renderOpts.pendingWaitUntil),null;{let e=await s.blob(),t=(0,h.toNodeOutgoingHttpHeaders)(s.headers);l&&(t[R.NEXT_CACHE_TAGS_HEADER]=l),!t["content-type"]&&e.type&&(t["content-type"]=e.type);let r=void 0!==V.renderOpts.collectedRevalidate&&!(V.renderOpts.collectedRevalidate>=R.INFINITE_CACHE)&&V.renderOpts.collectedRevalidate,a=void 0===V.renderOpts.collectedExpire||V.renderOpts.collectedExpire>=R.INFINITE_CACHE?void 0:V.renderOpts.collectedExpire;return{value:{kind:m.CachedRouteKind.APP_ROUTE,status:s.status,body:Buffer.from(await e.arrayBuffer()),headers:t},cacheControl:{revalidate:r,expire:a}}}}catch(t){throw(null==r?void 0:r.isStale)&&await A.onRequestError(e,t,{routerKind:"App Router",routePath:f,routeType:"route",revalidateReason:(0,p.getRevalidateReason)({isStaticGeneration:D,isOnDemandRevalidate:_})},!1,P),t}},d=await A.handleResponse({req:e,nextConfig:y,cacheKey:I,routeKind:r.RouteKind.APP_ROUTE,isFallback:!1,prerenderManifest:T,isRoutePPREnabled:!1,isOnDemandRevalidate:_,revalidateOnlyGenerated:O,responseGenerator:l,waitUntil:a.waitUntil,isMinimalMode:L});if(!U)return null;if((null==d||null==(s=d.value)?void 0:s.kind)!==m.CachedRouteKind.APP_ROUTE)throw Object.defineProperty(Error(`Invariant: app-route received invalid cache entry ${null==d||null==(i=d.value)?void 0:i.kind}`),"__NEXT_ERROR_CODE",{value:"E701",enumerable:!1,configurable:!0});L||t.setHeader("x-nextjs-cache",_?"REVALIDATED":d.isMiss?"MISS":d.isStale?"STALE":"HIT"),b&&t.setHeader("Cache-Control","private, no-cache, no-store, max-age=0, must-revalidate");let u=(0,h.fromNodeOutgoingHttpHeaders)(d.value.headers);return L&&U||u.delete(R.NEXT_CACHE_TAGS_HEADER),!d.cacheControl||t.getHeader("Cache-Control")||u.get("Cache-Control")||u.set("Cache-Control",(0,x.getCacheControlHeader)(d.cacheControl)),await (0,c.sendResponse)(W,X,new Response(d.value.body,{headers:u,status:d.value.status||200})),null};B&&F?await i(F):(n=K.getActiveScopeSpan(),await K.withPropagatedContext(e.headers,()=>K.trace(u.BaseServerSpan.handleRequest,{spanName:`${$} ${f}`,kind:s.SpanKind.SERVER,attributes:{"http.method":$,"http.target":e.url}},i),void 0,!B))}catch(t){if(t instanceof v.NoFallbackError||await A.onRequestError(e,t,{routerKind:"App Router",routePath:j,routeType:"route",revalidateReason:(0,p.getRevalidateReason)({isStaticGeneration:D,isOnDemandRevalidate:_})},!1,P),U)throw t;return await (0,c.sendResponse)(W,X,new Response(null,{status:500})),null}}e.s(["handler",0,P,"patchFetch",0,function(){return(0,a.patchFetch)({workAsyncStorage:N,workUnitAsyncStorage:b})},"routeModule",0,A,"serverHooks",0,T,"workAsyncStorage",0,N,"workUnitAsyncStorage",0,b],40833)}]; + +//# sourceMappingURL=%5Broot-of-the-server%5D__1cid3cf._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/[root-of-the-server]__1cid3cf._.js.map b/validation-suite/frontend/atlas/.next/server/chunks/[root-of-the-server]__1cid3cf._.js.map new file mode 100644 index 00000000..256caaab --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/chunks/[root-of-the-server]__1cid3cf._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../node_modules/next/dist/esm/build/templates/app-route.js","../../../app/api/customer-imports/confirm/route.ts"],"sourcesContent":["import { AppRouteRouteModule } from \"next/dist/esm/server/route-modules/app-route/module.compiled\";\nimport { RouteKind } from \"next/dist/esm/server/route-kind\";\nimport { patchFetch as _patchFetch } from \"next/dist/esm/server/lib/patch-fetch\";\nimport { addRequestMeta, getRequestMeta, setRequestMeta } from \"next/dist/esm/server/request-meta\";\nimport { getTracer, SpanKind } from \"next/dist/esm/server/lib/trace/tracer\";\nimport { setManifestsSingleton } from \"next/dist/esm/server/app-render/manifests-singleton\";\nimport { normalizeAppPath } from \"next/dist/esm/shared/lib/router/utils/app-paths\";\nimport { NodeNextRequest, NodeNextResponse } from \"next/dist/esm/server/base-http/node\";\nimport { NextRequestAdapter, signalFromNodeResponse } from \"next/dist/esm/server/web/spec-extension/adapters/next-request\";\nimport { BaseServerSpan } from \"next/dist/esm/server/lib/trace/constants\";\nimport { getRevalidateReason } from \"next/dist/esm/server/instrumentation/utils\";\nimport { sendResponse } from \"next/dist/esm/server/send-response\";\nimport { fromNodeOutgoingHttpHeaders, toNodeOutgoingHttpHeaders } from \"next/dist/esm/server/web/utils\";\nimport { getCacheControlHeader } from \"next/dist/esm/server/lib/cache-control\";\nimport { INFINITE_CACHE, NEXT_CACHE_TAGS_HEADER } from \"next/dist/esm/lib/constants\";\nimport { NoFallbackError } from \"next/dist/esm/shared/lib/no-fallback-error.external\";\nimport { CachedRouteKind } from \"next/dist/esm/server/response-cache\";\nimport * as userland from \"INNER_APP_ROUTE\";\n// We inject the nextConfigOutput here so that we can use them in the route\n// module.\nconst nextConfigOutput = \"standalone\"\nconst routeModule = new AppRouteRouteModule({\n definition: {\n kind: RouteKind.APP_ROUTE,\n page: \"/api/customer-imports/confirm/route\",\n pathname: \"/api/customer-imports/confirm\",\n filename: \"route\",\n bundlePath: \"\"\n },\n distDir: process.env.__NEXT_RELATIVE_DIST_DIR || '',\n relativeProjectDir: process.env.__NEXT_RELATIVE_PROJECT_DIR || '',\n resolvedPagePath: \"[project]/app/api/customer-imports/confirm/route.ts\",\n nextConfigOutput,\n // The static import is used for initialization (methods, dynamic, etc.).\n userland: userland,\n // In Turbopack dev mode, also provide a getter that calls require() on every\n // request. This re-reads from devModuleCache so HMR updates are picked up,\n // and the async wrapper unwraps async-module Promises (ESM-only\n // serverExternalPackages) automatically.\n ...process.env.TURBOPACK && process.env.__NEXT_DEV_SERVER ? {\n getUserland: ()=>import(\"INNER_APP_ROUTE\")\n } : {}\n});\n// Pull out the exports that we need to expose from the module. This should\n// be eliminated when we've moved the other routes to the new format. These\n// are used to hook into the route.\nconst { workAsyncStorage, workUnitAsyncStorage, serverHooks } = routeModule;\nfunction patchFetch() {\n return _patchFetch({\n workAsyncStorage,\n workUnitAsyncStorage\n });\n}\nexport { routeModule, workAsyncStorage, workUnitAsyncStorage, serverHooks, patchFetch, };\nexport async function handler(req, res, ctx) {\n if (ctx.requestMeta) {\n setRequestMeta(req, ctx.requestMeta);\n }\n if (routeModule.isDev) {\n addRequestMeta(req, 'devRequestTimingInternalsEnd', process.hrtime.bigint());\n }\n let srcPage = \"/api/customer-imports/confirm/route\";\n // turbopack doesn't normalize `/index` in the page name\n // so we need to to process dynamic routes properly\n // TODO: fix turbopack providing differing value from webpack\n if (process.env.TURBOPACK) {\n srcPage = srcPage.replace(/\\/index$/, '') || '/';\n } else if (srcPage === '/index') {\n // we always normalize /index specifically\n srcPage = '/';\n }\n const multiZoneDraftMode = process.env.__NEXT_MULTI_ZONE_DRAFT_MODE;\n const prepareResult = await routeModule.prepare(req, res, {\n srcPage,\n multiZoneDraftMode\n });\n if (!prepareResult) {\n res.statusCode = 400;\n res.end('Bad Request');\n ctx.waitUntil == null ? void 0 : ctx.waitUntil.call(ctx, Promise.resolve());\n return null;\n }\n const { buildId, deploymentId, params, nextConfig, parsedUrl, isDraftMode, prerenderManifest, routerServerContext, isOnDemandRevalidate, revalidateOnlyGenerated, resolvedPathname, clientReferenceManifest, serverActionsManifest } = prepareResult;\n const normalizedSrcPage = normalizeAppPath(srcPage);\n let isIsr = Boolean(prerenderManifest.dynamicRoutes[normalizedSrcPage] || prerenderManifest.routes[resolvedPathname]);\n const render404 = async ()=>{\n // TODO: should route-module itself handle rendering the 404\n if (routerServerContext == null ? void 0 : routerServerContext.render404) {\n await routerServerContext.render404(req, res, parsedUrl, false);\n } else {\n res.end('This page could not be found');\n }\n return null;\n };\n if (isIsr && !isDraftMode) {\n const isPrerendered = Boolean(prerenderManifest.routes[resolvedPathname]);\n const prerenderInfo = prerenderManifest.dynamicRoutes[normalizedSrcPage];\n if (prerenderInfo) {\n if (prerenderInfo.fallback === false && !isPrerendered) {\n if (nextConfig.adapterPath) {\n return await render404();\n }\n throw new NoFallbackError();\n }\n }\n }\n let cacheKey = null;\n if (isIsr && !routeModule.isDev && !isDraftMode) {\n cacheKey = resolvedPathname;\n // ensure /index and / is normalized to one key\n cacheKey = cacheKey === '/index' ? '/' : cacheKey;\n }\n const supportsDynamicResponse = // If we're in development, we always support dynamic HTML\n routeModule.isDev === true || // If this is not SSG or does not have static paths, then it supports\n // dynamic HTML.\n !isIsr;\n // This is a revalidation request if the request is for a static\n // page and it is not being resumed from a postponed render and\n // it is not a dynamic RSC request then it is a revalidation\n // request.\n const isStaticGeneration = isIsr && !supportsDynamicResponse;\n // Before rendering (which initializes component tree modules), we have to\n // set the reference manifests to our global store so Server Action's\n // encryption util can access to them at the top level of the page module.\n if (serverActionsManifest && clientReferenceManifest) {\n setManifestsSingleton({\n page: srcPage,\n clientReferenceManifest,\n serverActionsManifest\n });\n }\n const method = req.method || 'GET';\n const tracer = getTracer();\n const activeSpan = tracer.getActiveScopeSpan();\n const isWrappedByNextServer = Boolean(routerServerContext == null ? void 0 : routerServerContext.isWrappedByNextServer);\n const isMinimalMode = Boolean(getRequestMeta(req, 'minimalMode'));\n const incrementalCache = getRequestMeta(req, 'incrementalCache') || await routeModule.getIncrementalCache(req, nextConfig, prerenderManifest, isMinimalMode);\n incrementalCache == null ? void 0 : incrementalCache.resetRequestCache();\n globalThis.__incrementalCache = incrementalCache;\n const context = {\n params,\n previewProps: prerenderManifest.preview,\n renderOpts: {\n experimental: {\n authInterrupts: Boolean(nextConfig.experimental.authInterrupts)\n },\n cacheComponents: Boolean(nextConfig.cacheComponents),\n supportsDynamicResponse,\n incrementalCache,\n cacheLifeProfiles: nextConfig.cacheLife,\n waitUntil: ctx.waitUntil,\n onClose: (cb)=>{\n res.on('close', cb);\n },\n onAfterTaskError: undefined,\n onInstrumentationRequestError: (error, _request, errorContext, silenceLog)=>routeModule.onRequestError(req, error, errorContext, silenceLog, routerServerContext)\n },\n sharedContext: {\n buildId,\n deploymentId\n }\n };\n const nodeNextReq = new NodeNextRequest(req);\n const nodeNextRes = new NodeNextResponse(res);\n const nextReq = NextRequestAdapter.fromNodeNextRequest(nodeNextReq, signalFromNodeResponse(res));\n try {\n let parentSpan;\n const invokeRouteModule = async (span)=>{\n return routeModule.handle(nextReq, context).finally(()=>{\n if (!span) return;\n span.setAttributes({\n 'http.status_code': res.statusCode,\n 'next.rsc': false\n });\n const rootSpanAttributes = tracer.getRootSpanAttributes();\n // We were unable to get attributes, probably OTEL is not enabled\n if (!rootSpanAttributes) {\n return;\n }\n if (rootSpanAttributes.get('next.span_type') !== BaseServerSpan.handleRequest) {\n console.warn(`Unexpected root span type '${rootSpanAttributes.get('next.span_type')}'. Please report this Next.js issue https://github.com/vercel/next.js`);\n return;\n }\n const route = rootSpanAttributes.get('next.route');\n if (route) {\n const name = `${method} ${route}`;\n span.setAttributes({\n 'next.route': route,\n 'http.route': route,\n 'next.span_name': name\n });\n span.updateName(name);\n // Propagate http.route to the parent span if one exists (e.g.\n // a platform-created HTTP span in adapter deployments).\n if (parentSpan && parentSpan !== span) {\n parentSpan.setAttribute('http.route', route);\n parentSpan.updateName(name);\n }\n } else {\n span.updateName(`${method} ${srcPage}`);\n }\n });\n };\n const handleResponse = async (currentSpan)=>{\n var _cacheEntry_value;\n const responseGenerator = async ({ previousCacheEntry })=>{\n try {\n if (!isMinimalMode && isOnDemandRevalidate && revalidateOnlyGenerated && !previousCacheEntry) {\n res.statusCode = 404;\n // on-demand revalidate always sets this header\n res.setHeader('x-nextjs-cache', 'REVALIDATED');\n res.end('This page could not be found');\n return null;\n }\n const response = await invokeRouteModule(currentSpan);\n req.fetchMetrics = context.renderOpts.fetchMetrics;\n let pendingWaitUntil = context.renderOpts.pendingWaitUntil;\n // Attempt using provided waitUntil if available\n // if it's not we fallback to sendResponse's handling\n if (pendingWaitUntil) {\n if (ctx.waitUntil) {\n ctx.waitUntil(pendingWaitUntil);\n pendingWaitUntil = undefined;\n }\n }\n const cacheTags = context.renderOpts.collectedTags;\n // If the request is for a static response, we can cache it so long\n // as it's not edge.\n if (isIsr) {\n const blob = await response.blob();\n // Copy the headers from the response.\n const headers = toNodeOutgoingHttpHeaders(response.headers);\n if (cacheTags) {\n headers[NEXT_CACHE_TAGS_HEADER] = cacheTags;\n }\n if (!headers['content-type'] && blob.type) {\n headers['content-type'] = blob.type;\n }\n const revalidate = typeof context.renderOpts.collectedRevalidate === 'undefined' || context.renderOpts.collectedRevalidate >= INFINITE_CACHE ? false : context.renderOpts.collectedRevalidate;\n const expire = typeof context.renderOpts.collectedExpire === 'undefined' || context.renderOpts.collectedExpire >= INFINITE_CACHE ? undefined : context.renderOpts.collectedExpire;\n // Create the cache entry for the response.\n const cacheEntry = {\n value: {\n kind: CachedRouteKind.APP_ROUTE,\n status: response.status,\n body: Buffer.from(await blob.arrayBuffer()),\n headers\n },\n cacheControl: {\n revalidate,\n expire\n }\n };\n return cacheEntry;\n } else {\n // send response without caching if not ISR\n await sendResponse(nodeNextReq, nodeNextRes, response, context.renderOpts.pendingWaitUntil);\n return null;\n }\n } catch (err) {\n // if this is a background revalidate we need to report\n // the request error here as it won't be bubbled\n if (previousCacheEntry == null ? void 0 : previousCacheEntry.isStale) {\n const silenceLog = false;\n await routeModule.onRequestError(req, err, {\n routerKind: 'App Router',\n routePath: srcPage,\n routeType: 'route',\n revalidateReason: getRevalidateReason({\n isStaticGeneration,\n isOnDemandRevalidate\n })\n }, silenceLog, routerServerContext);\n }\n throw err;\n }\n };\n const cacheEntry = await routeModule.handleResponse({\n req,\n nextConfig,\n cacheKey,\n routeKind: RouteKind.APP_ROUTE,\n isFallback: false,\n prerenderManifest,\n isRoutePPREnabled: false,\n isOnDemandRevalidate,\n revalidateOnlyGenerated,\n responseGenerator,\n waitUntil: ctx.waitUntil,\n isMinimalMode\n });\n // we don't create a cacheEntry for ISR\n if (!isIsr) {\n return null;\n }\n if ((cacheEntry == null ? void 0 : (_cacheEntry_value = cacheEntry.value) == null ? void 0 : _cacheEntry_value.kind) !== CachedRouteKind.APP_ROUTE) {\n var _cacheEntry_value1;\n throw Object.defineProperty(new Error(`Invariant: app-route received invalid cache entry ${cacheEntry == null ? void 0 : (_cacheEntry_value1 = cacheEntry.value) == null ? void 0 : _cacheEntry_value1.kind}`), \"__NEXT_ERROR_CODE\", {\n value: \"E701\",\n enumerable: false,\n configurable: true\n });\n }\n if (!isMinimalMode) {\n res.setHeader('x-nextjs-cache', isOnDemandRevalidate ? 'REVALIDATED' : cacheEntry.isMiss ? 'MISS' : cacheEntry.isStale ? 'STALE' : 'HIT');\n }\n // Draft mode should never be cached\n if (isDraftMode) {\n res.setHeader('Cache-Control', 'private, no-cache, no-store, max-age=0, must-revalidate');\n }\n const headers = fromNodeOutgoingHttpHeaders(cacheEntry.value.headers);\n if (!(isMinimalMode && isIsr)) {\n headers.delete(NEXT_CACHE_TAGS_HEADER);\n }\n // If cache control is already set on the response we don't\n // override it to allow users to customize it via next.config\n if (cacheEntry.cacheControl && !res.getHeader('Cache-Control') && !headers.get('Cache-Control')) {\n headers.set('Cache-Control', getCacheControlHeader(cacheEntry.cacheControl));\n }\n await sendResponse(nodeNextReq, nodeNextRes, // @ts-expect-error - Argument of type 'Buffer' is not assignable to parameter of type 'BodyInit | null | undefined'.\n new Response(cacheEntry.value.body, {\n headers,\n status: cacheEntry.value.status || 200\n }));\n return null;\n };\n // TODO: activeSpan code path is for when wrapped by\n // next-server can be removed when this is no longer used\n if (isWrappedByNextServer && activeSpan) {\n await handleResponse(activeSpan);\n } else {\n parentSpan = tracer.getActiveScopeSpan();\n await tracer.withPropagatedContext(req.headers, ()=>tracer.trace(BaseServerSpan.handleRequest, {\n spanName: `${method} ${srcPage}`,\n kind: SpanKind.SERVER,\n attributes: {\n 'http.method': method,\n 'http.target': req.url\n }\n }, handleResponse), undefined, !isWrappedByNextServer);\n }\n } catch (err) {\n if (!(err instanceof NoFallbackError)) {\n const silenceLog = false;\n await routeModule.onRequestError(req, err, {\n routerKind: 'App Router',\n routePath: normalizedSrcPage,\n routeType: 'route',\n revalidateReason: getRevalidateReason({\n isStaticGeneration,\n isOnDemandRevalidate\n })\n }, silenceLog, routerServerContext);\n }\n // rethrow so that we can handle serving error page\n // If this is during static generation, throw the error again.\n if (isIsr) throw err;\n // Otherwise, send a 500 response.\n await sendResponse(nodeNextReq, nodeNextRes, new Response(null, {\n status: 500\n }));\n return null;\n }\n}\n\n//# sourceMappingURL=app-route.js.map\n","import { cookies } from \"next/headers\";\nimport { NextRequest, NextResponse } from \"next/server\";\nimport { AUTH_COOKIE_NAME } from \"@/lib/auth\";\n\nconst mercuryBase = `${process.env.MERCURY_INTERNAL_URL ?? \"http://mercury-api:8000\"}/api/v1`;\n\nexport async function POST(request: NextRequest) {\n const cookieStore = await cookies();\n const token = cookieStore.get(AUTH_COOKIE_NAME)?.value;\n if (!token) {\n return NextResponse.json({ detail: \"Not authenticated\" }, { status: 401 });\n }\n const response = await fetch(`${mercuryBase}/customer-imports/confirm`, {\n method: \"POST\",\n headers: { Authorization: `Bearer ${token}` },\n body: await request.formData(),\n cache: \"no-store\"\n });\n const data = await response.json();\n return NextResponse.json(data, { status: response.status });\n}\n"],"names":["mercuryBase","process","env","MERCURY_INTERNAL_URL","POST","request","cookieStore","token","get","value","json","detail","status","response","fetch","method","headers","Authorization","body","formData","cache","data"],"mappings":"m/BAAA,IAAA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,CAAA,CAAA,OAAA,IAAA,EAAA,EAAA,CAAA,CAAA,KChBA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OAEA,IAAMA,EAAc,CAAA,EAAGC,QAAQC,GAAG,CAACC,oBAAoB,EAAI,0BAA0B,OAAO,CAAC,CAEtF,eAAeC,EAAKC,CAAoB,EAC7C,IAAMC,EAAc,MAAM,CAAA,EAAA,EAAA,OAAA,AAAO,IAC3BC,EAAQD,EAAYE,GAAG,CAAC,EAAA,gBAAgB,GAAGC,MACjD,GAAI,CAACF,EACH,KADU,EACH,EAAA,YAAY,CAACG,IAAI,CAAC,CAAEC,OAAQ,mBAAoB,EAAG,CAAEC,OAAQ,GAAI,GAE1E,IAAMC,EAAW,MAAMC,MAAM,CAAA,EAAGd,EAAY,yBAAyB,CAAC,CAAE,CACtEe,OAAQ,OACRC,QAAS,CAAEC,cAAe,CAAC,OAAO,EAAEV,EAAAA,CAAO,AAAC,EAC5CW,KAAM,MAAMb,EAAQc,QAAQ,GAC5BC,MAAO,UACT,GACMC,EAAO,MAAMR,EAASH,IAAI,GAChC,OAAO,EAAA,YAAY,CAACA,IAAI,CAACW,EAAM,CAAET,OAAQC,EAASD,MAAM,AAAC,EAC3D,yBDHA,IAAA,EAAA,EAAA,CAAA,CAAA,OAIA,IAAM,EAAc,IAAI,EAAA,mBAAmB,CAAC,CACxC,WAAY,CACR,KAAM,EAAA,SAAS,CAAC,SAAS,CACzB,KAAM,sCACN,SAAU,gCACV,SAAU,QACV,WAAY,EAChB,EACA,QAAS,CAAA,OACT,IADiD,eACc,CAA3C,EACpB,iBAAkB,sDAClB,iBAZqB,aAcrB,SAAU,EAKV,GAAG,AAEC,CAAC,CAAC,AACV,GAIM,kBAAE,CAAgB,cAPwC,QAOtC,CAAoB,aAAE,CAAW,CAAE,CAAG,EAQzD,eAAe,EAAQ,CAAG,CAAE,CAAG,CAAE,CAAG,EACnC,EAAI,WAAW,EAAE,AACjB,CAAA,EAAA,EAAA,cAAA,AAAc,EAAC,EAAK,EAAI,WAAW,EAEnC,EAAY,KAAK,EAAE,AACnB,CAAA,EAAA,EAAA,cAAA,AAAc,EAAC,EAAK,+BAAgC,QAAQ,MAAM,CAAC,MAAM,IAE7E,IAAI,EAAU,sCAKV,EAAU,EAAQ,OAAO,CAAC,WAAY,KAAO,IAMjD,IAAM,EAAgB,MAAM,EAAY,OAAO,CAAC,EAAK,EAAK,SACtD,EACA,mBAHE,CAAA,CAIN,GACA,GAAI,CAAC,EAID,OAHA,EAAI,IADY,MACF,CAAG,IACjB,EAAI,GAAG,CAAC,eACR,AAAiB,OAAO,CAApB,IAAyB,KAAhB,EAAoB,EAAI,SAAS,CAAC,IAAI,CAAC,EAAK,QAAQ,OAAO,IACjE,KAEX,GAAM,SAAE,CAAO,cAAE,CAAY,QAAE,CAAM,YAAE,CAAU,WAAE,CAAS,aAAE,CAAW,mBAAE,CAAiB,qBAAE,CAAmB,sBAAE,CAAoB,yBAAE,CAAuB,kBAAE,CAAgB,yBAAE,CAAuB,uBAAE,CAAqB,CAAE,CAAG,EACjO,EAAoB,CAAA,EAAA,EAAA,gBAAA,AAAgB,EAAC,GACvC,GAAQ,EAAQ,EAAkB,aAAa,CAAC,EAAkB,EAAI,EAAkB,MAAM,CAAC,EAAA,AAAiB,EAC9G,EAAY,UAEV,CAAuB,QAAO,KAAK,EAAI,EAAoB,SAAA,AAAS,EAAE,AACtE,MAAM,EAAoB,SAAS,CAAC,EAAK,EAAK,GAAW,GAEzD,EAAI,GAAG,CAAC,gCAEL,MAEX,GAAI,GAAS,CAAC,EAAa,CACvB,IAAM,GAAgB,CAAQ,EAAkB,MAAM,CAAC,EAAiB,CAClE,EAAgB,EAAkB,aAAa,CAAC,EAAkB,CACxE,GAAI,IAC+B,IAA3B,EAAc,KADH,GACW,EAAc,CAAC,EAAe,CACpD,GAAI,EAAW,WAAW,CACtB,CADwB,MACjB,MAAM,GAEjB,OAAM,IAAI,EAAA,eAAe,AAC7B,CAER,CACA,IAAI,EAAW,MACX,GAAU,EAAY,IAAb,CAAkB,EAAK,EAAD,EAG/B,EAAW,AAAa,OAHqB,KAC7C,EAAW,CAAA,EAEwB,IAAM,CAAA,EAE7C,IAAM,EACgB,AAAtB,OAAY,CAAkB,IAAb,EAEjB,CAAC,EAKK,EAAqB,GAAS,CAAC,EAIjC,GAAyB,GACzB,CAAA,EAAA,EAAA,iBADkD,IAC7B,AAArB,EAAsB,CAClB,KAAM,YAbqF,cAc3F,EACA,uBACJ,GAEJ,IAAM,EAAS,EAAI,MAAM,EAAI,MACvB,EAAS,CAAA,EAAA,EAAA,SAAA,AAAS,IAClB,EAAa,EAAO,kBAAkB,GACtC,GAAwB,CAAQ,CAAuB,QAAO,KAAK,EAAI,EAAoB,qBAAA,AAAqB,EAChH,GAAgB,CAAQ,CAAA,EAAA,EAAA,cAAA,AAAc,EAAC,EAAK,eAC5C,EAAmB,CAAA,EAAA,EAAA,cAAA,AAAc,EAAC,EAAK,qBAAuB,MAAM,EAAY,mBAAmB,CAAC,EAAK,EAAY,EAAmB,EAC9I,AAAoB,OAAO,GAAS,EAAJ,AAAqB,iBAAiB,GACtE,WAAW,kBAAkB,CAAG,EAChC,IAAM,EAAU,CACZ,SACA,aAAc,EAAkB,OAAO,CACvC,WAAY,CACR,aAAc,CACV,gBAAgB,CAAQ,EAAW,YAAY,CAAC,cAAc,AAClE,EACA,iBAAiB,CAAQ,EAAW,eAAe,yBACnD,mBACA,EACA,kBAAmB,EAAW,SAAS,CACvC,UAAW,EAAI,SAAS,CACxB,QAAU,AAAD,IACL,EAAI,EAAE,CAAC,QAAS,EACpB,EACA,sBAAkB,EAClB,8BAA+B,CAAC,EAAO,EAAU,EAAc,IAAa,EAAY,cAAc,CAAC,EAAK,EAAO,EAAc,EAAY,EACjJ,EACA,cAAe,CACX,uBACA,CACJ,CACJ,EACM,EAAc,IAAI,EAAA,eAAe,CAAC,GAClC,EAAc,IAAI,EAAA,gBAAgB,CAAC,GACnC,EAAU,EAAA,kBAAkB,CAAC,mBAAmB,CAAC,EAAa,CAAA,EAAA,EAAA,sBAAA,AAAsB,EAAC,IAC3F,GAAI,CAEA,IADI,EACE,EAAoB,MAAO,GACtB,EAAY,MAAM,CAAC,EAAS,GAAS,OAAO,CAAC,KAChD,GAAI,CAAC,EAAM,OACX,EAAK,aAAa,CAAC,CACf,mBAAoB,EAAI,UAAU,CAClC,WAAY,EAChB,GACA,IAAM,EAAqB,EAAO,qBAAqB,GAEvD,GAAI,CAAC,EACD,OAEJ,GAAI,EAAmB,GAAG,CAAC,EAHF,kBAGwB,EAAA,cAAc,CAAC,aAAa,CAAE,YAC3E,QAAQ,IAAI,CAAC,CAAC,2BAA2B,EAAE,EAAmB,GAAG,CAAC,kBAAkB,qEAAqE,CAAC,EAG9J,IAAM,EAAQ,EAAmB,GAAG,CAAC,cACrC,GAAI,EAAO,CACP,IAAM,EAAO,CAAA,EAAG,EAAO,CAAC,EAAE,EAAA,CAAO,CACjC,EAAK,aAAa,CAAC,CACf,aAAc,EACd,aAAc,EACd,iBAAkB,CACtB,GACA,EAAK,UAAU,CAAC,GAGZ,GAAc,IAAe,IAC7B,EADmC,AACxB,YAAY,CAAC,aAAc,GACtC,EAAW,UAAU,CAAC,GAE9B,MACI,CADG,CACE,UAAU,CAAC,CAAA,EAAG,EAAO,CAAC,EAAE,EAAA,CAAS,CAE9C,GAEE,EAAiB,MAAO,QACtB,EA4FI,EA3FR,IAAM,EAAoB,MAAO,oBAAE,CAAkB,CAAE,IACnD,GAAI,CACA,GAAI,CAAC,GAAiB,GAAwB,GAA2B,CAAC,EAKtE,OAJA,EAAI,SADsF,CAC5E,CAAG,IAEjB,EAAI,SAAS,CAAC,iBAAkB,eAChC,EAAI,GAAG,CAAC,gCACD,KAEX,IAAM,EAAW,MAAM,EAAkB,GACzC,EAAI,YAAY,CAAG,EAAQ,UAAU,CAAC,YAAY,CAClD,IAAI,EAAmB,EAAQ,UAAU,CAAC,gBAAgB,CAGtD,GACI,EAAI,SAAS,EAAE,CACf,CAFc,CAEV,SAAS,CAAC,GACd,OAAmB,GAG3B,IAAM,EAAY,EAAQ,UAAU,CAAC,aAAa,CAGlD,IAAI,EA6BA,OADA,MAAM,CAAA,EAAA,EAAA,YAAA,AAAY,EAAC,EAAa,EAAa,EAAU,EAAQ,UAAU,CAAC,gBAAgB,EACnF,IA7BA,EACP,IAAM,EAAO,MAAM,EAAS,IAAI,GAE1B,EAAU,CAAA,EAAA,EAAA,yBAAA,AAAyB,EAAC,EAAS,OAAO,EACtD,IACA,CAAO,CAAC,EAAA,GADG,mBACmB,CAAC,CAAG,CAAA,EAElC,CAAC,CAAO,CAAC,eAAe,EAAI,EAAK,IAAI,EAAE,CACvC,CAAO,CAAC,eAAe,CAAG,EAAK,IAAA,AAAI,EAEvC,IAAM,EAAa,AAAkD,SAA3C,EAAQ,UAAU,CAAC,mBAAmB,IAAoB,EAAQ,UAAU,CAAC,mBAAmB,EAAI,EAAA,cAAA,AAAc,GAAG,AAAQ,EAAQ,UAAU,CAAC,mBAAmB,CACvL,EAAS,KAA8C,IAAvC,EAAQ,UAAU,CAAC,eAAe,EAAoB,EAAQ,UAAU,CAAC,eAAe,EAAI,EAAA,cAAc,MAAG,EAAY,EAAQ,UAAU,CAAC,eAAe,CAcjL,MAZmB,CAYZ,AAXH,MAAO,CACH,KAAM,EAAA,eAAe,CAAC,SAAS,CAC/B,OAAQ,EAAS,MAAM,CACvB,KAAM,OAAO,IAAI,CAAC,MAAM,EAAK,WAAW,YACxC,CACJ,EACA,aAAc,YACV,SACA,CACJ,CACJ,CAEJ,CAKJ,CAAE,KALS,CAKF,EAAK,CAeV,MAZ0B,MAAtB,EAA6B,KAAK,EAAI,EAAmB,OAAA,AAAO,EAAE,CAElE,MAAM,EAAY,cAAc,CAAC,EAAK,EAAK,CACvC,WAAY,aACZ,UAAW,EACX,UAAW,QACX,iBAAkB,CAAA,EAAA,EAAA,mBAAA,AAAmB,EAAC,oBAClC,uBACA,CACJ,EACJ,GAAG,AATgB,EASJ,GAEb,CACV,CACJ,EACM,EAAa,MAAM,EAAY,cAAc,CAAC,KAChD,EACA,sBACA,EACA,UAAW,EAAA,SAAS,CAAC,SAAS,CAC9B,YAAY,oBACZ,EACA,kBAAmB,wBACnB,EACA,4CACA,EACA,UAAW,EAAI,SAAS,eACxB,CACJ,GAEA,GAAI,CAAC,EACD,KADQ,EACD,KAEX,GAAI,CAAe,MAAd,CAAqB,EAAS,AAA0C,GAA9C,IAAK,EAAoB,EAAW,KAAK,AAAL,EAAiB,KAAK,EAAI,EAAkB,IAAI,IAAM,EAAA,eAAe,CAAC,SAAS,CAE9I,CAFgJ,KAE1I,OAAO,cAAc,CAAC,AAAI,MAAM,CAAC,kDAAkD,EAAgB,MAAd,CAAqB,EAAS,AAA2C,GAA/C,IAAK,EAAqB,EAAW,KAAA,AAAK,EAAY,KAAK,EAAI,EAAmB,IAAI,CAAA,CAAE,EAAG,oBAAqB,CACjO,MAAO,OACP,YAAY,EACZ,cAAc,CAClB,EAEA,CAAC,GACD,EAAI,SAAS,CADG,AACF,iBAAkB,EAAuB,cAAgB,EAAW,MAAM,CAAG,OAAS,EAAW,OAAO,CAAG,QAAU,OAGnI,GACA,EAAI,QADS,CACA,CAAC,gBAAiB,2DAEnC,IAAM,EAAU,CAAA,EAAA,EAAA,2BAAA,AAA2B,EAAC,EAAW,KAAK,CAAC,OAAO,EAcpE,OAbI,AAAE,CAAD,EAAkB,GACnB,EADwB,AAChB,GADmB,GACb,CAAC,EAAA,sBAAsB,GAIrC,EAAW,YAAY,EAAK,EAAD,AAAK,SAAS,CAAC,kBAAqB,EAAD,AAAS,GAAG,CAAC,kBAAkB,AAC7F,EAAQ,GAAG,CAAC,gBAAiB,CAAA,EAAA,EAAA,qBAAA,AAAqB,EAAC,EAAW,YAAY,GAE9E,MAAM,CAAA,EAAA,EAAA,YAAA,AAAY,EAAC,EAAa,EAChC,IAAI,SAAS,EAAW,KAAK,CAAC,IAAI,CAAE,SAChC,EACA,OAAQ,EAAW,KAAK,CAAC,MAAM,EAAI,GACvC,IACO,IACX,EAGI,GAAyB,EACzB,MAAM,EAAe,EADgB,EAGrC,EAAa,EAAO,kBAAkB,GACtC,MAAM,EAAO,qBAAqB,CAAC,EAAI,OAAO,CAAE,IAAI,EAAO,KAAK,CAAC,EAAA,cAAc,CAAC,aAAa,CAAE,CACvF,SAAU,CAAA,EAAG,EAAO,CAAC,EAAE,EAAA,CAAS,CAChC,KAAM,EAAA,QAAQ,CAAC,MAAM,CACrB,WAAY,CACR,cAAe,EACf,cAAe,EAAI,GAAG,AAC1B,CACJ,EAAG,GAAiB,OAAW,CAAC,GAE5C,CAAE,MAAO,EAAK,CAeV,GAdM,aAAe,EAAA,eAAe,EAEhC,CAFmC,KAE7B,EAAY,cAAc,CAAC,EAAK,EAAK,CACvC,WAAY,aACZ,UAAW,EACX,UAAW,QACX,iBAAkB,CAAA,EAAA,EAAA,mBAAA,AAAmB,EAAC,oBAClC,uBACA,CACJ,EACJ,GATmB,AAShB,EAAY,GAIf,EAAO,MAAM,EAKjB,OAHA,MAAM,CAAA,EAAA,EAAA,YAAA,AAAY,EAAC,EAAa,EAAa,IAAI,SAAS,KAAM,CAC5D,OAAQ,GACZ,IACO,IACX,CACJ,mCA5TA,SAAS,EACL,MAAO,CAAA,EAAA,EAAA,UAAA,AAAW,EAAC,kBACf,uBACA,CACJ,EACJ","ignoreList":[0]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/_next-internal_server_app_api_customer-imports_confirm_route_actions_1-98oae.js b/validation-suite/frontend/atlas/.next/server/chunks/_next-internal_server_app_api_customer-imports_confirm_route_actions_1-98oae.js new file mode 100644 index 00000000..ed64b398 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/chunks/_next-internal_server_app_api_customer-imports_confirm_route_actions_1-98oae.js @@ -0,0 +1,3 @@ +module.exports=[39244,(e,o,d)=>{}]; + +//# sourceMappingURL=_next-internal_server_app_api_customer-imports_confirm_route_actions_1-98oae.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/_next-internal_server_app_api_customer-imports_confirm_route_actions_1-98oae.js.map b/validation-suite/frontend/atlas/.next/server/chunks/_next-internal_server_app_api_customer-imports_confirm_route_actions_1-98oae.js.map new file mode 100644 index 00000000..a464c673 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/chunks/_next-internal_server_app_api_customer-imports_confirm_route_actions_1-98oae.js.map @@ -0,0 +1 @@ +{"version":3,"sources":[],"names":[],"mappings":""} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/_next-internal_server_app_api_customer-imports_preview_route_actions_1twf800.js b/validation-suite/frontend/atlas/.next/server/chunks/_next-internal_server_app_api_customer-imports_preview_route_actions_1twf800.js new file mode 100644 index 00000000..120b5536 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/chunks/_next-internal_server_app_api_customer-imports_preview_route_actions_1twf800.js @@ -0,0 +1,3 @@ +module.exports=[22217,(e,o,d)=>{}]; + +//# sourceMappingURL=_next-internal_server_app_api_customer-imports_preview_route_actions_1twf800.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/_next-internal_server_app_api_customer-imports_preview_route_actions_1twf800.js.map b/validation-suite/frontend/atlas/.next/server/chunks/_next-internal_server_app_api_customer-imports_preview_route_actions_1twf800.js.map new file mode 100644 index 00000000..a464c673 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/chunks/_next-internal_server_app_api_customer-imports_preview_route_actions_1twf800.js.map @@ -0,0 +1 @@ +{"version":3,"sources":[],"names":[],"mappings":""} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/ssr/[root-of-the-server]__1ncuiz7._.js b/validation-suite/frontend/atlas/.next/server/chunks/ssr/[root-of-the-server]__1ncuiz7._.js new file mode 100644 index 00000000..aca0d88b --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/chunks/ssr/[root-of-the-server]__1ncuiz7._.js @@ -0,0 +1,3 @@ +module.exports=[50640,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"InvariantError",{enumerable:!0,get:function(){return d}});class d extends Error{constructor(a,b){super(`Invariant: ${a.endsWith(".")?a:a+"."} This is a bug in Next.js.`,b),this.name="InvariantError"}}},93695,(a,b,c)=>{b.exports=a.x("next/dist/shared/lib/no-fallback-error.external.js",()=>require("next/dist/shared/lib/no-fallback-error.external.js"))},71306,(a,b,c)=>{b.exports=a.r(18622)},79847,a=>{a.n(a.i(3343))},9185,a=>{a.n(a.i(29432))},72842,a=>{a.n(a.i(75164))},54897,a=>{a.n(a.i(30106))},56157,a=>{a.n(a.i(18970))},94331,a=>{a.n(a.i(60644))},15988,a=>{a.n(a.i(56952))},25766,a=>{a.n(a.i(77341))},29725,a=>{a.n(a.i(94290))},90833,a=>{a.n(a.i(46994))},5785,a=>{a.n(a.i(90588))},74793,a=>{a.n(a.i(33169))},85826,a=>{a.n(a.i(37111))},21565,a=>{a.n(a.i(41763))},65911,a=>{a.n(a.i(8950))},25128,a=>{a.n(a.i(91562))},40781,a=>{a.n(a.i(49670))},69411,a=>{a.n(a.i(75700))},63081,a=>{a.n(a.i(276))},62837,a=>{a.n(a.i(40795))},34607,a=>{a.n(a.i(11614))},96338,a=>{a.n(a.i(21751))},50642,a=>{a.n(a.i(12213))},32242,a=>{a.n(a.i(22693))},88530,a=>{a.n(a.i(10531))},8583,a=>{a.n(a.i(1082))},38534,a=>{a.n(a.i(98175))},70408,a=>{a.n(a.i(9095))},22922,a=>{a.n(a.i(96772))},78294,a=>{a.n(a.i(71717))},16625,a=>{a.n(a.i(85034))},88648,a=>{a.n(a.i(68113))},51914,a=>{a.n(a.i(66482))},25466,a=>{a.n(a.i(91505))},71385,a=>{a.v("/_next/static/media/icon.3qohsuqgxm60_.svg"+(globalThis.NEXT_CLIENT_ASSET_SUFFIX||""))},48760,a=>{"use strict";let b={src:a.i(71385).default,width:640,height:480};a.s(["default",0,b])},81327,a=>{"use strict";a.s(["default",()=>b]);let b=(0,a.i(11857).registerClientReference)(function(){throw Error("Attempted to call the default export of [project]/app/(app)/customers/import/page.tsx from the server, but it's on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/app/(app)/customers/import/page.tsx ","default")},11885,a=>{"use strict";a.s(["default",()=>b]);let b=(0,a.i(11857).registerClientReference)(function(){throw Error("Attempted to call the default export of [project]/app/(app)/customers/import/page.tsx from the server, but it's on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/app/(app)/customers/import/page.tsx","default")},13700,a=>{"use strict";a.i(81327);var b=a.i(11885);a.n(b)},77507,a=>{a.n(a.i(13700))}]; + +//# sourceMappingURL=%5Broot-of-the-server%5D__1ncuiz7._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/ssr/[root-of-the-server]__1ncuiz7._.js.map b/validation-suite/frontend/atlas/.next/server/chunks/ssr/[root-of-the-server]__1ncuiz7._.js.map new file mode 100644 index 00000000..afa7007f --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/chunks/ssr/[root-of-the-server]__1ncuiz7._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../node_modules/next/src/shared/lib/invariant-error.ts","../../../../node_modules/next/src/server/route-modules/app-page/module.compiled.js","../../../../app/icon.svg.mjs%20%28structured%20image%20object%29","../../../../app/%28app%29/customers/import/page.tsx/__nextjs-internal-proxy.mjs"],"sourcesContent":["export class InvariantError extends Error {\n constructor(message: string, options?: ErrorOptions) {\n super(\n `Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`,\n options\n )\n this.name = 'InvariantError'\n }\n}\n","if (process.env.NEXT_RUNTIME === 'edge') {\n module.exports = require('next/dist/server/route-modules/app-page/module.js')\n} else {\n if (process.env.__NEXT_EXPERIMENTAL_REACT) {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.prod.js')\n }\n }\n } else {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.prod.js')\n }\n }\n }\n}\n","import src from \"IMAGE\";\nexport default { src, width: 640, height: 480 }\n","// This file is generated by next-core EcmascriptClientReferenceModule.\nimport { registerClientReference } from \"react-server-dom-turbopack/server\";\nexport default registerClientReference(\n function() { throw new Error(\"Attempted to call the default export of [project]/app/(app)/customers/import/page.tsx from the server, but it's on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.\"); },\n \"[project]/app/(app)/customers/import/page.tsx\",\n \"default\",\n);\n"],"names":["InvariantError","Error","constructor","message","options","endsWith","name","process","env","NEXT_RUNTIME","module","exports","require","__NEXT_EXPERIMENTAL_REACT","NODE_ENV","TURBOPACK","src","width","height"],"mappings":"sHAAaA,iBAAAA,qCAAAA,IAAN,OAAMA,UAAuBC,MAClCC,YAAYC,CAAe,CAAEC,CAAsB,CAAE,CACnD,KAAK,CACH,CAAC,WAAW,EAAED,EAAQE,QAAQ,CAAC,KAAOF,EAAUA,EAAU,IAAI,0BAA0B,CAAC,CACzFC,GAEF,IAAI,CAACE,IAAI,CAAG,gBACd,CACF,0KCkBQI,EAAOC,OAAO,CAAGC,EAAQ,CAAA,CAAA,IAAA,qhCCzBlB,CAAEI,IADjB,AACiBA,EADjB,CAAA,CAAA,OACiBA,OAAG,CAAEC,MAAO,IAAKC,OAAQ,GAAI,4ECC/B,CAAA,EADf,AACe,EADf,CAAA,CAAA,OACe,uBAAA,AAAuB,EAClC,WAAa,MAAM,AAAIjB,MAAM,qSAAuS,EACpU,oEACA,gEAHW,CAAA,EADf,AACe,EADf,CAAA,CAAA,OACe,uBAAA,AAAuB,EAClC,WAAa,MAAM,AAAIA,MAAM,iRAAmR,EAChT,gDACA","ignoreList":[0,1,3]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_01izkzk._.js b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_01izkzk._.js deleted file mode 100644 index 4b68f160..00000000 --- a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_01izkzk._.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports=[53250,a=>{"use strict";let b="/api/v1";async function c(a,b){let c=await a.text();if(!c)return b;try{let a=JSON.parse(c);return a.detail??a.message??c}catch{return c}}async function d(a,b){let c=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:a,password:b}),credentials:"include"});if(!c.ok){let a=Error(await c.text()||`HTTP ${c.status}`);throw a.status=c.status,a}return c.json()}async function e(a,c){let d=await fetch(`${b}${a}`,{cache:"no-store",credentials:"include"});if(!d.ok)throw Error(`API request failed: ${d.status}`);return d.json()}async function f(a,d,e,f){let g=await fetch(`${b}${a}`,{method:e,headers:{"Content-Type":"application/json"},body:JSON.stringify(f),credentials:"include"});if(!g.ok)throw Error(await c(g,`API request failed: ${g.status}`));return g.json()}async function g(a,d){let e=await fetch(`${b}${a}`,{method:"DELETE",credentials:"include"});if(!e.ok)throw Error(await c(e,`API request failed: ${e.status}`))}async function h(a,d,e){let f=await fetch(`${b}${a}`,{...e,headers:{"Content-Type":"application/json",...e?.headers??{}},credentials:"include"});if(!f.ok)throw Error(await c(f,`API request failed: ${f.status}`));return f.json()}a.s(["API_BASE",0,b,"apiDelete",0,g,"apiFetch",0,h,"apiGet",0,e,"apiSend",0,f,"login",0,d,"normalizeValidationPayload",0,function(a){return{...a,...Object.fromEntries(["contact_id","examiner_id"].map(b=>[b,a[b]||null]))}}])},33508,a=>{"use strict";let b=(0,a.i(70106).default)("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]);a.s(["X",0,b],33508)},84505,a=>{"use strict";let b=(0,a.i(70106).default)("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);a.s(["Download",0,b],84505)},14548,a=>{"use strict";let b=(0,a.i(70106).default)("Save",[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]]);a.s(["Save",0,b],14548)},92e3,a=>{"use strict";let b=(0,a.i(70106).default)("CircleAlert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);a.s(["AlertCircle",0,b],92e3)},67453,a=>{"use strict";let b=(0,a.i(70106).default)("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);a.s(["CheckCircle2",0,b],67453)},99712,a=>{"use strict";var b=a.i(87924),c=a.i(92e3),d=a.i(67453),e=a.i(70106);let f=(0,e.default)("CircleDashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]]),g=(0,e.default)("ShieldAlert",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]),h={OFFEN:{value:"OFFEN",label:"Noch nicht bewertet",badgeClass:"border-slate-300 bg-slate-100 text-slate-700",previewClass:"border-slate-300 bg-slate-50 text-slate-700",color:"#2E3B40",icon:f},BESTANDEN:{value:"BESTANDEN",label:"Bestanden",badgeClass:"border-success/35 bg-success/15 text-success",previewClass:"border-success/40 bg-success/10 text-success",color:"#245C36",icon:d.CheckCircle2},BESTANDEN_MIT_AUFLAGEN:{value:"BESTANDEN_MIT_AUFLAGEN",label:"Bestanden mit Auflagen",badgeClass:"border-warning/40 bg-warning/15 text-[#7A5A00]",previewClass:"border-warning/45 bg-warning/10 text-[#7A5A00]",color:"#7A5A00",icon:g},NICHT_BESTANDEN:{value:"NICHT_BESTANDEN",label:"Nicht bestanden",badgeClass:"border-danger/35 bg-danger/15 text-danger",previewClass:"border-danger/40 bg-danger/10 text-danger",color:"#7A1F26",icon:c.AlertCircle}},i={"":"OFFEN",offen:"OFFEN",OFFEN:"OFFEN",bestanden:"BESTANDEN",BESTANDEN:"BESTANDEN",mit_auflagen:"BESTANDEN_MIT_AUFLAGEN",bestanden_mit_auflagen:"BESTANDEN_MIT_AUFLAGEN","bestanden mit auflagen":"BESTANDEN_MIT_AUFLAGEN",BESTANDEN_MIT_AUFLAGEN:"BESTANDEN_MIT_AUFLAGEN",nicht_bestanden:"NICHT_BESTANDEN","nicht bestanden":"NICHT_BESTANDEN",NICHT_BESTANDEN:"NICHT_BESTANDEN"};function j(a){return i[String(a??"").trim()]??"OFFEN"}function k(a){return h[j(a)]}a.s(["ValidationResultBadge",0,function({value:a,className:c=""}){let d=k(a),e=d.icon;return(0,b.jsxs)("span",{className:`inline-flex items-center gap-1.5 rounded-full border px-3 py-1 text-xs font-semibold ${d.badgeClass} ${c}`,children:[(0,b.jsx)(e,{className:"h-3.5 w-3.5"}),d.label]})},"getValidationResultPresentation",0,k,"normalizeValidationResult",0,j,"validationResultValues",0,["OFFEN","BESTANDEN","BESTANDEN_MIT_AUFLAGEN","NICHT_BESTANDEN"]],99712)},15618,a=>{"use strict";let b=(0,a.i(70106).default)("Plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);a.s(["Plus",0,b],15618)}]; - -//# sourceMappingURL=_01izkzk._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_01izkzk._.js.map b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_01izkzk._.js.map deleted file mode 100644 index a25c0389..00000000 --- a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_01izkzk._.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../../../lib/api.ts","../../../../node_modules/lucide-react/src/icons/x.ts","../../../../node_modules/lucide-react/src/icons/download.ts","../../../../node_modules/lucide-react/src/icons/save.ts","../../../../node_modules/lucide-react/src/icons/circle-alert.ts","../../../../node_modules/lucide-react/src/icons/circle-check.ts","../../../../lib/validation-result.tsx","../../../../node_modules/lucide-react/src/icons/shield-alert.ts","../../../../node_modules/lucide-react/src/icons/circle-dashed.ts","../../../../node_modules/lucide-react/src/icons/plus.ts"],"sourcesContent":["export const API_BASE = \"/api/v1\";\n\nexport type Entity = {\n id: string;\n created_at: string;\n updated_at: string;\n};\n\nexport type Customer = Entity & {\n customer_type: \"practice\" | \"clinic\";\n name: string;\n city?: string | null;\n phone?: string | null;\n email?: string | null;\n hygiene_officer?: string | null;\n quality_manager?: string | null;\n notes?: string | null;\n};\n\nexport type Location = Entity & {\n customer_id: string;\n name: string;\n street?: string | null;\n postal_code?: string | null;\n city?: string | null;\n room?: string | null;\n};\n\nexport type Contact = Entity & {\n customer_id: string;\n full_name: string;\n function?: string | null;\n email?: string | null;\n phone?: string | null;\n};\n\nexport type Device = Entity & {\n customer_id: string;\n location_id?: string | null;\n manufacturer: string;\n model: string;\n serial_number: string;\n device_type?: string | null;\n year_built?: number | null;\n commissioned_on?: string | null;\n chamber_volume_liters?: number | null;\n steam_generation?: string | null;\n water_treatment?: string | null;\n documentation?: string | null;\n supplier?: string | null;\n};\n\nexport type Equipment = Entity & {\n kind: string;\n manufacturer?: string | null;\n model?: string | null;\n serial_number: string;\n calibrated_on?: string | null;\n calibration_due_on?: string | null;\n certificate_document_id?: string | null;\n status: \"green\" | \"yellow\" | \"red\";\n};\n\nexport type User = Entity & {\n email: string;\n first_name: string;\n last_name: string;\n role: \"admin\" | \"pruefer\" | \"mitarbeiter\" | \"leser\";\n is_active: boolean;\n must_change_password: boolean;\n last_login_at?: string | null;\n password_changed_at?: string | null;\n};\n\nexport type ValidationItem = Entity & {\n report_number: string;\n customer_id: string;\n location_id?: string | null;\n contact_id?: string | null;\n device_id?: string | null;\n validation_type: string;\n project?: string | null;\n test_location?: string | null;\n examiner_name?: string | null;\n participants?: string | null;\n operator_name?: string | null;\n status: string;\n result?: string | null;\n scheduled_on?: string | null;\n performed_on?: string | null;\n next_validation_on?: string | null;\n revalidation_interval_months: number;\n next_validation_manually_overridden: boolean;\n version: number;\n previous_validation_id?: string | null;\n equipment_ids: string[];\n environment_conditions: Record;\n documentation_checklist: Record[];\n performance_checklist: Record[];\n programs: Record[];\n loading_patterns: Record[];\n measurement_data: Record[];\n drying: Record;\n recommendations: Record[];\n attachments: Record[];\n};\n\nexport type QuickStartValidationSummary = {\n id: string;\n device_id: string;\n report_number: string;\n performed_on?: string | null;\n result?: string | null;\n next_validation_on?: string | null;\n status: string;\n validation_type?: string | null;\n equipment_ids: string[];\n};\n\nexport type QuickStartCustomerData = {\n customer: Customer;\n locations: Location[];\n contacts: Contact[];\n devices: Device[];\n validations: QuickStartValidationSummary[];\n};\n\nexport function normalizeValidationPayload>(values: T): T {\n const optionalForeignKeys = [\"contact_id\", \"examiner_id\"];\n return {\n ...values,\n ...Object.fromEntries(optionalForeignKeys.map((key) => [key, values[key] || null]))\n };\n}\n\nexport type Paginated = {\n items: T[];\n total: number;\n page: number;\n page_size: number;\n pages?: number;\n};\n\nasync function readErrorMessage(response: Response, fallback: string) {\n const text = await response.text();\n if (!text) {\n return fallback;\n }\n try {\n const parsed = JSON.parse(text) as { detail?: string; message?: string };\n return parsed.detail ?? parsed.message ?? text;\n } catch {\n return text;\n }\n}\n\nexport async function login(email: string, password: string) {\n const response = await fetch(`/api/login`, {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ email, password }),\n credentials: \"include\"\n });\n if (!response.ok) {\n const detail = await response.text();\n const error = new Error(detail || `HTTP ${response.status}`) as Error & { status?: number };\n error.status = response.status;\n throw error;\n }\n return response.json() as Promise<{ user: User; expires_in: number }>;\n}\n\nexport async function apiGet(path: string, token: string): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n cache: \"no-store\",\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(`API request failed: ${response.status}`);\n }\n return response.json() as Promise;\n}\n\nexport async function apiSend(path: string, token: string, method: \"POST\" | \"PUT\", body: unknown): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n method,\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify(body),\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n return response.json() as Promise;\n}\n\nexport async function apiDelete(path: string, token: string): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n method: \"DELETE\",\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n}\n\nexport async function apiFetch(path: string, token: string, init?: RequestInit): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n ...init,\n headers: { \"Content-Type\": \"application/json\", ...(init?.headers ?? {}) },\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n return response.json() as Promise;\n}\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name X\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTggNiA2IDE4IiAvPgogIDxwYXRoIGQ9Im02IDYgMTIgMTIiIC8+Cjwvc3ZnPgo=) - https://lucide.dev/icons/x\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst X = createLucideIcon('X', [\n ['path', { d: 'M18 6 6 18', key: '1bl5f8' }],\n ['path', { d: 'm6 6 12 12', key: 'd8bk6v' }],\n]);\n\nexport default X;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Download\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMjEgMTV2NGEyIDIgMCAwIDEtMiAySDVhMiAyIDAgMCAxLTItMnYtNCIgLz4KICA8cG9seWxpbmUgcG9pbnRzPSI3IDEwIDEyIDE1IDE3IDEwIiAvPgogIDxsaW5lIHgxPSIxMiIgeDI9IjEyIiB5MT0iMTUiIHkyPSIzIiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/download\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Download = createLucideIcon('Download', [\n ['path', { d: 'M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4', key: 'ih7n3h' }],\n ['polyline', { points: '7 10 12 15 17 10', key: '2ggqvy' }],\n ['line', { x1: '12', x2: '12', y1: '15', y2: '3', key: '1vk2je' }],\n]);\n\nexport default Download;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Save\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTUuMiAzYTIgMiAwIDAgMSAxLjQuNmwzLjggMy44YTIgMiAwIDAgMSAuNiAxLjRWMTlhMiAyIDAgMCAxLTIgMkg1YTIgMiAwIDAgMS0yLTJWNWEyIDIgMCAwIDEgMi0yeiIgLz4KICA8cGF0aCBkPSJNMTcgMjF2LTdhMSAxIDAgMCAwLTEtMUg4YTEgMSAwIDAgMC0xIDF2NyIgLz4KICA8cGF0aCBkPSJNNyAzdjRhMSAxIDAgMCAwIDEgMWg3IiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/save\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Save = createLucideIcon('Save', [\n [\n 'path',\n {\n d: 'M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z',\n key: '1c8476',\n },\n ],\n ['path', { d: 'M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7', key: '1ydtos' }],\n ['path', { d: 'M7 3v4a1 1 0 0 0 1 1h7', key: 't51u73' }],\n]);\n\nexport default Save;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name CircleAlert\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgLz4KICA8bGluZSB4MT0iMTIiIHgyPSIxMiIgeTE9IjgiIHkyPSIxMiIgLz4KICA8bGluZSB4MT0iMTIiIHgyPSIxMi4wMSIgeTE9IjE2IiB5Mj0iMTYiIC8+Cjwvc3ZnPgo=) - https://lucide.dev/icons/circle-alert\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst CircleAlert = createLucideIcon('CircleAlert', [\n ['circle', { cx: '12', cy: '12', r: '10', key: '1mglay' }],\n ['line', { x1: '12', x2: '12', y1: '8', y2: '12', key: '1pkeuh' }],\n ['line', { x1: '12', x2: '12.01', y1: '16', y2: '16', key: '4dfq90' }],\n]);\n\nexport default CircleAlert;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name CircleCheck\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgLz4KICA8cGF0aCBkPSJtOSAxMiAyIDIgNC00IiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/circle-check\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst CircleCheck = createLucideIcon('CircleCheck', [\n ['circle', { cx: '12', cy: '12', r: '10', key: '1mglay' }],\n ['path', { d: 'm9 12 2 2 4-4', key: 'dzmm74' }],\n]);\n\nexport default CircleCheck;\n","import { AlertCircle, CheckCircle2, CircleDashed, ShieldAlert } from \"lucide-react\";\n\nexport const validationResultValues = [\n \"OFFEN\",\n \"BESTANDEN\",\n \"BESTANDEN_MIT_AUFLAGEN\",\n \"NICHT_BESTANDEN\"\n] as const;\n\nexport type ValidationResultValue = (typeof validationResultValues)[number];\n\nexport type ValidationResultPresentation = {\n value: ValidationResultValue;\n label: string;\n badgeClass: string;\n previewClass: string;\n color: string;\n icon: typeof CircleDashed;\n};\n\nconst presentations: Record = {\n OFFEN: {\n value: \"OFFEN\",\n label: \"Noch nicht bewertet\",\n badgeClass: \"border-slate-300 bg-slate-100 text-slate-700\",\n previewClass: \"border-slate-300 bg-slate-50 text-slate-700\",\n color: \"#2E3B40\",\n icon: CircleDashed\n },\n BESTANDEN: {\n value: \"BESTANDEN\",\n label: \"Bestanden\",\n badgeClass: \"border-success/35 bg-success/15 text-success\",\n previewClass: \"border-success/40 bg-success/10 text-success\",\n color: \"#245C36\",\n icon: CheckCircle2\n },\n BESTANDEN_MIT_AUFLAGEN: {\n value: \"BESTANDEN_MIT_AUFLAGEN\",\n label: \"Bestanden mit Auflagen\",\n badgeClass: \"border-warning/40 bg-warning/15 text-[#7A5A00]\",\n previewClass: \"border-warning/45 bg-warning/10 text-[#7A5A00]\",\n color: \"#7A5A00\",\n icon: ShieldAlert\n },\n NICHT_BESTANDEN: {\n value: \"NICHT_BESTANDEN\",\n label: \"Nicht bestanden\",\n badgeClass: \"border-danger/35 bg-danger/15 text-danger\",\n previewClass: \"border-danger/40 bg-danger/10 text-danger\",\n color: \"#7A1F26\",\n icon: AlertCircle\n }\n};\n\nconst aliases: Record = {\n \"\": \"OFFEN\",\n offen: \"OFFEN\",\n OFFEN: \"OFFEN\",\n bestanden: \"BESTANDEN\",\n BESTANDEN: \"BESTANDEN\",\n mit_auflagen: \"BESTANDEN_MIT_AUFLAGEN\",\n bestanden_mit_auflagen: \"BESTANDEN_MIT_AUFLAGEN\",\n \"bestanden mit auflagen\": \"BESTANDEN_MIT_AUFLAGEN\",\n BESTANDEN_MIT_AUFLAGEN: \"BESTANDEN_MIT_AUFLAGEN\",\n nicht_bestanden: \"NICHT_BESTANDEN\",\n \"nicht bestanden\": \"NICHT_BESTANDEN\",\n NICHT_BESTANDEN: \"NICHT_BESTANDEN\"\n};\n\nexport function normalizeValidationResult(value?: string | null): ValidationResultValue {\n return aliases[String(value ?? \"\").trim()] ?? \"OFFEN\";\n}\n\nexport function getValidationResultPresentation(value?: string | null) {\n return presentations[normalizeValidationResult(value)];\n}\n\nexport function ValidationResultBadge({ value, className = \"\" }: { value?: string | null; className?: string }) {\n const presentation = getValidationResultPresentation(value);\n const Icon = presentation.icon;\n return (\n \n \n {presentation.label}\n \n );\n}\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name ShieldAlert\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMjAgMTNjMCA1LTMuNSA3LjUtNy42NiA4Ljk1YTEgMSAwIDAgMS0uNjctLjAxQzcuNSAyMC41IDQgMTggNCAxM1Y2YTEgMSAwIDAgMSAxLTFjMiAwIDQuNS0xLjIgNi4yNC0yLjcyYTEuMTcgMS4xNyAwIDAgMSAxLjUyIDBDMTQuNTEgMy44MSAxNyA1IDE5IDVhMSAxIDAgMCAxIDEgMXoiIC8+CiAgPHBhdGggZD0iTTEyIDh2NCIgLz4KICA8cGF0aCBkPSJNMTIgMTZoLjAxIiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/shield-alert\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst ShieldAlert = createLucideIcon('ShieldAlert', [\n [\n 'path',\n {\n d: 'M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z',\n key: 'oel41y',\n },\n ],\n ['path', { d: 'M12 8v4', key: '1got3b' }],\n ['path', { d: 'M12 16h.01', key: '1drbdi' }],\n]);\n\nexport default ShieldAlert;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name CircleDashed\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTAuMSAyLjE4MmExMCAxMCAwIDAgMSAzLjggMCIgLz4KICA8cGF0aCBkPSJNMTMuOSAyMS44MThhMTAgMTAgMCAwIDEtMy44IDAiIC8+CiAgPHBhdGggZD0iTTE3LjYwOSAzLjcyMWExMCAxMCAwIDAgMSAyLjY5IDIuNyIgLz4KICA8cGF0aCBkPSJNMi4xODIgMTMuOWExMCAxMCAwIDAgMSAwLTMuOCIgLz4KICA8cGF0aCBkPSJNMjAuMjc5IDE3LjYwOWExMCAxMCAwIDAgMS0yLjcgMi42OSIgLz4KICA8cGF0aCBkPSJNMjEuODE4IDEwLjFhMTAgMTAgMCAwIDEgMCAzLjgiIC8+CiAgPHBhdGggZD0iTTMuNzIxIDYuMzkxYTEwIDEwIDAgMCAxIDIuNy0yLjY5IiAvPgogIDxwYXRoIGQ9Ik02LjM5MSAyMC4yNzlhMTAgMTAgMCAwIDEtMi42OS0yLjciIC8+Cjwvc3ZnPgo=) - https://lucide.dev/icons/circle-dashed\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst CircleDashed = createLucideIcon('CircleDashed', [\n ['path', { d: 'M10.1 2.182a10 10 0 0 1 3.8 0', key: '5ilxe3' }],\n ['path', { d: 'M13.9 21.818a10 10 0 0 1-3.8 0', key: '11zvb9' }],\n ['path', { d: 'M17.609 3.721a10 10 0 0 1 2.69 2.7', key: '1iw5b2' }],\n ['path', { d: 'M2.182 13.9a10 10 0 0 1 0-3.8', key: 'c0bmvh' }],\n ['path', { d: 'M20.279 17.609a10 10 0 0 1-2.7 2.69', key: '1ruxm7' }],\n ['path', { d: 'M21.818 10.1a10 10 0 0 1 0 3.8', key: 'qkgqxc' }],\n ['path', { d: 'M3.721 6.391a10 10 0 0 1 2.7-2.69', key: '1mcia2' }],\n ['path', { d: 'M6.391 20.279a10 10 0 0 1-2.69-2.7', key: '1fvljs' }],\n]);\n\nexport default CircleDashed;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Plus\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNNSAxMmgxNCIgLz4KICA8cGF0aCBkPSJNMTIgNXYxNCIgLz4KPC9zdmc+Cg==) - https://lucide.dev/icons/plus\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Plus = createLucideIcon('Plus', [\n ['path', { d: 'M5 12h14', key: '1ays0h' }],\n ['path', { d: 'M12 5v14', key: 's699le' }],\n]);\n\nexport default Plus;\n"],"names":["API_BASE","normalizeValidationPayload","values","optionalForeignKeys","Object","fromEntries","map","key","readErrorMessage","response","fallback","text","parsed","JSON","parse","detail","message","login","email","password","fetch","method","headers","body","stringify","credentials","ok","error","Error","status","json","apiGet","path","token","cache","apiSend","apiDelete","apiFetch","init"],"mappings":"uCAAO,IAAMA,EAAW,UA+IxB,eAAeQ,EAAiBC,CAAkB,CAAEC,CAAgB,EAClE,IAAMC,EAAO,MAAMF,EAASE,IAAI,GAChC,GAAI,CAACA,EACH,IADS,GACFD,EAET,GAAI,CACF,IAAME,EAASC,KAAKC,KAAK,CAACH,GAC1B,OAAOC,EAAOG,MAAM,EAAIH,EAAOI,OAAO,EAAIL,CAC5C,CAAE,KAAM,CACN,OAAOA,CACT,CACF,CAEO,eAAeM,EAAMC,CAAa,CAAEC,CAAgB,EACzD,IAAMV,EAAW,MAAMW,MAAM,CAAC,UAAU,CAAC,CAAE,CACzCC,OAAQ,OACRC,QAAS,CAAE,eAAgB,kBAAmB,EAC9CC,KAAMV,KAAKW,SAAS,CAAC,OAAEN,WAAOC,CAAS,GACvCM,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CAAE,CAEhB,IAAMC,EAAQ,AAAIC,MADH,AACSb,MADHN,EAASE,IAAI,IACA,CAAC,KAAK,EAAEF,EAASoB,MAAM,CAAA,CAAE,CAE3D,OADAF,EAAME,MAAM,CAAGpB,EAASoB,MAAM,CACxBF,CACR,CACA,OAAOlB,EAASqB,IAAI,EACtB,CAEO,eAAeC,EAAUC,CAAY,CAAEC,CAAa,EACzD,IAAMxB,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,CACjDE,MAAO,WACPT,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACV,AAAIE,MAAM,CAAC,oBAAoB,EAAEnB,EAASoB,MAAM,CAAA,CAAE,EAE1D,OAAOpB,EAASqB,IAAI,EACtB,CAEO,eAAeK,EAAWH,CAAY,CAAEC,CAAa,CAAEZ,CAAsB,CAAEE,CAAa,EACjG,IAAMd,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,QACjDX,EACAC,QAAS,CAAE,eAAgB,kBAAmB,EAC9CC,KAAMV,KAAKW,SAAS,CAACD,GACrBE,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACV,AAAIE,MAAM,MAAMpB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASoB,MAAM,CAAA,CAAE,GAE3F,OAAOpB,EAASqB,IAAI,EACtB,CAEO,eAAeM,EAAUJ,CAAY,CAAEC,CAAa,EACzD,IAAMxB,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,CACjDX,OAAQ,SACRI,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACV,AAAIE,MAAM,MAAMpB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASoB,MAAM,CAAA,CAAE,EAE7F,CAEO,eAAeQ,EAAYL,CAAY,CAAEC,CAAa,CAAEK,CAAkB,EAC/E,IAAM7B,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,CACjD,GAAGM,CAAI,CACPhB,QAAS,CAAE,eAAgB,mBAAoB,GAAIgB,GAAMhB,SAAW,CAAC,CAAC,AAAE,EACxEG,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACV,AAAIE,MAAM,MAAMpB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASoB,MAAM,CAAA,CAAE,GAE3F,OAAOpB,EAASqB,IAAI,EACtB,0HAzFO,SAAuE5B,AAA9DD,CAAuE,EAErF,MAAO,CACL,GAAGC,CAAM,CACT,GAAGE,OAAOC,WAAW,CAACF,AAHI,CAAC,aAAc,cAAc,CAGbG,GAAG,CAAC,AAACC,GAAQ,CAACA,EAAKL,CAAM,CAACK,EAAI,EAAI,KAAK,EAAE,AACrF,CACF,4BCxHM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,EAAI,WAAA,OAAA,EAAiB,GAAK,CAAA,CAC9B,AAD8B,CAC7B,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAc,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AAC3C,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAc,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAC5C,CAAA,CAAA,6CCHK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAW,CAAX,CAAA,CAAA,CAAA,CAAA,MAAW,OAAA,EAAiB,UAAY,CAAA,CAAA,AAC5C,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAE,AAAF,EAAK,CAA6C,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAK,AAAL,QAAK,CAAU,CAAA,CAAA,AAC1E,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAY,CAAA,CAAE,AAAF,OAAU,CAAoB,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AAC1D,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAQ,CAAE,CAAA,CAAA,CAAI,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAI,CAAM,CAAA,CAAA,CAAA,CAAA,EAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAI,CAAA,CAAA,CAAK,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAClE,CAAA,CAAA,oDCJK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAO,AAAP,CAAA,UAAO,OAAA,EAAiB,MAAQ,CAAA,CAAA,AACpC,CAAA,AACE,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AACA,CAAA,AACE,CAAG,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AACH,CAAA,CAAA,CAAK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AACP,CAAA,CACF,CAAA,AACA,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAA6C,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AAC1E,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAA0B,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAK,AAAL,QAAK,CAAU,CAAA,CACxD,CAAA,CAAA,+CCVK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAc,CAAd,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,GAAc,OAAA,EAAiB,aAAe,CAAA,CAAA,AAClD,CAAC,QAAU,CAAA,CAAA,AAAE,EAAI,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,CAAI,CAAA,CAAA,IAAA,CAAM,CAAG,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAM,GAAK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAU,CAAA,CAAA,AACzD,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAQ,CAAE,CAAA,CAAA,CAAI,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAI,CAAM,CAAA,CAAA,CAAA,CAAA,EAAA,CAAI,CAAA,CAAA,CAAK,CAAA,CAAA,CAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AACjE,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAQ,CAAE,CAAA,CAAA,CAAI,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAI,CAAS,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,EAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CACtE,CAAA,CAAA,sDCJK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAc,AAAd,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,GAAc,OAAA,EAAiB,aAAe,CAAA,CAAA,AAClD,CAAC,QAAU,CAAA,CAAA,AAAE,EAAI,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,CAAI,CAAA,CAAA,IAAA,CAAM,CAAG,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAM,GAAK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAU,CAAA,CAAA,AACzD,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAiB,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAC/C,CAAA,CAAA,yEChBD,EAAA,EAAA,CAAA,CAAA,MAAA,EAAA,EAAA,CAAA,CAAA,6BEaqB,EAAA,OAAA,EAAiB,YDAc,CAAA,ECAE,CAAA,QAC3C,CAAA,AAAE,EAAG,CAAiC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,QACrD,CAAA,AAAE,EAAG,CAAkC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,QACtD,CAAA,AAAE,EAAG,CAAsC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,CAClE,CDAG,ACAH,CAAA,ADAG,sDCA0D,CAAA,ADAvD,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,ACC8C,CDD9C,ACC8C,CDD9C,ACC8C,CDD9C,ACC8C,CAAA,AAAK,ADDnD,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CCCmD,ADDnD,CCC6D,ADD7D,CCC6D,ADD7D,CAAA,ACC6D,CDD7D,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,ACEE,CDFF,ACEE,AAAE,CDFJ,CCEO,ADFP,CCEyC,ADFzC,CAAA,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CAAA,ADFzC,CCEyC,ADFzC,CCEyC,ADFzC,CAAA,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CAAA,ADFzC,CCEyC,ADFzC,CCEyC,ADFzC,CAAA,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CAAA,ADFzC,CAAA,ACEyC,CAAA,ADFzC,CCEyC,ADFzC,CAAA,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CAAA,ADFzC,ACEyC,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,QACtD,CAAA,AAAE,EAAG,CAAqC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAK,AAAL,QAAK,CAAU,CAAA,CAAA,gDACd,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,QDRjD,EAAA,OAAA,EAAA,cAAgC,CAAA,ACAE,CDElD,CCAD,ADAC,CAAA,ACAD,CAAA,ADAC,CAAA,ACAD,CAAQ,ADAP,CCAO,ADAP,EAEE,CCAH,ADAM,CCAN,qKDCG,CAAA,ACAH,CAAA,ADAG,CAAK,ACAA,CDAA,ACAA,CDAA,ACAA,ODCP,CCAD,ADAC,CCAD,CAAA,ADED,CCFC,ADEA,CCFQ,AAER,ADAA,CCFQ,AAER,ADAA,CAAA,ACAA,CDAA,ACAA,CAAA,ADAA,CCAQ,ADAA,CCAA,ADAA,CAAA,ACAA,EDAK,CAAW,ACA2B,CAAA,ADA3B,CCA2B,ADA3B,CCA2B,ADA3B,CCA2B,ADA3B,CCA2B,ADA3B,CCA2B,ADA3B,CCA2B,ADA3B,CCA2B,ADA3B,CCA2B,ADA3B,CCA2B,ADA3B,CCA2B,ADA3B,CCA2B,ADA3B,CAAA,ACA2B,UDAZ,CCAY,ADAZ,AACxC,CCDoD,ADCnD,CCDmD,ADCnD,CCDmD,ADCnD,CCDmD,ADCnD,CCDmD,ADCnD,CCDmD,ADCnD,CCDmD,ADC3C,CCD2C,ADC3C,CCD2C,ADC3C,AAAE,EAAG,CAAc,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAC5C,CAAA,CAAA,ADHK,EAA6E,CACjF,MAAO,CACL,MAAO,QACP,MAAO,sBACP,WAAY,+CACZ,aAAc,8CACd,MAAO,UACP,KAAM,CACR,EACA,UAAW,CACT,MAAO,YACP,MAAO,YACP,WAAY,+CACZ,aAAc,+CACd,MAAO,UACP,KAAM,EAAA,YAAY,AACpB,EACA,uBAAwB,CACtB,MAAO,yBACP,MAAO,yBACP,WAAY,iDACZ,aAAc,iDACd,MAAO,UACP,KAAM,CACR,EACA,gBAAiB,CACf,MAAO,kBACP,MAAO,kBACP,WAAY,4CACZ,aAAc,4CACd,MAAO,UACP,KAAM,EAAA,WAAW,AACnB,CACF,EAEM,EAAiD,CACrD,GAAI,QACJ,MAAO,QACP,MAAO,QACP,UAAW,YACX,UAAW,YACX,aAAc,yBACd,uBAAwB,yBACxB,yBAA0B,yBAC1B,uBAAwB,yBACxB,gBAAiB,kBACjB,kBAAmB,kBACnB,gBAAiB,iBACnB,EAEO,SAAS,EAA0B,CAAqB,EAC7D,OAAO,CAAO,CAAC,OAAO,GAAS,IAAI,IAAI,GAAG,EAAI,OAChD,CAEO,SAAS,EAAgC,CAAqB,EACnE,OAAO,CAAa,CAAC,EAA0B,GAAO,AACxD,gCAEO,SAAS,AAAsB,OAAE,CAAK,WAAE,EAAY,EAAE,CAAiD,EAC5G,IAAM,EAAe,EAAgC,GAC/C,EAAO,EAAa,IAAI,CAC9B,MACE,CAAA,EAAA,EAAA,IAAA,EAAC,OAAA,CAAK,UAAW,CAAC,qFAAqF,EAAE,EAAa,UAAU,CAAC,CAAC,EAAE,EAAA,CAAW,WAC7I,CAAA,EAAA,EAAA,GAAA,EAAC,EAAA,CAAK,UAAU,gBACf,EAAa,KAAK,GAGzB,mGArFsC,CACpC,QACA,YACA,yBACA,kBACD,iCGMK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAO,CAAP,UAAO,OAAA,EAAiB,MAAQ,CAAA,CAAA,AACpC,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAY,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AACzC,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAY,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAC1C,CAAA,CAAA","ignoreList":[1,2,3,4,5,7,8,9]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_03n4ybq._.js.map b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_03n4ybq._.js.map index 896125dd..6769211b 100644 --- a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_03n4ybq._.js.map +++ b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_03n4ybq._.js.map @@ -1 +1 @@ -{"version":3,"sources":["../../../../lib/api.ts","../../../../node_modules/lucide-react/src/icons/x.ts","../../../../node_modules/lucide-react/src/icons/search.ts","../../../../node_modules/lucide-react/src/icons/trash-2.ts","../../../../node_modules/lucide-react/src/icons/rotate-ccw.ts","../../../../node_modules/lucide-react/src/icons/copy.ts"],"sourcesContent":["export const API_BASE = \"/api/v1\";\n\nexport type Entity = {\n id: string;\n created_at: string;\n updated_at: string;\n};\n\nexport type Customer = Entity & {\n customer_type: \"practice\" | \"clinic\";\n name: string;\n city?: string | null;\n phone?: string | null;\n email?: string | null;\n hygiene_officer?: string | null;\n quality_manager?: string | null;\n notes?: string | null;\n};\n\nexport type Location = Entity & {\n customer_id: string;\n name: string;\n street?: string | null;\n postal_code?: string | null;\n city?: string | null;\n room?: string | null;\n};\n\nexport type Contact = Entity & {\n customer_id: string;\n full_name: string;\n function?: string | null;\n email?: string | null;\n phone?: string | null;\n};\n\nexport type Device = Entity & {\n customer_id: string;\n location_id?: string | null;\n manufacturer: string;\n model: string;\n serial_number: string;\n device_type?: string | null;\n year_built?: number | null;\n commissioned_on?: string | null;\n chamber_volume_liters?: number | null;\n steam_generation?: string | null;\n water_treatment?: string | null;\n documentation?: string | null;\n supplier?: string | null;\n};\n\nexport type Equipment = Entity & {\n kind: string;\n manufacturer?: string | null;\n model?: string | null;\n serial_number: string;\n calibrated_on?: string | null;\n calibration_due_on?: string | null;\n certificate_document_id?: string | null;\n status: \"green\" | \"yellow\" | \"red\";\n};\n\nexport type User = Entity & {\n email: string;\n first_name: string;\n last_name: string;\n role: \"admin\" | \"pruefer\" | \"mitarbeiter\" | \"leser\";\n is_active: boolean;\n must_change_password: boolean;\n last_login_at?: string | null;\n password_changed_at?: string | null;\n};\n\nexport type ValidationItem = Entity & {\n report_number: string;\n customer_id: string;\n location_id?: string | null;\n contact_id?: string | null;\n device_id?: string | null;\n validation_type: string;\n project?: string | null;\n test_location?: string | null;\n examiner_name?: string | null;\n participants?: string | null;\n operator_name?: string | null;\n status: string;\n result?: string | null;\n scheduled_on?: string | null;\n performed_on?: string | null;\n next_validation_on?: string | null;\n revalidation_interval_months: number;\n next_validation_manually_overridden: boolean;\n version: number;\n previous_validation_id?: string | null;\n equipment_ids: string[];\n environment_conditions: Record;\n documentation_checklist: Record[];\n performance_checklist: Record[];\n programs: Record[];\n loading_patterns: Record[];\n measurement_data: Record[];\n drying: Record;\n recommendations: Record[];\n attachments: Record[];\n};\n\nexport type QuickStartValidationSummary = {\n id: string;\n device_id: string;\n report_number: string;\n performed_on?: string | null;\n result?: string | null;\n next_validation_on?: string | null;\n status: string;\n validation_type?: string | null;\n equipment_ids: string[];\n};\n\nexport type QuickStartCustomerData = {\n customer: Customer;\n locations: Location[];\n contacts: Contact[];\n devices: Device[];\n validations: QuickStartValidationSummary[];\n};\n\nexport function normalizeValidationPayload>(values: T): T {\n const optionalForeignKeys = [\"contact_id\", \"examiner_id\"];\n return {\n ...values,\n ...Object.fromEntries(optionalForeignKeys.map((key) => [key, values[key] || null]))\n };\n}\n\nexport type Paginated = {\n items: T[];\n total: number;\n page: number;\n page_size: number;\n pages?: number;\n};\n\nasync function readErrorMessage(response: Response, fallback: string) {\n const text = await response.text();\n if (!text) {\n return fallback;\n }\n try {\n const parsed = JSON.parse(text) as { detail?: string; message?: string };\n return parsed.detail ?? parsed.message ?? text;\n } catch {\n return text;\n }\n}\n\nexport async function login(email: string, password: string) {\n const response = await fetch(`/api/login`, {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ email, password }),\n credentials: \"include\"\n });\n if (!response.ok) {\n const detail = await response.text();\n const error = new Error(detail || `HTTP ${response.status}`) as Error & { status?: number };\n error.status = response.status;\n throw error;\n }\n return response.json() as Promise<{ user: User; expires_in: number }>;\n}\n\nexport async function apiGet(path: string, token: string): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n cache: \"no-store\",\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(`API request failed: ${response.status}`);\n }\n return response.json() as Promise;\n}\n\nexport async function apiSend(path: string, token: string, method: \"POST\" | \"PUT\", body: unknown): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n method,\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify(body),\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n return response.json() as Promise;\n}\n\nexport async function apiDelete(path: string, token: string): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n method: \"DELETE\",\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n}\n\nexport async function apiFetch(path: string, token: string, init?: RequestInit): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n ...init,\n headers: { \"Content-Type\": \"application/json\", ...(init?.headers ?? {}) },\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n return response.json() as Promise;\n}\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name X\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTggNiA2IDE4IiAvPgogIDxwYXRoIGQ9Im02IDYgMTIgMTIiIC8+Cjwvc3ZnPgo=) - https://lucide.dev/icons/x\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst X = createLucideIcon('X', [\n ['path', { d: 'M18 6 6 18', key: '1bl5f8' }],\n ['path', { d: 'm6 6 12 12', key: 'd8bk6v' }],\n]);\n\nexport default X;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Search\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8Y2lyY2xlIGN4PSIxMSIgY3k9IjExIiByPSI4IiAvPgogIDxwYXRoIGQ9Im0yMSAyMS00LjMtNC4zIiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/search\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Search = createLucideIcon('Search', [\n ['circle', { cx: '11', cy: '11', r: '8', key: '4ej97u' }],\n ['path', { d: 'm21 21-4.3-4.3', key: '1qie3q' }],\n]);\n\nexport default Search;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Trash2\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMyA2aDE4IiAvPgogIDxwYXRoIGQ9Ik0xOSA2djE0YzAgMS0xIDItMiAySDdjLTEgMC0yLTEtMi0yVjYiIC8+CiAgPHBhdGggZD0iTTggNlY0YzAtMSAxLTIgMi0yaDRjMSAwIDIgMSAyIDJ2MiIgLz4KICA8bGluZSB4MT0iMTAiIHgyPSIxMCIgeTE9IjExIiB5Mj0iMTciIC8+CiAgPGxpbmUgeDE9IjE0IiB4Mj0iMTQiIHkxPSIxMSIgeTI9IjE3IiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/trash-2\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Trash2 = createLucideIcon('Trash2', [\n ['path', { d: 'M3 6h18', key: 'd0wm0j' }],\n ['path', { d: 'M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6', key: '4alrt4' }],\n ['path', { d: 'M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2', key: 'v07s0e' }],\n ['line', { x1: '10', x2: '10', y1: '11', y2: '17', key: '1uufr5' }],\n ['line', { x1: '14', x2: '14', y1: '11', y2: '17', key: 'xtxkd' }],\n]);\n\nexport default Trash2;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name RotateCcw\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMyAxMmE5IDkgMCAxIDAgOS05IDkuNzUgOS43NSAwIDAgMC02Ljc0IDIuNzRMMyA4IiAvPgogIDxwYXRoIGQ9Ik0zIDN2NWg1IiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/rotate-ccw\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst RotateCcw = createLucideIcon('RotateCcw', [\n ['path', { d: 'M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8', key: '1357e3' }],\n ['path', { d: 'M3 3v5h5', key: '1xhq8a' }],\n]);\n\nexport default RotateCcw;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Copy\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cmVjdCB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHg9IjgiIHk9IjgiIHJ4PSIyIiByeT0iMiIgLz4KICA8cGF0aCBkPSJNNCAxNmMtMS4xIDAtMi0uOS0yLTJWNGMwLTEuMS45LTIgMi0yaDEwYzEuMSAwIDIgLjkgMiAyIiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/copy\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Copy = createLucideIcon('Copy', [\n ['rect', { width: '14', height: '14', x: '8', y: '8', rx: '2', ry: '2', key: '17jyea' }],\n ['path', { d: 'M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2', key: 'zix9uf' }],\n]);\n\nexport default Copy;\n"],"names":["API_BASE","normalizeValidationPayload","values","optionalForeignKeys","Object","fromEntries","map","key","readErrorMessage","response","fallback","text","parsed","JSON","parse","detail","message","login","email","password","fetch","method","headers","body","stringify","credentials","ok","error","Error","status","json","apiGet","path","token","cache","apiSend","apiDelete","apiFetch","init"],"mappings":"uCAAO,IAAMA,EAAW,UA+IxB,eAAeQ,EAAiBC,CAAkB,CAAEC,CAAgB,EAClE,IAAMC,EAAO,MAAMF,EAASE,IAAI,GAChC,GAAI,CAACA,EACH,IADS,GACFD,EAET,GAAI,CACF,IAAME,EAASC,KAAKC,KAAK,CAACH,GAC1B,OAAOC,EAAOG,MAAM,EAAIH,EAAOI,OAAO,EAAIL,CAC5C,CAAE,KAAM,CACN,OAAOA,CACT,CACF,CAEO,eAAeM,EAAMC,CAAa,CAAEC,CAAgB,EACzD,IAAMV,EAAW,MAAMW,MAAM,CAAC,UAAU,CAAC,CAAE,CACzCC,OAAQ,OACRC,QAAS,CAAE,eAAgB,kBAAmB,EAC9CC,KAAMV,KAAKW,SAAS,CAAC,OAAEN,WAAOC,CAAS,GACvCM,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CAAE,CAEhB,IAAMC,EAAQ,AAAIC,MADH,AACSb,MADHN,EAASE,IAAI,IACA,CAAC,KAAK,EAAEF,EAASoB,MAAM,CAAA,CAAE,CAE3D,OADAF,EAAME,MAAM,CAAGpB,EAASoB,MAAM,CACxBF,CACR,CACA,OAAOlB,EAASqB,IAAI,EACtB,CAEO,eAAeC,EAAUC,CAAY,CAAEC,CAAa,EACzD,IAAMxB,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,CACjDE,MAAO,WACPT,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACNE,AAAJ,MAAU,CAAC,oBAAoB,EAAEnB,EAASoB,MAAM,CAAA,CAAE,EAE1D,OAAOpB,EAASqB,IAAI,EACtB,CAEO,eAAeK,EAAWH,CAAY,CAAEC,CAAa,CAAEZ,CAAsB,CAAEE,CAAa,EACjG,IAAMd,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,QACjDX,EACAC,QAAS,CAAE,eAAgB,kBAAmB,EAC9CC,KAAMV,KAAKW,SAAS,CAACD,GACrBE,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACV,AAAIE,MAAM,MAAMpB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASoB,MAAM,CAAA,CAAE,GAE3F,OAAOpB,EAASqB,IAAI,EACtB,CAEO,eAAeM,EAAUJ,CAAY,CAAEC,CAAa,EACzD,IAAMxB,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,CACjDX,OAAQ,SACRI,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACV,AAAIE,MAAM,MAAMpB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASoB,MAAM,CAAA,CAAE,EAE7F,CAEO,eAAeQ,EAAYL,CAAY,CAAEC,CAAa,CAAEK,CAAkB,EAC/E,IAAM7B,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,CACjD,GAAGM,CAAI,CACPhB,QAAS,CAAE,eAAgB,mBAAoB,GAAIgB,GAAMhB,SAAW,CAAC,CAAC,AAAE,EACxEG,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACV,AAAIE,MAAM,MAAMpB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASoB,MAAM,CAAA,CAAE,GAE3F,OAAOpB,EAASqB,IAAI,EACtB,0HAzFO,SAAS7B,AAA8DC,CAAS,EAErF,MAAO,CACL,GAAGA,CAAM,CACT,GAAGE,OAAOC,WAAW,CAHK,AAGJF,CAHK,aAAc,cAAc,CAGbG,GAAG,CAAC,AAACC,GAAQ,CAACA,EAAKL,CAAM,CAACK,EAAI,EAAI,KAAK,EAAE,AACrF,CACF,4BCxHM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,EAAI,WAAA,OAAA,EAAiB,GAAK,CAAA,CAC9B,AAD8B,CAC7B,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAc,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AAC3C,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAE,AAAF,EAAK,CAAc,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAC5C,CAAA,CAAA,6CCHK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAS,AAAT,CAAA,CAAA,CAAA,QAAS,OAAA,EAAiB,QAAU,CAAA,CAAA,AACxC,CAAC,QAAU,CAAA,CAAA,AAAE,EAAI,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,CAAI,CAAA,CAAA,IAAA,CAAM,CAAG,CAAA,CAAA,CAAA,CAAA,CAAK,AAAL,GAAU,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAU,CAAA,CAAA,AACxD,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAkB,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAChD,CAAA,CAAA,kDCHK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAS,CAAT,CAAA,CAAA,QAAS,OAAA,EAAiB,QAAU,CAAA,CAAA,AACxC,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAW,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AACxC,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAyC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AACtE,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAsC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AACnE,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAQ,CAAE,CAAA,CAAA,CAAI,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAI,CAAM,CAAA,CAAA,CAAA,CAAA,EAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAClE,AADkE,CACjE,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAQ,CAAE,CAAA,CAAA,CAAI,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAI,CAAM,CAAA,CAAA,CAAA,CAAA,EAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAA,CAAK,AAAL,OAAK,CAAS,CAAA,CAClE,CAAA,CAAA,kDCNK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAY,CAAZ,CAAA,CAAA,CAAA,CAAA,CAAA,KAAY,OAAA,EAAiB,WAAa,CAAA,CAAA,AAC9C,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAqD,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAK,AAAL,QAAK,CAAU,CAAA,CAAA,AAClF,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAY,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAC1C,CAAA,CAAA,oDCHK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAO,CAAP,UAAO,OAAA,EAAiB,MAAQ,CAAA,CAAA,AACpC,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,KAAO,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,EAAQ,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAG,CAAK,CAAA,CAAA,CAAA,CAAA,CAAA,AAAG,IAAK,CAAI,CAAA,CAAA,GAAA,CAAK,CAAA,EAAI,CAAA,CAAA,CAAK,CAAA,CAAA,CAAA,CAAA,CAAK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAU,CAAA,CAAA,AACvF,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAA2D,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CACzF,CAAA,CAAA","ignoreList":[1,2,3,4,5]} \ No newline at end of file +{"version":3,"sources":["../../../../lib/api.ts","../../../../node_modules/lucide-react/src/icons/x.ts","../../../../node_modules/lucide-react/src/icons/search.ts","../../../../node_modules/lucide-react/src/icons/trash-2.ts","../../../../node_modules/lucide-react/src/icons/rotate-ccw.ts","../../../../node_modules/lucide-react/src/icons/copy.ts"],"sourcesContent":["export const API_BASE = \"/api/v1\";\n\nexport type Entity = {\n id: string;\n created_at: string;\n updated_at: string;\n};\n\nexport type Customer = Entity & {\n customer_type: \"practice\" | \"clinic\";\n source_system?: string | null;\n external_id?: string | null;\n name: string;\n city?: string | null;\n phone?: string | null;\n email?: string | null;\n hygiene_officer?: string | null;\n quality_manager?: string | null;\n notes?: string | null;\n};\n\nexport type Location = Entity & {\n customer_id: string;\n name: string;\n street?: string | null;\n postal_code?: string | null;\n city?: string | null;\n room?: string | null;\n};\n\nexport type Contact = Entity & {\n customer_id: string;\n full_name: string;\n function?: string | null;\n email?: string | null;\n phone?: string | null;\n};\n\nexport type Device = Entity & {\n customer_id: string;\n location_id?: string | null;\n manufacturer: string;\n model: string;\n serial_number: string;\n device_type?: string | null;\n year_built?: number | null;\n commissioned_on?: string | null;\n chamber_volume_liters?: number | null;\n steam_generation?: string | null;\n water_treatment?: string | null;\n documentation?: string | null;\n supplier?: string | null;\n};\n\nexport type Equipment = Entity & {\n kind: string;\n manufacturer?: string | null;\n model?: string | null;\n serial_number: string;\n calibrated_on?: string | null;\n calibration_due_on?: string | null;\n certificate_document_id?: string | null;\n status: \"green\" | \"yellow\" | \"red\";\n};\n\nexport type User = Entity & {\n email: string;\n first_name: string;\n last_name: string;\n role: \"admin\" | \"pruefer\" | \"mitarbeiter\" | \"leser\";\n is_active: boolean;\n must_change_password: boolean;\n last_login_at?: string | null;\n password_changed_at?: string | null;\n};\n\nexport type ValidationItem = Entity & {\n report_number: string;\n customer_id: string;\n location_id?: string | null;\n contact_id?: string | null;\n device_id?: string | null;\n validation_type: string;\n project?: string | null;\n test_location?: string | null;\n examiner_name?: string | null;\n participants?: string | null;\n operator_name?: string | null;\n status: string;\n result?: string | null;\n scheduled_on?: string | null;\n performed_on?: string | null;\n next_validation_on?: string | null;\n revalidation_interval_months: number;\n next_validation_manually_overridden: boolean;\n version: number;\n previous_validation_id?: string | null;\n equipment_ids: string[];\n environment_conditions: Record;\n documentation_checklist: Record[];\n performance_checklist: Record[];\n programs: Record[];\n loading_patterns: Record[];\n measurement_data: Record[];\n drying: Record;\n recommendations: Record[];\n attachments: Record[];\n};\n\nexport type QuickStartValidationSummary = {\n id: string;\n device_id: string;\n report_number: string;\n performed_on?: string | null;\n result?: string | null;\n next_validation_on?: string | null;\n status: string;\n validation_type?: string | null;\n equipment_ids: string[];\n};\n\nexport type QuickStartCustomerData = {\n customer: Customer;\n locations: Location[];\n contacts: Contact[];\n devices: Device[];\n validations: QuickStartValidationSummary[];\n};\n\nexport function normalizeValidationPayload>(values: T): T {\n const optionalForeignKeys = [\"contact_id\", \"examiner_id\"];\n return {\n ...values,\n ...Object.fromEntries(optionalForeignKeys.map((key) => [key, values[key] || null]))\n };\n}\n\nexport type Paginated = {\n items: T[];\n total: number;\n page: number;\n page_size: number;\n pages?: number;\n};\n\nasync function readErrorMessage(response: Response, fallback: string) {\n const text = await response.text();\n if (!text) {\n return fallback;\n }\n try {\n const parsed = JSON.parse(text) as { detail?: string; message?: string };\n return parsed.detail ?? parsed.message ?? text;\n } catch {\n return text;\n }\n}\n\nexport async function login(email: string, password: string) {\n const response = await fetch(`/api/login`, {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ email, password }),\n credentials: \"include\"\n });\n if (!response.ok) {\n const detail = await response.text();\n const error = new Error(detail || `HTTP ${response.status}`) as Error & { status?: number };\n error.status = response.status;\n throw error;\n }\n return response.json() as Promise<{ user: User; expires_in: number }>;\n}\n\nexport async function apiGet(path: string, token: string): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n cache: \"no-store\",\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(`API request failed: ${response.status}`);\n }\n return response.json() as Promise;\n}\n\nexport async function apiSend(path: string, token: string, method: \"POST\" | \"PUT\", body: unknown): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n method,\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify(body),\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n return response.json() as Promise;\n}\n\nexport async function apiDelete(path: string, token: string): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n method: \"DELETE\",\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n}\n\nexport async function apiFetch(path: string, token: string, init?: RequestInit): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n ...init,\n headers: { \"Content-Type\": \"application/json\", ...(init?.headers ?? {}) },\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n return response.json() as Promise;\n}\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name X\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTggNiA2IDE4IiAvPgogIDxwYXRoIGQ9Im02IDYgMTIgMTIiIC8+Cjwvc3ZnPgo=) - https://lucide.dev/icons/x\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst X = createLucideIcon('X', [\n ['path', { d: 'M18 6 6 18', key: '1bl5f8' }],\n ['path', { d: 'm6 6 12 12', key: 'd8bk6v' }],\n]);\n\nexport default X;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Search\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8Y2lyY2xlIGN4PSIxMSIgY3k9IjExIiByPSI4IiAvPgogIDxwYXRoIGQ9Im0yMSAyMS00LjMtNC4zIiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/search\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Search = createLucideIcon('Search', [\n ['circle', { cx: '11', cy: '11', r: '8', key: '4ej97u' }],\n ['path', { d: 'm21 21-4.3-4.3', key: '1qie3q' }],\n]);\n\nexport default Search;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Trash2\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMyA2aDE4IiAvPgogIDxwYXRoIGQ9Ik0xOSA2djE0YzAgMS0xIDItMiAySDdjLTEgMC0yLTEtMi0yVjYiIC8+CiAgPHBhdGggZD0iTTggNlY0YzAtMSAxLTIgMi0yaDRjMSAwIDIgMSAyIDJ2MiIgLz4KICA8bGluZSB4MT0iMTAiIHgyPSIxMCIgeTE9IjExIiB5Mj0iMTciIC8+CiAgPGxpbmUgeDE9IjE0IiB4Mj0iMTQiIHkxPSIxMSIgeTI9IjE3IiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/trash-2\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Trash2 = createLucideIcon('Trash2', [\n ['path', { d: 'M3 6h18', key: 'd0wm0j' }],\n ['path', { d: 'M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6', key: '4alrt4' }],\n ['path', { d: 'M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2', key: 'v07s0e' }],\n ['line', { x1: '10', x2: '10', y1: '11', y2: '17', key: '1uufr5' }],\n ['line', { x1: '14', x2: '14', y1: '11', y2: '17', key: 'xtxkd' }],\n]);\n\nexport default Trash2;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name RotateCcw\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMyAxMmE5IDkgMCAxIDAgOS05IDkuNzUgOS43NSAwIDAgMC02Ljc0IDIuNzRMMyA4IiAvPgogIDxwYXRoIGQ9Ik0zIDN2NWg1IiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/rotate-ccw\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst RotateCcw = createLucideIcon('RotateCcw', [\n ['path', { d: 'M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8', key: '1357e3' }],\n ['path', { d: 'M3 3v5h5', key: '1xhq8a' }],\n]);\n\nexport default RotateCcw;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Copy\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cmVjdCB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHg9IjgiIHk9IjgiIHJ4PSIyIiByeT0iMiIgLz4KICA8cGF0aCBkPSJNNCAxNmMtMS4xIDAtMi0uOS0yLTJWNGMwLTEuMS45LTIgMi0yaDEwYzEuMSAwIDIgLjkgMiAyIiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/copy\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Copy = createLucideIcon('Copy', [\n ['rect', { width: '14', height: '14', x: '8', y: '8', rx: '2', ry: '2', key: '17jyea' }],\n ['path', { d: 'M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2', key: 'zix9uf' }],\n]);\n\nexport default Copy;\n"],"names":["API_BASE","normalizeValidationPayload","values","optionalForeignKeys","Object","fromEntries","map","key","readErrorMessage","response","fallback","text","parsed","JSON","parse","detail","message","login","email","password","fetch","method","headers","body","stringify","credentials","ok","error","Error","status","json","apiGet","path","token","cache","apiSend","apiDelete","apiFetch","init"],"mappings":"uCAAO,IAAMA,EAAW,UAiJxB,eAAeQ,EAAiBC,CAAkB,CAAEC,CAAgB,EAClE,IAAMC,EAAO,MAAMF,EAASE,IAAI,GAChC,GAAI,CAACA,EACH,IADS,GACFD,EAET,GAAI,CACF,IAAME,EAASC,KAAKC,KAAK,CAACH,GAC1B,OAAOC,EAAOG,MAAM,EAAIH,EAAOI,OAAO,EAAIL,CAC5C,CAAE,KAAM,CACN,OAAOA,CACT,CACF,CAEO,eAAeM,EAAMC,CAAa,CAAEC,CAAgB,EACzD,IAAMV,EAAW,MAAMW,MAAM,CAAC,UAAU,CAAC,CAAE,CACzCC,OAAQ,OACRC,QAAS,CAAE,eAAgB,kBAAmB,EAC9CC,KAAMV,KAAKW,SAAS,CAAC,OAAEN,WAAOC,CAAS,GACvCM,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CAAE,CAEhB,IAAMC,EAAQ,AAAIC,MADH,AACSb,MADHN,EAASE,IAAI,IACA,CAAC,KAAK,EAAEF,EAASoB,MAAM,CAAA,CAAE,CAE3D,OADAF,EAAME,MAAM,CAAGpB,EAASoB,MAAM,CACxBF,CACR,CACA,OAAOlB,EAASqB,IAAI,EACtB,CAEO,eAAeC,EAAUC,CAAY,CAAEC,CAAa,EACzD,IAAMxB,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,CACjDE,MAAO,WACPT,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACNE,AAAJ,MAAU,CAAC,oBAAoB,EAAEnB,EAASoB,MAAM,CAAA,CAAE,EAE1D,OAAOpB,EAASqB,IAAI,EACtB,CAEO,eAAeK,EAAWH,CAAY,CAAEC,CAAa,CAAEZ,CAAsB,CAAEE,CAAa,EACjG,IAAMd,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,QACjDX,EACAC,QAAS,CAAE,eAAgB,kBAAmB,EAC9CC,KAAMV,KAAKW,SAAS,CAACD,GACrBE,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACV,AAAIE,MAAM,MAAMpB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASoB,MAAM,CAAA,CAAE,GAE3F,OAAOpB,EAASqB,IAAI,EACtB,CAEO,eAAeM,EAAUJ,CAAY,CAAEC,CAAa,EACzD,IAAMxB,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,CACjDX,OAAQ,SACRI,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACV,AAAIE,MAAM,MAAMpB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASoB,MAAM,CAAA,CAAE,EAE7F,CAEO,eAAeQ,EAAYL,CAAY,CAAEC,CAAa,CAAEK,CAAkB,EAC/E,IAAM7B,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,CACjD,GAAGM,CAAI,CACPhB,QAAS,CAAE,eAAgB,mBAAoB,GAAIgB,GAAMhB,SAAW,CAAC,CAAC,AAAE,EACxEG,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACV,AAAIE,MAAM,MAAMpB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASoB,MAAM,CAAA,CAAE,GAE3F,OAAOpB,EAASqB,IAAI,EACtB,0HAzFO,SAAS7B,AAA8DC,CAAS,EAErF,MAAO,CACL,GAAGA,CAAM,CACT,GAAGE,OAAOC,WAAW,CAHK,AAGJF,CAHK,aAAc,cAAc,CAGbG,GAAG,CAAC,AAACC,GAAQ,CAACA,EAAKL,CAAM,CAACK,EAAI,EAAI,KAAK,EAAE,AACrF,CACF,4BC1HM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,EAAI,WAAA,OAAA,EAAiB,GAAK,CAAA,CAC9B,AAD8B,CAC7B,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAc,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AAC3C,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAE,AAAF,EAAK,CAAc,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAC5C,CAAA,CAAA,6CCHK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAS,AAAT,CAAA,CAAA,CAAA,QAAS,OAAA,EAAiB,QAAU,CAAA,CAAA,AACxC,CAAC,QAAU,CAAA,CAAA,AAAE,EAAI,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,CAAI,CAAA,CAAA,IAAA,CAAM,CAAG,CAAA,CAAA,CAAA,CAAA,CAAK,AAAL,GAAU,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAU,CAAA,CAAA,AACxD,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAkB,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAChD,CAAA,CAAA,kDCHK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAS,CAAT,CAAA,CAAA,QAAS,OAAA,EAAiB,QAAU,CAAA,CAAA,AACxC,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAW,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AACxC,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAyC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AACtE,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAsC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AACnE,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAQ,CAAE,CAAA,CAAA,CAAI,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAI,CAAM,CAAA,CAAA,CAAA,CAAA,EAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAClE,AADkE,CACjE,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAQ,CAAE,CAAA,CAAA,CAAI,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAI,CAAM,CAAA,CAAA,CAAA,CAAA,EAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAA,CAAK,AAAL,OAAK,CAAS,CAAA,CAClE,CAAA,CAAA,kDCNK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAY,CAAZ,CAAA,CAAA,CAAA,CAAA,CAAA,KAAY,OAAA,EAAiB,WAAa,CAAA,CAAA,AAC9C,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAqD,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAK,AAAL,QAAK,CAAU,CAAA,CAAA,AAClF,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAY,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAC1C,CAAA,CAAA,oDCHK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAO,CAAP,UAAO,OAAA,EAAiB,MAAQ,CAAA,CAAA,AACpC,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,KAAO,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,EAAQ,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAG,CAAK,CAAA,CAAA,CAAA,CAAA,CAAA,AAAG,IAAK,CAAI,CAAA,CAAA,GAAA,CAAK,CAAA,EAAI,CAAA,CAAA,CAAK,CAAA,CAAA,CAAA,CAAA,CAAK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAU,CAAA,CAAA,AACvF,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAA2D,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CACzF,CAAA,CAAA","ignoreList":[1,2,3,4,5]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0454dxv._.js b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0454dxv._.js new file mode 100644 index 00000000..825caef0 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0454dxv._.js @@ -0,0 +1,3 @@ +module.exports=[53250,a=>{"use strict";let b="/api/v1";async function c(a,b){let c=await a.text();if(!c)return b;try{let a=JSON.parse(c);return a.detail??a.message??c}catch{return c}}async function d(a,b){let c=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:a,password:b}),credentials:"include"});if(!c.ok){let a=Error(await c.text()||`HTTP ${c.status}`);throw a.status=c.status,a}return c.json()}async function e(a,c){let d=await fetch(`${b}${a}`,{cache:"no-store",credentials:"include"});if(!d.ok)throw Error(`API request failed: ${d.status}`);return d.json()}async function f(a,d,e,f){let g=await fetch(`${b}${a}`,{method:e,headers:{"Content-Type":"application/json"},body:JSON.stringify(f),credentials:"include"});if(!g.ok)throw Error(await c(g,`API request failed: ${g.status}`));return g.json()}async function g(a,d){let e=await fetch(`${b}${a}`,{method:"DELETE",credentials:"include"});if(!e.ok)throw Error(await c(e,`API request failed: ${e.status}`))}async function h(a,d,e){let f=await fetch(`${b}${a}`,{...e,headers:{"Content-Type":"application/json",...e?.headers??{}},credentials:"include"});if(!f.ok)throw Error(await c(f,`API request failed: ${f.status}`));return f.json()}a.s(["API_BASE",0,b,"apiDelete",0,g,"apiFetch",0,h,"apiGet",0,e,"apiSend",0,f,"login",0,d,"normalizeValidationPayload",0,function(a){return{...a,...Object.fromEntries(["contact_id","examiner_id"].map(b=>[b,a[b]||null]))}}])},33508,a=>{"use strict";let b=(0,a.i(70106).default)("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]);a.s(["X",0,b],33508)},74618,a=>{"use strict";let b=(0,a.i(70106).default)("CloudUpload",[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"m8 17 4-4 4 4",key:"1quai1"}]]);a.s(["UploadCloud",0,b],74618)},84505,a=>{"use strict";let b=(0,a.i(70106).default)("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);a.s(["Download",0,b],84505)},14548,a=>{"use strict";let b=(0,a.i(70106).default)("Save",[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]]);a.s(["Save",0,b],14548)},67453,a=>{"use strict";let b=(0,a.i(70106).default)("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);a.s(["CheckCircle2",0,b],67453)},99712,a=>{"use strict";var b=a.i(87924),c=a.i(70106);let d=(0,c.default)("CircleAlert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);var e=a.i(67453);let f=(0,c.default)("CircleDashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]]),g=(0,c.default)("ShieldAlert",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]),h={OFFEN:{value:"OFFEN",label:"Noch nicht bewertet",badgeClass:"border-slate-300 bg-slate-100 text-slate-700",previewClass:"border-slate-300 bg-slate-50 text-slate-700",color:"#2E3B40",icon:f},BESTANDEN:{value:"BESTANDEN",label:"Bestanden",badgeClass:"border-success/35 bg-success/15 text-success",previewClass:"border-success/40 bg-success/10 text-success",color:"#245C36",icon:e.CheckCircle2},BESTANDEN_MIT_AUFLAGEN:{value:"BESTANDEN_MIT_AUFLAGEN",label:"Bestanden mit Auflagen",badgeClass:"border-warning/40 bg-warning/15 text-[#7A5A00]",previewClass:"border-warning/45 bg-warning/10 text-[#7A5A00]",color:"#7A5A00",icon:g},NICHT_BESTANDEN:{value:"NICHT_BESTANDEN",label:"Nicht bestanden",badgeClass:"border-danger/35 bg-danger/15 text-danger",previewClass:"border-danger/40 bg-danger/10 text-danger",color:"#7A1F26",icon:d}},i={"":"OFFEN",offen:"OFFEN",OFFEN:"OFFEN",bestanden:"BESTANDEN",BESTANDEN:"BESTANDEN",mit_auflagen:"BESTANDEN_MIT_AUFLAGEN",bestanden_mit_auflagen:"BESTANDEN_MIT_AUFLAGEN","bestanden mit auflagen":"BESTANDEN_MIT_AUFLAGEN",BESTANDEN_MIT_AUFLAGEN:"BESTANDEN_MIT_AUFLAGEN",nicht_bestanden:"NICHT_BESTANDEN","nicht bestanden":"NICHT_BESTANDEN",NICHT_BESTANDEN:"NICHT_BESTANDEN"};function j(a){return i[String(a??"").trim()]??"OFFEN"}function k(a){return h[j(a)]}a.s(["ValidationResultBadge",0,function({value:a,className:c=""}){let d=k(a),e=d.icon;return(0,b.jsxs)("span",{className:`inline-flex items-center gap-1.5 rounded-full border px-3 py-1 text-xs font-semibold ${d.badgeClass} ${c}`,children:[(0,b.jsx)(e,{className:"h-3.5 w-3.5"}),d.label]})},"getValidationResultPresentation",0,k,"normalizeValidationResult",0,j,"validationResultValues",0,["OFFEN","BESTANDEN","BESTANDEN_MIT_AUFLAGEN","NICHT_BESTANDEN"]],99712)},15618,a=>{"use strict";let b=(0,a.i(70106).default)("Plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);a.s(["Plus",0,b],15618)}]; + +//# sourceMappingURL=_0454dxv._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0454dxv._.js.map b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0454dxv._.js.map new file mode 100644 index 00000000..172b9491 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0454dxv._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../lib/api.ts","../../../../node_modules/lucide-react/src/icons/x.ts","../../../../node_modules/lucide-react/src/icons/cloud-upload.ts","../../../../node_modules/lucide-react/src/icons/download.ts","../../../../node_modules/lucide-react/src/icons/save.ts","../../../../node_modules/lucide-react/src/icons/circle-check.ts","../../../../lib/validation-result.tsx","../../../../node_modules/lucide-react/src/icons/shield-alert.ts","../../../../node_modules/lucide-react/src/icons/circle-alert.ts","../../../../node_modules/lucide-react/src/icons/circle-dashed.ts","../../../../node_modules/lucide-react/src/icons/plus.ts"],"sourcesContent":["export const API_BASE = \"/api/v1\";\n\nexport type Entity = {\n id: string;\n created_at: string;\n updated_at: string;\n};\n\nexport type Customer = Entity & {\n customer_type: \"practice\" | \"clinic\";\n source_system?: string | null;\n external_id?: string | null;\n name: string;\n city?: string | null;\n phone?: string | null;\n email?: string | null;\n hygiene_officer?: string | null;\n quality_manager?: string | null;\n notes?: string | null;\n};\n\nexport type Location = Entity & {\n customer_id: string;\n name: string;\n street?: string | null;\n postal_code?: string | null;\n city?: string | null;\n room?: string | null;\n};\n\nexport type Contact = Entity & {\n customer_id: string;\n full_name: string;\n function?: string | null;\n email?: string | null;\n phone?: string | null;\n};\n\nexport type Device = Entity & {\n customer_id: string;\n location_id?: string | null;\n manufacturer: string;\n model: string;\n serial_number: string;\n device_type?: string | null;\n year_built?: number | null;\n commissioned_on?: string | null;\n chamber_volume_liters?: number | null;\n steam_generation?: string | null;\n water_treatment?: string | null;\n documentation?: string | null;\n supplier?: string | null;\n};\n\nexport type Equipment = Entity & {\n kind: string;\n manufacturer?: string | null;\n model?: string | null;\n serial_number: string;\n calibrated_on?: string | null;\n calibration_due_on?: string | null;\n certificate_document_id?: string | null;\n status: \"green\" | \"yellow\" | \"red\";\n};\n\nexport type User = Entity & {\n email: string;\n first_name: string;\n last_name: string;\n role: \"admin\" | \"pruefer\" | \"mitarbeiter\" | \"leser\";\n is_active: boolean;\n must_change_password: boolean;\n last_login_at?: string | null;\n password_changed_at?: string | null;\n};\n\nexport type ValidationItem = Entity & {\n report_number: string;\n customer_id: string;\n location_id?: string | null;\n contact_id?: string | null;\n device_id?: string | null;\n validation_type: string;\n project?: string | null;\n test_location?: string | null;\n examiner_name?: string | null;\n participants?: string | null;\n operator_name?: string | null;\n status: string;\n result?: string | null;\n scheduled_on?: string | null;\n performed_on?: string | null;\n next_validation_on?: string | null;\n revalidation_interval_months: number;\n next_validation_manually_overridden: boolean;\n version: number;\n previous_validation_id?: string | null;\n equipment_ids: string[];\n environment_conditions: Record;\n documentation_checklist: Record[];\n performance_checklist: Record[];\n programs: Record[];\n loading_patterns: Record[];\n measurement_data: Record[];\n drying: Record;\n recommendations: Record[];\n attachments: Record[];\n};\n\nexport type QuickStartValidationSummary = {\n id: string;\n device_id: string;\n report_number: string;\n performed_on?: string | null;\n result?: string | null;\n next_validation_on?: string | null;\n status: string;\n validation_type?: string | null;\n equipment_ids: string[];\n};\n\nexport type QuickStartCustomerData = {\n customer: Customer;\n locations: Location[];\n contacts: Contact[];\n devices: Device[];\n validations: QuickStartValidationSummary[];\n};\n\nexport function normalizeValidationPayload>(values: T): T {\n const optionalForeignKeys = [\"contact_id\", \"examiner_id\"];\n return {\n ...values,\n ...Object.fromEntries(optionalForeignKeys.map((key) => [key, values[key] || null]))\n };\n}\n\nexport type Paginated = {\n items: T[];\n total: number;\n page: number;\n page_size: number;\n pages?: number;\n};\n\nasync function readErrorMessage(response: Response, fallback: string) {\n const text = await response.text();\n if (!text) {\n return fallback;\n }\n try {\n const parsed = JSON.parse(text) as { detail?: string; message?: string };\n return parsed.detail ?? parsed.message ?? text;\n } catch {\n return text;\n }\n}\n\nexport async function login(email: string, password: string) {\n const response = await fetch(`/api/login`, {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ email, password }),\n credentials: \"include\"\n });\n if (!response.ok) {\n const detail = await response.text();\n const error = new Error(detail || `HTTP ${response.status}`) as Error & { status?: number };\n error.status = response.status;\n throw error;\n }\n return response.json() as Promise<{ user: User; expires_in: number }>;\n}\n\nexport async function apiGet(path: string, token: string): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n cache: \"no-store\",\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(`API request failed: ${response.status}`);\n }\n return response.json() as Promise;\n}\n\nexport async function apiSend(path: string, token: string, method: \"POST\" | \"PUT\", body: unknown): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n method,\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify(body),\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n return response.json() as Promise;\n}\n\nexport async function apiDelete(path: string, token: string): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n method: \"DELETE\",\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n}\n\nexport async function apiFetch(path: string, token: string, init?: RequestInit): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n ...init,\n headers: { \"Content-Type\": \"application/json\", ...(init?.headers ?? {}) },\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n return response.json() as Promise;\n}\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name X\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTggNiA2IDE4IiAvPgogIDxwYXRoIGQ9Im02IDYgMTIgMTIiIC8+Cjwvc3ZnPgo=) - https://lucide.dev/icons/x\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst X = createLucideIcon('X', [\n ['path', { d: 'M18 6 6 18', key: '1bl5f8' }],\n ['path', { d: 'm6 6 12 12', key: 'd8bk6v' }],\n]);\n\nexport default X;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name CloudUpload\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTIgMTN2OCIgLz4KICA8cGF0aCBkPSJNNCAxNC44OTlBNyA3IDAgMSAxIDE1LjcxIDhoMS43OWE0LjUgNC41IDAgMCAxIDIuNSA4LjI0MiIgLz4KICA8cGF0aCBkPSJtOCAxNyA0LTQgNCA0IiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/cloud-upload\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst CloudUpload = createLucideIcon('CloudUpload', [\n ['path', { d: 'M12 13v8', key: '1l5pq0' }],\n ['path', { d: 'M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242', key: '1pljnt' }],\n ['path', { d: 'm8 17 4-4 4 4', key: '1quai1' }],\n]);\n\nexport default CloudUpload;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Download\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMjEgMTV2NGEyIDIgMCAwIDEtMiAySDVhMiAyIDAgMCAxLTItMnYtNCIgLz4KICA8cG9seWxpbmUgcG9pbnRzPSI3IDEwIDEyIDE1IDE3IDEwIiAvPgogIDxsaW5lIHgxPSIxMiIgeDI9IjEyIiB5MT0iMTUiIHkyPSIzIiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/download\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Download = createLucideIcon('Download', [\n ['path', { d: 'M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4', key: 'ih7n3h' }],\n ['polyline', { points: '7 10 12 15 17 10', key: '2ggqvy' }],\n ['line', { x1: '12', x2: '12', y1: '15', y2: '3', key: '1vk2je' }],\n]);\n\nexport default Download;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Save\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTUuMiAzYTIgMiAwIDAgMSAxLjQuNmwzLjggMy44YTIgMiAwIDAgMSAuNiAxLjRWMTlhMiAyIDAgMCAxLTIgMkg1YTIgMiAwIDAgMS0yLTJWNWEyIDIgMCAwIDEgMi0yeiIgLz4KICA8cGF0aCBkPSJNMTcgMjF2LTdhMSAxIDAgMCAwLTEtMUg4YTEgMSAwIDAgMC0xIDF2NyIgLz4KICA8cGF0aCBkPSJNNyAzdjRhMSAxIDAgMCAwIDEgMWg3IiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/save\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Save = createLucideIcon('Save', [\n [\n 'path',\n {\n d: 'M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z',\n key: '1c8476',\n },\n ],\n ['path', { d: 'M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7', key: '1ydtos' }],\n ['path', { d: 'M7 3v4a1 1 0 0 0 1 1h7', key: 't51u73' }],\n]);\n\nexport default Save;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name CircleCheck\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgLz4KICA8cGF0aCBkPSJtOSAxMiAyIDIgNC00IiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/circle-check\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst CircleCheck = createLucideIcon('CircleCheck', [\n ['circle', { cx: '12', cy: '12', r: '10', key: '1mglay' }],\n ['path', { d: 'm9 12 2 2 4-4', key: 'dzmm74' }],\n]);\n\nexport default CircleCheck;\n","import { AlertCircle, CheckCircle2, CircleDashed, ShieldAlert } from \"lucide-react\";\n\nexport const validationResultValues = [\n \"OFFEN\",\n \"BESTANDEN\",\n \"BESTANDEN_MIT_AUFLAGEN\",\n \"NICHT_BESTANDEN\"\n] as const;\n\nexport type ValidationResultValue = (typeof validationResultValues)[number];\n\nexport type ValidationResultPresentation = {\n value: ValidationResultValue;\n label: string;\n badgeClass: string;\n previewClass: string;\n color: string;\n icon: typeof CircleDashed;\n};\n\nconst presentations: Record = {\n OFFEN: {\n value: \"OFFEN\",\n label: \"Noch nicht bewertet\",\n badgeClass: \"border-slate-300 bg-slate-100 text-slate-700\",\n previewClass: \"border-slate-300 bg-slate-50 text-slate-700\",\n color: \"#2E3B40\",\n icon: CircleDashed\n },\n BESTANDEN: {\n value: \"BESTANDEN\",\n label: \"Bestanden\",\n badgeClass: \"border-success/35 bg-success/15 text-success\",\n previewClass: \"border-success/40 bg-success/10 text-success\",\n color: \"#245C36\",\n icon: CheckCircle2\n },\n BESTANDEN_MIT_AUFLAGEN: {\n value: \"BESTANDEN_MIT_AUFLAGEN\",\n label: \"Bestanden mit Auflagen\",\n badgeClass: \"border-warning/40 bg-warning/15 text-[#7A5A00]\",\n previewClass: \"border-warning/45 bg-warning/10 text-[#7A5A00]\",\n color: \"#7A5A00\",\n icon: ShieldAlert\n },\n NICHT_BESTANDEN: {\n value: \"NICHT_BESTANDEN\",\n label: \"Nicht bestanden\",\n badgeClass: \"border-danger/35 bg-danger/15 text-danger\",\n previewClass: \"border-danger/40 bg-danger/10 text-danger\",\n color: \"#7A1F26\",\n icon: AlertCircle\n }\n};\n\nconst aliases: Record = {\n \"\": \"OFFEN\",\n offen: \"OFFEN\",\n OFFEN: \"OFFEN\",\n bestanden: \"BESTANDEN\",\n BESTANDEN: \"BESTANDEN\",\n mit_auflagen: \"BESTANDEN_MIT_AUFLAGEN\",\n bestanden_mit_auflagen: \"BESTANDEN_MIT_AUFLAGEN\",\n \"bestanden mit auflagen\": \"BESTANDEN_MIT_AUFLAGEN\",\n BESTANDEN_MIT_AUFLAGEN: \"BESTANDEN_MIT_AUFLAGEN\",\n nicht_bestanden: \"NICHT_BESTANDEN\",\n \"nicht bestanden\": \"NICHT_BESTANDEN\",\n NICHT_BESTANDEN: \"NICHT_BESTANDEN\"\n};\n\nexport function normalizeValidationResult(value?: string | null): ValidationResultValue {\n return aliases[String(value ?? \"\").trim()] ?? \"OFFEN\";\n}\n\nexport function getValidationResultPresentation(value?: string | null) {\n return presentations[normalizeValidationResult(value)];\n}\n\nexport function ValidationResultBadge({ value, className = \"\" }: { value?: string | null; className?: string }) {\n const presentation = getValidationResultPresentation(value);\n const Icon = presentation.icon;\n return (\n \n \n {presentation.label}\n \n );\n}\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name ShieldAlert\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMjAgMTNjMCA1LTMuNSA3LjUtNy42NiA4Ljk1YTEgMSAwIDAgMS0uNjctLjAxQzcuNSAyMC41IDQgMTggNCAxM1Y2YTEgMSAwIDAgMSAxLTFjMiAwIDQuNS0xLjIgNi4yNC0yLjcyYTEuMTcgMS4xNyAwIDAgMSAxLjUyIDBDMTQuNTEgMy44MSAxNyA1IDE5IDVhMSAxIDAgMCAxIDEgMXoiIC8+CiAgPHBhdGggZD0iTTEyIDh2NCIgLz4KICA8cGF0aCBkPSJNMTIgMTZoLjAxIiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/shield-alert\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst ShieldAlert = createLucideIcon('ShieldAlert', [\n [\n 'path',\n {\n d: 'M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z',\n key: 'oel41y',\n },\n ],\n ['path', { d: 'M12 8v4', key: '1got3b' }],\n ['path', { d: 'M12 16h.01', key: '1drbdi' }],\n]);\n\nexport default ShieldAlert;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name CircleAlert\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgLz4KICA8bGluZSB4MT0iMTIiIHgyPSIxMiIgeTE9IjgiIHkyPSIxMiIgLz4KICA8bGluZSB4MT0iMTIiIHgyPSIxMi4wMSIgeTE9IjE2IiB5Mj0iMTYiIC8+Cjwvc3ZnPgo=) - https://lucide.dev/icons/circle-alert\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst CircleAlert = createLucideIcon('CircleAlert', [\n ['circle', { cx: '12', cy: '12', r: '10', key: '1mglay' }],\n ['line', { x1: '12', x2: '12', y1: '8', y2: '12', key: '1pkeuh' }],\n ['line', { x1: '12', x2: '12.01', y1: '16', y2: '16', key: '4dfq90' }],\n]);\n\nexport default CircleAlert;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name CircleDashed\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTAuMSAyLjE4MmExMCAxMCAwIDAgMSAzLjggMCIgLz4KICA8cGF0aCBkPSJNMTMuOSAyMS44MThhMTAgMTAgMCAwIDEtMy44IDAiIC8+CiAgPHBhdGggZD0iTTE3LjYwOSAzLjcyMWExMCAxMCAwIDAgMSAyLjY5IDIuNyIgLz4KICA8cGF0aCBkPSJNMi4xODIgMTMuOWExMCAxMCAwIDAgMSAwLTMuOCIgLz4KICA8cGF0aCBkPSJNMjAuMjc5IDE3LjYwOWExMCAxMCAwIDAgMS0yLjcgMi42OSIgLz4KICA8cGF0aCBkPSJNMjEuODE4IDEwLjFhMTAgMTAgMCAwIDEgMCAzLjgiIC8+CiAgPHBhdGggZD0iTTMuNzIxIDYuMzkxYTEwIDEwIDAgMCAxIDIuNy0yLjY5IiAvPgogIDxwYXRoIGQ9Ik02LjM5MSAyMC4yNzlhMTAgMTAgMCAwIDEtMi42OS0yLjciIC8+Cjwvc3ZnPgo=) - https://lucide.dev/icons/circle-dashed\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst CircleDashed = createLucideIcon('CircleDashed', [\n ['path', { d: 'M10.1 2.182a10 10 0 0 1 3.8 0', key: '5ilxe3' }],\n ['path', { d: 'M13.9 21.818a10 10 0 0 1-3.8 0', key: '11zvb9' }],\n ['path', { d: 'M17.609 3.721a10 10 0 0 1 2.69 2.7', key: '1iw5b2' }],\n ['path', { d: 'M2.182 13.9a10 10 0 0 1 0-3.8', key: 'c0bmvh' }],\n ['path', { d: 'M20.279 17.609a10 10 0 0 1-2.7 2.69', key: '1ruxm7' }],\n ['path', { d: 'M21.818 10.1a10 10 0 0 1 0 3.8', key: 'qkgqxc' }],\n ['path', { d: 'M3.721 6.391a10 10 0 0 1 2.7-2.69', key: '1mcia2' }],\n ['path', { d: 'M6.391 20.279a10 10 0 0 1-2.69-2.7', key: '1fvljs' }],\n]);\n\nexport default CircleDashed;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Plus\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNNSAxMmgxNCIgLz4KICA8cGF0aCBkPSJNMTIgNXYxNCIgLz4KPC9zdmc+Cg==) - https://lucide.dev/icons/plus\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Plus = createLucideIcon('Plus', [\n ['path', { d: 'M5 12h14', key: '1ays0h' }],\n ['path', { d: 'M12 5v14', key: 's699le' }],\n]);\n\nexport default Plus;\n"],"names":["API_BASE","normalizeValidationPayload","values","optionalForeignKeys","Object","fromEntries","map","key","readErrorMessage","response","fallback","text","parsed","JSON","parse","detail","message","login","email","password","fetch","method","headers","body","stringify","credentials","ok","error","Error","status","json","apiGet","path","token","cache","apiSend","apiDelete","apiFetch","init"],"mappings":"uCAAO,IAAMA,EAAW,UAiJxB,eAAeQ,EAAiBC,CAAkB,CAAEC,CAAgB,EAClE,IAAMC,EAAO,MAAMF,EAASE,IAAI,GAChC,GAAI,CAACA,EACH,IADS,GACFD,EAET,GAAI,CACF,IAAME,EAASC,KAAKC,KAAK,CAACH,GAC1B,OAAOC,EAAOG,MAAM,EAAIH,EAAOI,OAAO,EAAIL,CAC5C,CAAE,KAAM,CACN,OAAOA,CACT,CACF,CAEO,eAAeM,EAAMC,CAAa,CAAEC,CAAgB,EACzD,IAAMV,EAAW,MAAMW,MAAM,CAAC,UAAU,CAAC,CAAE,CACzCC,OAAQ,OACRC,QAAS,CAAE,eAAgB,kBAAmB,EAC9CC,KAAMV,KAAKW,SAAS,CAAC,CAAEN,QAAOC,UAAS,GACvCM,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CAAE,CAEhB,IAAMC,EAAQ,AAAIC,MADH,AACSb,MADHN,EAASE,IAAI,IACA,CAAC,KAAK,EAAEF,EAASoB,MAAM,CAAA,CAAE,CAE3D,OADAF,EAAME,MAAM,CAAGpB,EAASoB,MAAM,CACxBF,CACR,CACA,OAAOlB,EAASqB,IAAI,EACtB,CAEO,eAAeC,EAAUC,CAAY,CAAEC,CAAa,EACzD,IAAMxB,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,CACjDE,MAAO,WACPT,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACV,AAAIE,MAAM,CAAC,oBAAoB,EAAEnB,EAASoB,MAAM,CAAA,CAAE,EAE1D,OAAOpB,EAASqB,IAAI,EACtB,CAEO,eAAeK,EAAWH,CAAY,CAAEC,CAAa,CAAEZ,CAAsB,CAAEE,CAAa,EACjG,IAAMd,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,QACjDX,EACAC,QAAS,CAAE,eAAgB,kBAAmB,EAC9CC,KAAMV,KAAKW,SAAS,CAACD,GACrBE,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACV,AAAIE,MAAM,MAAMpB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASoB,MAAM,CAAA,CAAE,GAE3F,OAAOpB,EAASqB,IAAI,EACtB,CAEO,eAAeM,EAAUJ,CAAY,CAAEC,CAAa,EACzD,IAAMxB,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,CACjDX,OAAQ,SACRI,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACV,AAAIE,MAAM,MAAMpB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASoB,MAAM,CAAA,CAAE,EAE7F,CAEO,eAAeQ,EAAYL,CAAY,CAAEC,CAAa,CAAEK,CAAkB,EAC/E,IAAM7B,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,CACjD,GAAGM,CAAI,CACPhB,QAAS,CAAE,eAAgB,mBAAoB,GAAIgB,GAAMhB,SAAW,CAAC,CAAC,AAAE,EACxEG,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACV,AAAIE,MAAM,MAAMpB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASoB,MAAM,CAAA,CAAE,GAE3F,OAAOpB,EAASqB,IAAI,EACtB,0HAzFO,SAAuE5B,AAA9DD,CAAuE,EAErF,MAAO,CACL,GAAGC,CAAM,CACT,GAAGE,OAAOC,WAAW,CAACF,AAHI,CAAC,aAAc,cAAc,CAGbG,GAAG,CAAC,AAACC,GAAQ,CAACA,EAAKL,CAAM,CAACK,EAAI,EAAI,KAAK,EAAE,AACrF,CACF,4BC1HM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,EAAI,WAAA,OAAA,EAAiB,GAAK,CAAA,CAC9B,AAD8B,CAC7B,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAc,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AAC3C,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAc,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAK,AAAL,QAAK,CAAU,CAAA,CAC5C,CAAA,CAAA,6CCHK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAc,AAAd,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,GAAc,OAAA,EAAiB,aAAe,CAAA,CAAA,AAClD,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAY,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AACzC,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAA4D,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AACzF,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAiB,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAC/C,CAAA,CAAA,uDCJK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAW,CAAX,CAAA,CAAA,CAAA,CAAA,MAAW,OAAA,EAAiB,UAAY,CAAA,CAC5C,AAD4C,CAC3C,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAA6C,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AAC1E,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAY,CAAA,CAAA,AAAE,OAAQ,CAAoB,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AAC1D,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAQ,CAAE,CAAA,CAAA,CAAI,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAI,CAAM,CAAA,CAAA,CAAA,CAAA,EAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAI,CAAA,CAAA,CAAK,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAClE,CAAA,CAAA,oDCJK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAO,CAAP,UAAO,OAAA,EAAiB,MAAQ,CAAA,CAAA,AACpC,CAAA,AACE,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AACA,CAAA,AACE,CAAG,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AACH,CAAA,CAAA,CAAK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AACP,CAAA,CACF,CAAA,AACA,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAA6C,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AAC1E,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAE,AAAF,EAAK,CAA0B,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CACxD,CAAA,CAAA,gDCVK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAc,CAAd,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,GAAc,OAAA,EAAiB,aAAe,CAAA,CAAA,AAClD,CAAC,QAAU,CAAA,CAAA,AAAE,EAAI,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,CAAI,CAAA,CAAA,IAAA,CAAM,CAAG,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAM,GAAK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAU,CAAA,CAAA,AACzD,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAiB,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAC/C,CAAA,CAAA,oIGFc,GAAA,QAAc,CCAoB,CAAA,CAAA,CDApB,ACAoB,CDAd,ACAc,EDAX,CCAW,ADAX,CAAA,ACAW,CAAA,ADAX,CAAA,ACAW,CDAX,ACAW,YDAA,CAAU,CAAA,CAAA,SAC9C,CAAA,CAAA,CAAI,CCAiC,ADA3B,CCA2B,ADA3B,CCA2B,ADA3B,CAAA,ACA2B,CDA3B,ACA2B,GDAvB,CAAM,ACAiB,CAAA,ADAjB,CCAiB,ADAjB,CAAA,ACAiB,CDAjB,ACAiB,ODAR,CCAQ,ADAR,CCAQ,ADAR,CCAQ,ADAJ,CCAI,ADAJ,CCAI,ADAJ,CCAI,ADAJ,EAAM,CCAF,ADAE,CCAF,ADAE,EAAK,UAAU,CAAA,QACxD,CCAA,ADAE,CAAA,CAAA,CAAI,CCAqC,ADA/B,CCA+B,ADA/B,CCA+B,ADA/B,CAAA,ACA+B,CDA/B,ACA+B,cDAd,CCAc,ADAd,CCAc,ADAd,CCAc,ADAd,CAAM,ACAQ,CDAR,ACAQ,QDAE,CAAA,ACAF,CAAA,ADAE,EAAK,UAAU,GFhBvE,IAAA,EAAA,EAAA,CAAA,CAAA,gBGaqB,EAAA,OAAA,EAAiB,YDAc,ADAA,CAAA,ACAA,ECAE,CAAA,CACnD,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,GAAK,CAAiC,ADA9B,CAAA,ACA8B,4CAAe,CAAA,WAChD,+CAAiD,CAAA,ADAE,WCCnD,+FACiC,CAAA,AFAxC,CAAA,AEAwC,CFAxC,AEAwC,CFAxC,AEAwC,UAAe,CFAvD,AEAuD,CFAvD,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AEC8C,CFD9C,AEC8C,CFD9C,AEC8C,CFD9C,AEC8C,CFD9C,AEC8C,AAAK,CFDnD,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AECmD,CFDnD,AEC6D,CFD7D,AEC6D,CFD7D,AEC6D,CFD7D,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AEEE,CFFF,AEEE,AAAE,CFFJ,CEEO,AFFP,CEEyC,AFFzC,CAAA,AEEyC,CFFzC,AEEyC,CFFzC,AEEyC,CFFzC,AEEyC,CFFzC,AEEyC,CFFzC,AEEyC,CFFzC,AEEyC,CAAA,AFFzC,CEEyC,AFFzC,CEEyC,AFFzC,CAAA,AEEyC,CFFzC,AEEyC,CAAA,AFFzC,CAAA,AEEyC,CFFzC,AEEyC,CFFzC,AEEyC,CFFzC,AEEyC,CFFzC,AEEyC,CFFzC,AEEyC,CFFzC,AEEyC,CAAA,AFFzC,CAAA,AEEyC,CAAA,AFFzC,CAAA,AEEyC,CFFzC,AEEyC,CFFzC,AEEyC,CFFzC,AEEyC,CFFzC,AEEyC,CFFzC,AEEyC,CAAA,AFFzC,CEEyC,AFFzC,CEEyC,AFFzC,CEEyC,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,QACtD,CAAA,AAAE,EAAG,CAAqC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,QACzD,CAAA,AFAA,uCEA2C,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,GFR/D,CCAA,ACAA,AFAA,CAAA,ACAA,ACAA,CDAA,ACAA,AFAA,AEAA,CDAA,ADAA,AEAA,CDAA,ADAA,AEAA,AFAc,CEAd,ADAA,ADAA,CAAA,ACAA,ACAA,AFAc,CCAd,ACAA,AFAA,CEAA,ADAA,ADAA,CAAA,AEAA,ADAA,CAAA,ADAA,AEAA,CAAA,ADAA,ADAA,CCAA,ADAA,AEAA,CFAc,EAAiB,cAAe,CEAE,ADAF,ADAA,AAClD,CACE,CCAD,ACAA,AFAC,CAAA,AEAD,ADAA,CCAA,ADAA,ADAC,CCAD,ACAA,AFAC,CAAA,AEAO,ADAR,CCAQ,ADAR,ADAC,CACA,CEAD,AFAC,ACAD,ADCG,CCDH,ACAA,AFCM,AEAN,CAAA,AADA,ADAA,ACCA,CADA,ADAA,CAAA,ACAQ,CAAA,ADAR,kKDEG,CEAH,AFAG,CEAH,AFAG,CEAK,AFAA,CEAA,AFAA,CAAA,AEAA,OFCP,CEAD,AFAC,CEAD,CAAA,AFED,CEFC,CAAQ,CAAA,kBFEgB,CEA2B,AFA3B,CEA2B,AFA3B,CEA2B,AFA3B,CAAK,AAAL,AEA2B,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,EFAZ,CEAY,AFAZ,AACxC,CEDoD,AFCnD,CEDmD,AFCnD,CEDmD,AFCnD,CEDmD,AFCnD,CEDmD,AFCnD,CEDmD,AFCnD,CEDmD,AFC3C,CAAA,AED2C,CFC3C,AAAE,AEDyC,EFCtC,CAAc,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAC5C,CAAA,CDHK,ACGL,EDHkF,CACjF,MAAO,CACL,MAAO,QACP,MAAO,sBACP,WAAY,+CACZ,aAAc,8CACd,MAAO,UACP,KAAM,CACR,EACA,UAAW,CACT,MAAO,YACP,MAAO,YACP,WAAY,+CACZ,aAAc,+CACd,MAAO,UACP,KAAM,EAAA,YAAY,AACpB,EACA,uBAAwB,CACtB,MAAO,yBACP,MAAO,yBACP,WAAY,iDACZ,aAAc,iDACd,MAAO,UACP,KAAM,CACR,EACA,gBAAiB,CACf,MAAO,kBACP,MAAO,kBACP,WAAY,4CACZ,aAAc,4CACd,MAAO,UACP,KAAM,CACR,CACF,EAEM,EAAiD,CACrD,GAAI,QACJ,MAAO,QACP,MAAO,QACP,UAAW,YACX,UAAW,YACX,aAAc,yBACd,uBAAwB,yBACxB,yBAA0B,yBAC1B,uBAAwB,yBACxB,gBAAiB,kBACjB,kBAAmB,kBACnB,gBAAiB,iBACnB,EAEO,SAAS,EAA0B,CAAqB,EAC7D,OAAO,CAAO,CAAC,OAAO,GAAS,IAAI,IAAI,GAAG,EAAI,OAChD,CAEO,SAAS,EAAgC,CAAqB,EACnE,OAAO,CAAa,CAAC,EAA0B,GAAO,AACxD,gCAEO,SAAS,AAAsB,OAAE,CAAK,WAAE,EAAY,EAAE,CAAiD,EAC5G,IAAM,EAAe,EAAgC,GAC/C,EAAO,EAAa,IAAI,CAC9B,MACE,CAAA,EAAA,EAAA,IAAA,EAAC,OAAA,CAAK,UAAW,CAAC,qFAAqF,EAAE,EAAa,UAAU,CAAC,CAAC,EAAE,EAAA,CAAW,WAC7I,CAAA,EAAA,EAAA,GAAA,EAAC,EAAA,CAAK,UAAU,gBACf,EAAa,KAAK,GAGzB,mGArFsC,CACpC,QACA,YACA,yBACA,kBACD,iCIMK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAO,CAAP,UAAO,OAAA,EAAiB,MAAQ,CAAA,CAAA,AACpC,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAY,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CACzC,AADyC,CACxC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAY,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAC1C,CAAA,CAAA","ignoreList":[1,2,3,4,5,7,8,9,10]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_052zwtf._.js b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_052zwtf._.js deleted file mode 100644 index 552a7cd9..00000000 --- a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_052zwtf._.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports=[53250,a=>{"use strict";let b="/api/v1";async function c(a,b){let c=await a.text();if(!c)return b;try{let a=JSON.parse(c);return a.detail??a.message??c}catch{return c}}async function d(a,b){let c=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:a,password:b}),credentials:"include"});if(!c.ok){let a=Error(await c.text()||`HTTP ${c.status}`);throw a.status=c.status,a}return c.json()}async function e(a,c){let d=await fetch(`${b}${a}`,{cache:"no-store",credentials:"include"});if(!d.ok)throw Error(`API request failed: ${d.status}`);return d.json()}async function f(a,d,e,f){let g=await fetch(`${b}${a}`,{method:e,headers:{"Content-Type":"application/json"},body:JSON.stringify(f),credentials:"include"});if(!g.ok)throw Error(await c(g,`API request failed: ${g.status}`));return g.json()}async function g(a,d){let e=await fetch(`${b}${a}`,{method:"DELETE",credentials:"include"});if(!e.ok)throw Error(await c(e,`API request failed: ${e.status}`))}async function h(a,d,e){let f=await fetch(`${b}${a}`,{...e,headers:{"Content-Type":"application/json",...e?.headers??{}},credentials:"include"});if(!f.ok)throw Error(await c(f,`API request failed: ${f.status}`));return f.json()}a.s(["API_BASE",0,b,"apiDelete",0,g,"apiFetch",0,h,"apiGet",0,e,"apiSend",0,f,"login",0,d,"normalizeValidationPayload",0,function(a){return{...a,...Object.fromEntries(["contact_id","examiner_id"].map(b=>[b,a[b]||null]))}}])},87532,a=>{"use strict";let b=(0,a.i(70106).default)("Search",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);a.s(["Search",0,b],87532)},81560,a=>{"use strict";let b=(0,a.i(70106).default)("Trash2",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]]);a.s(["Trash2",0,b],81560)},10448,a=>{"use strict";let b=(0,a.i(70106).default)("Pen",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]]);a.s(["Edit2",0,b],10448)},84505,a=>{"use strict";let b=(0,a.i(70106).default)("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);a.s(["Download",0,b],84505)},92e3,a=>{"use strict";let b=(0,a.i(70106).default)("CircleAlert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);a.s(["AlertCircle",0,b],92e3)},67453,a=>{"use strict";let b=(0,a.i(70106).default)("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);a.s(["CheckCircle2",0,b],67453)},99712,a=>{"use strict";var b=a.i(87924),c=a.i(92e3),d=a.i(67453),e=a.i(70106);let f=(0,e.default)("CircleDashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]]),g=(0,e.default)("ShieldAlert",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]),h={OFFEN:{value:"OFFEN",label:"Noch nicht bewertet",badgeClass:"border-slate-300 bg-slate-100 text-slate-700",previewClass:"border-slate-300 bg-slate-50 text-slate-700",color:"#2E3B40",icon:f},BESTANDEN:{value:"BESTANDEN",label:"Bestanden",badgeClass:"border-success/35 bg-success/15 text-success",previewClass:"border-success/40 bg-success/10 text-success",color:"#245C36",icon:d.CheckCircle2},BESTANDEN_MIT_AUFLAGEN:{value:"BESTANDEN_MIT_AUFLAGEN",label:"Bestanden mit Auflagen",badgeClass:"border-warning/40 bg-warning/15 text-[#7A5A00]",previewClass:"border-warning/45 bg-warning/10 text-[#7A5A00]",color:"#7A5A00",icon:g},NICHT_BESTANDEN:{value:"NICHT_BESTANDEN",label:"Nicht bestanden",badgeClass:"border-danger/35 bg-danger/15 text-danger",previewClass:"border-danger/40 bg-danger/10 text-danger",color:"#7A1F26",icon:c.AlertCircle}},i={"":"OFFEN",offen:"OFFEN",OFFEN:"OFFEN",bestanden:"BESTANDEN",BESTANDEN:"BESTANDEN",mit_auflagen:"BESTANDEN_MIT_AUFLAGEN",bestanden_mit_auflagen:"BESTANDEN_MIT_AUFLAGEN","bestanden mit auflagen":"BESTANDEN_MIT_AUFLAGEN",BESTANDEN_MIT_AUFLAGEN:"BESTANDEN_MIT_AUFLAGEN",nicht_bestanden:"NICHT_BESTANDEN","nicht bestanden":"NICHT_BESTANDEN",NICHT_BESTANDEN:"NICHT_BESTANDEN"};function j(a){return i[String(a??"").trim()]??"OFFEN"}function k(a){return h[j(a)]}a.s(["ValidationResultBadge",0,function({value:a,className:c=""}){let d=k(a),e=d.icon;return(0,b.jsxs)("span",{className:`inline-flex items-center gap-1.5 rounded-full border px-3 py-1 text-xs font-semibold ${d.badgeClass} ${c}`,children:[(0,b.jsx)(e,{className:"h-3.5 w-3.5"}),d.label]})},"getValidationResultPresentation",0,k,"normalizeValidationResult",0,j,"validationResultValues",0,["OFFEN","BESTANDEN","BESTANDEN_MIT_AUFLAGEN","NICHT_BESTANDEN"]],99712)},5151,a=>{"use strict";let b=(0,a.i(70106).default)("Copy",[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);a.s(["Copy",0,b],5151)}]; - -//# sourceMappingURL=_052zwtf._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_052zwtf._.js.map b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_052zwtf._.js.map deleted file mode 100644 index d3505c09..00000000 --- a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_052zwtf._.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../../../lib/api.ts","../../../../node_modules/lucide-react/src/icons/search.ts","../../../../node_modules/lucide-react/src/icons/trash-2.ts","../../../../node_modules/lucide-react/src/icons/pen.ts","../../../../node_modules/lucide-react/src/icons/download.ts","../../../../node_modules/lucide-react/src/icons/circle-alert.ts","../../../../node_modules/lucide-react/src/icons/circle-check.ts","../../../../lib/validation-result.tsx","../../../../node_modules/lucide-react/src/icons/shield-alert.ts","../../../../node_modules/lucide-react/src/icons/circle-dashed.ts","../../../../node_modules/lucide-react/src/icons/copy.ts"],"sourcesContent":["export const API_BASE = \"/api/v1\";\n\nexport type Entity = {\n id: string;\n created_at: string;\n updated_at: string;\n};\n\nexport type Customer = Entity & {\n customer_type: \"practice\" | \"clinic\";\n name: string;\n city?: string | null;\n phone?: string | null;\n email?: string | null;\n hygiene_officer?: string | null;\n quality_manager?: string | null;\n notes?: string | null;\n};\n\nexport type Location = Entity & {\n customer_id: string;\n name: string;\n street?: string | null;\n postal_code?: string | null;\n city?: string | null;\n room?: string | null;\n};\n\nexport type Contact = Entity & {\n customer_id: string;\n full_name: string;\n function?: string | null;\n email?: string | null;\n phone?: string | null;\n};\n\nexport type Device = Entity & {\n customer_id: string;\n location_id?: string | null;\n manufacturer: string;\n model: string;\n serial_number: string;\n device_type?: string | null;\n year_built?: number | null;\n commissioned_on?: string | null;\n chamber_volume_liters?: number | null;\n steam_generation?: string | null;\n water_treatment?: string | null;\n documentation?: string | null;\n supplier?: string | null;\n};\n\nexport type Equipment = Entity & {\n kind: string;\n manufacturer?: string | null;\n model?: string | null;\n serial_number: string;\n calibrated_on?: string | null;\n calibration_due_on?: string | null;\n certificate_document_id?: string | null;\n status: \"green\" | \"yellow\" | \"red\";\n};\n\nexport type User = Entity & {\n email: string;\n first_name: string;\n last_name: string;\n role: \"admin\" | \"pruefer\" | \"mitarbeiter\" | \"leser\";\n is_active: boolean;\n must_change_password: boolean;\n last_login_at?: string | null;\n password_changed_at?: string | null;\n};\n\nexport type ValidationItem = Entity & {\n report_number: string;\n customer_id: string;\n location_id?: string | null;\n contact_id?: string | null;\n device_id?: string | null;\n validation_type: string;\n project?: string | null;\n test_location?: string | null;\n examiner_name?: string | null;\n participants?: string | null;\n operator_name?: string | null;\n status: string;\n result?: string | null;\n scheduled_on?: string | null;\n performed_on?: string | null;\n next_validation_on?: string | null;\n revalidation_interval_months: number;\n next_validation_manually_overridden: boolean;\n version: number;\n previous_validation_id?: string | null;\n equipment_ids: string[];\n environment_conditions: Record;\n documentation_checklist: Record[];\n performance_checklist: Record[];\n programs: Record[];\n loading_patterns: Record[];\n measurement_data: Record[];\n drying: Record;\n recommendations: Record[];\n attachments: Record[];\n};\n\nexport type QuickStartValidationSummary = {\n id: string;\n device_id: string;\n report_number: string;\n performed_on?: string | null;\n result?: string | null;\n next_validation_on?: string | null;\n status: string;\n validation_type?: string | null;\n equipment_ids: string[];\n};\n\nexport type QuickStartCustomerData = {\n customer: Customer;\n locations: Location[];\n contacts: Contact[];\n devices: Device[];\n validations: QuickStartValidationSummary[];\n};\n\nexport function normalizeValidationPayload>(values: T): T {\n const optionalForeignKeys = [\"contact_id\", \"examiner_id\"];\n return {\n ...values,\n ...Object.fromEntries(optionalForeignKeys.map((key) => [key, values[key] || null]))\n };\n}\n\nexport type Paginated = {\n items: T[];\n total: number;\n page: number;\n page_size: number;\n pages?: number;\n};\n\nasync function readErrorMessage(response: Response, fallback: string) {\n const text = await response.text();\n if (!text) {\n return fallback;\n }\n try {\n const parsed = JSON.parse(text) as { detail?: string; message?: string };\n return parsed.detail ?? parsed.message ?? text;\n } catch {\n return text;\n }\n}\n\nexport async function login(email: string, password: string) {\n const response = await fetch(`/api/login`, {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ email, password }),\n credentials: \"include\"\n });\n if (!response.ok) {\n const detail = await response.text();\n const error = new Error(detail || `HTTP ${response.status}`) as Error & { status?: number };\n error.status = response.status;\n throw error;\n }\n return response.json() as Promise<{ user: User; expires_in: number }>;\n}\n\nexport async function apiGet(path: string, token: string): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n cache: \"no-store\",\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(`API request failed: ${response.status}`);\n }\n return response.json() as Promise;\n}\n\nexport async function apiSend(path: string, token: string, method: \"POST\" | \"PUT\", body: unknown): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n method,\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify(body),\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n return response.json() as Promise;\n}\n\nexport async function apiDelete(path: string, token: string): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n method: \"DELETE\",\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n}\n\nexport async function apiFetch(path: string, token: string, init?: RequestInit): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n ...init,\n headers: { \"Content-Type\": \"application/json\", ...(init?.headers ?? {}) },\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n return response.json() as Promise;\n}\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Search\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8Y2lyY2xlIGN4PSIxMSIgY3k9IjExIiByPSI4IiAvPgogIDxwYXRoIGQ9Im0yMSAyMS00LjMtNC4zIiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/search\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Search = createLucideIcon('Search', [\n ['circle', { cx: '11', cy: '11', r: '8', key: '4ej97u' }],\n ['path', { d: 'm21 21-4.3-4.3', key: '1qie3q' }],\n]);\n\nexport default Search;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Trash2\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMyA2aDE4IiAvPgogIDxwYXRoIGQ9Ik0xOSA2djE0YzAgMS0xIDItMiAySDdjLTEgMC0yLTEtMi0yVjYiIC8+CiAgPHBhdGggZD0iTTggNlY0YzAtMSAxLTIgMi0yaDRjMSAwIDIgMSAyIDJ2MiIgLz4KICA8bGluZSB4MT0iMTAiIHgyPSIxMCIgeTE9IjExIiB5Mj0iMTciIC8+CiAgPGxpbmUgeDE9IjE0IiB4Mj0iMTQiIHkxPSIxMSIgeTI9IjE3IiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/trash-2\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Trash2 = createLucideIcon('Trash2', [\n ['path', { d: 'M3 6h18', key: 'd0wm0j' }],\n ['path', { d: 'M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6', key: '4alrt4' }],\n ['path', { d: 'M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2', key: 'v07s0e' }],\n ['line', { x1: '10', x2: '10', y1: '11', y2: '17', key: '1uufr5' }],\n ['line', { x1: '14', x2: '14', y1: '11', y2: '17', key: 'xtxkd' }],\n]);\n\nexport default Trash2;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Pen\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMjEuMTc0IDYuODEyYTEgMSAwIDAgMC0zLjk4Ni0zLjk4N0wzLjg0MiAxNi4xNzRhMiAyIDAgMCAwLS41LjgzbC0xLjMyMSA0LjM1MmEuNS41IDAgMCAwIC42MjMuNjIybDQuMzUzLTEuMzJhMiAyIDAgMCAwIC44My0uNDk3eiIgLz4KPC9zdmc+Cg==) - https://lucide.dev/icons/pen\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Pen = createLucideIcon('Pen', [\n [\n 'path',\n {\n d: 'M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z',\n key: '1a8usu',\n },\n ],\n]);\n\nexport default Pen;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Download\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMjEgMTV2NGEyIDIgMCAwIDEtMiAySDVhMiAyIDAgMCAxLTItMnYtNCIgLz4KICA8cG9seWxpbmUgcG9pbnRzPSI3IDEwIDEyIDE1IDE3IDEwIiAvPgogIDxsaW5lIHgxPSIxMiIgeDI9IjEyIiB5MT0iMTUiIHkyPSIzIiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/download\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Download = createLucideIcon('Download', [\n ['path', { d: 'M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4', key: 'ih7n3h' }],\n ['polyline', { points: '7 10 12 15 17 10', key: '2ggqvy' }],\n ['line', { x1: '12', x2: '12', y1: '15', y2: '3', key: '1vk2je' }],\n]);\n\nexport default Download;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name CircleAlert\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgLz4KICA8bGluZSB4MT0iMTIiIHgyPSIxMiIgeTE9IjgiIHkyPSIxMiIgLz4KICA8bGluZSB4MT0iMTIiIHgyPSIxMi4wMSIgeTE9IjE2IiB5Mj0iMTYiIC8+Cjwvc3ZnPgo=) - https://lucide.dev/icons/circle-alert\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst CircleAlert = createLucideIcon('CircleAlert', [\n ['circle', { cx: '12', cy: '12', r: '10', key: '1mglay' }],\n ['line', { x1: '12', x2: '12', y1: '8', y2: '12', key: '1pkeuh' }],\n ['line', { x1: '12', x2: '12.01', y1: '16', y2: '16', key: '4dfq90' }],\n]);\n\nexport default CircleAlert;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name CircleCheck\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgLz4KICA8cGF0aCBkPSJtOSAxMiAyIDIgNC00IiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/circle-check\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst CircleCheck = createLucideIcon('CircleCheck', [\n ['circle', { cx: '12', cy: '12', r: '10', key: '1mglay' }],\n ['path', { d: 'm9 12 2 2 4-4', key: 'dzmm74' }],\n]);\n\nexport default CircleCheck;\n","import { AlertCircle, CheckCircle2, CircleDashed, ShieldAlert } from \"lucide-react\";\n\nexport const validationResultValues = [\n \"OFFEN\",\n \"BESTANDEN\",\n \"BESTANDEN_MIT_AUFLAGEN\",\n \"NICHT_BESTANDEN\"\n] as const;\n\nexport type ValidationResultValue = (typeof validationResultValues)[number];\n\nexport type ValidationResultPresentation = {\n value: ValidationResultValue;\n label: string;\n badgeClass: string;\n previewClass: string;\n color: string;\n icon: typeof CircleDashed;\n};\n\nconst presentations: Record = {\n OFFEN: {\n value: \"OFFEN\",\n label: \"Noch nicht bewertet\",\n badgeClass: \"border-slate-300 bg-slate-100 text-slate-700\",\n previewClass: \"border-slate-300 bg-slate-50 text-slate-700\",\n color: \"#2E3B40\",\n icon: CircleDashed\n },\n BESTANDEN: {\n value: \"BESTANDEN\",\n label: \"Bestanden\",\n badgeClass: \"border-success/35 bg-success/15 text-success\",\n previewClass: \"border-success/40 bg-success/10 text-success\",\n color: \"#245C36\",\n icon: CheckCircle2\n },\n BESTANDEN_MIT_AUFLAGEN: {\n value: \"BESTANDEN_MIT_AUFLAGEN\",\n label: \"Bestanden mit Auflagen\",\n badgeClass: \"border-warning/40 bg-warning/15 text-[#7A5A00]\",\n previewClass: \"border-warning/45 bg-warning/10 text-[#7A5A00]\",\n color: \"#7A5A00\",\n icon: ShieldAlert\n },\n NICHT_BESTANDEN: {\n value: \"NICHT_BESTANDEN\",\n label: \"Nicht bestanden\",\n badgeClass: \"border-danger/35 bg-danger/15 text-danger\",\n previewClass: \"border-danger/40 bg-danger/10 text-danger\",\n color: \"#7A1F26\",\n icon: AlertCircle\n }\n};\n\nconst aliases: Record = {\n \"\": \"OFFEN\",\n offen: \"OFFEN\",\n OFFEN: \"OFFEN\",\n bestanden: \"BESTANDEN\",\n BESTANDEN: \"BESTANDEN\",\n mit_auflagen: \"BESTANDEN_MIT_AUFLAGEN\",\n bestanden_mit_auflagen: \"BESTANDEN_MIT_AUFLAGEN\",\n \"bestanden mit auflagen\": \"BESTANDEN_MIT_AUFLAGEN\",\n BESTANDEN_MIT_AUFLAGEN: \"BESTANDEN_MIT_AUFLAGEN\",\n nicht_bestanden: \"NICHT_BESTANDEN\",\n \"nicht bestanden\": \"NICHT_BESTANDEN\",\n NICHT_BESTANDEN: \"NICHT_BESTANDEN\"\n};\n\nexport function normalizeValidationResult(value?: string | null): ValidationResultValue {\n return aliases[String(value ?? \"\").trim()] ?? \"OFFEN\";\n}\n\nexport function getValidationResultPresentation(value?: string | null) {\n return presentations[normalizeValidationResult(value)];\n}\n\nexport function ValidationResultBadge({ value, className = \"\" }: { value?: string | null; className?: string }) {\n const presentation = getValidationResultPresentation(value);\n const Icon = presentation.icon;\n return (\n \n \n {presentation.label}\n \n );\n}\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name ShieldAlert\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMjAgMTNjMCA1LTMuNSA3LjUtNy42NiA4Ljk1YTEgMSAwIDAgMS0uNjctLjAxQzcuNSAyMC41IDQgMTggNCAxM1Y2YTEgMSAwIDAgMSAxLTFjMiAwIDQuNS0xLjIgNi4yNC0yLjcyYTEuMTcgMS4xNyAwIDAgMSAxLjUyIDBDMTQuNTEgMy44MSAxNyA1IDE5IDVhMSAxIDAgMCAxIDEgMXoiIC8+CiAgPHBhdGggZD0iTTEyIDh2NCIgLz4KICA8cGF0aCBkPSJNMTIgMTZoLjAxIiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/shield-alert\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst ShieldAlert = createLucideIcon('ShieldAlert', [\n [\n 'path',\n {\n d: 'M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z',\n key: 'oel41y',\n },\n ],\n ['path', { d: 'M12 8v4', key: '1got3b' }],\n ['path', { d: 'M12 16h.01', key: '1drbdi' }],\n]);\n\nexport default ShieldAlert;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name CircleDashed\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTAuMSAyLjE4MmExMCAxMCAwIDAgMSAzLjggMCIgLz4KICA8cGF0aCBkPSJNMTMuOSAyMS44MThhMTAgMTAgMCAwIDEtMy44IDAiIC8+CiAgPHBhdGggZD0iTTE3LjYwOSAzLjcyMWExMCAxMCAwIDAgMSAyLjY5IDIuNyIgLz4KICA8cGF0aCBkPSJNMi4xODIgMTMuOWExMCAxMCAwIDAgMSAwLTMuOCIgLz4KICA8cGF0aCBkPSJNMjAuMjc5IDE3LjYwOWExMCAxMCAwIDAgMS0yLjcgMi42OSIgLz4KICA8cGF0aCBkPSJNMjEuODE4IDEwLjFhMTAgMTAgMCAwIDEgMCAzLjgiIC8+CiAgPHBhdGggZD0iTTMuNzIxIDYuMzkxYTEwIDEwIDAgMCAxIDIuNy0yLjY5IiAvPgogIDxwYXRoIGQ9Ik02LjM5MSAyMC4yNzlhMTAgMTAgMCAwIDEtMi42OS0yLjciIC8+Cjwvc3ZnPgo=) - https://lucide.dev/icons/circle-dashed\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst CircleDashed = createLucideIcon('CircleDashed', [\n ['path', { d: 'M10.1 2.182a10 10 0 0 1 3.8 0', key: '5ilxe3' }],\n ['path', { d: 'M13.9 21.818a10 10 0 0 1-3.8 0', key: '11zvb9' }],\n ['path', { d: 'M17.609 3.721a10 10 0 0 1 2.69 2.7', key: '1iw5b2' }],\n ['path', { d: 'M2.182 13.9a10 10 0 0 1 0-3.8', key: 'c0bmvh' }],\n ['path', { d: 'M20.279 17.609a10 10 0 0 1-2.7 2.69', key: '1ruxm7' }],\n ['path', { d: 'M21.818 10.1a10 10 0 0 1 0 3.8', key: 'qkgqxc' }],\n ['path', { d: 'M3.721 6.391a10 10 0 0 1 2.7-2.69', key: '1mcia2' }],\n ['path', { d: 'M6.391 20.279a10 10 0 0 1-2.69-2.7', key: '1fvljs' }],\n]);\n\nexport default CircleDashed;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Copy\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cmVjdCB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHg9IjgiIHk9IjgiIHJ4PSIyIiByeT0iMiIgLz4KICA8cGF0aCBkPSJNNCAxNmMtMS4xIDAtMi0uOS0yLTJWNGMwLTEuMS45LTIgMi0yaDEwYzEuMSAwIDIgLjkgMiAyIiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/copy\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Copy = createLucideIcon('Copy', [\n ['rect', { width: '14', height: '14', x: '8', y: '8', rx: '2', ry: '2', key: '17jyea' }],\n ['path', { d: 'M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2', key: 'zix9uf' }],\n]);\n\nexport default Copy;\n"],"names":["API_BASE","normalizeValidationPayload","values","optionalForeignKeys","Object","fromEntries","map","key","readErrorMessage","response","fallback","text","parsed","JSON","parse","detail","message","login","email","password","fetch","method","headers","body","stringify","credentials","ok","error","Error","status","json","apiGet","path","token","cache","apiSend","apiDelete","apiFetch","init"],"mappings":"uCAAO,IAAMA,EAAW,UA+IxB,eAAeQ,EAAiBC,CAAkB,CAAEC,CAAgB,EAClE,IAAMC,EAAO,MAAMF,EAASE,IAAI,GAChC,GAAI,CAACA,EACH,IADS,GACFD,EAET,GAAI,CACF,IAAME,EAASC,KAAKC,KAAK,CAACH,GAC1B,OAAOC,EAAOG,MAAM,EAAIH,EAAOI,OAAO,EAAIL,CAC5C,CAAE,KAAM,CACN,OAAOA,CACT,CACF,CAEO,eAAeM,EAAMC,CAAa,CAAEC,CAAgB,EACzD,IAAMV,EAAW,MAAMW,MAAM,CAAC,UAAU,CAAC,CAAE,CACzCC,OAAQ,OACRC,QAAS,CAAE,eAAgB,kBAAmB,EAC9CC,KAAMV,KAAKW,SAAS,CAAC,OAAEN,WAAOC,CAAS,GACvCM,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CAAE,CAEhB,IAAMC,EAAQ,AAAIC,MAAMb,AADT,MAAMN,EAASE,IAAI,IACA,CAAC,KAAK,EAAEF,EAASoB,MAAM,CAAA,CAAE,CAE3D,OADAF,EAAME,MAAM,CAAGpB,EAASoB,MAAM,CACxBF,CACR,CACA,OAAOlB,EAASqB,IAAI,EACtB,CAEO,eAAeC,EAAUC,CAAY,CAAEC,CAAa,EACzD,IAAMxB,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,CACjDE,MAAO,WACPT,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACV,AAAIE,MAAM,CAAC,oBAAoB,EAAEnB,EAASoB,MAAM,CAAA,CAAE,EAE1D,OAAOpB,EAASqB,IAAI,EACtB,CAEO,eAAeK,EAAWH,CAAY,CAAEC,CAAa,CAAEZ,CAAsB,CAAEE,CAAa,EACjG,IAAMd,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,QACjDX,EACAC,QAAS,CAAE,eAAgB,kBAAmB,EAC9CC,KAAMV,KAAKW,SAAS,CAACD,GACrBE,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACV,AAAIE,MAAM,MAAMpB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASoB,MAAM,CAAA,CAAE,GAE3F,OAAOpB,EAASqB,IAAI,EACtB,CAEO,eAAeM,EAAUJ,CAAY,CAAEC,CAAa,EACzD,IAAMxB,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,CACjDX,OAAQ,SACRI,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACV,AAAIE,MAAM,MAAMpB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASoB,MAAM,CAAA,CAAE,EAE7F,CAEO,eAAeQ,EAAYL,CAAY,CAAEC,CAAa,CAAEK,CAAkB,EAC/E,IAAM7B,EAAW,MAAMW,MAAM,CAAA,EAAGpB,EAAAA,EAAWgC,EAAAA,CAAM,CAAE,CACjD,GAAGM,CAAI,CACPhB,QAAS,CAAE,eAAgB,mBAAoB,GAAIgB,GAAMhB,SAAW,CAAC,CAAC,AAAE,EACxEG,YAAa,SACf,GACA,GAAI,CAAChB,EAASiB,EAAE,CACd,CADgB,KACV,AAAIE,MAAM,MAAMpB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASoB,MAAM,CAAA,CAAE,GAE3F,OAAOpB,EAASqB,IAAI,EACtB,0HAzFO,SAAuE5B,AAA9DD,CAAuE,EAErF,MAAO,CACL,GAAGC,CAAM,CACT,GAAGE,OAAOC,WAAW,CAHK,AAGJF,CAHK,aAAc,cAAc,CAGbG,GAAG,CAAC,AAACC,GAAQ,CAACA,EAAKL,CAAM,CAACK,EAAI,EAAI,KAAK,EAAE,AACrF,CACF,4BCxHM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAS,CAAT,CAAA,CAAA,QAAS,OAAA,EAAiB,QAAU,CAAA,CACxC,AADwC,CACvC,QAAU,CAAA,CAAA,AAAE,EAAI,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,CAAI,CAAA,CAAA,IAAA,CAAM,CAAG,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,GAAK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAU,CAAA,CAAA,AACxD,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAkB,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAChD,CAAA,CAAA,kDCHK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAS,CAAT,CAAA,CAAA,QAAS,OAAA,EAAiB,QAAU,CAAA,CAAA,AACxC,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAW,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AACxC,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAyC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAK,AAAL,QAAK,CAAU,CAAA,CAAA,AACtE,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAsC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAK,AAAL,QAAK,CAAU,CAAA,CAAA,AACnE,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAQ,CAAE,CAAA,CAAA,CAAI,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAI,CAAM,CAAA,CAAA,CAAA,CAAA,EAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAA,CAAK,AAAL,QAAK,CAAU,CAAA,CAAA,AAClE,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAQ,CAAE,CAAA,CAAA,CAAI,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAI,CAAM,CAAA,CAAA,CAAA,CAAA,EAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,OAAA,CAAS,CAAA,CAClE,CAAA,CAAA,kDCNK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAM,WAAA,OAAA,EAAiB,KAAO,CAAA,CAAA,AAClC,CAAA,AACE,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AACA,CACE,AADF,CACK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AACH,CAAA,CAAA,CAAK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CACP,AADO,CACP,CACF,CACD,CAAA,CAAA,iDCRK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAW,CAAX,CAAA,CAAA,CAAA,CAAA,MAAW,OAAA,EAAiB,UAAY,CAAA,CAAA,AAC5C,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAA6C,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AAC1E,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAY,CAAA,CAAA,AAAE,OAAQ,CAAoB,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAK,AAAL,QAAK,CAAU,CAAA,CAC1D,AAD0D,CACzD,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAQ,CAAE,CAAA,CAAA,CAAI,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAI,AAAJ,CAAU,CAAA,CAAA,CAAA,CAAA,EAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAI,CAAA,CAAA,CAAK,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAClE,CAAA,CAAA,mDCJK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAc,AAAd,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,GAAc,OAAA,EAAiB,aAAe,CAAA,CAAA,AAClD,CAAC,QAAU,CAAA,CAAA,AAAE,EAAI,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,CAAI,CAAA,CAAA,IAAA,CAAM,CAAG,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAM,GAAK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAU,CAAA,CAAA,AACzD,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAQ,CAAE,CAAA,CAAA,CAAI,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAI,CAAM,CAAA,CAAA,CAAA,CAAA,EAAA,CAAI,CAAA,CAAA,CAAK,CAAA,CAAA,CAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CACjE,AADiE,CAChE,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAQ,CAAE,CAAA,CAAA,CAAI,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAI,CAAS,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,EAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CACtE,CAAA,CAAA,sDCJK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAc,CAAd,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,GAAc,OAAA,EAAiB,aAAe,CAAA,CAAA,AAClD,CAAC,QAAU,CAAA,CAAA,AAAE,EAAI,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,CAAI,CAAA,CAAA,IAAA,CAAM,CAAG,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAM,GAAK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAU,CAAA,CAAA,AACzD,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAiB,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAC/C,CAAA,CAAA,yEChBD,EAAA,EAAA,CAAA,CAAA,MAAA,EAAA,EAAA,CAAA,CAAA,6BEaqB,EAAA,OAAA,EAAiB,YDAc,CAAA,ECAE,CAAA,QAC3C,CAAA,AAAE,EAAG,CAAiC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,QACrD,CAAE,AAAF,EAAK,CAAkC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,QACtD,CAAE,AAAF,EAAK,CAAsC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,CAClE,CDAG,ACAH,CAAA,ADAG,sDCA0D,CAAA,ADAvD,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,ACC8C,CDD9C,ACC8C,CDD9C,ACC8C,CDD9C,ACC8C,CDD9C,ACC8C,AAAK,CDDnD,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,ACCmD,CDDnD,ACC6D,CAAA,ADD7D,CAAA,ACC6D,CDD7D,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CCEE,ADFF,CCEE,AAAE,ADFJ,CAAA,CAAA,ACEO,CDFP,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CAAA,ADFzC,CAAA,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CAAA,ADFzC,CCEyC,ADFzC,CAAA,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CDFzC,ACEyC,CAAA,ADFzC,CCEyC,ADFzC,CAAA,ACEyC,CDFzC,ACEyC,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,QACtD,CAAA,AAAE,EAAG,CAAqC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,gDACd,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,QDRjD,EAAA,OAAA,EAAA,cAAgC,CCAE,ADAF,CAEhD,CCAD,ADAC,CAAA,ACAD,CAAA,ADAC,CCAD,ADAC,CCAO,ADAP,CCAO,ADAP,EAEE,CCAH,ADAM,CCAN,qKDCG,CAAA,ACAH,CAAA,ADAG,CCAK,ADAA,CCAA,ADAA,CCAA,ADAA,OACP,CAAA,ACAD,CAAA,CAAA,ADED,CCFC,ADEA,CCFQ,AAER,ADAA,CCFQ,AAER,ADAA,CAAA,ACAA,CDAA,ACAA,CAAA,ADAA,CCAQ,ADAA,CCAA,ADAA,CCAA,ADAA,EAAK,CAAW,ACA2B,CDA3B,ACA2B,CDA3B,ACA2B,CAAA,ADA3B,CCA2B,ADA3B,CCA2B,ADA3B,CCA2B,ADA3B,CCA2B,ADA3B,CCA2B,ADA3B,CCA2B,ADA3B,CCA2B,ADA3B,CAAA,ACA2B,CAAA,ADA3B,CAAA,ACA2B,UDAZ,CCAY,ADAZ,AACxC,CCDoD,ADCnD,CCDmD,ADCnD,CCDmD,ADCnD,CAAA,ACDmD,CDCnD,ACDmD,CDCnD,ACDmD,CAAA,ADC3C,CCD2C,ADC3C,CAAA,AAAE,ACDyC,EDCtC,CAAc,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAC5C,CAAA,CAAA,ADHK,EAA6E,CACjF,MAAO,CACL,MAAO,QACP,MAAO,sBACP,WAAY,+CACZ,aAAc,8CACd,MAAO,UACP,KAAM,CACR,EACA,UAAW,CACT,MAAO,YACP,MAAO,YACP,WAAY,+CACZ,aAAc,+CACd,MAAO,UACP,KAAM,EAAA,YAAY,AACpB,EACA,uBAAwB,CACtB,MAAO,yBACP,MAAO,yBACP,WAAY,iDACZ,aAAc,iDACd,MAAO,UACP,KAAM,CACR,EACA,gBAAiB,CACf,MAAO,kBACP,MAAO,kBACP,WAAY,4CACZ,aAAc,4CACd,MAAO,UACP,KAAM,EAAA,WAAW,AACnB,CACF,EAEM,EAAiD,CACrD,GAAI,QACJ,MAAO,QACP,MAAO,QACP,UAAW,YACX,UAAW,YACX,aAAc,yBACd,uBAAwB,yBACxB,yBAA0B,yBAC1B,uBAAwB,yBACxB,gBAAiB,kBACjB,kBAAmB,kBACnB,gBAAiB,iBACnB,EAEO,SAAS,EAA0B,CAAqB,EAC7D,OAAO,CAAO,CAAC,OAAO,GAAS,IAAI,IAAI,GAAG,EAAI,OAChD,CAEO,SAAS,EAAgC,CAAqB,EACnE,OAAO,CAAa,CAAC,EAA0B,GAAO,AACxD,gCAEO,SAAS,AAAsB,OAAE,CAAK,WAAE,EAAY,EAAE,CAAiD,EAC5G,IAAM,EAAe,EAAgC,GAC/C,EAAO,EAAa,IAAI,CAC9B,MACE,CAAA,EAAA,EAAA,IAAA,EAAC,OAAA,CAAK,UAAW,CAAC,qFAAqF,EAAE,EAAa,UAAU,CAAC,CAAC,EAAE,EAAA,CAAW,WAC7I,CAAA,EAAA,EAAA,GAAA,EAAC,EAAA,CAAK,UAAU,gBACf,EAAa,KAAK,GAGzB,mGArFsC,CACpC,QACA,YACA,yBACA,kBACD,gCGMK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAO,CAAP,UAAO,OAAA,EAAiB,MAAQ,CAAA,CAAA,AACpC,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,KAAO,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,EAAQ,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAG,CAAK,CAAA,CAAA,CAAA,CAAA,CAAG,AAAH,IAAQ,CAAI,CAAA,CAAA,GAAA,CAAK,CAAA,EAAI,CAAA,CAAA,CAAK,CAAA,CAAA,CAAA,CAAA,CAAK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAU,CAAA,CAAA,AACvF,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAA2D,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CACzF,CAAA,CAAA","ignoreList":[1,2,3,4,5,6,8,9,10]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_08v2m74._.js.map b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_08v2m74._.js.map index fe4e5c26..26442f12 100644 --- a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_08v2m74._.js.map +++ b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_08v2m74._.js.map @@ -1 +1 @@ -{"version":3,"sources":["../../../../node_modules/%40swc/helpers/cjs/_interop_require_wildcard.cjs","../../../../node_modules/next/src/shared/lib/segment.ts","../../../../node_modules/next/src/shared/lib/invariant-error.ts","../../../../node_modules/next/src/shared/lib/promise-with-resolvers.ts","../../../../lib/api.ts","../../../../node_modules/next/src/shared/lib/utils/warn-once.ts","../../../../node_modules/next/src/shared/lib/deployment-id.ts","../../../../node_modules/next/src/client/use-merged-ref.ts","../../../../node_modules/%40swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/next/src/shared/lib/image-external.tsx","../../../../node_modules/next/image.js","../../../../components/brand/brand-logo.tsx","../../../../app/%28auth%29/login/page.tsx","../../../../node_modules/lucide-react/src/icons/log-in.ts"],"sourcesContent":["\"use strict\";\n\nfunction _getRequireWildcardCache(nodeInterop) {\n if (typeof WeakMap !== \"function\") return null;\n\n var cacheBabelInterop = new WeakMap();\n var cacheNodeInterop = new WeakMap();\n\n return (_getRequireWildcardCache = function(nodeInterop) {\n return nodeInterop ? cacheNodeInterop : cacheBabelInterop;\n })(nodeInterop);\n}\nfunction _interop_require_wildcard(obj, nodeInterop) {\n if (!nodeInterop && obj && obj.__esModule) return obj;\n if (obj === null || typeof obj !== \"object\" && typeof obj !== \"function\") return { default: obj };\n\n var cache = _getRequireWildcardCache(nodeInterop);\n\n if (cache && cache.has(obj)) return cache.get(obj);\n\n var newObj = { __proto__: null };\n var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;\n\n for (var key in obj) {\n if (key !== \"default\" && Object.prototype.hasOwnProperty.call(obj, key)) {\n var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;\n if (desc && (desc.get || desc.set)) Object.defineProperty(newObj, key, desc);\n else newObj[key] = obj[key];\n }\n }\n\n newObj.default = obj;\n\n if (cache) cache.set(obj, newObj);\n\n return newObj;\n}\nexports._ = _interop_require_wildcard;\n","import type { FlightRouterState, Segment } from './app-router-types'\n\nexport function getSegmentValue(segment: Segment) {\n return Array.isArray(segment) ? segment[1] : segment\n}\n\nexport function isGroupSegment(segment: string) {\n // Use array[0] for performant purpose\n return segment[0] === '(' && segment.endsWith(')')\n}\n\nexport function isParallelRouteSegment(segment: string) {\n return segment.startsWith('@') && segment !== '@children'\n}\n\nexport function addSearchParamsIfPageSegment(\n segment: Segment,\n searchParams: Record\n) {\n const isPageSegment = segment.includes(PAGE_SEGMENT_KEY)\n\n if (isPageSegment) {\n const stringifiedQuery = JSON.stringify(searchParams)\n return stringifiedQuery !== '{}'\n ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery\n : PAGE_SEGMENT_KEY\n }\n\n return segment\n}\n\nexport function computeSelectedLayoutSegment(\n segments: string[] | null,\n parallelRouteKey: string\n): string | null {\n if (!segments || segments.length === 0) {\n return null\n }\n\n // For 'children', use first segment; for other parallel routes, use last segment\n const rawSegment =\n parallelRouteKey === 'children'\n ? segments[0]\n : segments[segments.length - 1]\n\n // If the default slot is showing, return null since it's not technically \"selected\" (it's a fallback)\n // Returning an internal value like `__DEFAULT__` would be confusing\n return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment\n}\n\n/** Get the canonical parameters from the current level to the leaf node. */\nexport function getSelectedLayoutSegmentPath(\n tree: FlightRouterState,\n parallelRouteKey: string,\n first = true,\n segmentPath: string[] = []\n): string[] {\n let node: FlightRouterState\n if (first) {\n // Use the provided parallel route key on the first parallel route\n node = tree[1][parallelRouteKey]\n } else {\n // After first parallel route prefer children, if there's no children pick the first parallel route.\n const parallelRoutes = tree[1]\n node = parallelRoutes.children ?? Object.values(parallelRoutes)[0]\n }\n\n if (!node) return segmentPath\n const segment = node[0]\n\n let segmentValue = getSegmentValue(segment)\n\n if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) {\n return segmentPath\n }\n\n segmentPath.push(segmentValue)\n\n return getSelectedLayoutSegmentPath(\n node,\n parallelRouteKey,\n false,\n segmentPath\n )\n}\n\nexport const PAGE_SEGMENT_KEY = '__PAGE__'\nexport const DEFAULT_SEGMENT_KEY = '__DEFAULT__'\nexport const NOT_FOUND_SEGMENT_KEY = '/_not-found'\n","export class InvariantError extends Error {\n constructor(message: string, options?: ErrorOptions) {\n super(\n `Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`,\n options\n )\n this.name = 'InvariantError'\n }\n}\n","export function createPromiseWithResolvers(): PromiseWithResolvers {\n // Shim of Stage 4 Promise.withResolvers proposal\n let resolve: (value: T | PromiseLike) => void\n let reject: (reason: any) => void\n const promise = new Promise((res, rej) => {\n resolve = res\n reject = rej\n })\n return { resolve: resolve!, reject: reject!, promise }\n}\n","export const API_BASE = \"/api/v1\";\n\nexport type Entity = {\n id: string;\n created_at: string;\n updated_at: string;\n};\n\nexport type Customer = Entity & {\n customer_type: \"practice\" | \"clinic\";\n name: string;\n city?: string | null;\n phone?: string | null;\n email?: string | null;\n hygiene_officer?: string | null;\n quality_manager?: string | null;\n notes?: string | null;\n};\n\nexport type Location = Entity & {\n customer_id: string;\n name: string;\n street?: string | null;\n postal_code?: string | null;\n city?: string | null;\n room?: string | null;\n};\n\nexport type Contact = Entity & {\n customer_id: string;\n full_name: string;\n function?: string | null;\n email?: string | null;\n phone?: string | null;\n};\n\nexport type Device = Entity & {\n customer_id: string;\n location_id?: string | null;\n manufacturer: string;\n model: string;\n serial_number: string;\n device_type?: string | null;\n year_built?: number | null;\n commissioned_on?: string | null;\n chamber_volume_liters?: number | null;\n steam_generation?: string | null;\n water_treatment?: string | null;\n documentation?: string | null;\n supplier?: string | null;\n};\n\nexport type Equipment = Entity & {\n kind: string;\n manufacturer?: string | null;\n model?: string | null;\n serial_number: string;\n calibrated_on?: string | null;\n calibration_due_on?: string | null;\n certificate_document_id?: string | null;\n status: \"green\" | \"yellow\" | \"red\";\n};\n\nexport type User = Entity & {\n email: string;\n first_name: string;\n last_name: string;\n role: \"admin\" | \"pruefer\" | \"mitarbeiter\" | \"leser\";\n is_active: boolean;\n must_change_password: boolean;\n last_login_at?: string | null;\n password_changed_at?: string | null;\n};\n\nexport type ValidationItem = Entity & {\n report_number: string;\n customer_id: string;\n location_id?: string | null;\n contact_id?: string | null;\n device_id?: string | null;\n validation_type: string;\n project?: string | null;\n test_location?: string | null;\n examiner_name?: string | null;\n participants?: string | null;\n operator_name?: string | null;\n status: string;\n result?: string | null;\n scheduled_on?: string | null;\n performed_on?: string | null;\n next_validation_on?: string | null;\n revalidation_interval_months: number;\n next_validation_manually_overridden: boolean;\n version: number;\n previous_validation_id?: string | null;\n equipment_ids: string[];\n environment_conditions: Record;\n documentation_checklist: Record[];\n performance_checklist: Record[];\n programs: Record[];\n loading_patterns: Record[];\n measurement_data: Record[];\n drying: Record;\n recommendations: Record[];\n attachments: Record[];\n};\n\nexport type QuickStartValidationSummary = {\n id: string;\n device_id: string;\n report_number: string;\n performed_on?: string | null;\n result?: string | null;\n next_validation_on?: string | null;\n status: string;\n validation_type?: string | null;\n equipment_ids: string[];\n};\n\nexport type QuickStartCustomerData = {\n customer: Customer;\n locations: Location[];\n contacts: Contact[];\n devices: Device[];\n validations: QuickStartValidationSummary[];\n};\n\nexport function normalizeValidationPayload>(values: T): T {\n const optionalForeignKeys = [\"contact_id\", \"examiner_id\"];\n return {\n ...values,\n ...Object.fromEntries(optionalForeignKeys.map((key) => [key, values[key] || null]))\n };\n}\n\nexport type Paginated = {\n items: T[];\n total: number;\n page: number;\n page_size: number;\n pages?: number;\n};\n\nasync function readErrorMessage(response: Response, fallback: string) {\n const text = await response.text();\n if (!text) {\n return fallback;\n }\n try {\n const parsed = JSON.parse(text) as { detail?: string; message?: string };\n return parsed.detail ?? parsed.message ?? text;\n } catch {\n return text;\n }\n}\n\nexport async function login(email: string, password: string) {\n const response = await fetch(`/api/login`, {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ email, password }),\n credentials: \"include\"\n });\n if (!response.ok) {\n const detail = await response.text();\n const error = new Error(detail || `HTTP ${response.status}`) as Error & { status?: number };\n error.status = response.status;\n throw error;\n }\n return response.json() as Promise<{ user: User; expires_in: number }>;\n}\n\nexport async function apiGet(path: string, token: string): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n cache: \"no-store\",\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(`API request failed: ${response.status}`);\n }\n return response.json() as Promise;\n}\n\nexport async function apiSend(path: string, token: string, method: \"POST\" | \"PUT\", body: unknown): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n method,\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify(body),\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n return response.json() as Promise;\n}\n\nexport async function apiDelete(path: string, token: string): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n method: \"DELETE\",\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n}\n\nexport async function apiFetch(path: string, token: string, init?: RequestInit): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n ...init,\n headers: { \"Content-Type\": \"application/json\", ...(init?.headers ?? {}) },\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n return response.json() as Promise;\n}\n","let warnOnce = (_: string) => {}\nif (process.env.NODE_ENV !== 'production') {\n const warnings = new Set()\n warnOnce = (msg: string) => {\n if (!warnings.has(msg)) {\n console.warn(msg)\n }\n warnings.add(msg)\n }\n}\n\nexport { warnOnce }\n","let deploymentId: string | undefined\n\nif (typeof window !== 'undefined') {\n deploymentId = document.documentElement.dataset.dplId\n // Immediately remove the attribute to prevent hydration errors (the dplId was inserted into the\n // HTML only), React isn't aware of it at all.\n delete document.documentElement.dataset.dplId\n} else {\n // Client side: replaced with globalThis.NEXT_DEPLOYMENT_ID\n // Server side: left as is or replaced with a string or replaced with false\n deploymentId = process.env.NEXT_DEPLOYMENT_ID || undefined\n}\n\nexport function getDeploymentId(): string | undefined {\n return deploymentId\n}\n\nexport function getDeploymentIdQuery(ampersand = false): string {\n let id = getDeploymentId()\n if (id) {\n return `${ampersand ? '&' : '?'}dpl=${id}`\n }\n return ''\n}\n\nexport function getAssetToken(): string | undefined {\n return (\n process.env.NEXT_IMMUTABLE_ASSET_TOKEN || process.env.NEXT_DEPLOYMENT_ID\n )\n}\n\nexport function getAssetTokenQuery(ampersand = false): string {\n let id = getAssetToken()\n if (id) {\n return `${ampersand ? '&' : '?'}dpl=${id}`\n }\n return ''\n}\n","import { useCallback, useRef, type Ref } from 'react'\n\n// This is a compatibility hook to support React 18 and 19 refs.\n// In 19, a cleanup function from refs may be returned.\n// In 18, returning a cleanup function creates a warning.\n// Since we take userspace refs, we don't know ahead of time if a cleanup function will be returned.\n// This implements cleanup functions with the old behavior in 18.\n// We know refs are always called alternating with `null` and then `T`.\n// So a call with `null` means we need to call the previous cleanup functions.\nexport function useMergedRef(\n refA: Ref,\n refB: Ref\n): Ref {\n const cleanupA = useRef<(() => void) | null>(null)\n const cleanupB = useRef<(() => void) | null>(null)\n\n // NOTE: In theory, we could skip the wrapping if only one of the refs is non-null.\n // (this happens often if the user doesn't pass a ref to Link/Form/Image)\n // But this can cause us to leak a cleanup-ref into user code (previously via ``),\n // and the user might pass that ref into ref-merging library that doesn't support cleanup refs\n // (because it hasn't been updated for React 19)\n // which can then cause things to blow up, because a cleanup-returning ref gets called with `null`.\n // So in practice, it's safer to be defensive and always wrap the ref, even on React 19.\n return useCallback(\n (current: TElement | null): void => {\n if (current === null) {\n const cleanupFnA = cleanupA.current\n if (cleanupFnA) {\n cleanupA.current = null\n cleanupFnA()\n }\n const cleanupFnB = cleanupB.current\n if (cleanupFnB) {\n cleanupB.current = null\n cleanupFnB()\n }\n } else {\n if (refA) {\n cleanupA.current = applyRef(refA, current)\n }\n if (refB) {\n cleanupB.current = applyRef(refB, current)\n }\n }\n },\n [refA, refB]\n )\n}\n\nfunction applyRef(\n refA: NonNullable>,\n current: TElement\n) {\n if (typeof refA === 'function') {\n const cleanup = refA(current)\n if (typeof cleanup === 'function') {\n return cleanup\n } else {\n return () => refA(null)\n }\n } else {\n refA.current = current\n return () => {\n refA.current = null\n }\n }\n}\n","\"use strict\";\n\nfunction _interop_require_default(obj) {\n return obj && obj.__esModule ? obj : { default: obj };\n}\nexports._ = _interop_require_default;\n","import type { ImageConfigComplete, ImageLoaderProps } from './image-config'\nimport type { ImageProps, ImageLoader, StaticImageData } from './get-img-props'\n\nimport { getImgProps } from './get-img-props'\nimport { Image } from '../../client/image-component'\n\n// This is replaced by webpack alias\nimport defaultLoader from 'next/dist/shared/lib/image-loader'\n\n/**\n * For more advanced use cases, you can call `getImageProps()`\n * to get the props that would be passed to the underlying `` element,\n * and instead pass to them to another component, style, canvas, etc.\n *\n * Read more: [Next.js docs: `getImageProps`](https://nextjs.org/docs/app/api-reference/components/image#getimageprops)\n */\nexport function getImageProps(imgProps: ImageProps) {\n const { props } = getImgProps(imgProps, {\n defaultLoader,\n // This is replaced by webpack define plugin\n imgConf: process.env.__NEXT_IMAGE_OPTS as any as ImageConfigComplete,\n })\n // Normally we don't care about undefined props because we pass to JSX,\n // but this exported function could be used by the end user for anything\n // so we delete undefined props to clean it up a little.\n for (const [key, value] of Object.entries(props)) {\n if (value === undefined) {\n delete props[key as keyof typeof props]\n }\n }\n return { props }\n}\n\nexport default Image\n\nexport type { ImageProps, ImageLoaderProps, ImageLoader, StaticImageData }\n","module.exports = require('./dist/shared/lib/image-external')\n","import Image from \"next/image\";\n\nexport function BrandLogo({ compact = false }: { compact?: boolean }) {\n return (\n
\n \"SCHUBAMED\n
\n );\n}\n","\"use client\";\n\nimport { zodResolver } from \"@hookform/resolvers/zod\";\nimport { LogIn } from \"lucide-react\";\nimport { useEffect, useState } from \"react\";\nimport { useForm } from \"react-hook-form\";\nimport { z } from \"zod\";\nimport { AuthProvider, useAuth } from \"@/components/auth\";\nimport { BrandLogo } from \"@/components/brand/brand-logo\";\nimport { login, User } from \"@/lib/api\";\n\nconst schema = z.object({\n email: z.string().email(\"Bitte gib eine gueltige E-Mail-Adresse ein.\"),\n password: z.string().min(1, \"Bitte gib dein Passwort ein.\")\n});\n\ntype LoginForm = z.infer;\n\ntype LoginError = { status: number; message: string };\n\nfunction mapLoginError(error: unknown): LoginError {\n const status = typeof error === \"object\" && error && \"status\" in error ? Number((error as { status?: number }).status) : 0;\n switch (status) {\n case 401:\n return { status, message: \"E-Mail-Adresse oder Passwort ist falsch.\" };\n case 403:\n return { status, message: \"Dieses Benutzerkonto ist deaktiviert.\" };\n case 422:\n return { status, message: \"Bitte pruefe deine Eingaben.\" };\n case 500:\n case 502:\n return { status, message: \"Der Anmeldedienst ist momentan nicht erreichbar.\" };\n default:\n return { status, message: \"Anmeldung fehlgeschlagen. Bitte erneut versuchen.\" };\n }\n}\n\nfunction LoginPanel() {\n const auth = useAuth();\n const [loading, setLoading] = useState(false);\n const [toast, setToast] = useState(\"\");\n const [success, setSuccess] = useState(\"\");\n\n const form = useForm({\n resolver: zodResolver(schema),\n defaultValues: { email: \"admin@schubamed.de\", password: \"\" },\n mode: \"onSubmit\"\n });\n\n useEffect(() => {\n if (!toast) return;\n const timeout = window.setTimeout(() => setToast(\"\"), 5000);\n return () => window.clearTimeout(timeout);\n }, [toast]);\n\n async function handleSubmit(values: LoginForm) {\n setLoading(true);\n setToast(\"\");\n setSuccess(\"\");\n try {\n const result = await login(values.email, values.password);\n const currentUser = (await auth.refreshUser()) ?? (result.user as User);\n auth.setUser(currentUser);\n auth.setToken(\"authenticated\");\n const target = currentUser.must_change_password ? \"/profile/security\" : \"/dashboard\";\n setSuccess(\"Anmeldung erfolgreich\");\n window.location.replace(target);\n } catch (error) {\n const mapped = mapLoginError(error);\n if (process.env.NODE_ENV !== \"production\") {\n console.error(\"Login failed\", error);\n console.error(\"Login failed mapped\", mapped.status, mapped.message);\n }\n setToast(mapped.message);\n } finally {\n setLoading(false);\n }\n }\n\n return (\n
\n
\n
\n \n

Anmelden

\n

Sicherer Zugriff auf Atlas Workspace.

\n
\n {\n event.preventDefault();\n void form.handleSubmit(handleSubmit)(event);\n }}\n className=\"space-y-5\"\n noValidate\n >\n \n \n {toast &&
{toast}
}\n {success &&
{success}
}\n \n {loading ? : }\n {loading ? \"Anmeldung läuft…\" : \"Anmelden\"}\n \n \n
\n
\n );\n}\n\nexport default function LoginPage() {\n return (\n \n \n \n );\n}\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name LogIn\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTUgM2g0YTIgMiAwIDAgMSAyIDJ2MTRhMiAyIDAgMCAxLTIgMmgtNCIgLz4KICA8cG9seWxpbmUgcG9pbnRzPSIxMCAxNyAxNSAxMiAxMCA3IiAvPgogIDxsaW5lIHgxPSIxNSIgeDI9IjMiIHkxPSIxMiIgeTI9IjEyIiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/log-in\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst LogIn = createLucideIcon('LogIn', [\n ['path', { d: 'M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4', key: 'u53s6r' }],\n ['polyline', { points: '10 17 15 12 10 7', key: '1ail0h' }],\n ['line', { x1: '15', x2: '3', y1: '12', y2: '12', key: 'v6grx8' }],\n]);\n\nexport default LogIn;\n"],"names":["_getRequireWildcardCache","nodeInterop","WeakMap","cacheBabelInterop","cacheNodeInterop","_interop_require_wildcard","obj","__esModule","default","cache","has","get","newObj","__proto__","hasPropertyDescriptor","Object","defineProperty","getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set","exports","_","DEFAULT_SEGMENT_KEY","NOT_FOUND_SEGMENT_KEY","PAGE_SEGMENT_KEY","addSearchParamsIfPageSegment","computeSelectedLayoutSegment","getSegmentValue","getSelectedLayoutSegmentPath","isGroupSegment","isParallelRouteSegment","segment","Array","isArray","endsWith","startsWith","searchParams","isPageSegment","includes","stringifiedQuery","JSON","stringify","segments","parallelRouteKey","length","rawSegment","tree","first","segmentPath","node","parallelRoutes","children","values","segmentValue","push","InvariantError","Error","constructor","message","options","name","createPromiseWithResolvers","resolve","reject","promise","Promise","res","rej","API_BASE","normalizeValidationPayload","optionalForeignKeys","fromEntries","map","readErrorMessage","response","fallback","text","parsed","parse","detail","login","email","password","fetch","method","headers","body","credentials","ok","error","status","json","apiGet","path","token","apiSend","apiDelete","apiFetch","init","warnOnce","process","env","NODE_ENV","warnings","Set","msg","console","warn","add","getAssetToken","getAssetTokenQuery","getDeploymentId","getDeploymentIdQuery","deploymentId","window","document","documentElement","dataset","dplId","NEXT_DEPLOYMENT_ID","undefined","ampersand","id","NEXT_IMMUTABLE_ASSET_TOKEN","useMergedRef","refA","refB","cleanupA","useRef","cleanupB","useCallback","current","cleanupFnA","cleanupFnB","applyRef","cleanup","_interop_require_default","getImageProps","imgProps","props","getImgProps","defaultLoader","imgConf","__NEXT_IMAGE_OPTS","value","entries","Image","module","BrandLogo","compact","className","src","alt","width","height","priority","x1"],"mappings":"6CAEA,SAASA,EAAyBC,CAAW,EACzC,GAAuB,YAAnB,OAAOC,QAAwB,OAAO,KAE1C,IAAIC,EAAoB,IAAID,QACxBE,EAAmB,IAAIF,QAE3B,MAAO,CAACF,EAA2B,SAASC,CAAW,EACnD,OAAOA,EAAcG,EAAmBD,EAC5C,CAAC,CAAEF,EACP,CA0BAuB,EAAQC,CAAC,CAzBT,EAyBYpB,OAzBHA,AAA0BC,CAAG,CAAEL,CAAW,EAC/C,GAAI,CAACA,GAAeK,GAAOA,EAAIC,UAAU,CAAE,OAAOD,EAClD,GAAY,OAARA,GAA+B,UAAf,OAAOA,GAAmC,YAAf,OAAOA,EAAoB,MAAO,CAAEE,QAASF,CAAI,EAEhG,IAAIG,EAAQT,EAAyBC,GAErC,GAAIQ,GAASA,EAAMC,GAAG,CAACJ,GAAM,OAAOG,EAAME,GAAG,CAACL,GAE9C,IAAIM,EAAS,CAAEC,UAAW,IAAK,EAC3BC,EAAwBC,OAAOC,cAAc,EAAID,OAAOE,wBAAwB,CAEpF,IAAK,IAAIC,KAAOZ,EACZ,EADiB,CACL,YAARY,GAAqBH,OAAOI,SAAS,CAACC,cAAc,CAACC,IAAI,CAACf,EAAKY,GAAM,CACrE,IAAII,EAAOR,EAAwBC,OAAOE,wBAAwB,CAACX,EAAKY,GAAO,KAC3EI,IAASA,EAAKX,EAAN,CAAS,EAAIW,EAAKC,GAAG,AAAHA,EAAMR,OAAOC,cAAc,CAACJ,EAAQM,EAAKI,GAClEV,CAAM,CAACM,EAAI,CAAGZ,CAAG,CAACY,EAAI,AAC/B,CAOJ,OAJAN,EAAOJ,OAAO,CAAGF,EAEbG,GAAOA,EAAMc,GAAG,CAACjB,EAAKM,GAEnBA,CACX,wFCmDac,mBAAmB,CAAA,kBAAnBA,GACAC,qBAAqB,CAAA,kBAArBA,GAFAC,gBAAgB,CAAA,kBAAhBA,GAvEGC,4BAA4B,CAAA,kBAA5BA,GAgBAC,4BAA4B,CAAA,kBAA5BA,GA7BAC,eAAe,CAAA,kBAAfA,GAiDAC,4BAA4B,CAAA,kBAA5BA,AAAT,SAASA,EACdkB,CAAuB,CACvBH,CAAwB,CACxBI,GAAQ,CAAI,CACZC,EAAwB,EAAE,MAEtBC,EACJ,GAAIF,EAEFE,EAAOH,CAAI,CAAC,CAFH,CAEK,CAACH,EAAiB,KAC3B,CAEL,IAAMO,EAAiBJ,CAAI,CAAC,EAAE,CAC9BG,EAAOC,EAAeC,QAAQ,EAAIxC,OAAOyC,MAAM,CAACF,EAAe,CAAC,EAAE,AACpE,CAEA,GAAI,CAACD,EAAM,OAAOD,EAGlB,IAAIK,EAAe1B,EAFHsB,CAAI,CAAC,EAAE,QAIvB,AAAI,CAACI,CAF8BtB,EAEdsB,EAAalB,UAAU,CAACX,GACpCwB,GAGTA,EAAYM,IAAI,CAACD,GAEVzB,EACLqB,CAP8D,CAQ9DN,GACA,EACAK,GAEJ,GA9EgBnB,cAAc,CAAA,kBAAdA,GAKAC,sBAAsB,CAAA,kBAAtBA,uEATT,SAASH,EAAgBI,CAAgB,EAC9C,OAAOC,MAAMC,OAAO,CAACF,GAAWA,CAAO,CAAC,EAAE,CAAGA,CAC/C,CAEO,SAASF,EAAeE,CAAe,EAE5C,MAAsB,MAAfA,CAAO,CAAC,EAAE,EAAYA,EAAQG,QAAQ,CAAC,IAChD,CAEO,SAASJ,EAAuBC,CAAe,EACpD,OAAOA,EAAQI,UAAU,CAAC,MAAoB,cAAZJ,CACpC,CAEO,SAASN,EACdM,CAAgB,CAChBK,CAA2D,EAI3D,GAFsBL,CAElBM,CAF0BC,QAAQ,CAACd,GAEpB,CACjB,IAAMe,EAAmBC,KAAKC,SAAS,CAACL,GACxC,MAAOG,AAAqB,SACxBf,EAAmB,IAAMe,EACzBf,CACN,CAEA,OAAOO,CACT,CAEO,SAASL,EACdgB,CAAyB,CACzBC,CAAwB,EAExB,GAAI,CAACD,GAAgC,GAAG,CAAvBA,EAASE,MAAM,CAC9B,OAAO,KAIT,IAAMC,EACiB,aAArBF,EACID,CAAQ,CAAC,EAAE,CACXA,CAAQ,CAACA,EAASE,MAAM,CAAG,EAAE,CAInC,OAAOC,IAAevB,EAAsB,KAAOuB,CACrD,CAsCO,IAAMrB,EAAmB,WACnBF,EAAsB,cACtBC,EAAwB,qHCxFxBgC,iBAAAA,qCAAAA,IAAN,OAAMA,UAAuBC,MAClCC,YAAYC,CAAe,CAAEC,CAAsB,CAAE,CACnD,KAAK,CACH,CAAC,WAAW,EAAED,EAAQxB,QAAQ,CAAC,KAAOwB,EAAUA,EAAU,IAAI,0BAA0B,CAAC,CACzFC,GAEF,IAAI,CAACC,IAAI,CAAG,gBACd,CACF,gCCRO,SAASC,IAId,IAFIC,EACAC,EACEC,EAAU,IAAIC,QAAW,CAACC,EAAKC,KACnCL,EAAUI,EACVH,EAASI,CACX,GACA,MAAO,CAAEL,QAASA,EAAUC,OAAQA,UAASC,CAAQ,CACvD,0EATgBH,6BAAAA,qCAAAA,6BCAT,IAAMO,EAAW,UA+IxB,eAAeK,EAAiBC,CAAkB,CAAEC,CAAgB,EAClE,IAAMC,EAAO,MAAMF,EAASE,IAAI,GAChC,GAAI,CAACA,EACH,IADS,GACFD,EAET,GAAI,CACF,IAAME,EAASrC,KAAKsC,KAAK,CAACF,GAC1B,OAAOC,EAAOE,MAAM,EAAIF,EAAOnB,OAAO,EAAIkB,CAC5C,CAAE,KAAM,CACN,OAAOA,CACT,CACF,CAEO,eAAeI,EAAMC,CAAa,CAAEC,CAAgB,EACzD,IAAMR,EAAW,MAAMS,MAAM,CAAC,UAAU,CAAC,CAAE,CACzCC,OAAQ,OACRC,QAAS,CAAE,eAAgB,kBAAmB,EAC9CC,KAAM9C,KAAKC,SAAS,CAAC,OAAEwC,WAAOC,CAAS,GACvCK,YAAa,SACf,GACA,GAAI,CAACb,EAASc,EAAE,CAAE,CAEhB,IAAMC,EAAQ,AAAIjC,MAAMuB,AADT,MAAML,EAASE,IAAI,IACA,CAAC,KAAK,EAAEF,EAASgB,MAAM,CAAA,CAAE,CAE3D,OADAD,EAAMC,MAAM,CAAGhB,EAASgB,MAAM,CACxBD,CACR,CACA,OAAOf,EAASiB,IAAI,EACtB,CAEO,eAAeC,EAAUC,CAAY,CAAEC,CAAa,EACzD,IAAMpB,EAAW,MAAMS,MAAM,CAAA,EAAGf,EAAAA,EAAWyB,EAAAA,CAAM,CAAE,CACjDxF,MAAO,WACPkF,YAAa,SACf,GACA,GAAI,CAACb,EAASc,EAAE,CACd,CADgB,KACNhC,AAAJ,MAAU,CAAC,oBAAoB,EAAEkB,EAASgB,MAAM,CAAA,CAAE,EAE1D,OAAOhB,EAASiB,IAAI,EACtB,CAEO,eAAeI,EAAWF,CAAY,CAAEC,CAAa,CAAEV,CAAsB,CAAEE,CAAa,EACjG,IAAMZ,EAAW,MAAMS,MAAM,CAAA,EAAGf,EAAAA,EAAWyB,EAAAA,CAAM,CAAE,QACjDT,EACAC,QAAS,CAAE,eAAgB,kBAAmB,EAC9CC,KAAM9C,KAAKC,SAAS,CAAC6C,GACrBC,YAAa,SACf,GACA,GAAI,CAACb,EAASc,EAAE,CACd,CADgB,KACV,AAAIhC,MAAM,MAAMiB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASgB,MAAM,CAAA,CAAE,GAE3F,OAAOhB,EAASiB,IAAI,EACtB,CAEO,eAAeK,EAAUH,CAAY,CAAEC,CAAa,EACzD,IAAMpB,EAAW,MAAMS,MAAM,CAAA,EAAGf,EAAAA,EAAWyB,EAAAA,CAAM,CAAE,CACjDT,OAAQ,SACRG,YAAa,SACf,GACA,GAAI,CAACb,EAASc,EAAE,CACd,CADgB,KACV,AAAIhC,MAAM,MAAMiB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASgB,MAAM,CAAA,CAAE,EAE7F,CAEO,eAAeO,EAAYJ,CAAY,CAAEC,CAAa,CAAEI,CAAkB,EAC/E,IAAMxB,EAAW,MAAMS,MAAM,CAAA,EAAGf,EAAAA,EAAWyB,EAAAA,CAAM,CAAE,CACjD,GAAGK,CAAI,CACPb,QAAS,CAAE,eAAgB,mBAAoB,GAAIa,GAAMb,SAAW,CAAC,CAAC,AAAE,EACxEE,YAAa,SACf,GACA,GAAI,CAACb,EAASc,EAAE,CACd,CADgB,KACV,AAAIhC,MAAM,MAAMiB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASgB,MAAM,CAAA,CAAE,GAE3F,OAAOhB,EAASiB,IAAI,EACtB,0HAzFO,SAAStB,AAA8DjB,CAAS,EAErF,MAAO,CACL,GAAGA,CAAM,CACT,GAAGzC,OAAO4D,WAAW,CAACD,AAHI,CAAC,aAAc,cAAc,CAGbE,GAAG,CAAC,AAAC1D,GAAQ,CAACA,EAAKsC,CAAM,CAACtC,EAAI,EAAI,KAAK,EACnF,AADqF,CAEvF,2GC1HSqF,WAAAA,qCAAAA,KAXT,IAAIA,EAAW,AAAC9E,IAAe,oCCA3B4F,0DAyBYJ,aAAa,CAAA,kBAAbA,GAMAC,kBAAkB,CAAA,kBAAlBA,GAlBAC,eAAe,CAAA,kBAAfA,GAIAC,oBAAoB,CAAA,kBAApBA,uEAJT,SAASD,IACd,QACF,CAEO,SAASC,EAAqBS,GAAY,CAAK,SAEpD,EACS,CAAA,CADLC,CACQD,EAAY,CADhB,GACsB,IAAI,IAAI,EAAEC,AANjCT,EAMiCS,CAAI,CAErC,EACT,CAEO,SAASb,IACd,MAC0E,CAAxET,AAAwE,CAE5E,CAEO,MAJKC,GAAG,AAICS,CAJAa,CAImBF,GAAY,CAAK,EAKlD,MAAO,EACT,CA3BER,OAAiDO,GAiBT,IAAIpB,CAjB7BA,OAiBqCC,CAjB7BA,EAiBgC,CAACkB,AAjB9B,CAACA,iBAiB+C,CAjB7B,kECD/BK,eAAAA,qCAAAA,aAT8B,CAAA,CAAA,IAAA,GASvC,SAASA,EACdC,CAAmB,CACnBC,CAAmB,EAEnB,IAAMC,EAAWC,CAAAA,EAAAA,EAAAA,MAAM,AAANA,EAA4B,MACvCC,EAAWD,CAAAA,EAAAA,EAAAA,MAAAA,AAAM,EAAsB,MAS7C,MAAOE,CAAAA,EAAAA,EAAAA,WAAAA,AAAW,EAChB,AAACC,IACC,GAAgB,OAAZA,EAAkB,CACpB,IAAMC,EAAaL,EAASI,OAAO,CAC/BC,IACFL,EAASI,MADK,CACE,CAAG,KACnBC,KAEF,IAAMC,EAAaJ,EAASE,OAAO,CAC/BE,IACFJ,EAASE,MADK,CACE,CAAG,KACnBE,IAEJ,MACMR,CADC,GAEHE,EADQ,AACCI,OAAO,CAAGG,EAAST,EAAMM,EAAAA,EAEhCL,IACFG,EADQ,AACCE,OAAO,CAAGG,EAASR,EAAMK,EAAAA,CAGxC,EACA,CAACN,EAAMC,EAAK,CAEhB,CAEA,SAASQ,EACPT,CAAgC,CAChCM,CAAiB,EAEjB,GAAoB,YAAhB,OAAON,EAST,OADAA,EAAKM,OAAO,CAAGA,EACR,KACLN,EAAKM,OAAO,CAAG,IACjB,CAX8B,EAC9B,IAAMI,EAAUV,EAAKM,SACrB,AAAuB,YAAY,AAA/B,OAAOI,EACFA,EAEA,IAAMV,EAAK,KAEtB,CAMF,MANS,gPCvDTzG,EAAQC,CAAC,CAHT,EAGYmH,OAHHA,AAAyBtI,CAAG,EACjC,OAAOA,GAAOA,EAAIC,UAAU,CAAGD,EAAM,CAAEE,QAASF,CAAI,CACxD,wFC6BA,OAAoB,CAAA,kBAApB,GAjBgBuI,aAAa,CAAA,kBAAbA,4FAbY,CAAA,CAAA,IAAA,OACN,CAAA,CAAA,IAAA,WAGI,CAAA,CAAA,IAAA,IASnB,SAASA,EAAcC,CAAoB,EAChD,GAAM,CAAEC,OAAK,CAAE,CAAGC,CAAAA,EAAAA,EAAAA,WAAAA,AAAW,EAACF,EAAU,CACtCG,cAAAA,EAAAA,OAAa,CAEbC,OAAAA,CAAsC,CAA7B1C,QAAQC,GAAG,CAAC0C,iBAAiB,qJACxC,GAIA,IAAK,GAAM,CAACjI,EAAKkI,EAAM,GAAIrI,OAAOsI,OAAO,CAACN,GACpCK,IAD4C,CAClCxB,OACZ,IADuB,GAChBmB,CAAK,CAAC7H,EAA0B,CAG3C,MAAO,OAAE6H,CAAM,CACjB,KAEA,EAAeO,EAAAA,KAAK,kBCjCpBC,EAAO/H,OAAO,CAAA,EAAA,CAAA,CAAA,gDCAd,EAAA,EAAA,CAAA,CAAA,0BAEO,SAASgI,AAAU,SAAEC,EAAU,EAAK,CAAyB,EAClE,MACE,CAAA,EAAA,EAAA,GAAA,EAAC,MAAA,CAAIC,UAAU,mCACb,CAAA,EAAA,EAAA,GAAA,EAAC,EAAA,OAAK,CAAA,CAACC,IAAI,sBAAsBC,IAAI,6BAA6BC,MAAOJ,EAAU,IAAM,IAAKK,OAAQ,GAAIC,QAAQ,CAAA,CAAA,KAGxH,4CCNA,EAAA,EAAA,CAAA,CAAA,WCWM,CAAA,CAAA,AAAQ,CAAR,AAAQ,CAAR,CAAA,AAAQ,CAAR,CAAA,SAAQ,OAAA,EAAiB,OAAS,CAAA,CAAA,AACtC,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAA6C,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAK,AAAL,QAAK,CAAU,CAAA,CAAA,AAC1E,CAAC,CAAA,CAAA,iBAAsB,CAAoB,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,CACzD,CAAA,CAAA,CAAA,CAAA,CAAA,EAAQ,CAAE,CAAA,CAAA,CAAA,KAAU,CAAA,EAAI,CAAK,CAAA,CAAA,CAAA,EAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAClE,EDbD,IAAA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OAEA,IAAM,EAAS7I,EAAAA,CAAC,CAAC,MAAM,CAAC,CACtB,MAAO,EAAA,CAAC,CAAC,MAAM,GAAG8I,KAAK,CAAC,+CACxB,SAAU,EAAA,CAAC,CAAC,MAAM,GAAG,GAAG,CAAC,EAAG,+BAC9B,GAuBA,SAAS,IACP,IAAM,EAAO,CAAA,EAAA,EAAA,OAAA,AAAO,IACd,CAAC,EAAS,EAAW,CAAG,CAAA,EAAA,EAAA,QAAA,AAAQ,GAAC,GACjC,CAAC,EAAO,EAAS,CAAG,CAAA,EAAA,EAAA,QAAA,AAAQ,EAAC,IAC7B,CAAC,EAAS,EAAW,CAAG,CAAA,EAAA,EAAA,QAAA,AAAQ,EAAC,IAEjC,EAAO,CAAA,EAAA,EAAA,OAAA,AAAO,EAAY,CAC9B,SAAU,CAAA,EAAA,EAAA,WAAW,AAAX,EAAY,GACtB,cAAe,CAAE,MAAO,qBAAsB,SAAU,EAAG,EAC3D,KAAM,UACR,GAQA,eAAe,EAAa,CAAiB,EAC3C,GAAW,GACX,EAAS,IACT,EAAW,IACX,GAAI,CACF,IAAM,EAAS,MAAM,CAAA,EAAA,EAAA,KAAA,AAAK,EAAC,EAAO,KAAK,CAAE,EAAO,QAAQ,EAClD,EAAe,MAAM,EAAK,WAAW,IAAQ,EAAO,IAAI,CAC9D,EAAK,OAAO,CAAC,GACb,EAAK,QAAQ,CAAC,iBACd,IAAM,EAAS,EAAY,oBAAoB,CAAG,oBAAsB,aACxE,EAAW,yBACX,OAAO,QAAQ,CAAC,OAAO,CAAC,EAC1B,CAAE,MAAO,EAAO,CAMd,EAAS,AArDf,AAgDqB,SAhDZ,AAAc,CAAc,EACnC,IAAM,EAA0B,UAAjB,OAAO,GAAsB,GAAS,WAAY,EAAQ,OAAO,EAA+B,MAAM,EAAI,EACzH,OAAQ,GACN,KAAK,IACH,MAAO,QAAE,EAAQ,QAAS,0CAA2C,CACvE,MAAK,IACH,MAAO,QAAE,EAAQ,QAAS,uCAAwC,CACpE,MAAK,IACH,MAAO,QAAE,EAAQ,QAAS,8BAA+B,CAC3D,MAAK,IACL,KAAK,IACH,MAAO,QAAE,EAAQ,QAAS,kDAAmD,CAC/E,SACE,MAAO,QAAE,EAAQ,QAAS,mDAAoD,CAClF,CACF,EAiCmC,GAKb,OAAO,CACzB,QAAU,CACR,GAAW,EACb,CACF,CAEA,MA9BA,CAAA,EAAA,EAAA,SAAA,AAAS,EAAC,KACR,GAAI,CAAC,EAAO,OACZ,IAAM,EAAU,OAAO,UAAU,CAAC,IAAM,EAAS,IAAK,KACtD,MAAO,IAAM,OAAO,YAAY,CAAC,EACnC,EAAG,CAAC,EAAM,EA2BR,CAAA,EAAA,EAAA,GAAA,EAAC,OAAA,CAAK,UAAU,kFACd,CAAA,EAAA,EAAA,IAAA,EAAC,UAAA,CAAQ,UAAU,uFACjB,CAAA,EAAA,EAAA,IAAA,EAAC,MAAA,CAAI,UAAU,iBACb,CAAA,EAAA,EAAA,GAAA,EAAC,EAAA,SAAS,CAAA,CAAA,GACV,CAAA,EAAA,EAAA,GAAA,EAAC,KAAA,CAAG,UAAU,iDAAwC,aACtD,CAAA,EAAA,EAAA,GAAA,EAAC,IAAA,CAAE,UAAU,kDAAyC,6CAExD,CAAA,EAAA,EAAA,IAAA,EAAC,OAAA,CACC,SAAU,AAAC,IACT,EAAM,cAAc,GACf,EAAK,YAAY,CAAC,GAAc,EACvC,EACA,UAAU,YACV,UAAU,CAAA,CAAA,YAEV,CAAA,EAAA,EAAA,IAAA,EAAC,QAAA,CAAM,UAAU,kBACf,CAAA,EAAA,EAAA,GAAA,EAAC,OAAA,CAAK,UAAU,yCAAgC,WAChD,CAAA,EAAA,EAAA,GAAA,EAAC,QAAA,CACC,KAAK,QACL,UAAU,8GACT,GAAG,EAAK,QAAQ,CAAC,QAAQ,GAE3B,EAAK,SAAS,CAAC,MAAM,CAAC,KAAK,EAC1B,CAAA,EAAA,EAAA,GAAA,EAAC,IAAA,CAAE,UAAU,oCAA4B,EAAK,SAAS,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,MAGhF,CAAA,EAAA,EAAA,IAAA,EAAC,QAAA,CAAM,UAAU,kBACf,CAAA,EAAA,EAAA,GAAA,EAAC,OAAA,CAAK,UAAU,yCAAgC,aAChD,CAAA,EAAA,EAAA,GAAA,EAAC,QAAA,CACC,KAAK,WACL,UAAU,8GACT,GAAG,EAAK,QAAQ,CAAC,WAAW,GAE9B,EAAK,SAAS,CAAC,MAAM,CAAC,QAAQ,EAC7B,CAAA,EAAA,EAAA,GAAA,EAAC,IAAA,CAAE,UAAU,oCAA4B,EAAK,SAAS,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO,MAGlF,GAAS,CAAA,EAAA,EAAA,GAAA,EAAC,MAAA,CAAI,UAAU,iGAAyF,IACjH,GAAW,CAAA,EAAA,EAAA,GAAA,EAAC,MAAA,CAAI,UAAU,mGAA2F,IACtH,CAAA,EAAA,EAAA,IAAA,EAAC,SAAA,CACC,KAAK,SACL,SAAU,EACV,UAAU,gNAET,EAAU,CAAA,EAAA,EAAA,GAAA,EAAC,OAAA,CAAK,UAAU,YAAe,CAAA,EAAA,EAAA,GAAA,EAAC,EAAA,CAAM,UAAU,YAC3D,CAAA,EAAA,EAAA,GAAA,EAAC,OAAA,UAAM,EAAU,mBAAqB,uBAMlD,kBAEe,SAAS,EACtB,MACE,CAAA,EAAA,EAAA,GAAA,EAAC,EAAA,YAAY,CAAA,UACX,CAAA,EAAA,EAAA,GAAA,EAAC,EAAA,CAAA,IAGP","ignoreList":[0,1,2,3,5,6,7,8,9,10,13]} \ No newline at end of file +{"version":3,"sources":["../../../../node_modules/%40swc/helpers/cjs/_interop_require_wildcard.cjs","../../../../node_modules/next/src/shared/lib/segment.ts","../../../../node_modules/next/src/shared/lib/invariant-error.ts","../../../../node_modules/next/src/shared/lib/promise-with-resolvers.ts","../../../../lib/api.ts","../../../../node_modules/next/src/shared/lib/utils/warn-once.ts","../../../../node_modules/next/src/shared/lib/deployment-id.ts","../../../../node_modules/next/src/client/use-merged-ref.ts","../../../../node_modules/%40swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/next/src/shared/lib/image-external.tsx","../../../../node_modules/next/image.js","../../../../components/brand/brand-logo.tsx","../../../../app/%28auth%29/login/page.tsx","../../../../node_modules/lucide-react/src/icons/log-in.ts"],"sourcesContent":["\"use strict\";\n\nfunction _getRequireWildcardCache(nodeInterop) {\n if (typeof WeakMap !== \"function\") return null;\n\n var cacheBabelInterop = new WeakMap();\n var cacheNodeInterop = new WeakMap();\n\n return (_getRequireWildcardCache = function(nodeInterop) {\n return nodeInterop ? cacheNodeInterop : cacheBabelInterop;\n })(nodeInterop);\n}\nfunction _interop_require_wildcard(obj, nodeInterop) {\n if (!nodeInterop && obj && obj.__esModule) return obj;\n if (obj === null || typeof obj !== \"object\" && typeof obj !== \"function\") return { default: obj };\n\n var cache = _getRequireWildcardCache(nodeInterop);\n\n if (cache && cache.has(obj)) return cache.get(obj);\n\n var newObj = { __proto__: null };\n var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;\n\n for (var key in obj) {\n if (key !== \"default\" && Object.prototype.hasOwnProperty.call(obj, key)) {\n var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;\n if (desc && (desc.get || desc.set)) Object.defineProperty(newObj, key, desc);\n else newObj[key] = obj[key];\n }\n }\n\n newObj.default = obj;\n\n if (cache) cache.set(obj, newObj);\n\n return newObj;\n}\nexports._ = _interop_require_wildcard;\n","import type { FlightRouterState, Segment } from './app-router-types'\n\nexport function getSegmentValue(segment: Segment) {\n return Array.isArray(segment) ? segment[1] : segment\n}\n\nexport function isGroupSegment(segment: string) {\n // Use array[0] for performant purpose\n return segment[0] === '(' && segment.endsWith(')')\n}\n\nexport function isParallelRouteSegment(segment: string) {\n return segment.startsWith('@') && segment !== '@children'\n}\n\nexport function addSearchParamsIfPageSegment(\n segment: Segment,\n searchParams: Record\n) {\n const isPageSegment = segment.includes(PAGE_SEGMENT_KEY)\n\n if (isPageSegment) {\n const stringifiedQuery = JSON.stringify(searchParams)\n return stringifiedQuery !== '{}'\n ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery\n : PAGE_SEGMENT_KEY\n }\n\n return segment\n}\n\nexport function computeSelectedLayoutSegment(\n segments: string[] | null,\n parallelRouteKey: string\n): string | null {\n if (!segments || segments.length === 0) {\n return null\n }\n\n // For 'children', use first segment; for other parallel routes, use last segment\n const rawSegment =\n parallelRouteKey === 'children'\n ? segments[0]\n : segments[segments.length - 1]\n\n // If the default slot is showing, return null since it's not technically \"selected\" (it's a fallback)\n // Returning an internal value like `__DEFAULT__` would be confusing\n return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment\n}\n\n/** Get the canonical parameters from the current level to the leaf node. */\nexport function getSelectedLayoutSegmentPath(\n tree: FlightRouterState,\n parallelRouteKey: string,\n first = true,\n segmentPath: string[] = []\n): string[] {\n let node: FlightRouterState\n if (first) {\n // Use the provided parallel route key on the first parallel route\n node = tree[1][parallelRouteKey]\n } else {\n // After first parallel route prefer children, if there's no children pick the first parallel route.\n const parallelRoutes = tree[1]\n node = parallelRoutes.children ?? Object.values(parallelRoutes)[0]\n }\n\n if (!node) return segmentPath\n const segment = node[0]\n\n let segmentValue = getSegmentValue(segment)\n\n if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) {\n return segmentPath\n }\n\n segmentPath.push(segmentValue)\n\n return getSelectedLayoutSegmentPath(\n node,\n parallelRouteKey,\n false,\n segmentPath\n )\n}\n\nexport const PAGE_SEGMENT_KEY = '__PAGE__'\nexport const DEFAULT_SEGMENT_KEY = '__DEFAULT__'\nexport const NOT_FOUND_SEGMENT_KEY = '/_not-found'\n","export class InvariantError extends Error {\n constructor(message: string, options?: ErrorOptions) {\n super(\n `Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`,\n options\n )\n this.name = 'InvariantError'\n }\n}\n","export function createPromiseWithResolvers(): PromiseWithResolvers {\n // Shim of Stage 4 Promise.withResolvers proposal\n let resolve: (value: T | PromiseLike) => void\n let reject: (reason: any) => void\n const promise = new Promise((res, rej) => {\n resolve = res\n reject = rej\n })\n return { resolve: resolve!, reject: reject!, promise }\n}\n","export const API_BASE = \"/api/v1\";\n\nexport type Entity = {\n id: string;\n created_at: string;\n updated_at: string;\n};\n\nexport type Customer = Entity & {\n customer_type: \"practice\" | \"clinic\";\n source_system?: string | null;\n external_id?: string | null;\n name: string;\n city?: string | null;\n phone?: string | null;\n email?: string | null;\n hygiene_officer?: string | null;\n quality_manager?: string | null;\n notes?: string | null;\n};\n\nexport type Location = Entity & {\n customer_id: string;\n name: string;\n street?: string | null;\n postal_code?: string | null;\n city?: string | null;\n room?: string | null;\n};\n\nexport type Contact = Entity & {\n customer_id: string;\n full_name: string;\n function?: string | null;\n email?: string | null;\n phone?: string | null;\n};\n\nexport type Device = Entity & {\n customer_id: string;\n location_id?: string | null;\n manufacturer: string;\n model: string;\n serial_number: string;\n device_type?: string | null;\n year_built?: number | null;\n commissioned_on?: string | null;\n chamber_volume_liters?: number | null;\n steam_generation?: string | null;\n water_treatment?: string | null;\n documentation?: string | null;\n supplier?: string | null;\n};\n\nexport type Equipment = Entity & {\n kind: string;\n manufacturer?: string | null;\n model?: string | null;\n serial_number: string;\n calibrated_on?: string | null;\n calibration_due_on?: string | null;\n certificate_document_id?: string | null;\n status: \"green\" | \"yellow\" | \"red\";\n};\n\nexport type User = Entity & {\n email: string;\n first_name: string;\n last_name: string;\n role: \"admin\" | \"pruefer\" | \"mitarbeiter\" | \"leser\";\n is_active: boolean;\n must_change_password: boolean;\n last_login_at?: string | null;\n password_changed_at?: string | null;\n};\n\nexport type ValidationItem = Entity & {\n report_number: string;\n customer_id: string;\n location_id?: string | null;\n contact_id?: string | null;\n device_id?: string | null;\n validation_type: string;\n project?: string | null;\n test_location?: string | null;\n examiner_name?: string | null;\n participants?: string | null;\n operator_name?: string | null;\n status: string;\n result?: string | null;\n scheduled_on?: string | null;\n performed_on?: string | null;\n next_validation_on?: string | null;\n revalidation_interval_months: number;\n next_validation_manually_overridden: boolean;\n version: number;\n previous_validation_id?: string | null;\n equipment_ids: string[];\n environment_conditions: Record;\n documentation_checklist: Record[];\n performance_checklist: Record[];\n programs: Record[];\n loading_patterns: Record[];\n measurement_data: Record[];\n drying: Record;\n recommendations: Record[];\n attachments: Record[];\n};\n\nexport type QuickStartValidationSummary = {\n id: string;\n device_id: string;\n report_number: string;\n performed_on?: string | null;\n result?: string | null;\n next_validation_on?: string | null;\n status: string;\n validation_type?: string | null;\n equipment_ids: string[];\n};\n\nexport type QuickStartCustomerData = {\n customer: Customer;\n locations: Location[];\n contacts: Contact[];\n devices: Device[];\n validations: QuickStartValidationSummary[];\n};\n\nexport function normalizeValidationPayload>(values: T): T {\n const optionalForeignKeys = [\"contact_id\", \"examiner_id\"];\n return {\n ...values,\n ...Object.fromEntries(optionalForeignKeys.map((key) => [key, values[key] || null]))\n };\n}\n\nexport type Paginated = {\n items: T[];\n total: number;\n page: number;\n page_size: number;\n pages?: number;\n};\n\nasync function readErrorMessage(response: Response, fallback: string) {\n const text = await response.text();\n if (!text) {\n return fallback;\n }\n try {\n const parsed = JSON.parse(text) as { detail?: string; message?: string };\n return parsed.detail ?? parsed.message ?? text;\n } catch {\n return text;\n }\n}\n\nexport async function login(email: string, password: string) {\n const response = await fetch(`/api/login`, {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ email, password }),\n credentials: \"include\"\n });\n if (!response.ok) {\n const detail = await response.text();\n const error = new Error(detail || `HTTP ${response.status}`) as Error & { status?: number };\n error.status = response.status;\n throw error;\n }\n return response.json() as Promise<{ user: User; expires_in: number }>;\n}\n\nexport async function apiGet(path: string, token: string): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n cache: \"no-store\",\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(`API request failed: ${response.status}`);\n }\n return response.json() as Promise;\n}\n\nexport async function apiSend(path: string, token: string, method: \"POST\" | \"PUT\", body: unknown): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n method,\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify(body),\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n return response.json() as Promise;\n}\n\nexport async function apiDelete(path: string, token: string): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n method: \"DELETE\",\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n}\n\nexport async function apiFetch(path: string, token: string, init?: RequestInit): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n ...init,\n headers: { \"Content-Type\": \"application/json\", ...(init?.headers ?? {}) },\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n return response.json() as Promise;\n}\n","let warnOnce = (_: string) => {}\nif (process.env.NODE_ENV !== 'production') {\n const warnings = new Set()\n warnOnce = (msg: string) => {\n if (!warnings.has(msg)) {\n console.warn(msg)\n }\n warnings.add(msg)\n }\n}\n\nexport { warnOnce }\n","let deploymentId: string | undefined\n\nif (typeof window !== 'undefined') {\n deploymentId = document.documentElement.dataset.dplId\n // Immediately remove the attribute to prevent hydration errors (the dplId was inserted into the\n // HTML only), React isn't aware of it at all.\n delete document.documentElement.dataset.dplId\n} else {\n // Client side: replaced with globalThis.NEXT_DEPLOYMENT_ID\n // Server side: left as is or replaced with a string or replaced with false\n deploymentId = process.env.NEXT_DEPLOYMENT_ID || undefined\n}\n\nexport function getDeploymentId(): string | undefined {\n return deploymentId\n}\n\nexport function getDeploymentIdQuery(ampersand = false): string {\n let id = getDeploymentId()\n if (id) {\n return `${ampersand ? '&' : '?'}dpl=${id}`\n }\n return ''\n}\n\nexport function getAssetToken(): string | undefined {\n return (\n process.env.NEXT_IMMUTABLE_ASSET_TOKEN || process.env.NEXT_DEPLOYMENT_ID\n )\n}\n\nexport function getAssetTokenQuery(ampersand = false): string {\n let id = getAssetToken()\n if (id) {\n return `${ampersand ? '&' : '?'}dpl=${id}`\n }\n return ''\n}\n","import { useCallback, useRef, type Ref } from 'react'\n\n// This is a compatibility hook to support React 18 and 19 refs.\n// In 19, a cleanup function from refs may be returned.\n// In 18, returning a cleanup function creates a warning.\n// Since we take userspace refs, we don't know ahead of time if a cleanup function will be returned.\n// This implements cleanup functions with the old behavior in 18.\n// We know refs are always called alternating with `null` and then `T`.\n// So a call with `null` means we need to call the previous cleanup functions.\nexport function useMergedRef(\n refA: Ref,\n refB: Ref\n): Ref {\n const cleanupA = useRef<(() => void) | null>(null)\n const cleanupB = useRef<(() => void) | null>(null)\n\n // NOTE: In theory, we could skip the wrapping if only one of the refs is non-null.\n // (this happens often if the user doesn't pass a ref to Link/Form/Image)\n // But this can cause us to leak a cleanup-ref into user code (previously via ``),\n // and the user might pass that ref into ref-merging library that doesn't support cleanup refs\n // (because it hasn't been updated for React 19)\n // which can then cause things to blow up, because a cleanup-returning ref gets called with `null`.\n // So in practice, it's safer to be defensive and always wrap the ref, even on React 19.\n return useCallback(\n (current: TElement | null): void => {\n if (current === null) {\n const cleanupFnA = cleanupA.current\n if (cleanupFnA) {\n cleanupA.current = null\n cleanupFnA()\n }\n const cleanupFnB = cleanupB.current\n if (cleanupFnB) {\n cleanupB.current = null\n cleanupFnB()\n }\n } else {\n if (refA) {\n cleanupA.current = applyRef(refA, current)\n }\n if (refB) {\n cleanupB.current = applyRef(refB, current)\n }\n }\n },\n [refA, refB]\n )\n}\n\nfunction applyRef(\n refA: NonNullable>,\n current: TElement\n) {\n if (typeof refA === 'function') {\n const cleanup = refA(current)\n if (typeof cleanup === 'function') {\n return cleanup\n } else {\n return () => refA(null)\n }\n } else {\n refA.current = current\n return () => {\n refA.current = null\n }\n }\n}\n","\"use strict\";\n\nfunction _interop_require_default(obj) {\n return obj && obj.__esModule ? obj : { default: obj };\n}\nexports._ = _interop_require_default;\n","import type { ImageConfigComplete, ImageLoaderProps } from './image-config'\nimport type { ImageProps, ImageLoader, StaticImageData } from './get-img-props'\n\nimport { getImgProps } from './get-img-props'\nimport { Image } from '../../client/image-component'\n\n// This is replaced by webpack alias\nimport defaultLoader from 'next/dist/shared/lib/image-loader'\n\n/**\n * For more advanced use cases, you can call `getImageProps()`\n * to get the props that would be passed to the underlying `` element,\n * and instead pass to them to another component, style, canvas, etc.\n *\n * Read more: [Next.js docs: `getImageProps`](https://nextjs.org/docs/app/api-reference/components/image#getimageprops)\n */\nexport function getImageProps(imgProps: ImageProps) {\n const { props } = getImgProps(imgProps, {\n defaultLoader,\n // This is replaced by webpack define plugin\n imgConf: process.env.__NEXT_IMAGE_OPTS as any as ImageConfigComplete,\n })\n // Normally we don't care about undefined props because we pass to JSX,\n // but this exported function could be used by the end user for anything\n // so we delete undefined props to clean it up a little.\n for (const [key, value] of Object.entries(props)) {\n if (value === undefined) {\n delete props[key as keyof typeof props]\n }\n }\n return { props }\n}\n\nexport default Image\n\nexport type { ImageProps, ImageLoaderProps, ImageLoader, StaticImageData }\n","module.exports = require('./dist/shared/lib/image-external')\n","import Image from \"next/image\";\n\nexport function BrandLogo({ compact = false }: { compact?: boolean }) {\n return (\n
\n \"SCHUBAMED\n
\n );\n}\n","\"use client\";\n\nimport { zodResolver } from \"@hookform/resolvers/zod\";\nimport { LogIn } from \"lucide-react\";\nimport { useEffect, useState } from \"react\";\nimport { useForm } from \"react-hook-form\";\nimport { z } from \"zod\";\nimport { AuthProvider, useAuth } from \"@/components/auth\";\nimport { BrandLogo } from \"@/components/brand/brand-logo\";\nimport { login, User } from \"@/lib/api\";\n\nconst schema = z.object({\n email: z.string().email(\"Bitte gib eine gueltige E-Mail-Adresse ein.\"),\n password: z.string().min(1, \"Bitte gib dein Passwort ein.\")\n});\n\ntype LoginForm = z.infer;\n\ntype LoginError = { status: number; message: string };\n\nfunction mapLoginError(error: unknown): LoginError {\n const status = typeof error === \"object\" && error && \"status\" in error ? Number((error as { status?: number }).status) : 0;\n switch (status) {\n case 401:\n return { status, message: \"E-Mail-Adresse oder Passwort ist falsch.\" };\n case 403:\n return { status, message: \"Dieses Benutzerkonto ist deaktiviert.\" };\n case 422:\n return { status, message: \"Bitte pruefe deine Eingaben.\" };\n case 500:\n case 502:\n return { status, message: \"Der Anmeldedienst ist momentan nicht erreichbar.\" };\n default:\n return { status, message: \"Anmeldung fehlgeschlagen. Bitte erneut versuchen.\" };\n }\n}\n\nfunction LoginPanel() {\n const auth = useAuth();\n const [loading, setLoading] = useState(false);\n const [toast, setToast] = useState(\"\");\n const [success, setSuccess] = useState(\"\");\n\n const form = useForm({\n resolver: zodResolver(schema),\n defaultValues: { email: \"admin@schubamed.de\", password: \"\" },\n mode: \"onSubmit\"\n });\n\n useEffect(() => {\n if (!toast) return;\n const timeout = window.setTimeout(() => setToast(\"\"), 5000);\n return () => window.clearTimeout(timeout);\n }, [toast]);\n\n async function handleSubmit(values: LoginForm) {\n setLoading(true);\n setToast(\"\");\n setSuccess(\"\");\n try {\n const result = await login(values.email, values.password);\n const currentUser = (await auth.refreshUser()) ?? (result.user as User);\n auth.setUser(currentUser);\n auth.setToken(\"authenticated\");\n const target = currentUser.must_change_password ? \"/profile/security\" : \"/dashboard\";\n setSuccess(\"Anmeldung erfolgreich\");\n window.location.replace(target);\n } catch (error) {\n const mapped = mapLoginError(error);\n if (process.env.NODE_ENV !== \"production\") {\n console.error(\"Login failed\", error);\n console.error(\"Login failed mapped\", mapped.status, mapped.message);\n }\n setToast(mapped.message);\n } finally {\n setLoading(false);\n }\n }\n\n return (\n
\n
\n
\n \n

Anmelden

\n

Sicherer Zugriff auf Atlas Workspace.

\n
\n {\n event.preventDefault();\n void form.handleSubmit(handleSubmit)(event);\n }}\n className=\"space-y-5\"\n noValidate\n >\n \n \n {toast &&
{toast}
}\n {success &&
{success}
}\n \n {loading ? : }\n {loading ? \"Anmeldung läuft…\" : \"Anmelden\"}\n \n \n
\n
\n );\n}\n\nexport default function LoginPage() {\n return (\n \n \n \n );\n}\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name LogIn\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTUgM2g0YTIgMiAwIDAgMSAyIDJ2MTRhMiAyIDAgMCAxLTIgMmgtNCIgLz4KICA8cG9seWxpbmUgcG9pbnRzPSIxMCAxNyAxNSAxMiAxMCA3IiAvPgogIDxsaW5lIHgxPSIxNSIgeDI9IjMiIHkxPSIxMiIgeTI9IjEyIiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/log-in\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst LogIn = createLucideIcon('LogIn', [\n ['path', { d: 'M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4', key: 'u53s6r' }],\n ['polyline', { points: '10 17 15 12 10 7', key: '1ail0h' }],\n ['line', { x1: '15', x2: '3', y1: '12', y2: '12', key: 'v6grx8' }],\n]);\n\nexport default LogIn;\n"],"names":["_getRequireWildcardCache","nodeInterop","WeakMap","cacheBabelInterop","cacheNodeInterop","_interop_require_wildcard","obj","__esModule","default","cache","has","get","newObj","__proto__","hasPropertyDescriptor","Object","defineProperty","getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set","exports","_","DEFAULT_SEGMENT_KEY","NOT_FOUND_SEGMENT_KEY","PAGE_SEGMENT_KEY","addSearchParamsIfPageSegment","computeSelectedLayoutSegment","getSegmentValue","getSelectedLayoutSegmentPath","isGroupSegment","isParallelRouteSegment","segment","Array","isArray","endsWith","startsWith","searchParams","isPageSegment","includes","stringifiedQuery","JSON","stringify","segments","parallelRouteKey","length","rawSegment","tree","first","segmentPath","node","parallelRoutes","children","values","segmentValue","push","InvariantError","Error","constructor","message","options","name","createPromiseWithResolvers","resolve","reject","promise","Promise","res","rej","API_BASE","normalizeValidationPayload","optionalForeignKeys","fromEntries","map","readErrorMessage","response","fallback","text","parsed","parse","detail","login","email","password","fetch","method","headers","body","credentials","ok","error","status","json","apiGet","path","token","apiSend","apiDelete","apiFetch","init","warnOnce","process","env","NODE_ENV","warnings","Set","msg","console","warn","add","getAssetToken","getAssetTokenQuery","getDeploymentId","getDeploymentIdQuery","deploymentId","window","document","documentElement","dataset","dplId","NEXT_DEPLOYMENT_ID","undefined","ampersand","id","NEXT_IMMUTABLE_ASSET_TOKEN","useMergedRef","refA","refB","cleanupA","useRef","cleanupB","useCallback","current","cleanupFnA","cleanupFnB","applyRef","cleanup","_interop_require_default","getImageProps","imgProps","props","getImgProps","defaultLoader","imgConf","__NEXT_IMAGE_OPTS","value","entries","Image","module","BrandLogo","compact","className","src","alt","width","height","priority","x1"],"mappings":"6CAEA,SAASA,EAAyBC,CAAW,EACzC,GAAuB,YAAnB,OAAOC,QAAwB,OAAO,KAE1C,IAAIC,EAAoB,IAAID,QACxBE,EAAmB,IAAIF,QAE3B,MAAO,CAACF,EAA2B,SAASC,CAAW,EACnD,OAAOA,EAAcG,EAAmBD,EAC5C,CAAC,CAAEF,EACP,CA0BAuB,EAAQC,CAAC,CAzBT,EAyBYpB,OAzBHA,AAA0BC,CAAG,CAAEL,CAAW,EAC/C,GAAI,CAACA,GAAeK,GAAOA,EAAIC,UAAU,CAAE,OAAOD,EAClD,GAAY,OAARA,GAA+B,UAAf,OAAOA,GAAmC,YAAf,OAAOA,EAAoB,MAAO,CAAEE,QAASF,CAAI,EAEhG,IAAIG,EAAQT,EAAyBC,GAErC,GAAIQ,GAASA,EAAMC,GAAG,CAACJ,GAAM,OAAOG,EAAME,GAAG,CAACL,GAE9C,IAAIM,EAAS,CAAEC,UAAW,IAAK,EAC3BC,EAAwBC,OAAOC,cAAc,EAAID,OAAOE,wBAAwB,CAEpF,IAAK,IAAIC,KAAOZ,EACZ,EADiB,CACL,YAARY,GAAqBH,OAAOI,SAAS,CAACC,cAAc,CAACC,IAAI,CAACf,EAAKY,GAAM,CACrE,IAAII,EAAOR,EAAwBC,OAAOE,wBAAwB,CAACX,EAAKY,GAAO,KAC3EI,IAASA,EAAKX,EAAN,CAAS,EAAIW,EAAKC,GAAG,AAAHA,EAAMR,OAAOC,cAAc,CAACJ,EAAQM,EAAKI,GAClEV,CAAM,CAACM,EAAI,CAAGZ,CAAG,CAACY,EAAI,AAC/B,CAOJ,OAJAN,EAAOJ,OAAO,CAAGF,EAEbG,GAAOA,EAAMc,GAAG,CAACjB,EAAKM,GAEnBA,CACX,wFCmDac,mBAAmB,CAAA,kBAAnBA,GACAC,qBAAqB,CAAA,kBAArBA,GAFAC,gBAAgB,CAAA,kBAAhBA,GAvEGC,4BAA4B,CAAA,kBAA5BA,GAgBAC,4BAA4B,CAAA,kBAA5BA,GA7BAC,eAAe,CAAA,kBAAfA,GAiDAC,4BAA4B,CAAA,kBAA5BA,AAAT,SAASA,EACdkB,CAAuB,CACvBH,CAAwB,CACxBI,GAAQ,CAAI,CACZC,EAAwB,EAAE,MAEtBC,EACJ,GAAIF,EAEFE,EAAOH,CAAI,CAAC,CAFH,CAEK,CAACH,EAAiB,KAC3B,CAEL,IAAMO,EAAiBJ,CAAI,CAAC,EAAE,CAC9BG,EAAOC,EAAeC,QAAQ,EAAIxC,OAAOyC,MAAM,CAACF,EAAe,CAAC,EAAE,AACpE,CAEA,GAAI,CAACD,EAAM,OAAOD,EAGlB,IAAIK,EAAe1B,EAFHsB,CAAI,CAAC,EAAE,QAIvB,AAAI,CAACI,CAF8BtB,EAEdsB,EAAalB,UAAU,CAACX,GACpCwB,GAGTA,EAAYM,IAAI,CAACD,GAEVzB,EACLqB,CAP8D,CAQ9DN,GACA,EACAK,GAEJ,GA9EgBnB,cAAc,CAAA,kBAAdA,GAKAC,sBAAsB,CAAA,kBAAtBA,uEATT,SAASH,EAAgBI,CAAgB,EAC9C,OAAOC,MAAMC,OAAO,CAACF,GAAWA,CAAO,CAAC,EAAE,CAAGA,CAC/C,CAEO,SAASF,EAAeE,CAAe,EAE5C,MAAsB,MAAfA,CAAO,CAAC,EAAE,EAAYA,EAAQG,QAAQ,CAAC,IAChD,CAEO,SAASJ,EAAuBC,CAAe,EACpD,OAAOA,EAAQI,UAAU,CAAC,MAAoB,cAAZJ,CACpC,CAEO,SAASN,EACdM,CAAgB,CAChBK,CAA2D,EAI3D,GAFsBL,CAElBM,CAF0BC,QAAQ,CAACd,GAEpB,CACjB,IAAMe,EAAmBC,KAAKC,SAAS,CAACL,GACxC,MAAOG,AAAqB,SACxBf,EAAmB,IAAMe,EACzBf,CACN,CAEA,OAAOO,CACT,CAEO,SAASL,EACdgB,CAAyB,CACzBC,CAAwB,EAExB,GAAI,CAACD,GAAgC,GAAG,CAAvBA,EAASE,MAAM,CAC9B,OAAO,KAIT,IAAMC,EACiB,aAArBF,EACID,CAAQ,CAAC,EAAE,CACXA,CAAQ,CAACA,EAASE,MAAM,CAAG,EAAE,CAInC,OAAOC,IAAevB,EAAsB,KAAOuB,CACrD,CAsCO,IAAMrB,EAAmB,WACnBF,EAAsB,cACtBC,EAAwB,qHCxFxBgC,iBAAAA,qCAAAA,IAAN,OAAMA,UAAuBC,MAClCC,YAAYC,CAAe,CAAEC,CAAsB,CAAE,CACnD,KAAK,CACH,CAAC,WAAW,EAAED,EAAQxB,QAAQ,CAAC,KAAOwB,EAAUA,EAAU,IAAI,0BAA0B,CAAC,CACzFC,GAEF,IAAI,CAACC,IAAI,CAAG,gBACd,CACF,gCCRO,SAASC,IAId,IAFIC,EACAC,EACEC,EAAU,IAAIC,QAAW,CAACC,EAAKC,KACnCL,EAAUI,EACVH,EAASI,CACX,GACA,MAAO,CAAEL,QAASA,EAAUC,OAAQA,UAASC,CAAQ,CACvD,0EATgBH,6BAAAA,qCAAAA,6BCAT,IAAMO,EAAW,UAiJxB,eAAeK,EAAiBC,CAAkB,CAAEC,CAAgB,EAClE,IAAMC,EAAO,MAAMF,EAASE,IAAI,GAChC,GAAI,CAACA,EACH,IADS,GACFD,EAET,GAAI,CACF,IAAME,EAASrC,KAAKsC,KAAK,CAACF,GAC1B,OAAOC,EAAOE,MAAM,EAAIF,EAAOnB,OAAO,EAAIkB,CAC5C,CAAE,KAAM,CACN,OAAOA,CACT,CACF,CAEO,eAAeI,EAAMC,CAAa,CAAEC,CAAgB,EACzD,IAAMR,EAAW,MAAMS,MAAM,CAAC,UAAU,CAAC,CAAE,CACzCC,OAAQ,OACRC,QAAS,CAAE,eAAgB,kBAAmB,EAC9CC,KAAM9C,KAAKC,SAAS,CAAC,OAAEwC,WAAOC,CAAS,GACvCK,YAAa,SACf,GACA,GAAI,CAACb,EAASc,EAAE,CAAE,CAEhB,IAAMC,EAAQ,AAAIjC,MAAMuB,AADT,MAAML,EAASE,IAAI,IACA,CAAC,KAAK,EAAEF,EAASgB,MAAM,CAAA,CAAE,CAE3D,OADAD,EAAMC,MAAM,CAAGhB,EAASgB,MAAM,CACxBD,CACR,CACA,OAAOf,EAASiB,IAAI,EACtB,CAEO,eAAeC,EAAUC,CAAY,CAAEC,CAAa,EACzD,IAAMpB,EAAW,MAAMS,MAAM,CAAA,EAAGf,EAAAA,EAAWyB,EAAAA,CAAM,CAAE,CACjDxF,MAAO,WACPkF,YAAa,SACf,GACA,GAAI,CAACb,EAASc,EAAE,CACd,CADgB,KACNhC,AAAJ,MAAU,CAAC,oBAAoB,EAAEkB,EAASgB,MAAM,CAAA,CAAE,EAE1D,OAAOhB,EAASiB,IAAI,EACtB,CAEO,eAAeI,EAAWF,CAAY,CAAEC,CAAa,CAAEV,CAAsB,CAAEE,CAAa,EACjG,IAAMZ,EAAW,MAAMS,MAAM,CAAA,EAAGf,EAAAA,EAAWyB,EAAAA,CAAM,CAAE,QACjDT,EACAC,QAAS,CAAE,eAAgB,kBAAmB,EAC9CC,KAAM9C,KAAKC,SAAS,CAAC6C,GACrBC,YAAa,SACf,GACA,GAAI,CAACb,EAASc,EAAE,CACd,CADgB,KACV,AAAIhC,MAAM,MAAMiB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASgB,MAAM,CAAA,CAAE,GAE3F,OAAOhB,EAASiB,IAAI,EACtB,CAEO,eAAeK,EAAUH,CAAY,CAAEC,CAAa,EACzD,IAAMpB,EAAW,MAAMS,MAAM,CAAA,EAAGf,EAAAA,EAAWyB,EAAAA,CAAM,CAAE,CACjDT,OAAQ,SACRG,YAAa,SACf,GACA,GAAI,CAACb,EAASc,EAAE,CACd,CADgB,KACV,AAAIhC,MAAM,MAAMiB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASgB,MAAM,CAAA,CAAE,EAE7F,CAEO,eAAeO,EAAYJ,CAAY,CAAEC,CAAa,CAAEI,CAAkB,EAC/E,IAAMxB,EAAW,MAAMS,MAAM,CAAA,EAAGf,EAAAA,EAAWyB,EAAAA,CAAM,CAAE,CACjD,GAAGK,CAAI,CACPb,QAAS,CAAE,eAAgB,mBAAoB,GAAIa,GAAMb,SAAW,CAAC,CAAC,AAAE,EACxEE,YAAa,SACf,GACA,GAAI,CAACb,EAASc,EAAE,CACd,CADgB,KACV,AAAIhC,MAAM,MAAMiB,EAAiBC,EAAU,CAAC,oBAAoB,EAAEA,EAASgB,MAAM,CAAA,CAAE,GAE3F,OAAOhB,EAASiB,IAAI,EACtB,0HAzFO,SAAStB,AAA8DjB,CAAS,EAErF,MAAO,CACL,GAAGA,CAAM,CACT,GAAGzC,OAAO4D,WAAW,CAACD,AAHI,CAAC,aAAc,cAAc,CAGbE,GAAG,CAAC,AAAC1D,GAAQ,CAACA,EAAKsC,CAAM,CAACtC,EAAI,EAAI,KAAK,EACnF,AADqF,CAEvF,2GC5HSqF,WAAAA,qCAAAA,KAXT,IAAIA,EAAW,AAAC9E,IAAe,oCCA3B4F,0DAyBYJ,aAAa,CAAA,kBAAbA,GAMAC,kBAAkB,CAAA,kBAAlBA,GAlBAC,eAAe,CAAA,kBAAfA,GAIAC,oBAAoB,CAAA,kBAApBA,uEAJT,SAASD,IACd,QACF,CAEO,SAASC,EAAqBS,GAAY,CAAK,SAEpD,EACS,CAAA,CADLC,CACQD,EAAY,CADhB,GACsB,IAAI,IAAI,EAAEC,AANjCT,EAMiCS,CAAI,CAErC,EACT,CAEO,SAASb,IACd,MAC0E,CAAxET,AAAwE,CAE5E,CAEO,MAJKC,GAAG,AAICS,CAJAa,CAImBF,GAAY,CAAK,EAKlD,MAAO,EACT,CA3BER,OAAiDO,GAiBT,IAAIpB,CAjB7BA,OAiBqCC,CAjB7BA,EAiBgC,CAACkB,AAjB9B,CAACA,iBAiB+C,CAjB7B,kECD/BK,eAAAA,qCAAAA,aAT8B,CAAA,CAAA,IAAA,GASvC,SAASA,EACdC,CAAmB,CACnBC,CAAmB,EAEnB,IAAMC,EAAWC,CAAAA,EAAAA,EAAAA,MAAM,AAANA,EAA4B,MACvCC,EAAWD,CAAAA,EAAAA,EAAAA,MAAAA,AAAM,EAAsB,MAS7C,MAAOE,CAAAA,EAAAA,EAAAA,WAAAA,AAAW,EAChB,AAACC,IACC,GAAgB,OAAZA,EAAkB,CACpB,IAAMC,EAAaL,EAASI,OAAO,CAC/BC,IACFL,EAASI,MADK,CACE,CAAG,KACnBC,KAEF,IAAMC,EAAaJ,EAASE,OAAO,CAC/BE,IACFJ,EAASE,MADK,CACE,CAAG,KACnBE,IAEJ,MACMR,CADC,GAEHE,EADQ,AACCI,OAAO,CAAGG,EAAST,EAAMM,EAAAA,EAEhCL,IACFG,EADQ,AACCE,OAAO,CAAGG,EAASR,EAAMK,EAAAA,CAGxC,EACA,CAACN,EAAMC,EAAK,CAEhB,CAEA,SAASQ,EACPT,CAAgC,CAChCM,CAAiB,EAEjB,GAAoB,YAAhB,OAAON,EAST,OADAA,EAAKM,OAAO,CAAGA,EACR,KACLN,EAAKM,OAAO,CAAG,IACjB,CAX8B,EAC9B,IAAMI,EAAUV,EAAKM,SACrB,AAAuB,YAAY,AAA/B,OAAOI,EACFA,EAEA,IAAMV,EAAK,KAEtB,CAMF,MANS,gPCvDTzG,EAAQC,CAAC,CAHT,EAGYmH,OAHHA,AAAyBtI,CAAG,EACjC,OAAOA,GAAOA,EAAIC,UAAU,CAAGD,EAAM,CAAEE,QAASF,CAAI,CACxD,wFC6BA,OAAoB,CAAA,kBAApB,GAjBgBuI,aAAa,CAAA,kBAAbA,4FAbY,CAAA,CAAA,IAAA,OACN,CAAA,CAAA,IAAA,WAGI,CAAA,CAAA,IAAA,IASnB,SAASA,EAAcC,CAAoB,EAChD,GAAM,CAAEC,OAAK,CAAE,CAAGC,CAAAA,EAAAA,EAAAA,WAAAA,AAAW,EAACF,EAAU,CACtCG,cAAAA,EAAAA,OAAa,CAEbC,OAAAA,CAAsC,CAA7B1C,QAAQC,GAAG,CAAC0C,iBAAiB,qJACxC,GAIA,IAAK,GAAM,CAACjI,EAAKkI,EAAM,GAAIrI,OAAOsI,OAAO,CAACN,GACpCK,IAD4C,CAClCxB,OACZ,IADuB,GAChBmB,CAAK,CAAC7H,EAA0B,CAG3C,MAAO,OAAE6H,CAAM,CACjB,KAEA,EAAeO,EAAAA,KAAK,kBCjCpBC,EAAO/H,OAAO,CAAA,EAAA,CAAA,CAAA,gDCAd,EAAA,EAAA,CAAA,CAAA,0BAEO,SAASgI,AAAU,SAAEC,EAAU,EAAK,CAAyB,EAClE,MACE,CAAA,EAAA,EAAA,GAAA,EAAC,MAAA,CAAIC,UAAU,mCACb,CAAA,EAAA,EAAA,GAAA,EAAC,EAAA,OAAK,CAAA,CAACC,IAAI,sBAAsBC,IAAI,6BAA6BC,MAAOJ,EAAU,IAAM,IAAKK,OAAQ,GAAIC,QAAQ,CAAA,CAAA,KAGxH,4CCNA,EAAA,EAAA,CAAA,CAAA,WCWM,CAAA,CAAA,AAAQ,CAAR,AAAQ,CAAR,CAAA,AAAQ,CAAR,CAAA,SAAQ,OAAA,EAAiB,OAAS,CAAA,CAAA,AACtC,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAA6C,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAK,AAAL,QAAK,CAAU,CAAA,CAAA,AAC1E,CAAC,CAAA,CAAA,iBAAsB,CAAoB,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,CACzD,CAAA,CAAA,CAAA,CAAA,CAAA,EAAQ,CAAE,CAAA,CAAA,CAAA,KAAU,CAAA,EAAI,CAAK,CAAA,CAAA,CAAA,EAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAI,CAAA,CAAA,CAAA,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAClE,EDbD,IAAA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OAEA,IAAM,EAAS7I,EAAAA,CAAC,CAAC,MAAM,CAAC,CACtB,MAAO,EAAA,CAAC,CAAC,MAAM,GAAG8I,KAAK,CAAC,+CACxB,SAAU,EAAA,CAAC,CAAC,MAAM,GAAG,GAAG,CAAC,EAAG,+BAC9B,GAuBA,SAAS,IACP,IAAM,EAAO,CAAA,EAAA,EAAA,OAAA,AAAO,IACd,CAAC,EAAS,EAAW,CAAG,CAAA,EAAA,EAAA,QAAA,AAAQ,GAAC,GACjC,CAAC,EAAO,EAAS,CAAG,CAAA,EAAA,EAAA,QAAA,AAAQ,EAAC,IAC7B,CAAC,EAAS,EAAW,CAAG,CAAA,EAAA,EAAA,QAAA,AAAQ,EAAC,IAEjC,EAAO,CAAA,EAAA,EAAA,OAAA,AAAO,EAAY,CAC9B,SAAU,CAAA,EAAA,EAAA,WAAW,AAAX,EAAY,GACtB,cAAe,CAAE,MAAO,qBAAsB,SAAU,EAAG,EAC3D,KAAM,UACR,GAQA,eAAe,EAAa,CAAiB,EAC3C,GAAW,GACX,EAAS,IACT,EAAW,IACX,GAAI,CACF,IAAM,EAAS,MAAM,CAAA,EAAA,EAAA,KAAA,AAAK,EAAC,EAAO,KAAK,CAAE,EAAO,QAAQ,EAClD,EAAe,MAAM,EAAK,WAAW,IAAQ,EAAO,IAAI,CAC9D,EAAK,OAAO,CAAC,GACb,EAAK,QAAQ,CAAC,iBACd,IAAM,EAAS,EAAY,oBAAoB,CAAG,oBAAsB,aACxE,EAAW,yBACX,OAAO,QAAQ,CAAC,OAAO,CAAC,EAC1B,CAAE,MAAO,EAAO,CAMd,EAAS,AArDf,AAgDqB,SAhDZ,AAAc,CAAc,EACnC,IAAM,EAA0B,UAAjB,OAAO,GAAsB,GAAS,WAAY,EAAQ,OAAO,EAA+B,MAAM,EAAI,EACzH,OAAQ,GACN,KAAK,IACH,MAAO,QAAE,EAAQ,QAAS,0CAA2C,CACvE,MAAK,IACH,MAAO,QAAE,EAAQ,QAAS,uCAAwC,CACpE,MAAK,IACH,MAAO,QAAE,EAAQ,QAAS,8BAA+B,CAC3D,MAAK,IACL,KAAK,IACH,MAAO,QAAE,EAAQ,QAAS,kDAAmD,CAC/E,SACE,MAAO,QAAE,EAAQ,QAAS,mDAAoD,CAClF,CACF,EAiCmC,GAKb,OAAO,CACzB,QAAU,CACR,GAAW,EACb,CACF,CAEA,MA9BA,CAAA,EAAA,EAAA,SAAA,AAAS,EAAC,KACR,GAAI,CAAC,EAAO,OACZ,IAAM,EAAU,OAAO,UAAU,CAAC,IAAM,EAAS,IAAK,KACtD,MAAO,IAAM,OAAO,YAAY,CAAC,EACnC,EAAG,CAAC,EAAM,EA2BR,CAAA,EAAA,EAAA,GAAA,EAAC,OAAA,CAAK,UAAU,kFACd,CAAA,EAAA,EAAA,IAAA,EAAC,UAAA,CAAQ,UAAU,uFACjB,CAAA,EAAA,EAAA,IAAA,EAAC,MAAA,CAAI,UAAU,iBACb,CAAA,EAAA,EAAA,GAAA,EAAC,EAAA,SAAS,CAAA,CAAA,GACV,CAAA,EAAA,EAAA,GAAA,EAAC,KAAA,CAAG,UAAU,iDAAwC,aACtD,CAAA,EAAA,EAAA,GAAA,EAAC,IAAA,CAAE,UAAU,kDAAyC,6CAExD,CAAA,EAAA,EAAA,IAAA,EAAC,OAAA,CACC,SAAU,AAAC,IACT,EAAM,cAAc,GACf,EAAK,YAAY,CAAC,GAAc,EACvC,EACA,UAAU,YACV,UAAU,CAAA,CAAA,YAEV,CAAA,EAAA,EAAA,IAAA,EAAC,QAAA,CAAM,UAAU,kBACf,CAAA,EAAA,EAAA,GAAA,EAAC,OAAA,CAAK,UAAU,yCAAgC,WAChD,CAAA,EAAA,EAAA,GAAA,EAAC,QAAA,CACC,KAAK,QACL,UAAU,8GACT,GAAG,EAAK,QAAQ,CAAC,QAAQ,GAE3B,EAAK,SAAS,CAAC,MAAM,CAAC,KAAK,EAC1B,CAAA,EAAA,EAAA,GAAA,EAAC,IAAA,CAAE,UAAU,oCAA4B,EAAK,SAAS,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,MAGhF,CAAA,EAAA,EAAA,IAAA,EAAC,QAAA,CAAM,UAAU,kBACf,CAAA,EAAA,EAAA,GAAA,EAAC,OAAA,CAAK,UAAU,yCAAgC,aAChD,CAAA,EAAA,EAAA,GAAA,EAAC,QAAA,CACC,KAAK,WACL,UAAU,8GACT,GAAG,EAAK,QAAQ,CAAC,WAAW,GAE9B,EAAK,SAAS,CAAC,MAAM,CAAC,QAAQ,EAC7B,CAAA,EAAA,EAAA,GAAA,EAAC,IAAA,CAAE,UAAU,oCAA4B,EAAK,SAAS,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO,MAGlF,GAAS,CAAA,EAAA,EAAA,GAAA,EAAC,MAAA,CAAI,UAAU,iGAAyF,IACjH,GAAW,CAAA,EAAA,EAAA,GAAA,EAAC,MAAA,CAAI,UAAU,mGAA2F,IACtH,CAAA,EAAA,EAAA,IAAA,EAAC,SAAA,CACC,KAAK,SACL,SAAU,EACV,UAAU,gNAET,EAAU,CAAA,EAAA,EAAA,GAAA,EAAC,OAAA,CAAK,UAAU,YAAe,CAAA,EAAA,EAAA,GAAA,EAAC,EAAA,CAAM,UAAU,YAC3D,CAAA,EAAA,EAAA,GAAA,EAAC,OAAA,UAAM,EAAU,mBAAqB,uBAMlD,kBAEe,SAAS,EACtB,MACE,CAAA,EAAA,EAAA,GAAA,EAAC,EAAA,YAAY,CAAA,UACX,CAAA,EAAA,EAAA,GAAA,EAAC,EAAA,CAAA,IAGP","ignoreList":[0,1,2,3,5,6,7,8,9,10,13]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0v6sf8t._.js b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0arfgns._.js similarity index 63% rename from validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0v6sf8t._.js rename to validation-suite/frontend/atlas/.next/server/chunks/ssr/_0arfgns._.js index 0073ccbb..308c6c08 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0v6sf8t._.js +++ b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0arfgns._.js @@ -1,3 +1,3 @@ -module.exports=[46058,(a,b,c)=>{"use strict";function d(a){if("function"!=typeof WeakMap)return null;var b=new WeakMap,c=new WeakMap;return(d=function(a){return a?c:b})(a)}c._=function(a,b){if(!b&&a&&a.__esModule)return a;if(null===a||"object"!=typeof a&&"function"!=typeof a)return{default:a};var c=d(b);if(c&&c.has(a))return c.get(a);var e={__proto__:null},f=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var g in a)if("default"!==g&&Object.prototype.hasOwnProperty.call(a,g)){var h=f?Object.getOwnPropertyDescriptor(a,g):null;h&&(h.get||h.set)?Object.defineProperty(e,g,h):e[g]=a[g]}return e.default=a,c&&c.set(a,e),e}},88644,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"InvariantError",{enumerable:!0,get:function(){return d}});class d extends Error{constructor(a,b){super(`Invariant: ${a.endsWith(".")?a:a+"."} This is a bug in Next.js.`,b),this.name="InvariantError"}}},39118,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={DEFAULT_SEGMENT_KEY:function(){return l},NOT_FOUND_SEGMENT_KEY:function(){return m},PAGE_SEGMENT_KEY:function(){return k},addSearchParamsIfPageSegment:function(){return i},computeSelectedLayoutSegment:function(){return j},getSegmentValue:function(){return f},getSelectedLayoutSegmentPath:function(){return function a(b,c,d=!0,e=[]){let g;if(d)g=b[1][c];else{let a=b[1];g=a.children??Object.values(a)[0]}if(!g)return e;let h=f(g[0]);return!h||h.startsWith(k)?e:(e.push(h),a(g,c,!1,e))}},isGroupSegment:function(){return g},isParallelRouteSegment:function(){return h}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});function f(a){return Array.isArray(a)?a[1]:a}function g(a){return"("===a[0]&&a.endsWith(")")}function h(a){return a.startsWith("@")&&"@children"!==a}function i(a,b){if(a.includes(k)){let a=JSON.stringify(b);return"{}"!==a?k+"?"+a:k}return a}function j(a,b){if(!a||0===a.length)return null;let c="children"===b?a[0]:a[a.length-1];return c===l?null:c}let k="__PAGE__",l="__DEFAULT__",m="/_not-found"},54427,(a,b,c)=>{"use strict";function d(){let a,b,c=new Promise((c,d)=>{a=c,b=d});return{resolve:a,reject:b,promise:c}}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"createPromiseWithResolvers",{enumerable:!0,get:function(){return d}})},12794,a=>{"use strict";var b=a.i(18544),c=a.i(85659),d=a.i(21778),e=class extends c.Removable{#a;#b;#c;#d;constructor(a){super(),this.#a=a.client,this.mutationId=a.mutationId,this.#c=a.mutationCache,this.#b=[],this.state=a.state||f(),this.setOptions(a.options),this.scheduleGc()}setOptions(a){this.options=a,this.updateGcTime(this.options.gcTime)}get meta(){return this.options.meta}addObserver(a){this.#b.includes(a)||(this.#b.push(a),this.clearGcTimeout(),this.#c.notify({type:"observerAdded",mutation:this,observer:a}))}removeObserver(a){this.#b=this.#b.filter(b=>b!==a),this.scheduleGc(),this.#c.notify({type:"observerRemoved",mutation:this,observer:a})}optionalRemove(){this.#b.length||("pending"===this.state.status?this.scheduleGc():this.#c.remove(this))}continue(){return this.#d?.continue()??this.execute(this.state.variables)}async execute(a){let b=()=>{this.#e({type:"continue"})},c={client:this.#a,meta:this.options.meta,mutationKey:this.options.mutationKey};this.#d=(0,d.createRetryer)({fn:()=>this.options.mutationFn?this.options.mutationFn(a,c):Promise.reject(Error("No mutationFn found")),onFail:(a,b)=>{this.#e({type:"failed",failureCount:a,error:b})},onPause:()=>{this.#e({type:"pause"})},onContinue:b,retry:this.options.retry??0,retryDelay:this.options.retryDelay,networkMode:this.options.networkMode,canRun:()=>this.#c.canRun(this)});let e="pending"===this.state.status,f=!this.#d.canStart();try{if(e)b();else{this.#e({type:"pending",variables:a,isPaused:f}),this.#c.config.onMutate&&await this.#c.config.onMutate(a,this,c);let b=await this.options.onMutate?.(a,c);b!==this.state.context&&this.#e({type:"pending",context:b,variables:a,isPaused:f})}let d=await this.#d.start();return await this.#c.config.onSuccess?.(d,a,this.state.context,this,c),await this.options.onSuccess?.(d,a,this.state.context,c),await this.#c.config.onSettled?.(d,null,this.state.variables,this.state.context,this,c),await this.options.onSettled?.(d,null,a,this.state.context,c),this.#e({type:"success",data:d}),d}catch(b){try{await this.#c.config.onError?.(b,a,this.state.context,this,c)}catch(a){Promise.reject(a)}try{await this.options.onError?.(b,a,this.state.context,c)}catch(a){Promise.reject(a)}try{await this.#c.config.onSettled?.(void 0,b,this.state.variables,this.state.context,this,c)}catch(a){Promise.reject(a)}try{await this.options.onSettled?.(void 0,b,a,this.state.context,c)}catch(a){Promise.reject(a)}throw this.#e({type:"error",error:b}),b}finally{this.#c.runNext(this)}}#e(a){this.state=(b=>{switch(a.type){case"failed":return{...b,failureCount:a.failureCount,failureReason:a.error};case"pause":return{...b,isPaused:!0};case"continue":return{...b,isPaused:!1};case"pending":return{...b,context:a.context,data:void 0,failureCount:0,failureReason:null,error:null,isPaused:a.isPaused,status:"pending",variables:a.variables,submittedAt:Date.now()};case"success":return{...b,data:a.data,failureCount:0,failureReason:null,error:null,status:"success",isPaused:!1};case"error":return{...b,data:void 0,error:a.error,failureCount:b.failureCount+1,failureReason:a.error,isPaused:!1,status:"error"}}})(this.state),b.notifyManager.batch(()=>{this.#b.forEach(b=>{b.onMutationUpdate(a)}),this.#c.notify({mutation:this,type:"updated",action:a})})}};function f(){return{context:void 0,data:void 0,error:null,failureCount:0,failureReason:null,isPaused:!1,status:"idle",variables:void 0,submittedAt:0}}a.s(["Mutation",0,e,"getDefaultState",0,f])},8591,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"useMergedRef",{enumerable:!0,get:function(){return e}});let d=a.r(72131);function e(a,b){let c=(0,d.useRef)(null),e=(0,d.useRef)(null);return(0,d.useCallback)(d=>{if(null===d){let a=c.current;a&&(c.current=null,a());let b=e.current;b&&(e.current=null,b())}else a&&(c.current=f(a,d)),b&&(e.current=f(b,d))},[a,b])}function f(a,b){if("function"!=typeof a)return a.current=b,()=>{a.current=null};{let c=a(b);return"function"==typeof c?c:()=>a(null)}}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},92434,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"warnOnce",{enumerable:!0,get:function(){return d}});let d=a=>{}},68063,(a,b,c)=>{"use strict";let d;Object.defineProperty(c,"__esModule",{value:!0});var e={getAssetToken:function(){return i},getAssetTokenQuery:function(){return j},getDeploymentId:function(){return g},getDeploymentIdQuery:function(){return h}};for(var f in e)Object.defineProperty(c,f,{enumerable:!0,get:e[f]});function g(){return d}function h(a=!1){return d?`${a?"&":"?"}dpl=${d}`:""}function i(){return!1}function j(a=!1){return""}d=void 0},33354,(a,b,c)=>{"use strict";c._=function(a){return a&&a.__esModule?a:{default:a}}},33095,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={default:function(){return k},getImageProps:function(){return j}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(33354),g=a.r(94915),h=a.r(67161),i=f._(a.r(28427));function j(a){let{props:b}=(0,g.getImgProps)(a,{defaultLoader:i.default,imgConf:{deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],qualities:[75],path:"/_next/image",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!1}});for(let[a,c]of Object.entries(b))void 0===c&&delete b[a];return{props:b}}let k=h.Image},71987,(a,b,c)=>{b.exports=a.r(33095)},73943,a=>{"use strict";var b=a.i(87924),c=a.i(71987);a.s(["BrandLogo",0,function({compact:a=!1}){return(0,b.jsx)("div",{className:"flex items-center gap-3",children:(0,b.jsx)(c.default,{src:"/schubamed-logo.svg",alt:"SCHUBAMED Validation Suite",width:a?180:240,height:64,priority:!0})})}])},97651,35126,a=>{"use strict";var b=a.i(70106);let c=(0,b.default)("Gauge",[["path",{d:"m12 14 4-4",key:"9kzdfg"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0",key:"19p75a"}]]);a.s(["Gauge",0,c],97651);let d=(0,b.default)("Stethoscope",[["path",{d:"M11 2v2",key:"1539x4"}],["path",{d:"M5 2v2",key:"1yf1q8"}],["path",{d:"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1",key:"rb5t3r"}],["path",{d:"M8 15a6 6 0 0 0 12 0v-3",key:"x18d4x"}],["circle",{cx:"20",cy:"10",r:"2",key:"ts1r5v"}]]);a.s(["Stethoscope",0,d],35126)}]; +module.exports=[46058,(a,b,c)=>{"use strict";function d(a){if("function"!=typeof WeakMap)return null;var b=new WeakMap,c=new WeakMap;return(d=function(a){return a?c:b})(a)}c._=function(a,b){if(!b&&a&&a.__esModule)return a;if(null===a||"object"!=typeof a&&"function"!=typeof a)return{default:a};var c=d(b);if(c&&c.has(a))return c.get(a);var e={__proto__:null},f=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var g in a)if("default"!==g&&Object.prototype.hasOwnProperty.call(a,g)){var h=f?Object.getOwnPropertyDescriptor(a,g):null;h&&(h.get||h.set)?Object.defineProperty(e,g,h):e[g]=a[g]}return e.default=a,c&&c.set(a,e),e}},88644,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"InvariantError",{enumerable:!0,get:function(){return d}});class d extends Error{constructor(a,b){super(`Invariant: ${a.endsWith(".")?a:a+"."} This is a bug in Next.js.`,b),this.name="InvariantError"}}},39118,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={DEFAULT_SEGMENT_KEY:function(){return l},NOT_FOUND_SEGMENT_KEY:function(){return m},PAGE_SEGMENT_KEY:function(){return k},addSearchParamsIfPageSegment:function(){return i},computeSelectedLayoutSegment:function(){return j},getSegmentValue:function(){return f},getSelectedLayoutSegmentPath:function(){return function a(b,c,d=!0,e=[]){let g;if(d)g=b[1][c];else{let a=b[1];g=a.children??Object.values(a)[0]}if(!g)return e;let h=f(g[0]);return!h||h.startsWith(k)?e:(e.push(h),a(g,c,!1,e))}},isGroupSegment:function(){return g},isParallelRouteSegment:function(){return h}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});function f(a){return Array.isArray(a)?a[1]:a}function g(a){return"("===a[0]&&a.endsWith(")")}function h(a){return a.startsWith("@")&&"@children"!==a}function i(a,b){if(a.includes(k)){let a=JSON.stringify(b);return"{}"!==a?k+"?"+a:k}return a}function j(a,b){if(!a||0===a.length)return null;let c="children"===b?a[0]:a[a.length-1];return c===l?null:c}let k="__PAGE__",l="__DEFAULT__",m="/_not-found"},54427,(a,b,c)=>{"use strict";function d(){let a,b,c=new Promise((c,d)=>{a=c,b=d});return{resolve:a,reject:b,promise:c}}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"createPromiseWithResolvers",{enumerable:!0,get:function(){return d}})},12794,a=>{"use strict";var b=a.i(18544),c=a.i(85659),d=a.i(21778),e=class extends c.Removable{#a;#b;#c;#d;constructor(a){super(),this.#a=a.client,this.mutationId=a.mutationId,this.#c=a.mutationCache,this.#b=[],this.state=a.state||f(),this.setOptions(a.options),this.scheduleGc()}setOptions(a){this.options=a,this.updateGcTime(this.options.gcTime)}get meta(){return this.options.meta}addObserver(a){this.#b.includes(a)||(this.#b.push(a),this.clearGcTimeout(),this.#c.notify({type:"observerAdded",mutation:this,observer:a}))}removeObserver(a){this.#b=this.#b.filter(b=>b!==a),this.scheduleGc(),this.#c.notify({type:"observerRemoved",mutation:this,observer:a})}optionalRemove(){this.#b.length||("pending"===this.state.status?this.scheduleGc():this.#c.remove(this))}continue(){return this.#d?.continue()??this.execute(this.state.variables)}async execute(a){let b=()=>{this.#e({type:"continue"})},c={client:this.#a,meta:this.options.meta,mutationKey:this.options.mutationKey};this.#d=(0,d.createRetryer)({fn:()=>this.options.mutationFn?this.options.mutationFn(a,c):Promise.reject(Error("No mutationFn found")),onFail:(a,b)=>{this.#e({type:"failed",failureCount:a,error:b})},onPause:()=>{this.#e({type:"pause"})},onContinue:b,retry:this.options.retry??0,retryDelay:this.options.retryDelay,networkMode:this.options.networkMode,canRun:()=>this.#c.canRun(this)});let e="pending"===this.state.status,f=!this.#d.canStart();try{if(e)b();else{this.#e({type:"pending",variables:a,isPaused:f}),this.#c.config.onMutate&&await this.#c.config.onMutate(a,this,c);let b=await this.options.onMutate?.(a,c);b!==this.state.context&&this.#e({type:"pending",context:b,variables:a,isPaused:f})}let d=await this.#d.start();return await this.#c.config.onSuccess?.(d,a,this.state.context,this,c),await this.options.onSuccess?.(d,a,this.state.context,c),await this.#c.config.onSettled?.(d,null,this.state.variables,this.state.context,this,c),await this.options.onSettled?.(d,null,a,this.state.context,c),this.#e({type:"success",data:d}),d}catch(b){try{await this.#c.config.onError?.(b,a,this.state.context,this,c)}catch(a){Promise.reject(a)}try{await this.options.onError?.(b,a,this.state.context,c)}catch(a){Promise.reject(a)}try{await this.#c.config.onSettled?.(void 0,b,this.state.variables,this.state.context,this,c)}catch(a){Promise.reject(a)}try{await this.options.onSettled?.(void 0,b,a,this.state.context,c)}catch(a){Promise.reject(a)}throw this.#e({type:"error",error:b}),b}finally{this.#c.runNext(this)}}#e(a){this.state=(b=>{switch(a.type){case"failed":return{...b,failureCount:a.failureCount,failureReason:a.error};case"pause":return{...b,isPaused:!0};case"continue":return{...b,isPaused:!1};case"pending":return{...b,context:a.context,data:void 0,failureCount:0,failureReason:null,error:null,isPaused:a.isPaused,status:"pending",variables:a.variables,submittedAt:Date.now()};case"success":return{...b,data:a.data,failureCount:0,failureReason:null,error:null,status:"success",isPaused:!1};case"error":return{...b,data:void 0,error:a.error,failureCount:b.failureCount+1,failureReason:a.error,isPaused:!1,status:"error"}}})(this.state),b.notifyManager.batch(()=>{this.#b.forEach(b=>{b.onMutationUpdate(a)}),this.#c.notify({mutation:this,type:"updated",action:a})})}};function f(){return{context:void 0,data:void 0,error:null,failureCount:0,failureReason:null,isPaused:!1,status:"idle",variables:void 0,submittedAt:0}}a.s(["Mutation",0,e,"getDefaultState",0,f])},97112,a=>{"use strict";let b=(0,a.i(70106).default)("FileUp",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M12 12v6",key:"3ahymv"}],["path",{d:"m15 15-3-3-3 3",key:"15xj92"}]]);a.s(["FileUp",0,b],97112)},8591,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"useMergedRef",{enumerable:!0,get:function(){return e}});let d=a.r(72131);function e(a,b){let c=(0,d.useRef)(null),e=(0,d.useRef)(null);return(0,d.useCallback)(d=>{if(null===d){let a=c.current;a&&(c.current=null,a());let b=e.current;b&&(e.current=null,b())}else a&&(c.current=f(a,d)),b&&(e.current=f(b,d))},[a,b])}function f(a,b){if("function"!=typeof a)return a.current=b,()=>{a.current=null};{let c=a(b);return"function"==typeof c?c:()=>a(null)}}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},92434,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"warnOnce",{enumerable:!0,get:function(){return d}});let d=a=>{}},68063,(a,b,c)=>{"use strict";let d;Object.defineProperty(c,"__esModule",{value:!0});var e={getAssetToken:function(){return i},getAssetTokenQuery:function(){return j},getDeploymentId:function(){return g},getDeploymentIdQuery:function(){return h}};for(var f in e)Object.defineProperty(c,f,{enumerable:!0,get:e[f]});function g(){return d}function h(a=!1){return d?`${a?"&":"?"}dpl=${d}`:""}function i(){return!1}function j(a=!1){return""}d=void 0},33354,(a,b,c)=>{"use strict";c._=function(a){return a&&a.__esModule?a:{default:a}}},33095,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={default:function(){return k},getImageProps:function(){return j}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(33354),g=a.r(94915),h=a.r(67161),i=f._(a.r(28427));function j(a){let{props:b}=(0,g.getImgProps)(a,{defaultLoader:i.default,imgConf:{deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],qualities:[75],path:"/_next/image",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!1}});for(let[a,c]of Object.entries(b))void 0===c&&delete b[a];return{props:b}}let k=h.Image},71987,(a,b,c)=>{b.exports=a.r(33095)},73943,a=>{"use strict";var b=a.i(87924),c=a.i(71987);a.s(["BrandLogo",0,function({compact:a=!1}){return(0,b.jsx)("div",{className:"flex items-center gap-3",children:(0,b.jsx)(c.default,{src:"/schubamed-logo.svg",alt:"SCHUBAMED Validation Suite",width:a?180:240,height:64,priority:!0})})}])},97651,35126,a=>{"use strict";var b=a.i(70106);let c=(0,b.default)("Gauge",[["path",{d:"m12 14 4-4",key:"9kzdfg"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0",key:"19p75a"}]]);a.s(["Gauge",0,c],97651);let d=(0,b.default)("Stethoscope",[["path",{d:"M11 2v2",key:"1539x4"}],["path",{d:"M5 2v2",key:"1yf1q8"}],["path",{d:"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1",key:"rb5t3r"}],["path",{d:"M8 15a6 6 0 0 0 12 0v-3",key:"x18d4x"}],["circle",{cx:"20",cy:"10",r:"2",key:"ts1r5v"}]]);a.s(["Stethoscope",0,d],35126)}]; -//# sourceMappingURL=_0v6sf8t._.js.map \ No newline at end of file +//# sourceMappingURL=_0arfgns._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0arfgns._.js.map b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0arfgns._.js.map new file mode 100644 index 00000000..efa920ee --- /dev/null +++ b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0arfgns._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../node_modules/%40swc/helpers/cjs/_interop_require_wildcard.cjs","../../../../node_modules/next/src/shared/lib/invariant-error.ts","../../../../node_modules/next/src/shared/lib/segment.ts","../../../../node_modules/next/src/shared/lib/promise-with-resolvers.ts","../../../../node_modules/%40tanstack/query-core/src/mutation.ts","../../../../node_modules/lucide-react/src/icons/file-up.ts","../../../../node_modules/next/src/client/use-merged-ref.ts","../../../../node_modules/next/src/shared/lib/utils/warn-once.ts","../../../../node_modules/next/src/shared/lib/deployment-id.ts","../../../../node_modules/%40swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/next/src/shared/lib/image-external.tsx","../../../../node_modules/next/image.js","../../../../components/brand/brand-logo.tsx","../../../../node_modules/lucide-react/src/icons/stethoscope.ts","../../../../node_modules/lucide-react/src/icons/gauge.ts"],"sourcesContent":["\"use strict\";\n\nfunction _getRequireWildcardCache(nodeInterop) {\n if (typeof WeakMap !== \"function\") return null;\n\n var cacheBabelInterop = new WeakMap();\n var cacheNodeInterop = new WeakMap();\n\n return (_getRequireWildcardCache = function(nodeInterop) {\n return nodeInterop ? cacheNodeInterop : cacheBabelInterop;\n })(nodeInterop);\n}\nfunction _interop_require_wildcard(obj, nodeInterop) {\n if (!nodeInterop && obj && obj.__esModule) return obj;\n if (obj === null || typeof obj !== \"object\" && typeof obj !== \"function\") return { default: obj };\n\n var cache = _getRequireWildcardCache(nodeInterop);\n\n if (cache && cache.has(obj)) return cache.get(obj);\n\n var newObj = { __proto__: null };\n var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;\n\n for (var key in obj) {\n if (key !== \"default\" && Object.prototype.hasOwnProperty.call(obj, key)) {\n var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;\n if (desc && (desc.get || desc.set)) Object.defineProperty(newObj, key, desc);\n else newObj[key] = obj[key];\n }\n }\n\n newObj.default = obj;\n\n if (cache) cache.set(obj, newObj);\n\n return newObj;\n}\nexports._ = _interop_require_wildcard;\n","export class InvariantError extends Error {\n constructor(message: string, options?: ErrorOptions) {\n super(\n `Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`,\n options\n )\n this.name = 'InvariantError'\n }\n}\n","import type { FlightRouterState, Segment } from './app-router-types'\n\nexport function getSegmentValue(segment: Segment) {\n return Array.isArray(segment) ? segment[1] : segment\n}\n\nexport function isGroupSegment(segment: string) {\n // Use array[0] for performant purpose\n return segment[0] === '(' && segment.endsWith(')')\n}\n\nexport function isParallelRouteSegment(segment: string) {\n return segment.startsWith('@') && segment !== '@children'\n}\n\nexport function addSearchParamsIfPageSegment(\n segment: Segment,\n searchParams: Record\n) {\n const isPageSegment = segment.includes(PAGE_SEGMENT_KEY)\n\n if (isPageSegment) {\n const stringifiedQuery = JSON.stringify(searchParams)\n return stringifiedQuery !== '{}'\n ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery\n : PAGE_SEGMENT_KEY\n }\n\n return segment\n}\n\nexport function computeSelectedLayoutSegment(\n segments: string[] | null,\n parallelRouteKey: string\n): string | null {\n if (!segments || segments.length === 0) {\n return null\n }\n\n // For 'children', use first segment; for other parallel routes, use last segment\n const rawSegment =\n parallelRouteKey === 'children'\n ? segments[0]\n : segments[segments.length - 1]\n\n // If the default slot is showing, return null since it's not technically \"selected\" (it's a fallback)\n // Returning an internal value like `__DEFAULT__` would be confusing\n return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment\n}\n\n/** Get the canonical parameters from the current level to the leaf node. */\nexport function getSelectedLayoutSegmentPath(\n tree: FlightRouterState,\n parallelRouteKey: string,\n first = true,\n segmentPath: string[] = []\n): string[] {\n let node: FlightRouterState\n if (first) {\n // Use the provided parallel route key on the first parallel route\n node = tree[1][parallelRouteKey]\n } else {\n // After first parallel route prefer children, if there's no children pick the first parallel route.\n const parallelRoutes = tree[1]\n node = parallelRoutes.children ?? Object.values(parallelRoutes)[0]\n }\n\n if (!node) return segmentPath\n const segment = node[0]\n\n let segmentValue = getSegmentValue(segment)\n\n if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) {\n return segmentPath\n }\n\n segmentPath.push(segmentValue)\n\n return getSelectedLayoutSegmentPath(\n node,\n parallelRouteKey,\n false,\n segmentPath\n )\n}\n\nexport const PAGE_SEGMENT_KEY = '__PAGE__'\nexport const DEFAULT_SEGMENT_KEY = '__DEFAULT__'\nexport const NOT_FOUND_SEGMENT_KEY = '/_not-found'\n","export function createPromiseWithResolvers(): PromiseWithResolvers {\n // Shim of Stage 4 Promise.withResolvers proposal\n let resolve: (value: T | PromiseLike) => void\n let reject: (reason: any) => void\n const promise = new Promise((res, rej) => {\n resolve = res\n reject = rej\n })\n return { resolve: resolve!, reject: reject!, promise }\n}\n","import { notifyManager } from './notifyManager'\nimport { Removable } from './removable'\nimport { createRetryer } from './retryer'\nimport type {\n DefaultError,\n MutationFunctionContext,\n MutationMeta,\n MutationOptions,\n MutationStatus,\n} from './types'\nimport type { MutationCache } from './mutationCache'\nimport type { MutationObserver } from './mutationObserver'\nimport type { Retryer } from './retryer'\nimport type { QueryClient } from './queryClient'\n\n// TYPES\n\ninterface MutationConfig {\n client: QueryClient\n mutationId: number\n mutationCache: MutationCache\n options: MutationOptions\n state?: MutationState\n}\n\nexport interface MutationState<\n TData = unknown,\n TError = DefaultError,\n TVariables = unknown,\n TOnMutateResult = unknown,\n> {\n context: TOnMutateResult | undefined\n data: TData | undefined\n error: TError | null\n failureCount: number\n failureReason: TError | null\n isPaused: boolean\n status: MutationStatus\n variables: TVariables | undefined\n submittedAt: number\n}\n\ninterface FailedAction {\n type: 'failed'\n failureCount: number\n error: TError | null\n}\n\ninterface PendingAction {\n type: 'pending'\n isPaused: boolean\n variables?: TVariables\n context?: TOnMutateResult\n}\n\ninterface SuccessAction {\n type: 'success'\n data: TData\n}\n\ninterface ErrorAction {\n type: 'error'\n error: TError\n}\n\ninterface PauseAction {\n type: 'pause'\n}\n\ninterface ContinueAction {\n type: 'continue'\n}\n\nexport type Action =\n | ContinueAction\n | ErrorAction\n | FailedAction\n | PendingAction\n | PauseAction\n | SuccessAction\n\n// CLASS\n\nexport class Mutation<\n TData = unknown,\n TError = DefaultError,\n TVariables = unknown,\n TOnMutateResult = unknown,\n> extends Removable {\n state: MutationState\n options!: MutationOptions\n readonly mutationId: number\n\n #client: QueryClient\n #observers: Array<\n MutationObserver\n >\n #mutationCache: MutationCache\n #retryer?: Retryer\n\n constructor(\n config: MutationConfig,\n ) {\n super()\n\n this.#client = config.client\n this.mutationId = config.mutationId\n this.#mutationCache = config.mutationCache\n this.#observers = []\n this.state = config.state || getDefaultState()\n\n this.setOptions(config.options)\n this.scheduleGc()\n }\n\n setOptions(\n options: MutationOptions,\n ): void {\n this.options = options\n\n this.updateGcTime(this.options.gcTime)\n }\n\n get meta(): MutationMeta | undefined {\n return this.options.meta\n }\n\n addObserver(observer: MutationObserver): void {\n if (!this.#observers.includes(observer)) {\n this.#observers.push(observer)\n\n // Stop the mutation from being garbage collected\n this.clearGcTimeout()\n\n this.#mutationCache.notify({\n type: 'observerAdded',\n mutation: this,\n observer,\n })\n }\n }\n\n removeObserver(observer: MutationObserver): void {\n this.#observers = this.#observers.filter((x) => x !== observer)\n\n this.scheduleGc()\n\n this.#mutationCache.notify({\n type: 'observerRemoved',\n mutation: this,\n observer,\n })\n }\n\n protected optionalRemove() {\n if (!this.#observers.length) {\n if (this.state.status === 'pending') {\n this.scheduleGc()\n } else {\n this.#mutationCache.remove(this)\n }\n }\n }\n\n continue(): Promise {\n return (\n this.#retryer?.continue() ??\n // continuing a mutation assumes that variables are set, mutation must have been dehydrated before\n this.execute(this.state.variables!)\n )\n }\n\n async execute(variables: TVariables): Promise {\n const onContinue = () => {\n this.#dispatch({ type: 'continue' })\n }\n\n const mutationFnContext = {\n client: this.#client,\n meta: this.options.meta,\n mutationKey: this.options.mutationKey,\n } satisfies MutationFunctionContext\n\n this.#retryer = createRetryer({\n fn: () => {\n if (!this.options.mutationFn) {\n return Promise.reject(new Error('No mutationFn found'))\n }\n\n return this.options.mutationFn(variables, mutationFnContext)\n },\n onFail: (failureCount, error) => {\n this.#dispatch({ type: 'failed', failureCount, error })\n },\n onPause: () => {\n this.#dispatch({ type: 'pause' })\n },\n onContinue,\n retry: this.options.retry ?? 0,\n retryDelay: this.options.retryDelay,\n networkMode: this.options.networkMode,\n canRun: () => this.#mutationCache.canRun(this),\n })\n\n const restored = this.state.status === 'pending'\n const isPaused = !this.#retryer.canStart()\n\n try {\n if (restored) {\n // Dispatch continue action to unpause restored mutation\n onContinue()\n } else {\n this.#dispatch({ type: 'pending', variables, isPaused })\n // Notify cache callback\n if (this.#mutationCache.config.onMutate) {\n await this.#mutationCache.config.onMutate(\n variables,\n this as Mutation,\n mutationFnContext,\n )\n }\n const context = await this.options.onMutate?.(\n variables,\n mutationFnContext,\n )\n if (context !== this.state.context) {\n this.#dispatch({\n type: 'pending',\n context,\n variables,\n isPaused,\n })\n }\n }\n const data = await this.#retryer.start()\n\n // Notify cache callback\n await this.#mutationCache.config.onSuccess?.(\n data,\n variables,\n this.state.context,\n this as Mutation,\n mutationFnContext,\n )\n\n await this.options.onSuccess?.(\n data,\n variables,\n this.state.context!,\n mutationFnContext,\n )\n\n // Notify cache callback\n await this.#mutationCache.config.onSettled?.(\n data,\n null,\n this.state.variables,\n this.state.context,\n this as Mutation,\n mutationFnContext,\n )\n\n await this.options.onSettled?.(\n data,\n null,\n variables,\n this.state.context,\n mutationFnContext,\n )\n\n this.#dispatch({ type: 'success', data })\n return data\n } catch (error) {\n try {\n // Notify cache callback\n await this.#mutationCache.config.onError?.(\n error as any,\n variables,\n this.state.context,\n this as Mutation,\n mutationFnContext,\n )\n } catch (e) {\n void Promise.reject(e)\n }\n\n try {\n await this.options.onError?.(\n error as TError,\n variables,\n this.state.context,\n mutationFnContext,\n )\n } catch (e) {\n void Promise.reject(e)\n }\n\n try {\n // Notify cache callback\n await this.#mutationCache.config.onSettled?.(\n undefined,\n error as any,\n this.state.variables,\n this.state.context,\n this as Mutation,\n mutationFnContext,\n )\n } catch (e) {\n void Promise.reject(e)\n }\n\n try {\n await this.options.onSettled?.(\n undefined,\n error as TError,\n variables,\n this.state.context,\n mutationFnContext,\n )\n } catch (e) {\n void Promise.reject(e)\n }\n\n this.#dispatch({ type: 'error', error: error as TError })\n throw error\n } finally {\n this.#mutationCache.runNext(this)\n }\n }\n\n #dispatch(action: Action): void {\n const reducer = (\n state: MutationState,\n ): MutationState => {\n switch (action.type) {\n case 'failed':\n return {\n ...state,\n failureCount: action.failureCount,\n failureReason: action.error,\n }\n case 'pause':\n return {\n ...state,\n isPaused: true,\n }\n case 'continue':\n return {\n ...state,\n isPaused: false,\n }\n case 'pending':\n return {\n ...state,\n context: action.context,\n data: undefined,\n failureCount: 0,\n failureReason: null,\n error: null,\n isPaused: action.isPaused,\n status: 'pending',\n variables: action.variables,\n submittedAt: Date.now(),\n }\n case 'success':\n return {\n ...state,\n data: action.data,\n failureCount: 0,\n failureReason: null,\n error: null,\n status: 'success',\n isPaused: false,\n }\n case 'error':\n return {\n ...state,\n data: undefined,\n error: action.error,\n failureCount: state.failureCount + 1,\n failureReason: action.error,\n isPaused: false,\n status: 'error',\n }\n }\n }\n this.state = reducer(this.state)\n\n notifyManager.batch(() => {\n this.#observers.forEach((observer) => {\n observer.onMutationUpdate(action)\n })\n this.#mutationCache.notify({\n mutation: this,\n type: 'updated',\n action,\n })\n })\n }\n}\n\nexport function getDefaultState<\n TData,\n TError,\n TVariables,\n TOnMutateResult,\n>(): MutationState {\n return {\n context: undefined,\n data: undefined,\n error: null,\n failureCount: 0,\n failureReason: null,\n isPaused: false,\n status: 'idle',\n variables: undefined,\n submittedAt: 0,\n }\n}\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name FileUp\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTUgMkg2YTIgMiAwIDAgMC0yIDJ2MTZhMiAyIDAgMCAwIDIgMmgxMmEyIDIgMCAwIDAgMi0yVjdaIiAvPgogIDxwYXRoIGQ9Ik0xNCAydjRhMiAyIDAgMCAwIDIgMmg0IiAvPgogIDxwYXRoIGQ9Ik0xMiAxMnY2IiAvPgogIDxwYXRoIGQ9Im0xNSAxNS0zLTMtMyAzIiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/file-up\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst FileUp = createLucideIcon('FileUp', [\n ['path', { d: 'M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z', key: '1rqfz7' }],\n ['path', { d: 'M14 2v4a2 2 0 0 0 2 2h4', key: 'tnqrlb' }],\n ['path', { d: 'M12 12v6', key: '3ahymv' }],\n ['path', { d: 'm15 15-3-3-3 3', key: '15xj92' }],\n]);\n\nexport default FileUp;\n","import { useCallback, useRef, type Ref } from 'react'\n\n// This is a compatibility hook to support React 18 and 19 refs.\n// In 19, a cleanup function from refs may be returned.\n// In 18, returning a cleanup function creates a warning.\n// Since we take userspace refs, we don't know ahead of time if a cleanup function will be returned.\n// This implements cleanup functions with the old behavior in 18.\n// We know refs are always called alternating with `null` and then `T`.\n// So a call with `null` means we need to call the previous cleanup functions.\nexport function useMergedRef(\n refA: Ref,\n refB: Ref\n): Ref {\n const cleanupA = useRef<(() => void) | null>(null)\n const cleanupB = useRef<(() => void) | null>(null)\n\n // NOTE: In theory, we could skip the wrapping if only one of the refs is non-null.\n // (this happens often if the user doesn't pass a ref to Link/Form/Image)\n // But this can cause us to leak a cleanup-ref into user code (previously via ``),\n // and the user might pass that ref into ref-merging library that doesn't support cleanup refs\n // (because it hasn't been updated for React 19)\n // which can then cause things to blow up, because a cleanup-returning ref gets called with `null`.\n // So in practice, it's safer to be defensive and always wrap the ref, even on React 19.\n return useCallback(\n (current: TElement | null): void => {\n if (current === null) {\n const cleanupFnA = cleanupA.current\n if (cleanupFnA) {\n cleanupA.current = null\n cleanupFnA()\n }\n const cleanupFnB = cleanupB.current\n if (cleanupFnB) {\n cleanupB.current = null\n cleanupFnB()\n }\n } else {\n if (refA) {\n cleanupA.current = applyRef(refA, current)\n }\n if (refB) {\n cleanupB.current = applyRef(refB, current)\n }\n }\n },\n [refA, refB]\n )\n}\n\nfunction applyRef(\n refA: NonNullable>,\n current: TElement\n) {\n if (typeof refA === 'function') {\n const cleanup = refA(current)\n if (typeof cleanup === 'function') {\n return cleanup\n } else {\n return () => refA(null)\n }\n } else {\n refA.current = current\n return () => {\n refA.current = null\n }\n }\n}\n","let warnOnce = (_: string) => {}\nif (process.env.NODE_ENV !== 'production') {\n const warnings = new Set()\n warnOnce = (msg: string) => {\n if (!warnings.has(msg)) {\n console.warn(msg)\n }\n warnings.add(msg)\n }\n}\n\nexport { warnOnce }\n","let deploymentId: string | undefined\n\nif (typeof window !== 'undefined') {\n deploymentId = document.documentElement.dataset.dplId\n // Immediately remove the attribute to prevent hydration errors (the dplId was inserted into the\n // HTML only), React isn't aware of it at all.\n delete document.documentElement.dataset.dplId\n} else {\n // Client side: replaced with globalThis.NEXT_DEPLOYMENT_ID\n // Server side: left as is or replaced with a string or replaced with false\n deploymentId = process.env.NEXT_DEPLOYMENT_ID || undefined\n}\n\nexport function getDeploymentId(): string | undefined {\n return deploymentId\n}\n\nexport function getDeploymentIdQuery(ampersand = false): string {\n let id = getDeploymentId()\n if (id) {\n return `${ampersand ? '&' : '?'}dpl=${id}`\n }\n return ''\n}\n\nexport function getAssetToken(): string | undefined {\n return (\n process.env.NEXT_IMMUTABLE_ASSET_TOKEN || process.env.NEXT_DEPLOYMENT_ID\n )\n}\n\nexport function getAssetTokenQuery(ampersand = false): string {\n let id = getAssetToken()\n if (id) {\n return `${ampersand ? '&' : '?'}dpl=${id}`\n }\n return ''\n}\n","\"use strict\";\n\nfunction _interop_require_default(obj) {\n return obj && obj.__esModule ? obj : { default: obj };\n}\nexports._ = _interop_require_default;\n","import type { ImageConfigComplete, ImageLoaderProps } from './image-config'\nimport type { ImageProps, ImageLoader, StaticImageData } from './get-img-props'\n\nimport { getImgProps } from './get-img-props'\nimport { Image } from '../../client/image-component'\n\n// This is replaced by webpack alias\nimport defaultLoader from 'next/dist/shared/lib/image-loader'\n\n/**\n * For more advanced use cases, you can call `getImageProps()`\n * to get the props that would be passed to the underlying `` element,\n * and instead pass to them to another component, style, canvas, etc.\n *\n * Read more: [Next.js docs: `getImageProps`](https://nextjs.org/docs/app/api-reference/components/image#getimageprops)\n */\nexport function getImageProps(imgProps: ImageProps) {\n const { props } = getImgProps(imgProps, {\n defaultLoader,\n // This is replaced by webpack define plugin\n imgConf: process.env.__NEXT_IMAGE_OPTS as any as ImageConfigComplete,\n })\n // Normally we don't care about undefined props because we pass to JSX,\n // but this exported function could be used by the end user for anything\n // so we delete undefined props to clean it up a little.\n for (const [key, value] of Object.entries(props)) {\n if (value === undefined) {\n delete props[key as keyof typeof props]\n }\n }\n return { props }\n}\n\nexport default Image\n\nexport type { ImageProps, ImageLoaderProps, ImageLoader, StaticImageData }\n","module.exports = require('./dist/shared/lib/image-external')\n","import Image from \"next/image\";\n\nexport function BrandLogo({ compact = false }: { compact?: boolean }) {\n return (\n
\n \"SCHUBAMED\n
\n );\n}\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Stethoscope\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTEgMnYyIiAvPgogIDxwYXRoIGQ9Ik01IDJ2MiIgLz4KICA8cGF0aCBkPSJNNSAzSDRhMiAyIDAgMCAwLTIgMnY0YTYgNiAwIDAgMCAxMiAwVjVhMiAyIDAgMCAwLTItMmgtMSIgLz4KICA8cGF0aCBkPSJNOCAxNWE2IDYgMCAwIDAgMTIgMHYtMyIgLz4KICA8Y2lyY2xlIGN4PSIyMCIgY3k9IjEwIiByPSIyIiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/stethoscope\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Stethoscope = createLucideIcon('Stethoscope', [\n ['path', { d: 'M11 2v2', key: '1539x4' }],\n ['path', { d: 'M5 2v2', key: '1yf1q8' }],\n ['path', { d: 'M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1', key: 'rb5t3r' }],\n ['path', { d: 'M8 15a6 6 0 0 0 12 0v-3', key: 'x18d4x' }],\n ['circle', { cx: '20', cy: '10', r: '2', key: 'ts1r5v' }],\n]);\n\nexport default Stethoscope;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Gauge\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJtMTIgMTQgNC00IiAvPgogIDxwYXRoIGQ9Ik0zLjM0IDE5YTEwIDEwIDAgMSAxIDE3LjMyIDAiIC8+Cjwvc3ZnPgo=) - https://lucide.dev/icons/gauge\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Gauge = createLucideIcon('Gauge', [\n ['path', { d: 'm12 14 4-4', key: '9kzdfg' }],\n ['path', { d: 'M3.34 19a10 10 0 1 1 17.32 0', key: '19p75a' }],\n]);\n\nexport default Gauge;\n"],"names":["_getRequireWildcardCache","nodeInterop","WeakMap","cacheBabelInterop","cacheNodeInterop","_interop_require_wildcard","obj","__esModule","default","cache","has","get","newObj","__proto__","hasPropertyDescriptor","Object","defineProperty","getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set","exports","_","InvariantError","Error","constructor","message","options","endsWith","name","DEFAULT_SEGMENT_KEY","NOT_FOUND_SEGMENT_KEY","PAGE_SEGMENT_KEY","addSearchParamsIfPageSegment","computeSelectedLayoutSegment","getSegmentValue","getSelectedLayoutSegmentPath","isGroupSegment","isParallelRouteSegment","segment","Array","isArray","startsWith","searchParams","isPageSegment","includes","stringifiedQuery","JSON","stringify","segments","parallelRouteKey","length","rawSegment","tree","first","segmentPath","node","parallelRoutes","children","values","segmentValue","push","createPromiseWithResolvers","resolve","reject","promise","Promise","res","rej","useMergedRef","refA","refB","cleanupA","useRef","cleanupB","useCallback","current","cleanupFnA","cleanupFnB","applyRef","cleanup","warnOnce","process","env","NODE_ENV","warnings","Set","msg","console","warn","add","getAssetToken","getAssetTokenQuery","getDeploymentId","getDeploymentIdQuery","deploymentId","window","document","documentElement","dataset","dplId","NEXT_DEPLOYMENT_ID","undefined","ampersand","id","NEXT_IMMUTABLE_ASSET_TOKEN","_interop_require_default","getImageProps","imgProps","props","getImgProps","defaultLoader","imgConf","__NEXT_IMAGE_OPTS","value","entries","Image","module","BrandLogo","compact","className","src","alt","width","height","priority"],"mappings":"6CAEA,SAASA,EAAyBC,CAAW,EACzC,GAAuB,AAAnB,mBAAOC,QAAwB,OAAO,KAE1C,IAAIC,EAAoB,IAAID,QACxBE,EAAmB,IAAIF,QAE3B,MAAO,CAACF,EAA2B,SAASC,CAAW,EACnD,OAAOA,EAAcG,EAAmBD,EAC5C,CAAC,CAAEF,EACP,CA0BAuB,EAAQC,CAAC,CAzBT,EAyBYpB,OAzBHA,AAA0BC,CAAG,CAAEL,CAAW,EAC/C,GAAI,CAACA,GAAeK,GAAOA,EAAIC,UAAU,CAAE,OAAOD,EAClD,GAAY,OAARA,GAA+B,UAAf,OAAOA,GAAmC,YAAf,OAAOA,EAAoB,MAAO,CAAEE,QAASF,CAAI,EAEhG,IAAIG,EAAQT,EAAyBC,GAErC,GAAIQ,GAASA,EAAMC,GAAG,CAACJ,GAAM,OAAOG,EAAME,GAAG,CAACL,GAE9C,IAAIM,EAAS,CAAEC,UAAW,IAAK,EAC3BC,EAAwBC,OAAOC,cAAc,EAAID,OAAOE,wBAAwB,CAEpF,IAAK,IAAIC,KAAOZ,EACZ,EADiB,CACL,YAARY,GAAqBH,OAAOI,SAAS,CAACC,cAAc,CAACC,IAAI,CAACf,EAAKY,GAAM,CACrE,IAAII,EAAOR,EAAwBC,OAAOE,wBAAwB,CAACX,EAAKY,GAAO,KAC3EI,IAASA,EAAKX,EAAN,CAAS,EAAIW,EAAKC,GAAAA,AAAG,EAAGR,OAAOC,cAAc,CAACJ,EAAQM,EAAKI,GAClEV,CAAM,CAACM,EAAI,CAAGZ,CAAG,CAACY,EAAI,AAC/B,CAOJ,OAJAN,EAAOJ,OAAO,CAAGF,EAEbG,GAAOA,EAAMc,GAAG,CAACjB,EAAKM,GAEnBA,CACX,yGCpCac,iBAAAA,qCAAAA,IAAN,OAAMA,UAAuBC,MAClCC,YAAYC,CAAe,CAAEC,CAAsB,CAAE,CACnD,KAAK,CACH,CAAC,WAAW,EAAED,EAAQE,QAAQ,CAAC,KAAOF,EAAUA,EAAU,IAAI,0BAA0B,CAAC,CACzFC,GAEF,IAAI,CAACE,IAAI,CAAG,gBACd,CACF,wFC+EaC,mBAAmB,CAAA,kBAAnBA,GACAC,qBAAqB,CAAA,kBAArBA,GAFAC,gBAAgB,CAAA,kBAAhBA,GAvEGC,4BAA4B,CAAA,kBAA5BA,GAgBAC,4BAA4B,CAAA,kBAA5BA,GA7BAC,eAAe,CAAA,kBAAfA,GAiDAC,4BAA4B,CAAA,kBAA5BA,AAAT,SAASA,EACdiB,CAAuB,CACvBH,CAAwB,CACxBI,GAAQ,CAAI,CACZC,EAAwB,EAAE,MAEtBC,EACJ,GAAIF,EAEFE,EAAOH,CAAI,CAAC,CAFH,CAEK,CAACH,EAAiB,KAC3B,CAEL,IAAMO,EAAiBJ,CAAI,CAAC,EAAE,CAC9BG,EAAOC,EAAeC,QAAQ,EAAI9C,OAAO+C,MAAM,CAACF,EAAe,CAAC,EAAE,AACpE,CAEA,GAAI,CAACD,EAAM,OAAOD,EAGlB,IAAIK,EAAezB,EAFHqB,CAAI,CAAC,EAAE,QAIvB,AAAI,CAACI,CAF8BrB,EAEdqB,EAAalB,UAAU,CAACV,GACpCuB,GAGTA,EAAYM,IAAI,CAACD,GAEVxB,EACLoB,CAP8D,CAQ9DN,GACA,EACAK,GAEJ,GA9EgBlB,cAAc,CAAA,kBAAdA,GAKAC,sBAAsB,CAAA,kBAAtBA,uEATT,SAASH,EAAgBI,CAAgB,EAC9C,OAAOC,MAAMC,OAAO,CAACF,GAAWA,CAAO,CAAC,EAAE,CAAGA,CAC/C,CAEO,SAASF,EAAeE,CAAe,EAE5C,MAAsB,MAAfA,CAAO,CAAC,EAAE,EAAYA,EAAQX,QAAQ,CAAC,IAChD,CAEO,SAASU,EAAuBC,CAAe,EACpD,OAAOA,EAAQG,UAAU,CAAC,MAAoB,cAAZH,CACpC,CAEO,SAASN,EACdM,CAAgB,CAChBI,CAA2D,EAI3D,GAFsBJ,CAElBK,CAF0BC,QAAQ,CAACb,GAEpB,CACjB,IAAMc,EAAmBC,KAAKC,SAAS,CAACL,GACxC,MAA4B,OAArBG,EACHd,EAAmB,IAAMc,EACzBd,CACN,CAEA,OAAOO,CACT,CAEO,SAASL,EACde,CAAyB,CACzBC,CAAwB,EAExB,GAAI,CAACD,GAAgC,GAAG,CAAvBA,EAASE,MAAM,CAC9B,OAAO,KAIT,IAAMC,EACiB,aAArBF,EACID,CAAQ,CAAC,EAAE,CACXA,CAAQ,CAACA,EAASE,MAAM,CAAG,EAAE,CAInC,OAAOC,IAAetB,EAAsB,KAAOsB,CACrD,CAsCO,IAAMpB,EAAmB,WACnBF,EAAsB,cACtBC,EAAwB,4CCxF9B,SAAS+B,IAId,IAFIC,EACAC,EACEC,EAAU,IAAIC,QAAW,CAACC,EAAKC,KACnCL,EAAUI,EACVH,EAASI,CACX,GACA,MAAO,CAAEL,QAASA,EAAUC,OAAQA,UAASC,CAAQ,CACvD,0EATgBH,6BAAAA,qCAAAA,6BCAhB,IAAA,EAA8B,EAAA,CAArB,AAAqB,CAAA,OAC9B,EAA0B,EAAA,CAAjB,AAAiB,CAAA,OAC1B,AAF8B,EAEA,EAAA,CAArB,AAAqB,CAAA,GADJ,IAkFb,EAAN,WAjFuB,GAsFpB,EAAA,SAAA,CAAU,EAKlB,CACA,EAAA,GAGA,GACA,AAEA,aACE,CAAA,CACA,CACA,KAAA,CAAM,EAEN,IAAA,CAAA,CAAA,CAAK,CAAU,EAAO,MAAA,CACtB,IAAA,CAAK,UAAA,CAAa,EAAO,UAAA,CACzB,IAAA,CAAA,CAAA,CAAK,CAAiB,EAAO,aAAA,CAC7B,IAAA,CAAA,CAAA,CAAK,CAAa,CAAC,CAAA,CACnB,IAAA,CAAK,KAAA,CAAQ,EAAO,KAAA,EAAS,IAE7B,IAAA,CAAK,OAFwC,GAExC,CAAW,EAAO,OAAO,EAC9B,IAAA,CAAK,UAAA,CAAW,CAClB,CAEA,WACE,CAAA,CACM,CACN,IAAA,CAAK,OAAA,CAAU,EAEf,IAAA,CAAK,YAAA,CAAa,IAAA,CAAK,OAAA,CAAQ,MAAM,CACvC,CAEA,IAAI,MAAiC,CACnC,OAAO,IAAA,CAAK,OAAA,CAAQ,IAAA,AACtB,CAEA,YAAY,CAAA,CAAsD,CAC3D,IAAA,CAAA,CAAA,CAAK,CAAW,QAAA,CAAS,KAC5B,GADoC,CACpC,CAAA,CAAA,AADuC,CAClC,CAAW,IAAA,CAAK,GAGrB,IAAA,CAH6B,AAGxB,cAAA,CAAe,EAEpB,IAAA,CAAA,CAAA,CAAK,CAAe,MAAA,CAAO,CACzB,KAAM,gBACN,SAAU,IAAA,CACV,UACF,CAAC,EAEL,CAEA,eAAe,CAAA,CAAsD,CACnE,IAAA,CAAA,CAAA,CAAK,CAAa,IAAA,CAAA,CAAA,CAAK,CAAW,MAAA,CAAO,AAAC,GAAM,IAAM,GAEtD,IAAA,CAF8D,AAEzD,UAAA,CAAW,EAEhB,IAAA,CAAA,CAAA,CAAK,CAAe,MAAA,CAAO,CACzB,KAAM,kBACN,SAAU,IAAA,CACV,UACF,CAAC,CACH,CAEU,gBAAiB,CACpB,IAAA,CAAA,CAAA,CAAK,CAAW,MAAA,EAAQ,CACD,WAAW,CAAjC,IAAA,CAAK,KAAA,CAAM,MAAA,CACb,IAAA,CAAK,UAAA,CAAW,EAEhB,IAAA,CAAA,CAAA,CAAK,CAAe,MAAA,CAAO,IAAI,EAGrC,CAEA,UAA6B,CAC3B,OACE,IAAA,CAAA,CAAA,CAAK,EAAU,SAAS,GAExB,EAFwB,EAExB,CAAK,OAAA,CAAQ,IAAA,CAAK,KAAA,CAAM,SAAU,CAEtC,CAEA,MAAM,QAAQ,CAAA,CAAuC,CACnD,IAAM,EAAa,KACjB,CADuB,GACvB,CAAA,CAAA,CAAK,CAAU,CAAE,KAAM,UAAW,CAAC,CACrC,EAEM,EAAoB,CACxB,MAZwB,CAYhB,IAAA,CAAA,CAAA,CAAK,CACb,KAAM,IAAA,CAAK,OAAA,CAAQ,IAAA,CACnB,YAAa,IAAA,CAAK,OAAA,CAAQ,WAAA,AAC5B,EAEA,IAAA,CAAA,CAAA,CAAK,CAAA,CAAA,EAAW,EAAA,aAAA,EAAc,CAC5B,GAAI,IACF,AAAK,EADG,EACJ,AAAC,CAAK,OAAA,CAAQ,UAAA,CAIX,CAJuB,GAIvB,CAAK,OAAA,CAAQ,UAAA,CAAW,EAAW,GAHjC,QAAQ,MAG0C,AAH1C,CAAO,AAAI,MAAM,qBAAqB,CAAC,EAK1D,OAAQ,CAAC,EAAc,KACrB,IAAA,CAD+B,AAC/B,CAAA,CAAK,CAAU,CAAE,KAAM,sBAAU,QAAc,CAAM,CAAC,CACxD,EACA,QAAS,KACP,CADa,GACb,CAAA,CAAA,CAAK,CAAU,CAAE,KAAM,OAAQ,CAAC,CAClC,aACA,EACA,MAAO,IAAA,CAAK,OAAA,CAAQ,KAAA,EAAS,EAC7B,WAAY,IAAA,CAAK,OAAA,CAAQ,UAAA,CACzB,YAAa,IAAA,CAAK,OAAA,CAAQ,WAAA,CAC1B,OAAQ,IAAM,IAAA,CAAA,CAAA,CAAK,CAAe,MAAA,CAAO,IAAI,CAC/C,CAAC,EAED,IAAM,EAAiC,YAAtB,IAAA,CAAK,KAAA,CAAM,MAAA,CACtB,EAAW,CAAC,IAAA,CAAA,CAAA,CAAK,CAAS,QAAA,CAAS,EAEzC,GAAI,CACF,GAAI,EAEF,QAFY,AAGP,CACL,EAFW,EAEX,CAAA,CAAA,CAAK,CAAU,CAAE,KAAM,oBAAW,EAAW,UAAS,CAAC,EAEnD,IAAA,CAAA,CAAA,CAAK,CAAe,MAAA,CAAO,QAAA,EAAU,AACvC,MAAM,IAAA,CAAA,CAAA,AAAK,CAAA,CAAe,MAAA,CAAO,QAAA,CAC/B,EACA,IAAA,CACA,GAGJ,IAAM,EAAU,MAAM,IAAA,CAAK,OAAA,CAAQ,QAAA,GACjC,EACA,GAEE,IAAY,IAAA,CAAK,KAAA,CAAM,OAAA,EAAS,AAClC,IAAA,CAAA,CAAA,CAAK,CAAU,CACb,KAAM,kBACN,YACA,WACA,CACF,CAAC,CAEL,CACA,IAAM,EAAO,MAAM,IAAA,CAAA,CAAA,CAAK,CAAS,KAAA,CAAM,EAqCvC,OAlCA,MAAM,IAAA,CAAA,CAAA,CAAK,CAAe,MAAA,CAAO,SAAA,GAC/B,EACA,EACA,IAAA,CAAK,KAAA,CAAM,OAAA,CACX,IAAA,CACA,GAGF,MAAM,IAAA,CAAK,OAAA,CAAQ,SAAA,GACjB,EACA,EACA,IAAA,CAAK,KAAA,CAAM,OAAA,CACX,GAIF,MAAM,IAAA,CAAA,CAAA,CAAK,CAAe,MAAA,CAAO,SAAA,GAC/B,EACA,KACA,IAAA,CAAK,KAAA,CAAM,SAAA,CACX,IAAA,CAAK,KAAA,CAAM,OAAA,CACX,IAAA,CACA,GAGF,MAAM,IAAA,CAAK,OAAA,CAAQ,SAAA,GACjB,EACA,KACA,EACA,IAAA,CAAK,KAAA,CAAM,OAAA,CACX,GAGF,IAAA,CAAA,CAAA,CAAK,CAAU,CAAE,KAAM,eAAW,CAAK,CAAC,EACjC,CACT,CAAA,MAAS,EAAO,CACd,GAAI,CAEF,MAAM,IAAA,CAAA,CAAA,CAAK,CAAe,MAAA,CAAO,OAAA,GAC/B,EACA,EACA,IAAA,CAAK,KAAA,CAAM,OAAA,CACX,IAAA,CACA,EAEJ,CAAA,MAAS,EAAG,CACL,QAAQ,MAAA,CAAO,CAAC,CACvB,CAEA,GAAI,CACF,MAAM,IAAA,CAAK,OAAA,CAAQ,OAAA,GACjB,EACA,EACA,IAAA,CAAK,KAAA,CAAM,OAAA,CACX,EAEJ,CAAA,MAAS,EAAG,CACL,QAAQ,MAAA,CAAO,CAAC,CACvB,CAEA,GAAI,CAEF,MAAM,IAAA,CAAA,CAAA,CAAK,CAAe,MAAA,CAAO,SAAA,GAC/B,KAAA,EACA,EACA,IAAA,CAAK,KAAA,CAAM,SAAA,CACX,IAAA,CAAK,KAAA,CAAM,OAAA,CACX,IAAA,CACA,EAEJ,CAAA,MAAS,EAAG,CACL,QAAQ,MAAA,CAAO,CAAC,CACvB,CAEA,GAAI,CACF,MAAM,IAAA,CAAK,OAAA,CAAQ,SAAA,GACjB,KAAA,EACA,EACA,EACA,IAAA,CAAK,KAAA,CAAM,OAAA,CACX,EAEJ,CAAA,MAAS,EAAG,CACL,QAAQ,MAAA,CAAO,CAAC,CACvB,CAGA,MADA,IAAA,CAAA,CAAA,AAAK,CAAA,CAAU,CAAE,KAAM,cAAS,CAAuB,CAAC,EAClD,CACR,QAAE,CACA,IAAA,CAAA,CAAA,CAAK,CAAe,OAAA,CAAQ,IAAI,CAClC,CACF,EAEA,CAAA,CAAU,CAAA,EAAkE,AAwD1E,IAAA,CAAK,KAAA,CAAQ,CAvDG,AACd,IAEA,MAD8D,CACtD,EAAO,IAAA,EAAM,AACnB,IAAK,SACH,MAAO,CACL,GAAG,CAAA,CACH,aAAc,EAAO,YAAA,CACrB,cAAe,EAAO,KAAA,AACxB,CACF,KAAK,QACH,MAAO,CACL,GAAG,CAAA,CACH,UAAU,CACZ,CACF,KAAK,WACH,MAAO,CACL,GAAG,CAAA,CACH,UAAU,CACZ,CACF,KAAK,UACH,MAAO,CACL,GAAG,CAAA,CACH,QAAS,EAAO,OAAA,CAChB,KAAM,KAAA,EACN,aAAc,EACd,cAAe,KACf,MAAO,KACP,SAAU,EAAO,QAAA,CACjB,OAAQ,UACR,UAAW,EAAO,SAAA,CAClB,YAAa,KAAK,GAAA,CAAI,CACxB,CACF,KAAK,UACH,MAAO,CACL,GAAG,CAAA,CACH,KAAM,EAAO,IAAA,CACb,aAAc,EACd,cAAe,KACf,MAAO,KACP,OAAQ,UACR,UAAU,CACZ,CACF,KAAK,QACH,MAAO,CACL,GAAG,CAAA,CACH,KAAM,KAAA,EACN,MAAO,EAAO,KAAA,CACd,aAAc,EAAM,YAAA,CAAe,EACnC,cAAe,EAAO,KAAA,CACtB,UAAU,EACV,OAAQ,OACV,CACJ,EACF,EACqB,IAAA,CAAK,KAAK,EAE/B,EAAA,aAAA,CAAc,KAAA,CAAM,KAClB,CADwB,GACxB,CAAA,CAAA,CAAK,CAAW,OAAA,CAAQ,AAAC,IACvB,EAAS,OAD2B,SAC3B,CAAiB,EAC5B,CAAC,EACD,CAFkC,GAElC,CAAA,CAAA,CAAK,CAAe,MAAA,CAAO,CACzB,SAAU,IAAA,CACV,KAAM,iBACN,CACF,CAAC,CACH,CAAC,CACH,CACF,EAEO,SAAS,IAMd,MAAO,CACL,OAF2D,CAElD,KAAA,EACT,KAAM,KAAA,EACN,MAAO,KACP,aAAc,EACd,cAAe,KACf,SAAU,GACV,OAAQ,OACR,UAAW,KAAA,EACX,YAAa,CACf,CACF,qECrZM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAS,AAAT,CAAA,CAAA,CAAA,QAAS,OAAA,EAAiB,QAAU,CAAA,CAAA,AACxC,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAA8D,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AAC3F,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAE,AAAF,EAAK,CAA2B,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CACxD,AADwD,CACvD,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAY,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AACzC,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAAkB,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAChD,CAAA,CAAA,gICTeO,eAAAA,qCAAAA,aAT8B,CAAA,CAAA,IAAA,GASvC,SAASA,EACdC,CAAmB,CACnBC,CAAmB,EAEnB,IAAMC,EAAWC,GAAAA,EAAAA,MAAAA,AAAM,EAAsB,MACvCC,EAAWD,CAAAA,EAAAA,EAAAA,MAAAA,AAAM,EAAsB,MAS7C,MAAOE,CAAAA,EAAAA,EAAAA,WAAAA,AAAW,EAChB,AAACC,IACC,GAAIA,AAAY,SAAM,CACpB,IAAMC,EAAaL,EAASI,OAAO,CAC/BC,IACFL,EAASI,MADK,CACE,CAAG,KACnBC,KAEF,IAAMC,EAAaJ,EAASE,OAAO,CAC/BE,IACFJ,EAASE,MADK,CACE,CAAG,KACnBE,IAEJ,MACMR,CADC,GAEHE,EADQ,AACCI,OAAO,CAAGG,EAAST,EAAMM,EAAAA,EAEhCL,IACFG,EADQ,AACCE,OAAO,CAAGG,EAASR,EAAMK,EAAAA,CAGxC,EACA,CAACN,EAAMC,EAAK,CAEhB,CAEA,SAASQ,EACPT,CAAgC,CAChCM,CAAiB,EAEjB,GAAoB,YAAhB,OAAON,EAST,OADAA,EAAKM,OAAO,CAAGA,EACR,KACLN,EAAKM,OAAO,CAAG,IACjB,CAX8B,EAC9B,IAAMI,EAAUV,EAAKM,SACE,AAAvB,YAAI,AAA+B,OAAxBI,EACFA,EAEA,IAAMV,EAAK,KAEtB,CAMF,MANS,yTCjDAW,WAAAA,qCAAAA,KAXT,IAAIA,EAAW,AAAC3D,IAAe,oCCA3ByE,0DAyBYJ,aAAa,CAAA,kBAAbA,GAMAC,kBAAkB,CAAA,kBAAlBA,GAlBAC,eAAe,CAAA,kBAAfA,GAIAC,oBAAoB,CAAA,kBAApBA,uEAJT,SAASD,IACd,QACF,CAEO,SAASC,EAAqBS,GAAY,CAAK,SAEpD,EACS,CAAA,CADLC,CACQD,EAAY,CADhB,GACsB,IAAI,IAAI,EAN/BR,AAMiCS,EAAAA,CAAI,CAErC,EACT,CAEO,SAASb,IACd,MAC0E,CAAxET,AAAwE,CAE5E,CAEO,MAJKC,GAAG,AAICS,CAJAa,CAImBF,GAAY,CAAK,EAKlD,MAAO,EACT,CA3BER,OAAiDO,GAiBT,IAAIpB,CAjB7BA,OAiBqCC,CAjB7BA,EAiBgC,CAjB7B,AAiB8BkB,CAjB7BA,WCL7BhF,GAAQC,CAAC,CAHT,CDyB4E,CAjB7B,ACLnCoF,OAHsBvG,AAAzBuG,CAA4B,EACjC,OAAOvG,GAAOA,EAAIC,UAAU,CAAGD,EAAM,CAAEE,QAASF,CAAI,CACxD,wFC6BA,OAAoB,CAAA,kBAApB,GAjBgBwG,aAAa,CAAA,kBAAbA,4FAbY,CAAA,CAAA,IAAA,OACN,CAAA,CAAA,IAAA,WAGI,CAAA,CAAA,IAAA,IASnB,SAASA,EAAcC,CAAoB,EAChD,GAAM,OAAEC,CAAK,CAAE,CAAGC,GAAAA,EAAAA,WAAAA,AAAW,EAACF,EAAU,CACtCG,cAAAA,EAAAA,OAAa,CAEbC,OAAAA,CAAsC,CAA7B9B,QAAQC,GAAG,CAAC8B,iBAAiB,qJACxC,GAIA,IAAK,GAAM,CAAClG,EAAKmG,EAAM,GAAItG,OAAOuG,OAAO,CAACN,OAAQ,CAClCP,IAAVY,GACF,IADuB,GAChBL,CAAK,CAAC9F,EAA0B,CAG3C,MAAO,OAAE8F,CAAM,CACjB,KAEA,EAAeO,EAAAA,KAAK,kBCjCpBC,EAAOhG,OAAO,CAAA,EAAA,CAAA,CAAA,gDCAd,EAAA,EAAA,CAAA,CAAA,0BAEO,SAASiG,AAAU,SAAEC,GAAU,CAAK,CAAyB,EAClE,MACE,CAAA,EAAA,EAAA,GAAA,EAAC,MAAA,CAAIC,UAAU,mCACb,CAAA,EAAA,EAAA,GAAA,EAAC,EAAA,OAAK,CAAA,CAACC,IAAI,sBAAsBC,IAAI,6BAA6BC,MAAOJ,EAAU,IAAM,IAAKK,OAAQ,GAAIC,QAAQ,CAAA,CAAA,KAGxH,uEEK+B,QAAS,CAAA,SDAY,CAAA,kBCCjB,UAAU,CAAA,0CACG,CAAA,CAAA,CAAA,CAAK,AAAL,QAAK,CAAU,CAAA,gCDFzD,CAAA,ACAA,CDAA,ACAA,ADAA,CCAA,ADAA,CCAA,ADAA,CCAA,ADAA,AAAc,CCAd,ADAA,CCAA,ADAA,AAAc,OAAA,EAAiB,CCAG,CAAA,YDAY,CAClD,AADkD,CACjD,CCAA,ADAA,CCAA,ADAA,CCAA,ADAA,CAAA,ACAA,CDAA,ACAA,CAAQ,ADAA,CCAA,ADAA,CAAE,EAAG,CAAW,ACAG,CAAA,ADAH,CCAG,ADAH,CCAG,ADAH,CCAG,ADAH,CCAG,ADAH,CCAG,ADAH,CCAG,ADAH,CCAG,ADAH,CCAG,ADAH,CCAG,ADAH,CAAA,ACAG,EDAE,CCAF,CAAA,QDAY,CACxC,CAAC,CCAA,ADAA,CCAA,ADAA,CAAA,ACAA,CDAA,ACAA,CAAA,ADAA,CCAQ,ADAA,CCAA,ADAA,CAAE,EAAG,CCAgC,ADAtB,CCAsB,ADAtB,CCAsB,ADAtB,CCAsB,ADAtB,CAAA,ACAsB,CDAtB,ACAsB,CAAA,ADAtB,CCAsB,ADAtB,CCAsB,ADAtB,CAAA,ACAsB,CAAA,ADAtB,CCAsB,ADAtB,CCAsB,ADAtB,AAAK,CCAiB,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,GDC9C,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAE,AAAF,EAAK,CAA4D,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AACzF,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAA,AAAE,EAAG,CAA2B,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,QAAA,CAAU,CAAA,CAAA,AACxD,CAAC,QAAU,CAAA,CAAA,AAAE,EAAI,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,CAAI,CAAA,CAAA,IAAA,CAAM,CAAG,CAAA,CAAA,CAAA,CAAA,CAAA,AAAK,GAAK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAU,CAAA,CACzD,CAAA,CAAA","ignoreList":[0,1,2,3,5,6,7,8,9,10,11,13,14]} \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0iy5o-h._.js b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0iy5o-h._.js index 8b27bdf5..f7b9aaa0 100644 --- a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0iy5o-h._.js +++ b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0iy5o-h._.js @@ -1,3 +1,3 @@ -module.exports=[33508,a=>{"use strict";let b=(0,a.i(70106).default)("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]);a.s(["X",0,b],33508)},53250,a=>{"use strict";let b="/api/v1";async function c(a,b){let c=await a.text();if(!c)return b;try{let a=JSON.parse(c);return a.detail??a.message??c}catch{return c}}async function d(a,b){let c=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:a,password:b}),credentials:"include"});if(!c.ok){let a=Error(await c.text()||`HTTP ${c.status}`);throw a.status=c.status,a}return c.json()}async function e(a,c){let d=await fetch(`${b}${a}`,{cache:"no-store",credentials:"include"});if(!d.ok)throw Error(`API request failed: ${d.status}`);return d.json()}async function f(a,d,e,f){let g=await fetch(`${b}${a}`,{method:e,headers:{"Content-Type":"application/json"},body:JSON.stringify(f),credentials:"include"});if(!g.ok)throw Error(await c(g,`API request failed: ${g.status}`));return g.json()}async function g(a,d){let e=await fetch(`${b}${a}`,{method:"DELETE",credentials:"include"});if(!e.ok)throw Error(await c(e,`API request failed: ${e.status}`))}async function h(a,d,e){let f=await fetch(`${b}${a}`,{...e,headers:{"Content-Type":"application/json",...e?.headers??{}},credentials:"include"});if(!f.ok)throw Error(await c(f,`API request failed: ${f.status}`));return f.json()}a.s(["API_BASE",0,b,"apiDelete",0,g,"apiFetch",0,h,"apiGet",0,e,"apiSend",0,f,"login",0,d,"normalizeValidationPayload",0,function(a){return{...a,...Object.fromEntries(["contact_id","examiner_id"].map(b=>[b,a[b]||null]))}}])},87532,a=>{"use strict";let b=(0,a.i(70106).default)("Search",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);a.s(["Search",0,b],87532)},81560,a=>{"use strict";let b=(0,a.i(70106).default)("Trash2",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]]);a.s(["Trash2",0,b],81560)},10448,a=>{"use strict";let b=(0,a.i(70106).default)("Pen",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]]);a.s(["Edit2",0,b],10448)},57453,a=>{"use strict";var b=a.i(87924),c=a.i(59501),d=a.i(70025),e=a.i(33217),f=a.i(37927),g=a.i(10448),h=a.i(87532),i=a.i(81560),j=a.i(33508),k=a.i(72131),l=a.i(95245),m=a.i(12314),n=a.i(53250);function o(a){return null==a?"":String(a)}a.s(["CrudPage",0,function({title:a,subtitle:p,endpoint:q,columns:r,fields:s,schema:t,emptyValues:u}){let{token:v}=(0,m.useAuth)(),w=(0,f.useQueryClient)(),[x,y]=(0,k.useState)(1),[z,A]=(0,k.useState)(""),[B,C]=(0,k.useState)(null),[D,E]=(0,k.useState)(!1),F=`${q}?page=${x}&page_size=10&search=${encodeURIComponent(z)}`,G=(0,l.useForm)({resolver:(0,c.zodResolver)(t),defaultValues:u}),H=(0,e.useQuery)({queryKey:[q,x,10,z,v],queryFn:()=>(0,n.apiGet)(F,v??""),enabled:!!v}),I=Math.max(1,Math.ceil((H.data?.total??0)/10)),J=()=>w.invalidateQueries({queryKey:[q]}),K=(0,d.useMutation)({mutationFn:a=>{let b=Object.fromEntries(Object.entries(a).map(([a,b])=>[a,""===b?null:b]));return(0,n.apiSend)(B?`${q}/${B.id}`:q,v??"",B?"PUT":"POST",b)},onSuccess:()=>{E(!1),C(null),G.reset(u),J()}}),L=(0,d.useMutation)({mutationFn:a=>(0,n.apiDelete)(`${q}/${a.id}`,v??""),onSuccess:J}),M=(0,k.useMemo)(()=>H.data?.items??[],[H.data]);return(0,b.jsxs)("div",{className:"space-y-6",children:[(0,b.jsxs)("header",{className:"flex flex-col justify-between gap-4 sm:flex-row sm:items-center",children:[(0,b.jsxs)("div",{children:[(0,b.jsx)("h1",{className:"text-3xl font-semibold text-text",children:a}),(0,b.jsx)("p",{className:"mt-2 text-text-light",children:p})]}),(0,b.jsx)("button",{onClick:function(){C(null),G.reset(u),E(!0)},className:"btn btn-primary h-12",children:"Neu"})]}),(0,b.jsxs)("div",{className:"flex items-center gap-3 rounded-lg border border-border bg-surface px-4 py-3 shadow-soft",children:[(0,b.jsx)(h.Search,{className:"h-5 w-5 text-primary"}),(0,b.jsx)("input",{value:z,onChange:a=>{y(1),A(a.target.value)},placeholder:"Suchen",className:"h-9 flex-1 bg-transparent outline-none"})]}),(0,b.jsx)("section",{className:"overflow-hidden rounded-lg border border-border bg-surface shadow-soft",children:(0,b.jsx)("div",{className:"overflow-x-auto",children:(0,b.jsxs)("table",{className:"min-w-full text-left text-sm",children:[(0,b.jsx)("thead",{className:"bg-background text-xs uppercase text-text-light",children:(0,b.jsxs)("tr",{children:[r.map(a=>(0,b.jsx)("th",{className:"px-5 py-4",children:a.label},String(a.key))),(0,b.jsx)("th",{className:"px-5 py-4 text-right",children:"Aktionen"})]})}),(0,b.jsxs)("tbody",{className:"divide-y divide-border",children:[M.map(a=>(0,b.jsxs)("tr",{className:"hover:bg-accent/10",children:[r.map(c=>(0,b.jsx)("td",{className:"whitespace-nowrap px-5 py-4",children:o(a[c.key])},String(c.key))),(0,b.jsx)("td",{className:"px-5 py-4",children:(0,b.jsxs)("div",{className:"flex justify-end gap-2",children:[(0,b.jsx)("button",{"aria-label":"Bearbeiten",title:"Bearbeiten",onClick:()=>{C(a),G.reset(Object.fromEntries(Object.keys(u).map(b=>[b,o(a[b])]))),E(!0)},className:"icon-btn text-primary-dark",children:(0,b.jsx)(g.Edit2,{className:"h-4 w-4"})}),(0,b.jsx)("button",{"aria-label":"Loeschen",title:L.isPending?"Loeschen laeuft...":"Loeschen",disabled:L.isPending,onClick:()=>L.mutate(a),className:"icon-btn text-danger",children:L.isPending?(0,b.jsx)("span",{className:"spinner"}):(0,b.jsx)(i.Trash2,{className:"h-4 w-4"})})]})})]},a.id)),!H.isLoading&&0===M.length&&(0,b.jsx)("tr",{children:(0,b.jsx)("td",{colSpan:r.length+1,className:"px-5 py-10 text-center text-text-light",children:"Keine Datensaetze gefunden."})})]})]})})}),(0,b.jsxs)("footer",{className:"flex items-center justify-between text-sm text-text-light",children:[(0,b.jsxs)("span",{children:[H.data?.total??0," Datensaetze"]}),(0,b.jsxs)("div",{className:"flex items-center gap-3",children:[(0,b.jsx)("button",{disabled:x<=1,title:x<=1?"Erste Seite erreicht":void 0,onClick:()=>y(a=>a-1),className:"btn btn-secondary",children:"Zurueck"}),(0,b.jsxs)("span",{children:["Seite ",x," von ",I]}),(0,b.jsx)("button",{disabled:x>=I,title:x>=I?"Letzte Seite erreicht":void 0,onClick:()=>y(a=>a+1),className:"btn btn-secondary",children:"Weiter"})]})]}),D&&(0,b.jsx)("div",{className:"fixed inset-0 z-50 flex items-end bg-black/20 p-3 sm:items-center sm:justify-center",children:(0,b.jsxs)("form",{onSubmit:G.handleSubmit(a=>K.mutate(a)),className:"max-h-[92vh] w-full max-w-3xl overflow-y-auto rounded-lg bg-surface p-6 shadow-soft",children:[(0,b.jsxs)("div",{className:"mb-5 flex items-center justify-between",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold",children:B?"Bearbeiten":"Neu"}),(0,b.jsx)("button",{type:"button",onClick:()=>E(!1),className:"icon-btn",children:(0,b.jsx)(j.X,{className:"h-4 w-4"})})]}),(0,b.jsx)("div",{className:"grid gap-4 sm:grid-cols-2",children:s.map(a=>(0,b.jsxs)("label",{className:"textarea"===a.type?"sm:col-span-2":"",children:[(0,b.jsx)("span",{className:"text-sm font-medium",children:a.label}),"select"===a.type?(0,b.jsxs)("select",{...G.register(a.name),className:"mt-2 h-11 w-full rounded-lg border border-border px-3",children:[(0,b.jsx)("option",{value:"",children:"Bitte waehlen"}),a.options?.map(a=>(0,b.jsx)("option",{value:a.value,children:a.label},a.value))]}):"textarea"===a.type?(0,b.jsx)("textarea",{...G.register(a.name),className:"mt-2 min-h-24 w-full rounded-lg border border-border px-3 py-2"}):(0,b.jsx)("input",{type:a.type??"text",...G.register(a.name),className:"mt-2 h-11 w-full rounded-lg border border-border px-3"}),G.formState.errors[a.name]&&(0,b.jsx)("span",{className:"mt-1 block text-xs text-danger",children:"Bitte gueltig ausfuellen."})]},a.name))}),K.isError&&(0,b.jsx)("p",{className:"mt-4 text-sm text-danger",children:"Speichern fehlgeschlagen. Bitte Eingaben pruefen."}),(0,b.jsxs)("div",{className:"mt-6 flex justify-end gap-3",children:[(0,b.jsx)("button",{type:"button",onClick:()=>E(!1),className:"btn btn-secondary",children:"Abbrechen"}),(0,b.jsxs)("button",{type:"submit",disabled:K.isPending,title:K.isPending?"Speichern laeuft...":void 0,className:"btn btn-primary",children:[K.isPending?(0,b.jsx)("span",{className:"spinner"}):null,K.isPending?"Speichern...":"Speichern"]})]})]})})]})}])},32623,a=>{"use strict";var b=a.i(87924),c=a.i(88780),d=a.i(57453);let e=c.z.object({customer_type:c.z.enum(["practice","clinic"]),name:c.z.string().min(2),street:c.z.string().optional().nullable(),postal_code:c.z.string().optional().nullable(),city:c.z.string().optional().nullable(),phone:c.z.string().optional().nullable(),email:c.z.union([c.z.string().email(),c.z.literal(""),c.z.null()]).optional(),hygiene_officer:c.z.string().optional().nullable(),quality_manager:c.z.string().optional().nullable(),notes:c.z.string().optional().nullable()});a.s(["default",0,function(){return(0,b.jsx)(d.CrudPage,{title:"Kunden",subtitle:"Praxen und Kliniken mit Kontakt- und Qualitaetsdaten.",endpoint:"/customers",columns:[{key:"name",label:"Name"},{key:"customer_type",label:"Typ"},{key:"city",label:"Ort"},{key:"phone",label:"Telefon"},{key:"email",label:"Mail"}],fields:[{name:"customer_type",label:"Typ",type:"select",options:[{label:"Praxis",value:"practice"},{label:"Klinik",value:"clinic"}]},{name:"name",label:"Name",required:!0},{name:"street",label:"Adresse"},{name:"postal_code",label:"PLZ"},{name:"city",label:"Ort"},{name:"phone",label:"Telefon"},{name:"email",label:"Mail",type:"email"},{name:"hygiene_officer",label:"Hygienebeauftragter"},{name:"quality_manager",label:"QM"},{name:"notes",label:"Bemerkungen",type:"textarea"}],schema:e,emptyValues:{customer_type:"practice",name:"",street:"",postal_code:"",city:"",phone:"",email:"",hygiene_officer:"",quality_manager:"",notes:""}})}])}]; +module.exports=[33508,a=>{"use strict";let b=(0,a.i(70106).default)("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]);a.s(["X",0,b],33508)},53250,a=>{"use strict";let b="/api/v1";async function c(a,b){let c=await a.text();if(!c)return b;try{let a=JSON.parse(c);return a.detail??a.message??c}catch{return c}}async function d(a,b){let c=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:a,password:b}),credentials:"include"});if(!c.ok){let a=Error(await c.text()||`HTTP ${c.status}`);throw a.status=c.status,a}return c.json()}async function e(a,c){let d=await fetch(`${b}${a}`,{cache:"no-store",credentials:"include"});if(!d.ok)throw Error(`API request failed: ${d.status}`);return d.json()}async function f(a,d,e,f){let g=await fetch(`${b}${a}`,{method:e,headers:{"Content-Type":"application/json"},body:JSON.stringify(f),credentials:"include"});if(!g.ok)throw Error(await c(g,`API request failed: ${g.status}`));return g.json()}async function g(a,d){let e=await fetch(`${b}${a}`,{method:"DELETE",credentials:"include"});if(!e.ok)throw Error(await c(e,`API request failed: ${e.status}`))}async function h(a,d,e){let f=await fetch(`${b}${a}`,{...e,headers:{"Content-Type":"application/json",...e?.headers??{}},credentials:"include"});if(!f.ok)throw Error(await c(f,`API request failed: ${f.status}`));return f.json()}a.s(["API_BASE",0,b,"apiDelete",0,g,"apiFetch",0,h,"apiGet",0,e,"apiSend",0,f,"login",0,d,"normalizeValidationPayload",0,function(a){return{...a,...Object.fromEntries(["contact_id","examiner_id"].map(b=>[b,a[b]||null]))}}])},87532,a=>{"use strict";let b=(0,a.i(70106).default)("Search",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);a.s(["Search",0,b],87532)},81560,a=>{"use strict";let b=(0,a.i(70106).default)("Trash2",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]]);a.s(["Trash2",0,b],81560)},10448,a=>{"use strict";let b=(0,a.i(70106).default)("Pen",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]]);a.s(["Edit2",0,b],10448)},57453,a=>{"use strict";var b=a.i(87924),c=a.i(59501),d=a.i(70025),e=a.i(33217),f=a.i(37927),g=a.i(10448),h=a.i(87532),i=a.i(81560),j=a.i(33508),k=a.i(72131),l=a.i(95245),m=a.i(12314),n=a.i(53250);function o(a){return null==a?"":String(a)}a.s(["CrudPage",0,function({title:a,subtitle:p,endpoint:q,columns:r,fields:s,schema:t,emptyValues:u}){let{token:v}=(0,m.useAuth)(),w=(0,f.useQueryClient)(),[x,y]=(0,k.useState)(1),[z,A]=(0,k.useState)(""),[B,C]=(0,k.useState)(null),[D,E]=(0,k.useState)(!1),F=`${q}?page=${x}&page_size=10&search=${encodeURIComponent(z)}`,G=(0,l.useForm)({resolver:(0,c.zodResolver)(t),defaultValues:u}),H=(0,e.useQuery)({queryKey:[q,x,10,z,v],queryFn:()=>(0,n.apiGet)(F,v??""),enabled:!!v}),I=Math.max(1,Math.ceil((H.data?.total??0)/10)),J=()=>w.invalidateQueries({queryKey:[q]}),K=(0,d.useMutation)({mutationFn:a=>{let b=Object.fromEntries(Object.entries(a).map(([a,b])=>[a,""===b?null:b]));return(0,n.apiSend)(B?`${q}/${B.id}`:q,v??"",B?"PUT":"POST",b)},onSuccess:()=>{E(!1),C(null),G.reset(u),J()}}),L=(0,d.useMutation)({mutationFn:a=>(0,n.apiDelete)(`${q}/${a.id}`,v??""),onSuccess:J}),M=(0,k.useMemo)(()=>H.data?.items??[],[H.data]);return(0,b.jsxs)("div",{className:"space-y-6",children:[(0,b.jsxs)("header",{className:"flex flex-col justify-between gap-4 sm:flex-row sm:items-center",children:[(0,b.jsxs)("div",{children:[(0,b.jsx)("h1",{className:"text-3xl font-semibold text-text",children:a}),(0,b.jsx)("p",{className:"mt-2 text-text-light",children:p})]}),(0,b.jsx)("button",{onClick:function(){C(null),G.reset(u),E(!0)},className:"btn btn-primary h-12",children:"Neu"})]}),(0,b.jsxs)("div",{className:"flex items-center gap-3 rounded-lg border border-border bg-surface px-4 py-3 shadow-soft",children:[(0,b.jsx)(h.Search,{className:"h-5 w-5 text-primary"}),(0,b.jsx)("input",{value:z,onChange:a=>{y(1),A(a.target.value)},placeholder:"Suchen",className:"h-9 flex-1 bg-transparent outline-none"})]}),(0,b.jsx)("section",{className:"overflow-hidden rounded-lg border border-border bg-surface shadow-soft",children:(0,b.jsx)("div",{className:"overflow-x-auto",children:(0,b.jsxs)("table",{className:"min-w-full text-left text-sm",children:[(0,b.jsx)("thead",{className:"bg-background text-xs uppercase text-text-light",children:(0,b.jsxs)("tr",{children:[r.map(a=>(0,b.jsx)("th",{className:"px-5 py-4",children:a.label},String(a.key))),(0,b.jsx)("th",{className:"px-5 py-4 text-right",children:"Aktionen"})]})}),(0,b.jsxs)("tbody",{className:"divide-y divide-border",children:[M.map(a=>(0,b.jsxs)("tr",{className:"hover:bg-accent/10",children:[r.map(c=>(0,b.jsx)("td",{className:"whitespace-nowrap px-5 py-4",children:o(a[c.key])},String(c.key))),(0,b.jsx)("td",{className:"px-5 py-4",children:(0,b.jsxs)("div",{className:"flex justify-end gap-2",children:[(0,b.jsx)("button",{"aria-label":"Bearbeiten",title:"Bearbeiten",onClick:()=>{C(a),G.reset(Object.fromEntries(Object.keys(u).map(b=>[b,o(a[b])]))),E(!0)},className:"icon-btn text-primary-dark",children:(0,b.jsx)(g.Edit2,{className:"h-4 w-4"})}),(0,b.jsx)("button",{"aria-label":"Loeschen",title:L.isPending?"Loeschen laeuft...":"Loeschen",disabled:L.isPending,onClick:()=>L.mutate(a),className:"icon-btn text-danger",children:L.isPending?(0,b.jsx)("span",{className:"spinner"}):(0,b.jsx)(i.Trash2,{className:"h-4 w-4"})})]})})]},a.id)),!H.isLoading&&0===M.length&&(0,b.jsx)("tr",{children:(0,b.jsx)("td",{colSpan:r.length+1,className:"px-5 py-10 text-center text-text-light",children:"Keine Datensaetze gefunden."})})]})]})})}),(0,b.jsxs)("footer",{className:"flex items-center justify-between text-sm text-text-light",children:[(0,b.jsxs)("span",{children:[H.data?.total??0," Datensaetze"]}),(0,b.jsxs)("div",{className:"flex items-center gap-3",children:[(0,b.jsx)("button",{disabled:x<=1,title:x<=1?"Erste Seite erreicht":void 0,onClick:()=>y(a=>a-1),className:"btn btn-secondary",children:"Zurueck"}),(0,b.jsxs)("span",{children:["Seite ",x," von ",I]}),(0,b.jsx)("button",{disabled:x>=I,title:x>=I?"Letzte Seite erreicht":void 0,onClick:()=>y(a=>a+1),className:"btn btn-secondary",children:"Weiter"})]})]}),D&&(0,b.jsx)("div",{className:"fixed inset-0 z-50 flex items-end bg-black/20 p-3 sm:items-center sm:justify-center",children:(0,b.jsxs)("form",{onSubmit:G.handleSubmit(a=>K.mutate(a)),className:"max-h-[92vh] w-full max-w-3xl overflow-y-auto rounded-lg bg-surface p-6 shadow-soft",children:[(0,b.jsxs)("div",{className:"mb-5 flex items-center justify-between",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold",children:B?"Bearbeiten":"Neu"}),(0,b.jsx)("button",{type:"button",onClick:()=>E(!1),className:"icon-btn",children:(0,b.jsx)(j.X,{className:"h-4 w-4"})})]}),(0,b.jsx)("div",{className:"grid gap-4 sm:grid-cols-2",children:s.map(a=>(0,b.jsxs)("label",{className:"textarea"===a.type?"sm:col-span-2":"",children:[(0,b.jsx)("span",{className:"text-sm font-medium",children:a.label}),"select"===a.type?(0,b.jsxs)("select",{...G.register(a.name),className:"mt-2 h-11 w-full rounded-lg border border-border px-3",children:[(0,b.jsx)("option",{value:"",children:"Bitte waehlen"}),a.options?.map(a=>(0,b.jsx)("option",{value:a.value,children:a.label},a.value))]}):"textarea"===a.type?(0,b.jsx)("textarea",{...G.register(a.name),className:"mt-2 min-h-24 w-full rounded-lg border border-border px-3 py-2"}):(0,b.jsx)("input",{type:a.type??"text",...G.register(a.name),className:"mt-2 h-11 w-full rounded-lg border border-border px-3"}),G.formState.errors[a.name]&&(0,b.jsx)("span",{className:"mt-1 block text-xs text-danger",children:"Bitte gueltig ausfuellen."})]},a.name))}),K.isError&&(0,b.jsx)("p",{className:"mt-4 text-sm text-danger",children:"Speichern fehlgeschlagen. Bitte Eingaben pruefen."}),(0,b.jsxs)("div",{className:"mt-6 flex justify-end gap-3",children:[(0,b.jsx)("button",{type:"button",onClick:()=>E(!1),className:"btn btn-secondary",children:"Abbrechen"}),(0,b.jsxs)("button",{type:"submit",disabled:K.isPending,title:K.isPending?"Speichern laeuft...":void 0,className:"btn btn-primary",children:[K.isPending?(0,b.jsx)("span",{className:"spinner"}):null,K.isPending?"Speichern...":"Speichern"]})]})]})})]})}])},32623,a=>{"use strict";var b=a.i(87924),c=a.i(88780),d=a.i(57453);let e=c.z.object({customer_type:c.z.enum(["practice","clinic"]),source_system:c.z.string().optional().nullable(),external_id:c.z.string().optional().nullable(),name:c.z.string().min(2),street:c.z.string().optional().nullable(),postal_code:c.z.string().optional().nullable(),city:c.z.string().optional().nullable(),phone:c.z.string().optional().nullable(),email:c.z.union([c.z.string().email(),c.z.literal(""),c.z.null()]).optional(),hygiene_officer:c.z.string().optional().nullable(),quality_manager:c.z.string().optional().nullable(),notes:c.z.string().optional().nullable()});a.s(["default",0,function(){return(0,b.jsx)(d.CrudPage,{title:"Kunden",subtitle:"Praxen und Kliniken mit Kontakt- und Qualitaetsdaten.",endpoint:"/customers",columns:[{key:"name",label:"Name"},{key:"external_id",label:"Kundennr."},{key:"customer_type",label:"Typ"},{key:"city",label:"Ort"},{key:"phone",label:"Telefon"},{key:"email",label:"Mail"}],fields:[{name:"customer_type",label:"Typ",type:"select",options:[{label:"Praxis",value:"practice"},{label:"Klinik",value:"clinic"}]},{name:"source_system",label:"Quellsystem"},{name:"external_id",label:"Kundennummer"},{name:"name",label:"Name",required:!0},{name:"street",label:"Adresse"},{name:"postal_code",label:"PLZ"},{name:"city",label:"Ort"},{name:"phone",label:"Telefon"},{name:"email",label:"Mail",type:"email"},{name:"hygiene_officer",label:"Hygienebeauftragter"},{name:"quality_manager",label:"QM"},{name:"notes",label:"Bemerkungen",type:"textarea"}],schema:e,emptyValues:{customer_type:"practice",source_system:"",external_id:"",name:"",street:"",postal_code:"",city:"",phone:"",email:"",hygiene_officer:"",quality_manager:"",notes:""}})}])}]; //# sourceMappingURL=_0iy5o-h._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0iy5o-h._.js.map b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0iy5o-h._.js.map index 5d5db6ea..8892b086 100644 --- a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0iy5o-h._.js.map +++ b/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0iy5o-h._.js.map @@ -1 +1 @@ -{"version":3,"sources":["../../../../node_modules/lucide-react/src/icons/x.ts","../../../../lib/api.ts","../../../../node_modules/lucide-react/src/icons/search.ts","../../../../node_modules/lucide-react/src/icons/trash-2.ts","../../../../node_modules/lucide-react/src/icons/pen.ts","../../../../components/crud-page.tsx","../../../../app/%28app%29/customers/page.tsx"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name X\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTggNiA2IDE4IiAvPgogIDxwYXRoIGQ9Im02IDYgMTIgMTIiIC8+Cjwvc3ZnPgo=) - https://lucide.dev/icons/x\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst X = createLucideIcon('X', [\n ['path', { d: 'M18 6 6 18', key: '1bl5f8' }],\n ['path', { d: 'm6 6 12 12', key: 'd8bk6v' }],\n]);\n\nexport default X;\n","export const API_BASE = \"/api/v1\";\n\nexport type Entity = {\n id: string;\n created_at: string;\n updated_at: string;\n};\n\nexport type Customer = Entity & {\n customer_type: \"practice\" | \"clinic\";\n name: string;\n city?: string | null;\n phone?: string | null;\n email?: string | null;\n hygiene_officer?: string | null;\n quality_manager?: string | null;\n notes?: string | null;\n};\n\nexport type Location = Entity & {\n customer_id: string;\n name: string;\n street?: string | null;\n postal_code?: string | null;\n city?: string | null;\n room?: string | null;\n};\n\nexport type Contact = Entity & {\n customer_id: string;\n full_name: string;\n function?: string | null;\n email?: string | null;\n phone?: string | null;\n};\n\nexport type Device = Entity & {\n customer_id: string;\n location_id?: string | null;\n manufacturer: string;\n model: string;\n serial_number: string;\n device_type?: string | null;\n year_built?: number | null;\n commissioned_on?: string | null;\n chamber_volume_liters?: number | null;\n steam_generation?: string | null;\n water_treatment?: string | null;\n documentation?: string | null;\n supplier?: string | null;\n};\n\nexport type Equipment = Entity & {\n kind: string;\n manufacturer?: string | null;\n model?: string | null;\n serial_number: string;\n calibrated_on?: string | null;\n calibration_due_on?: string | null;\n certificate_document_id?: string | null;\n status: \"green\" | \"yellow\" | \"red\";\n};\n\nexport type User = Entity & {\n email: string;\n first_name: string;\n last_name: string;\n role: \"admin\" | \"pruefer\" | \"mitarbeiter\" | \"leser\";\n is_active: boolean;\n must_change_password: boolean;\n last_login_at?: string | null;\n password_changed_at?: string | null;\n};\n\nexport type ValidationItem = Entity & {\n report_number: string;\n customer_id: string;\n location_id?: string | null;\n contact_id?: string | null;\n device_id?: string | null;\n validation_type: string;\n project?: string | null;\n test_location?: string | null;\n examiner_name?: string | null;\n participants?: string | null;\n operator_name?: string | null;\n status: string;\n result?: string | null;\n scheduled_on?: string | null;\n performed_on?: string | null;\n next_validation_on?: string | null;\n revalidation_interval_months: number;\n next_validation_manually_overridden: boolean;\n version: number;\n previous_validation_id?: string | null;\n equipment_ids: string[];\n environment_conditions: Record;\n documentation_checklist: Record[];\n performance_checklist: Record[];\n programs: Record[];\n loading_patterns: Record[];\n measurement_data: Record[];\n drying: Record;\n recommendations: Record[];\n attachments: Record[];\n};\n\nexport type QuickStartValidationSummary = {\n id: string;\n device_id: string;\n report_number: string;\n performed_on?: string | null;\n result?: string | null;\n next_validation_on?: string | null;\n status: string;\n validation_type?: string | null;\n equipment_ids: string[];\n};\n\nexport type QuickStartCustomerData = {\n customer: Customer;\n locations: Location[];\n contacts: Contact[];\n devices: Device[];\n validations: QuickStartValidationSummary[];\n};\n\nexport function normalizeValidationPayload>(values: T): T {\n const optionalForeignKeys = [\"contact_id\", \"examiner_id\"];\n return {\n ...values,\n ...Object.fromEntries(optionalForeignKeys.map((key) => [key, values[key] || null]))\n };\n}\n\nexport type Paginated = {\n items: T[];\n total: number;\n page: number;\n page_size: number;\n pages?: number;\n};\n\nasync function readErrorMessage(response: Response, fallback: string) {\n const text = await response.text();\n if (!text) {\n return fallback;\n }\n try {\n const parsed = JSON.parse(text) as { detail?: string; message?: string };\n return parsed.detail ?? parsed.message ?? text;\n } catch {\n return text;\n }\n}\n\nexport async function login(email: string, password: string) {\n const response = await fetch(`/api/login`, {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ email, password }),\n credentials: \"include\"\n });\n if (!response.ok) {\n const detail = await response.text();\n const error = new Error(detail || `HTTP ${response.status}`) as Error & { status?: number };\n error.status = response.status;\n throw error;\n }\n return response.json() as Promise<{ user: User; expires_in: number }>;\n}\n\nexport async function apiGet(path: string, token: string): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n cache: \"no-store\",\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(`API request failed: ${response.status}`);\n }\n return response.json() as Promise;\n}\n\nexport async function apiSend(path: string, token: string, method: \"POST\" | \"PUT\", body: unknown): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n method,\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify(body),\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n return response.json() as Promise;\n}\n\nexport async function apiDelete(path: string, token: string): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n method: \"DELETE\",\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n}\n\nexport async function apiFetch(path: string, token: string, init?: RequestInit): Promise {\n const response = await fetch(`${API_BASE}${path}`, {\n ...init,\n headers: { \"Content-Type\": \"application/json\", ...(init?.headers ?? {}) },\n credentials: \"include\"\n });\n if (!response.ok) {\n throw new Error(await readErrorMessage(response, `API request failed: ${response.status}`));\n }\n return response.json() as Promise;\n}\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Search\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8Y2lyY2xlIGN4PSIxMSIgY3k9IjExIiByPSI4IiAvPgogIDxwYXRoIGQ9Im0yMSAyMS00LjMtNC4zIiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/search\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Search = createLucideIcon('Search', [\n ['circle', { cx: '11', cy: '11', r: '8', key: '4ej97u' }],\n ['path', { d: 'm21 21-4.3-4.3', key: '1qie3q' }],\n]);\n\nexport default Search;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Trash2\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMyA2aDE4IiAvPgogIDxwYXRoIGQ9Ik0xOSA2djE0YzAgMS0xIDItMiAySDdjLTEgMC0yLTEtMi0yVjYiIC8+CiAgPHBhdGggZD0iTTggNlY0YzAtMSAxLTIgMi0yaDRjMSAwIDIgMSAyIDJ2MiIgLz4KICA8bGluZSB4MT0iMTAiIHgyPSIxMCIgeTE9IjExIiB5Mj0iMTciIC8+CiAgPGxpbmUgeDE9IjE0IiB4Mj0iMTQiIHkxPSIxMSIgeTI9IjE3IiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/trash-2\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Trash2 = createLucideIcon('Trash2', [\n ['path', { d: 'M3 6h18', key: 'd0wm0j' }],\n ['path', { d: 'M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6', key: '4alrt4' }],\n ['path', { d: 'M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2', key: 'v07s0e' }],\n ['line', { x1: '10', x2: '10', y1: '11', y2: '17', key: '1uufr5' }],\n ['line', { x1: '14', x2: '14', y1: '11', y2: '17', key: 'xtxkd' }],\n]);\n\nexport default Trash2;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Pen\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMjEuMTc0IDYuODEyYTEgMSAwIDAgMC0zLjk4Ni0zLjk4N0wzLjg0MiAxNi4xNzRhMiAyIDAgMCAwLS41LjgzbC0xLjMyMSA0LjM1MmEuNS41IDAgMCAwIC42MjMuNjIybDQuMzUzLTEuMzJhMiAyIDAgMCAwIC44My0uNDk3eiIgLz4KPC9zdmc+Cg==) - https://lucide.dev/icons/pen\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Pen = createLucideIcon('Pen', [\n [\n 'path',\n {\n d: 'M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z',\n key: '1a8usu',\n },\n ],\n]);\n\nexport default Pen;\n","\"use client\";\n\nimport { zodResolver } from \"@hookform/resolvers/zod\";\nimport { useMutation, useQuery, useQueryClient } from \"@tanstack/react-query\";\nimport { Edit2, Search, Trash2, X } from \"lucide-react\";\nimport { useMemo, useState } from \"react\";\nimport { useForm } from \"react-hook-form\";\nimport { z } from \"zod\";\nimport { useAuth } from \"@/components/auth\";\nimport { apiDelete, apiGet, apiSend, Entity, Paginated } from \"@/lib/api\";\n\nexport type FieldOption = { label: string; value: string };\nexport type FieldConfig = {\n name: string;\n label: string;\n type?: \"text\" | \"email\" | \"number\" | \"date\" | \"textarea\" | \"select\";\n required?: boolean;\n options?: FieldOption[];\n};\nexport type ColumnConfig = { key: keyof T; label: string };\n\nfunction valueForInput(value: unknown) {\n return value === null || value === undefined ? \"\" : String(value);\n}\n\nexport function CrudPage({\n title,\n subtitle,\n endpoint,\n columns,\n fields,\n schema,\n emptyValues\n}: {\n title: string;\n subtitle: string;\n endpoint: string;\n columns: ColumnConfig[];\n fields: FieldConfig[];\n schema: z.ZodTypeAny;\n emptyValues: Record;\n}) {\n const { token } = useAuth();\n const client = useQueryClient();\n const [page, setPage] = useState(1);\n const [search, setSearch] = useState(\"\");\n const [editing, setEditing] = useState(null);\n const [open, setOpen] = useState(false);\n const pageSize = 10;\n const queryPath = `${endpoint}?page=${page}&page_size=${pageSize}&search=${encodeURIComponent(search)}`;\n const form = useForm>({\n resolver: zodResolver(schema),\n defaultValues: emptyValues\n });\n\n const query = useQuery({\n queryKey: [endpoint, page, pageSize, search, token],\n queryFn: () => apiGet>(queryPath, token ?? \"\"),\n enabled: Boolean(token)\n });\n\n const totalPages = Math.max(1, Math.ceil((query.data?.total ?? 0) / pageSize));\n const invalidate = () => client.invalidateQueries({ queryKey: [endpoint] });\n\n const saveMutation = useMutation({\n mutationFn: (values: Record) => {\n const cleaned = Object.fromEntries(\n Object.entries(values).map(([key, value]) => [key, value === \"\" ? null : value])\n );\n return apiSend(editing ? `${endpoint}/${editing.id}` : endpoint, token ?? \"\", editing ? \"PUT\" : \"POST\", cleaned);\n },\n onSuccess: () => {\n setOpen(false);\n setEditing(null);\n form.reset(emptyValues);\n invalidate();\n }\n });\n\n const deleteMutation = useMutation({\n mutationFn: (item: T) => apiDelete(`${endpoint}/${item.id}`, token ?? \"\"),\n onSuccess: invalidate\n });\n\n const rows = useMemo(() => query.data?.items ?? [], [query.data]);\n\n function startCreate() {\n setEditing(null);\n form.reset(emptyValues);\n setOpen(true);\n }\n\n function startEdit(item: T) {\n setEditing(item);\n form.reset(Object.fromEntries(Object.keys(emptyValues).map((key) => [key, valueForInput(item[key as keyof T])])));\n setOpen(true);\n }\n\n return (\n
\n
\n
\n

{title}

\n

{subtitle}

\n
\n \n
\n\n
\n \n {\n setPage(1);\n setSearch(event.target.value);\n }}\n placeholder=\"Suchen\"\n className=\"h-9 flex-1 bg-transparent outline-none\"\n />\n
\n\n
\n
\n \n \n \n {columns.map((column) => )}\n \n \n \n \n {rows.map((item) => (\n \n {columns.map((column) => )}\n \n \n ))}\n {!query.isLoading && rows.length === 0 && (\n \n )}\n \n
{column.label}Aktionen
{valueForInput(item[column.key])}\n
\n \n \n
\n
Keine Datensaetze gefunden.
\n
\n
\n\n
\n {query.data?.total ?? 0} Datensaetze\n
\n \n Seite {page} von {totalPages}\n \n
\n
\n\n {open && (\n
\n
saveMutation.mutate(values))} className=\"max-h-[92vh] w-full max-w-3xl overflow-y-auto rounded-lg bg-surface p-6 shadow-soft\">\n
\n

{editing ? \"Bearbeiten\" : \"Neu\"}

\n \n
\n
\n {fields.map((field) => (\n

Autosave startet nach Ausfuellen der Pflichtfelder.

Fehlt: Berichtsnummer, Kunde, Standort, Geraet, Pruefer

\ No newline at end of file +Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.rsc b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.rsc index 63ae83fc..b80a7f39 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.rsc +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.rsc @@ -4,21 +4,21 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] -a:I[57344,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/1diubaxj1tclp.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/2975f5i-zcw63.js"],"default"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] +a:I[57344,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/1diubaxj1tclp.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/43zs1l-r-4ddz.js"],"default"] b:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] c:"$Sreact.suspense" f:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 11:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 13:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","validations","new"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["new",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{}],[["$","script","script-0",{"src":"/_next/static/chunks/1diubaxj1tclp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/2975f5i-zcw63.js","async":true,"nonce":"$undefined"}]],["$","$Lb",null,{"children":["$","$c",null,{"name":"Next.MetadataOutlet","children":"$@d"}]}]]}],{},null,false,null]},null,false,"$@e"]},null,false,"$@e"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$Lf",null,{"children":"$L10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":"$L12"}]}],null]}],false]],"m":"$undefined","G":["$13",["$L14"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","validations","new"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["new",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{}],[["$","script","script-0",{"src":"/_next/static/chunks/1diubaxj1tclp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/43zs1l-r-4ddz.js","async":true,"nonce":"$undefined"}]],["$","$Lb",null,{"children":["$","$c",null,{"name":"Next.MetadataOutlet","children":"$@d"}]}]]}],{},null,false,null]},null,false,"$@e"]},null,false,"$@e"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$Lf",null,{"children":"$L10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":"$L12"}]}],null]}],false]],"m":"$undefined","G":["$13",["$L14"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 15:[] e:"$W15" 12:["$","$c",null,{"name":"Next.Metadata","children":"$L16"}] -14:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +14:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] 10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 17:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] d:null diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/!KGFwcCk.segment.rsc b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/!KGFwcCk.segment.rsc index 6bd49286..1763d71a 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/!KGFwcCk.segment.rsc +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/!KGFwcCk.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" -2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] 5:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 7:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] 8:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/!KGFwcCk/validations.segment.rsc b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/!KGFwcCk/validations.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/!KGFwcCk/validations.segment.rsc +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/!KGFwcCk/validations.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/!KGFwcCk/validations/new.segment.rsc b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/!KGFwcCk/validations/new.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/!KGFwcCk/validations/new.segment.rsc +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/!KGFwcCk/validations/new.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/!KGFwcCk/validations/new/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/!KGFwcCk/validations/new/__PAGE__.segment.rsc index c1910d2d..0de096fc 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/!KGFwcCk/validations/new/__PAGE__.segment.rsc +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/!KGFwcCk/validations/new/__PAGE__.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" -2:I[57344,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/1diubaxj1tclp.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/2975f5i-zcw63.js"],"default"] +2:I[57344,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/1diubaxj1tclp.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/43zs1l-r-4ddz.js"],"default"] 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 4:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{}],[["$","script","script-0",{"src":"/_next/static/chunks/1diubaxj1tclp.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/2975f5i-zcw63.js","async":true}]],["$","$L3",null,{"children":["$","$4",null,{"name":"Next.MetadataOutlet","children":"$@5"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{}],[["$","script","script-0",{"src":"/_next/static/chunks/1diubaxj1tclp.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/43zs1l-r-4ddz.js","async":true}]],["$","$L3",null,{"children":["$","$4",null,{"name":"Next.MetadataOutlet","children":"$@5"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} 5:null diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/_full.segment.rsc index 63ae83fc..b80a7f39 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/_full.segment.rsc +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/_full.segment.rsc @@ -4,21 +4,21 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] -a:I[57344,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/1diubaxj1tclp.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/2975f5i-zcw63.js"],"default"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] +a:I[57344,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/1diubaxj1tclp.js","/_next/static/chunks/3ltfzh6dxauii.js","/_next/static/chunks/43zs1l-r-4ddz.js"],"default"] b:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] c:"$Sreact.suspense" f:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 11:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 13:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","validations","new"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["new",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{}],[["$","script","script-0",{"src":"/_next/static/chunks/1diubaxj1tclp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/2975f5i-zcw63.js","async":true,"nonce":"$undefined"}]],["$","$Lb",null,{"children":["$","$c",null,{"name":"Next.MetadataOutlet","children":"$@d"}]}]]}],{},null,false,null]},null,false,"$@e"]},null,false,"$@e"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$Lf",null,{"children":"$L10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":"$L12"}]}],null]}],false]],"m":"$undefined","G":["$13",["$L14"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","validations","new"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["new",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{}],[["$","script","script-0",{"src":"/_next/static/chunks/1diubaxj1tclp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3ltfzh6dxauii.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/43zs1l-r-4ddz.js","async":true,"nonce":"$undefined"}]],["$","$Lb",null,{"children":["$","$c",null,{"name":"Next.MetadataOutlet","children":"$@d"}]}]]}],{},null,false,null]},null,false,"$@e"]},null,false,"$@e"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$Lf",null,{"children":"$L10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":"$L12"}]}],null]}],false]],"m":"$undefined","G":["$13",["$L14"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 15:[] e:"$W15" 12:["$","$c",null,{"name":"Next.Metadata","children":"$L16"}] -14:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +14:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] 10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 17:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] d:null diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/_head.segment.rsc index faf657ea..97a8c0f0 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/_head.segment.rsc +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/_head.segment.rsc @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/_index.segment.rsc index 7b4ced23..c4bd1ed2 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/_index.segment.rsc +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/_index.segment.rsc @@ -4,5 +4,5 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/_tree.segment.rsc index 0f690e2b..212ca85d 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/_tree.segment.rsc +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/new.segments/_tree.segment.rsc @@ -1,2 +1,2 @@ -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"validations","param":null,"prefetchHints":0,"slots":{"children":{"name":"new","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}}}},"staleTime":300,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"validations","param":null,"prefetchHints":0,"slots":{"children":{"name":"new","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.html b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.html index 5e12cc15..4c2036f6 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.html +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.html @@ -1,2 +1,2 @@ -Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file +Validation Suite
SCHUBAMED Validation Suite
Validation Suite wird geladen.
\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.rsc b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.rsc index c9a1351b..b9d3a41c 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.rsc +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[55557,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/0t7m1oc6w_u-y.js"],"default"] +b:I[55557,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0t7m1oc6w_u-y.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","validations","quick-start"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["quick-start",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0t7m1oc6w_u-y.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","validations","quick-start"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["quick-start",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0t7m1oc6w_u-y.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/!KGFwcCk.segment.rsc b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/!KGFwcCk.segment.rsc index 6bd49286..1763d71a 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/!KGFwcCk.segment.rsc +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/!KGFwcCk.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" -2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +2:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +3:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +4:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] 5:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 7:I[5500,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],"Image"] 8:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true}]],["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","template":["$","$L6",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L7",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L8",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations.segment.rsc b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations.segment.rsc +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations/quick-start.segment.rsc b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations/quick-start.segment.rsc index dad39cdb..9ebd02d3 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations/quick-start.segment.rsc +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations/quick-start.segment.rsc @@ -2,4 +2,4 @@ 2:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 3:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations/quick-start/__PAGE__.segment.rsc b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations/quick-start/__PAGE__.segment.rsc index f7307f25..6a9a960a 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations/quick-start/__PAGE__.segment.rsc +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/!KGFwcCk/validations/quick-start/__PAGE__.segment.rsc @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -3:I[55557,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/0t7m1oc6w_u-y.js"],"default"] +3:I[55557,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0t7m1oc6w_u-y.js"],"default"] 6:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0t7m1oc6w_u-y.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0t7m1oc6w_u-y.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/_full.segment.rsc b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/_full.segment.rsc index c9a1351b..b9d3a41c 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/_full.segment.rsc +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/_full.segment.rsc @@ -4,18 +4,18 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AuthProvider"] -8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"QueryProvider"] -9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js"],"AppShell"] +7:I[28779,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AuthProvider"] +8:I[24487,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"QueryProvider"] +9:I[48026,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js"],"AppShell"] a:I[47257,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ClientPageRoot"] -b:I[55557,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3_bqwdscuc1c8.js","/_next/static/chunks/0t7m1oc6w_u-y.js"],"default"] +b:I[55557,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/05xkqica3e3uw.js","/_next/static/chunks/0t7m1oc6w_u-y.js"],"default"] e:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"OutletBoundary"] f:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"ViewportBoundary"] 14:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 16:I[68027,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default",1] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"P":null,"c":["","validations","quick-start"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["quick-start",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/3_bqwdscuc1c8.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0t7m1oc6w_u-y.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"P":null,"c":["","validations","quick-start"],"q":"","i":false,"f":[[["",{"children":["(app)",{"children":["validations",{"children":["quick-start",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",20],[["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}]}],{"children":[["$","$3","c",{"children":[[["$","script","script-0",{"src":"/_next/static/chunks/05xkqica3e3uw.js","async":true,"nonce":"$undefined"}]],["$","$L7",null,{"children":["$","$L8",null,{"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$3","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0t7m1oc6w_u-y.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,"$@11"]},null,false,null]},null,false,null],["$","$3","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],null]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"MO_FrTIQMTyIgUY4at_vj"} 17:[] 11:"$W17" c:{} diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/_head.segment.rsc b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/_head.segment.rsc index faf657ea..97a8c0f0 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/_head.segment.rsc +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/_head.segment.rsc @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Validation Suite"}],["$","meta","1",{"name":"description","content":"Professionelle Validierungsplattform fuer medizinische Prozesse"}],["$","link","2",{"rel":"icon","href":"/icon.svg?icon.3qohsuqgxm60_.svg","sizes":"any","type":"image/svg+xml"}],["$","$L5","3",{}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/_index.segment.rsc b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/_index.segment.rsc index 7b4ced23..c4bd1ed2 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/_index.segment.rsc +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/_index.segment.rsc @@ -4,5 +4,5 @@ 4:I[39756,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 5:I[37457,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js"],"default"] 6:I[22016,["/_next/static/chunks/05-c3ty_6dwfk.js","/_next/static/chunks/14mrh2-p_w84d.js","/_next/static/chunks/3ehzmerq6j-54.js"],""] -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/33g7vuk7-89na.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"rsc":["$","$L1",null,{"loading":[["$","main","l",{"className":"flex min-h-screen items-center justify-center bg-background","children":["$","div",null,{"className":"rounded-lg border border-border bg-surface p-8 shadow-soft","children":[["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}],["$","div",null,{"className":"mt-6 flex items-center justify-center gap-3 text-text-light","children":[["$","span",null,{"className":"spinner"}],["$","span",null,{"children":"Validation Suite wird geladen."}]]}]]}]}],[],[["$","script","script-0",{"src":"/_next/static/chunks/34jc288cp41wf.js","async":true}]]],"children":["$","$3","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/3yh08fx1c3mlz.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/05-c3ty_6dwfk.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/14mrh2-p_w84d.js","async":true}]],["$","html",null,{"lang":"de","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-background px-4","children":["$","section",null,{"className":"w-full max-w-lg rounded-lg border border-border bg-surface p-8 text-center shadow-soft","children":[["$","div",null,{"className":"flex justify-center","children":["$","div",null,{"className":"flex items-center gap-3","children":["$","$L2",null,{"src":"/schubamed-logo.svg","alt":"SCHUBAMED Validation Suite","width":240,"height":64,"priority":true}]}]}],["$","h1",null,{"className":"mt-8 text-3xl font-semibold","children":"Seite nicht gefunden"}],["$","p",null,{"className":"mt-3 text-text-light","children":"Die angeforderte Seite ist nicht vorhanden oder wurde verschoben."}],["$","$L6",null,{"href":"/dashboard","className":"btn btn-primary mt-6","children":"Zum Dashboard"}]]}]}],[]]}]}]}]]}]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/_tree.segment.rsc b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/_tree.segment.rsc index da895602..5a43493e 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/_tree.segment.rsc +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/app/validations/quick-start.segments/_tree.segment.rsc @@ -1,2 +1,2 @@ -:HL["/_next/static/chunks/33g7vuk7-89na.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"validations","param":null,"prefetchHints":0,"slots":{"children":{"name":"quick-start","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}}}},"staleTime":300,"buildId":"T1Sq4P6mWswk2NfmBZrTz"} +:HL["/_next/static/chunks/3yh08fx1c3mlz.css","style"] +0:{"tree":{"name":"","param":null,"prefetchHints":20,"slots":{"children":{"name":"(app)","param":null,"prefetchHints":0,"slots":{"children":{"name":"validations","param":null,"prefetchHints":0,"slots":{"children":{"name":"quick-start","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}}}},"staleTime":300,"buildId":"MO_FrTIQMTyIgUY4at_vj"} diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/[root-of-the-server]__0r7ghc3._.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/[root-of-the-server]__0r7ghc3._.js new file mode 100644 index 00000000..517f988b --- /dev/null +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/[root-of-the-server]__0r7ghc3._.js @@ -0,0 +1,3 @@ +module.exports=[93695,(e,t,r)=>{t.exports=e.x("next/dist/shared/lib/no-fallback-error.external.js",()=>require("next/dist/shared/lib/no-fallback-error.external.js"))},18622,(e,t,r)=>{t.exports=e.x("next/dist/compiled/next-server/app-page-turbo.runtime.prod.js",()=>require("next/dist/compiled/next-server/app-page-turbo.runtime.prod.js"))},56704,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/work-async-storage.external.js",()=>require("next/dist/server/app-render/work-async-storage.external.js"))},32319,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/work-unit-async-storage.external.js",()=>require("next/dist/server/app-render/work-unit-async-storage.external.js"))},24725,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/after-task-async-storage.external.js",()=>require("next/dist/server/app-render/after-task-async-storage.external.js"))},70406,(e,t,r)=>{t.exports=e.x("next/dist/compiled/@opentelemetry/api",()=>require("next/dist/compiled/@opentelemetry/api"))},56452,e=>{"use strict";var t=e.i(47909),r=e.i(74017),a=e.i(96250),n=e.i(59756),s=e.i(61916),i=e.i(74677),o=e.i(69741),l=e.i(16795),d=e.i(87718),u=e.i(95169),p=e.i(47587),c=e.i(66012),h=e.i(70101),v=e.i(26937),x=e.i(10372),R=e.i(93695);e.i(52474);var m=e.i(220),w=e.i(93458),g=e.i(89171),f=e.i(68105);let E=`${process.env.MERCURY_INTERNAL_URL??"http://mercury-api:8000"}/api/v1`;async function C(e){let t=await (0,w.cookies)(),r=t.get(f.AUTH_COOKIE_NAME)?.value;if(!r)return g.NextResponse.json({detail:"Not authenticated"},{status:401});let a=await fetch(`${E}/customer-imports/preview`,{method:"POST",headers:{Authorization:`Bearer ${r}`},body:await e.formData(),cache:"no-store"}),n=await a.json();return g.NextResponse.json(n,{status:a.status})}e.s(["POST",0,C],69878);var y=e.i(69878);let A=new t.AppRouteRouteModule({definition:{kind:r.RouteKind.APP_ROUTE,page:"/api/customer-imports/preview/route",pathname:"/api/customer-imports/preview",filename:"route",bundlePath:""},distDir:".next",relativeProjectDir:"",resolvedPagePath:"[project]/app/api/customer-imports/preview/route.ts",nextConfigOutput:"standalone",userland:y,...{}}),{workAsyncStorage:N,workUnitAsyncStorage:b,serverHooks:T}=A;async function P(e,t,a){a.requestMeta&&(0,n.setRequestMeta)(e,a.requestMeta),A.isDev&&(0,n.addRequestMeta)(e,"devRequestTimingInternalsEnd",process.hrtime.bigint());let w="/api/customer-imports/preview/route";w=w.replace(/\/index$/,"")||"/";let g=await A.prepare(e,t,{srcPage:w,multiZoneDraftMode:!1});if(!g)return t.statusCode=400,t.end("Bad Request"),null==a.waitUntil||a.waitUntil.call(a,Promise.resolve()),null;let{buildId:f,deploymentId:E,params:C,nextConfig:y,parsedUrl:N,isDraftMode:b,prerenderManifest:T,routerServerContext:P,isOnDemandRevalidate:_,revalidateOnlyGenerated:O,resolvedPathname:q,clientReferenceManifest:S,serverActionsManifest:k}=g,j=(0,o.normalizeAppPath)(w),U=!!(T.dynamicRoutes[j]||T.routes[q]),H=async()=>((null==P?void 0:P.render404)?await P.render404(e,t,N,!1):t.end("This page could not be found"),null);if(U&&!b){let e=!!T.routes[q],t=T.dynamicRoutes[j];if(t&&!1===t.fallback&&!e){if(y.adapterPath)return await H();throw new R.NoFallbackError}}let I=null;!U||A.isDev||b||(I="/index"===(I=q)?"/":I);let M=!0===A.isDev||!U,D=U&&!M;k&&S&&(0,i.setManifestsSingleton)({page:w,clientReferenceManifest:S,serverActionsManifest:k});let $=e.method||"GET",K=(0,s.getTracer)(),F=K.getActiveScopeSpan(),B=!!(null==P?void 0:P.isWrappedByNextServer),L=!!(0,n.getRequestMeta)(e,"minimalMode"),G=(0,n.getRequestMeta)(e,"incrementalCache")||await A.getIncrementalCache(e,y,T,L);null==G||G.resetRequestCache(),globalThis.__incrementalCache=G;let V={params:C,previewProps:T.preview,renderOpts:{experimental:{authInterrupts:!!y.experimental.authInterrupts},cacheComponents:!!y.cacheComponents,supportsDynamicResponse:M,incrementalCache:G,cacheLifeProfiles:y.cacheLife,waitUntil:a.waitUntil,onClose:e=>{t.on("close",e)},onAfterTaskError:void 0,onInstrumentationRequestError:(t,r,a,n)=>A.onRequestError(e,t,a,n,P)},sharedContext:{buildId:f,deploymentId:E}},W=new l.NodeNextRequest(e),X=new l.NodeNextResponse(t),z=d.NextRequestAdapter.fromNodeNextRequest(W,(0,d.signalFromNodeResponse)(t));try{let n,i=async e=>A.handle(z,V).finally(()=>{if(!e)return;e.setAttributes({"http.status_code":t.statusCode,"next.rsc":!1});let r=K.getRootSpanAttributes();if(!r)return;if(r.get("next.span_type")!==u.BaseServerSpan.handleRequest)return void console.warn(`Unexpected root span type '${r.get("next.span_type")}'. Please report this Next.js issue https://github.com/vercel/next.js`);let a=r.get("next.route");if(a){let t=`${$} ${a}`;e.setAttributes({"next.route":a,"http.route":a,"next.span_name":t}),e.updateName(t),n&&n!==e&&(n.setAttribute("http.route",a),n.updateName(t))}else e.updateName(`${$} ${w}`)}),o=async n=>{var s,o;let l=async({previousCacheEntry:r})=>{try{if(!L&&_&&O&&!r)return t.statusCode=404,t.setHeader("x-nextjs-cache","REVALIDATED"),t.end("This page could not be found"),null;let s=await i(n);e.fetchMetrics=V.renderOpts.fetchMetrics;let o=V.renderOpts.pendingWaitUntil;o&&a.waitUntil&&(a.waitUntil(o),o=void 0);let l=V.renderOpts.collectedTags;if(!U)return await (0,c.sendResponse)(W,X,s,V.renderOpts.pendingWaitUntil),null;{let e=await s.blob(),t=(0,h.toNodeOutgoingHttpHeaders)(s.headers);l&&(t[x.NEXT_CACHE_TAGS_HEADER]=l),!t["content-type"]&&e.type&&(t["content-type"]=e.type);let r=void 0!==V.renderOpts.collectedRevalidate&&!(V.renderOpts.collectedRevalidate>=x.INFINITE_CACHE)&&V.renderOpts.collectedRevalidate,a=void 0===V.renderOpts.collectedExpire||V.renderOpts.collectedExpire>=x.INFINITE_CACHE?void 0:V.renderOpts.collectedExpire;return{value:{kind:m.CachedRouteKind.APP_ROUTE,status:s.status,body:Buffer.from(await e.arrayBuffer()),headers:t},cacheControl:{revalidate:r,expire:a}}}}catch(t){throw(null==r?void 0:r.isStale)&&await A.onRequestError(e,t,{routerKind:"App Router",routePath:w,routeType:"route",revalidateReason:(0,p.getRevalidateReason)({isStaticGeneration:D,isOnDemandRevalidate:_})},!1,P),t}},d=await A.handleResponse({req:e,nextConfig:y,cacheKey:I,routeKind:r.RouteKind.APP_ROUTE,isFallback:!1,prerenderManifest:T,isRoutePPREnabled:!1,isOnDemandRevalidate:_,revalidateOnlyGenerated:O,responseGenerator:l,waitUntil:a.waitUntil,isMinimalMode:L});if(!U)return null;if((null==d||null==(s=d.value)?void 0:s.kind)!==m.CachedRouteKind.APP_ROUTE)throw Object.defineProperty(Error(`Invariant: app-route received invalid cache entry ${null==d||null==(o=d.value)?void 0:o.kind}`),"__NEXT_ERROR_CODE",{value:"E701",enumerable:!1,configurable:!0});L||t.setHeader("x-nextjs-cache",_?"REVALIDATED":d.isMiss?"MISS":d.isStale?"STALE":"HIT"),b&&t.setHeader("Cache-Control","private, no-cache, no-store, max-age=0, must-revalidate");let u=(0,h.fromNodeOutgoingHttpHeaders)(d.value.headers);return L&&U||u.delete(x.NEXT_CACHE_TAGS_HEADER),!d.cacheControl||t.getHeader("Cache-Control")||u.get("Cache-Control")||u.set("Cache-Control",(0,v.getCacheControlHeader)(d.cacheControl)),await (0,c.sendResponse)(W,X,new Response(d.value.body,{headers:u,status:d.value.status||200})),null};B&&F?await o(F):(n=K.getActiveScopeSpan(),await K.withPropagatedContext(e.headers,()=>K.trace(u.BaseServerSpan.handleRequest,{spanName:`${$} ${w}`,kind:s.SpanKind.SERVER,attributes:{"http.method":$,"http.target":e.url}},o),void 0,!B))}catch(t){if(t instanceof R.NoFallbackError||await A.onRequestError(e,t,{routerKind:"App Router",routePath:j,routeType:"route",revalidateReason:(0,p.getRevalidateReason)({isStaticGeneration:D,isOnDemandRevalidate:_})},!1,P),U)throw t;return await (0,c.sendResponse)(W,X,new Response(null,{status:500})),null}}e.s(["handler",0,P,"patchFetch",0,function(){return(0,a.patchFetch)({workAsyncStorage:N,workUnitAsyncStorage:b})},"routeModule",0,A,"serverHooks",0,T,"workAsyncStorage",0,N,"workUnitAsyncStorage",0,b],56452)}]; + +//# sourceMappingURL=%5Broot-of-the-server%5D__0r7ghc3._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/[root-of-the-server]__1cid3cf._.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/[root-of-the-server]__1cid3cf._.js new file mode 100644 index 00000000..6d16bef9 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/[root-of-the-server]__1cid3cf._.js @@ -0,0 +1,3 @@ +module.exports=[93695,(e,t,r)=>{t.exports=e.x("next/dist/shared/lib/no-fallback-error.external.js",()=>require("next/dist/shared/lib/no-fallback-error.external.js"))},18622,(e,t,r)=>{t.exports=e.x("next/dist/compiled/next-server/app-page-turbo.runtime.prod.js",()=>require("next/dist/compiled/next-server/app-page-turbo.runtime.prod.js"))},56704,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/work-async-storage.external.js",()=>require("next/dist/server/app-render/work-async-storage.external.js"))},32319,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/work-unit-async-storage.external.js",()=>require("next/dist/server/app-render/work-unit-async-storage.external.js"))},24725,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/after-task-async-storage.external.js",()=>require("next/dist/server/app-render/after-task-async-storage.external.js"))},70406,(e,t,r)=>{t.exports=e.x("next/dist/compiled/@opentelemetry/api",()=>require("next/dist/compiled/@opentelemetry/api"))},40833,e=>{"use strict";var t=e.i(47909),r=e.i(74017),a=e.i(96250),n=e.i(59756),s=e.i(61916),o=e.i(74677),i=e.i(69741),l=e.i(16795),d=e.i(87718),u=e.i(95169),p=e.i(47587),c=e.i(66012),h=e.i(70101),x=e.i(26937),R=e.i(10372),v=e.i(93695);e.i(52474);var m=e.i(220),f=e.i(93458),g=e.i(89171),w=e.i(68105);let E=`${process.env.MERCURY_INTERNAL_URL??"http://mercury-api:8000"}/api/v1`;async function C(e){let t=await (0,f.cookies)(),r=t.get(w.AUTH_COOKIE_NAME)?.value;if(!r)return g.NextResponse.json({detail:"Not authenticated"},{status:401});let a=await fetch(`${E}/customer-imports/confirm`,{method:"POST",headers:{Authorization:`Bearer ${r}`},body:await e.formData(),cache:"no-store"}),n=await a.json();return g.NextResponse.json(n,{status:a.status})}e.s(["POST",0,C],87142);var y=e.i(87142);let A=new t.AppRouteRouteModule({definition:{kind:r.RouteKind.APP_ROUTE,page:"/api/customer-imports/confirm/route",pathname:"/api/customer-imports/confirm",filename:"route",bundlePath:""},distDir:".next",relativeProjectDir:"",resolvedPagePath:"[project]/app/api/customer-imports/confirm/route.ts",nextConfigOutput:"standalone",userland:y,...{}}),{workAsyncStorage:N,workUnitAsyncStorage:b,serverHooks:T}=A;async function P(e,t,a){a.requestMeta&&(0,n.setRequestMeta)(e,a.requestMeta),A.isDev&&(0,n.addRequestMeta)(e,"devRequestTimingInternalsEnd",process.hrtime.bigint());let f="/api/customer-imports/confirm/route";f=f.replace(/\/index$/,"")||"/";let g=await A.prepare(e,t,{srcPage:f,multiZoneDraftMode:!1});if(!g)return t.statusCode=400,t.end("Bad Request"),null==a.waitUntil||a.waitUntil.call(a,Promise.resolve()),null;let{buildId:w,deploymentId:E,params:C,nextConfig:y,parsedUrl:N,isDraftMode:b,prerenderManifest:T,routerServerContext:P,isOnDemandRevalidate:_,revalidateOnlyGenerated:O,resolvedPathname:q,clientReferenceManifest:S,serverActionsManifest:k}=g,j=(0,i.normalizeAppPath)(f),U=!!(T.dynamicRoutes[j]||T.routes[q]),H=async()=>((null==P?void 0:P.render404)?await P.render404(e,t,N,!1):t.end("This page could not be found"),null);if(U&&!b){let e=!!T.routes[q],t=T.dynamicRoutes[j];if(t&&!1===t.fallback&&!e){if(y.adapterPath)return await H();throw new v.NoFallbackError}}let I=null;!U||A.isDev||b||(I="/index"===(I=q)?"/":I);let M=!0===A.isDev||!U,D=U&&!M;k&&S&&(0,o.setManifestsSingleton)({page:f,clientReferenceManifest:S,serverActionsManifest:k});let $=e.method||"GET",K=(0,s.getTracer)(),F=K.getActiveScopeSpan(),B=!!(null==P?void 0:P.isWrappedByNextServer),L=!!(0,n.getRequestMeta)(e,"minimalMode"),G=(0,n.getRequestMeta)(e,"incrementalCache")||await A.getIncrementalCache(e,y,T,L);null==G||G.resetRequestCache(),globalThis.__incrementalCache=G;let V={params:C,previewProps:T.preview,renderOpts:{experimental:{authInterrupts:!!y.experimental.authInterrupts},cacheComponents:!!y.cacheComponents,supportsDynamicResponse:M,incrementalCache:G,cacheLifeProfiles:y.cacheLife,waitUntil:a.waitUntil,onClose:e=>{t.on("close",e)},onAfterTaskError:void 0,onInstrumentationRequestError:(t,r,a,n)=>A.onRequestError(e,t,a,n,P)},sharedContext:{buildId:w,deploymentId:E}},W=new l.NodeNextRequest(e),X=new l.NodeNextResponse(t),z=d.NextRequestAdapter.fromNodeNextRequest(W,(0,d.signalFromNodeResponse)(t));try{let n,o=async e=>A.handle(z,V).finally(()=>{if(!e)return;e.setAttributes({"http.status_code":t.statusCode,"next.rsc":!1});let r=K.getRootSpanAttributes();if(!r)return;if(r.get("next.span_type")!==u.BaseServerSpan.handleRequest)return void console.warn(`Unexpected root span type '${r.get("next.span_type")}'. Please report this Next.js issue https://github.com/vercel/next.js`);let a=r.get("next.route");if(a){let t=`${$} ${a}`;e.setAttributes({"next.route":a,"http.route":a,"next.span_name":t}),e.updateName(t),n&&n!==e&&(n.setAttribute("http.route",a),n.updateName(t))}else e.updateName(`${$} ${f}`)}),i=async n=>{var s,i;let l=async({previousCacheEntry:r})=>{try{if(!L&&_&&O&&!r)return t.statusCode=404,t.setHeader("x-nextjs-cache","REVALIDATED"),t.end("This page could not be found"),null;let s=await o(n);e.fetchMetrics=V.renderOpts.fetchMetrics;let i=V.renderOpts.pendingWaitUntil;i&&a.waitUntil&&(a.waitUntil(i),i=void 0);let l=V.renderOpts.collectedTags;if(!U)return await (0,c.sendResponse)(W,X,s,V.renderOpts.pendingWaitUntil),null;{let e=await s.blob(),t=(0,h.toNodeOutgoingHttpHeaders)(s.headers);l&&(t[R.NEXT_CACHE_TAGS_HEADER]=l),!t["content-type"]&&e.type&&(t["content-type"]=e.type);let r=void 0!==V.renderOpts.collectedRevalidate&&!(V.renderOpts.collectedRevalidate>=R.INFINITE_CACHE)&&V.renderOpts.collectedRevalidate,a=void 0===V.renderOpts.collectedExpire||V.renderOpts.collectedExpire>=R.INFINITE_CACHE?void 0:V.renderOpts.collectedExpire;return{value:{kind:m.CachedRouteKind.APP_ROUTE,status:s.status,body:Buffer.from(await e.arrayBuffer()),headers:t},cacheControl:{revalidate:r,expire:a}}}}catch(t){throw(null==r?void 0:r.isStale)&&await A.onRequestError(e,t,{routerKind:"App Router",routePath:f,routeType:"route",revalidateReason:(0,p.getRevalidateReason)({isStaticGeneration:D,isOnDemandRevalidate:_})},!1,P),t}},d=await A.handleResponse({req:e,nextConfig:y,cacheKey:I,routeKind:r.RouteKind.APP_ROUTE,isFallback:!1,prerenderManifest:T,isRoutePPREnabled:!1,isOnDemandRevalidate:_,revalidateOnlyGenerated:O,responseGenerator:l,waitUntil:a.waitUntil,isMinimalMode:L});if(!U)return null;if((null==d||null==(s=d.value)?void 0:s.kind)!==m.CachedRouteKind.APP_ROUTE)throw Object.defineProperty(Error(`Invariant: app-route received invalid cache entry ${null==d||null==(i=d.value)?void 0:i.kind}`),"__NEXT_ERROR_CODE",{value:"E701",enumerable:!1,configurable:!0});L||t.setHeader("x-nextjs-cache",_?"REVALIDATED":d.isMiss?"MISS":d.isStale?"STALE":"HIT"),b&&t.setHeader("Cache-Control","private, no-cache, no-store, max-age=0, must-revalidate");let u=(0,h.fromNodeOutgoingHttpHeaders)(d.value.headers);return L&&U||u.delete(R.NEXT_CACHE_TAGS_HEADER),!d.cacheControl||t.getHeader("Cache-Control")||u.get("Cache-Control")||u.set("Cache-Control",(0,x.getCacheControlHeader)(d.cacheControl)),await (0,c.sendResponse)(W,X,new Response(d.value.body,{headers:u,status:d.value.status||200})),null};B&&F?await i(F):(n=K.getActiveScopeSpan(),await K.withPropagatedContext(e.headers,()=>K.trace(u.BaseServerSpan.handleRequest,{spanName:`${$} ${f}`,kind:s.SpanKind.SERVER,attributes:{"http.method":$,"http.target":e.url}},i),void 0,!B))}catch(t){if(t instanceof v.NoFallbackError||await A.onRequestError(e,t,{routerKind:"App Router",routePath:j,routeType:"route",revalidateReason:(0,p.getRevalidateReason)({isStaticGeneration:D,isOnDemandRevalidate:_})},!1,P),U)throw t;return await (0,c.sendResponse)(W,X,new Response(null,{status:500})),null}}e.s(["handler",0,P,"patchFetch",0,function(){return(0,a.patchFetch)({workAsyncStorage:N,workUnitAsyncStorage:b})},"routeModule",0,A,"serverHooks",0,T,"workAsyncStorage",0,N,"workUnitAsyncStorage",0,b],40833)}]; + +//# sourceMappingURL=%5Broot-of-the-server%5D__1cid3cf._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/_next-internal_server_app_api_customer-imports_confirm_route_actions_1-98oae.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/_next-internal_server_app_api_customer-imports_confirm_route_actions_1-98oae.js new file mode 100644 index 00000000..ed64b398 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/_next-internal_server_app_api_customer-imports_confirm_route_actions_1-98oae.js @@ -0,0 +1,3 @@ +module.exports=[39244,(e,o,d)=>{}]; + +//# sourceMappingURL=_next-internal_server_app_api_customer-imports_confirm_route_actions_1-98oae.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/_next-internal_server_app_api_customer-imports_preview_route_actions_1twf800.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/_next-internal_server_app_api_customer-imports_preview_route_actions_1twf800.js new file mode 100644 index 00000000..120b5536 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/_next-internal_server_app_api_customer-imports_preview_route_actions_1twf800.js @@ -0,0 +1,3 @@ +module.exports=[22217,(e,o,d)=>{}]; + +//# sourceMappingURL=_next-internal_server_app_api_customer-imports_preview_route_actions_1twf800.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/[root-of-the-server]__1ncuiz7._.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/[root-of-the-server]__1ncuiz7._.js new file mode 100644 index 00000000..aca0d88b --- /dev/null +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/[root-of-the-server]__1ncuiz7._.js @@ -0,0 +1,3 @@ +module.exports=[50640,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"InvariantError",{enumerable:!0,get:function(){return d}});class d extends Error{constructor(a,b){super(`Invariant: ${a.endsWith(".")?a:a+"."} This is a bug in Next.js.`,b),this.name="InvariantError"}}},93695,(a,b,c)=>{b.exports=a.x("next/dist/shared/lib/no-fallback-error.external.js",()=>require("next/dist/shared/lib/no-fallback-error.external.js"))},71306,(a,b,c)=>{b.exports=a.r(18622)},79847,a=>{a.n(a.i(3343))},9185,a=>{a.n(a.i(29432))},72842,a=>{a.n(a.i(75164))},54897,a=>{a.n(a.i(30106))},56157,a=>{a.n(a.i(18970))},94331,a=>{a.n(a.i(60644))},15988,a=>{a.n(a.i(56952))},25766,a=>{a.n(a.i(77341))},29725,a=>{a.n(a.i(94290))},90833,a=>{a.n(a.i(46994))},5785,a=>{a.n(a.i(90588))},74793,a=>{a.n(a.i(33169))},85826,a=>{a.n(a.i(37111))},21565,a=>{a.n(a.i(41763))},65911,a=>{a.n(a.i(8950))},25128,a=>{a.n(a.i(91562))},40781,a=>{a.n(a.i(49670))},69411,a=>{a.n(a.i(75700))},63081,a=>{a.n(a.i(276))},62837,a=>{a.n(a.i(40795))},34607,a=>{a.n(a.i(11614))},96338,a=>{a.n(a.i(21751))},50642,a=>{a.n(a.i(12213))},32242,a=>{a.n(a.i(22693))},88530,a=>{a.n(a.i(10531))},8583,a=>{a.n(a.i(1082))},38534,a=>{a.n(a.i(98175))},70408,a=>{a.n(a.i(9095))},22922,a=>{a.n(a.i(96772))},78294,a=>{a.n(a.i(71717))},16625,a=>{a.n(a.i(85034))},88648,a=>{a.n(a.i(68113))},51914,a=>{a.n(a.i(66482))},25466,a=>{a.n(a.i(91505))},71385,a=>{a.v("/_next/static/media/icon.3qohsuqgxm60_.svg"+(globalThis.NEXT_CLIENT_ASSET_SUFFIX||""))},48760,a=>{"use strict";let b={src:a.i(71385).default,width:640,height:480};a.s(["default",0,b])},81327,a=>{"use strict";a.s(["default",()=>b]);let b=(0,a.i(11857).registerClientReference)(function(){throw Error("Attempted to call the default export of [project]/app/(app)/customers/import/page.tsx from the server, but it's on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/app/(app)/customers/import/page.tsx ","default")},11885,a=>{"use strict";a.s(["default",()=>b]);let b=(0,a.i(11857).registerClientReference)(function(){throw Error("Attempted to call the default export of [project]/app/(app)/customers/import/page.tsx from the server, but it's on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/app/(app)/customers/import/page.tsx","default")},13700,a=>{"use strict";a.i(81327);var b=a.i(11885);a.n(b)},77507,a=>{a.n(a.i(13700))}]; + +//# sourceMappingURL=%5Broot-of-the-server%5D__1ncuiz7._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_01izkzk._.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_01izkzk._.js deleted file mode 100644 index 4b68f160..00000000 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_01izkzk._.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports=[53250,a=>{"use strict";let b="/api/v1";async function c(a,b){let c=await a.text();if(!c)return b;try{let a=JSON.parse(c);return a.detail??a.message??c}catch{return c}}async function d(a,b){let c=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:a,password:b}),credentials:"include"});if(!c.ok){let a=Error(await c.text()||`HTTP ${c.status}`);throw a.status=c.status,a}return c.json()}async function e(a,c){let d=await fetch(`${b}${a}`,{cache:"no-store",credentials:"include"});if(!d.ok)throw Error(`API request failed: ${d.status}`);return d.json()}async function f(a,d,e,f){let g=await fetch(`${b}${a}`,{method:e,headers:{"Content-Type":"application/json"},body:JSON.stringify(f),credentials:"include"});if(!g.ok)throw Error(await c(g,`API request failed: ${g.status}`));return g.json()}async function g(a,d){let e=await fetch(`${b}${a}`,{method:"DELETE",credentials:"include"});if(!e.ok)throw Error(await c(e,`API request failed: ${e.status}`))}async function h(a,d,e){let f=await fetch(`${b}${a}`,{...e,headers:{"Content-Type":"application/json",...e?.headers??{}},credentials:"include"});if(!f.ok)throw Error(await c(f,`API request failed: ${f.status}`));return f.json()}a.s(["API_BASE",0,b,"apiDelete",0,g,"apiFetch",0,h,"apiGet",0,e,"apiSend",0,f,"login",0,d,"normalizeValidationPayload",0,function(a){return{...a,...Object.fromEntries(["contact_id","examiner_id"].map(b=>[b,a[b]||null]))}}])},33508,a=>{"use strict";let b=(0,a.i(70106).default)("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]);a.s(["X",0,b],33508)},84505,a=>{"use strict";let b=(0,a.i(70106).default)("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);a.s(["Download",0,b],84505)},14548,a=>{"use strict";let b=(0,a.i(70106).default)("Save",[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]]);a.s(["Save",0,b],14548)},92e3,a=>{"use strict";let b=(0,a.i(70106).default)("CircleAlert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);a.s(["AlertCircle",0,b],92e3)},67453,a=>{"use strict";let b=(0,a.i(70106).default)("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);a.s(["CheckCircle2",0,b],67453)},99712,a=>{"use strict";var b=a.i(87924),c=a.i(92e3),d=a.i(67453),e=a.i(70106);let f=(0,e.default)("CircleDashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]]),g=(0,e.default)("ShieldAlert",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]),h={OFFEN:{value:"OFFEN",label:"Noch nicht bewertet",badgeClass:"border-slate-300 bg-slate-100 text-slate-700",previewClass:"border-slate-300 bg-slate-50 text-slate-700",color:"#2E3B40",icon:f},BESTANDEN:{value:"BESTANDEN",label:"Bestanden",badgeClass:"border-success/35 bg-success/15 text-success",previewClass:"border-success/40 bg-success/10 text-success",color:"#245C36",icon:d.CheckCircle2},BESTANDEN_MIT_AUFLAGEN:{value:"BESTANDEN_MIT_AUFLAGEN",label:"Bestanden mit Auflagen",badgeClass:"border-warning/40 bg-warning/15 text-[#7A5A00]",previewClass:"border-warning/45 bg-warning/10 text-[#7A5A00]",color:"#7A5A00",icon:g},NICHT_BESTANDEN:{value:"NICHT_BESTANDEN",label:"Nicht bestanden",badgeClass:"border-danger/35 bg-danger/15 text-danger",previewClass:"border-danger/40 bg-danger/10 text-danger",color:"#7A1F26",icon:c.AlertCircle}},i={"":"OFFEN",offen:"OFFEN",OFFEN:"OFFEN",bestanden:"BESTANDEN",BESTANDEN:"BESTANDEN",mit_auflagen:"BESTANDEN_MIT_AUFLAGEN",bestanden_mit_auflagen:"BESTANDEN_MIT_AUFLAGEN","bestanden mit auflagen":"BESTANDEN_MIT_AUFLAGEN",BESTANDEN_MIT_AUFLAGEN:"BESTANDEN_MIT_AUFLAGEN",nicht_bestanden:"NICHT_BESTANDEN","nicht bestanden":"NICHT_BESTANDEN",NICHT_BESTANDEN:"NICHT_BESTANDEN"};function j(a){return i[String(a??"").trim()]??"OFFEN"}function k(a){return h[j(a)]}a.s(["ValidationResultBadge",0,function({value:a,className:c=""}){let d=k(a),e=d.icon;return(0,b.jsxs)("span",{className:`inline-flex items-center gap-1.5 rounded-full border px-3 py-1 text-xs font-semibold ${d.badgeClass} ${c}`,children:[(0,b.jsx)(e,{className:"h-3.5 w-3.5"}),d.label]})},"getValidationResultPresentation",0,k,"normalizeValidationResult",0,j,"validationResultValues",0,["OFFEN","BESTANDEN","BESTANDEN_MIT_AUFLAGEN","NICHT_BESTANDEN"]],99712)},15618,a=>{"use strict";let b=(0,a.i(70106).default)("Plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);a.s(["Plus",0,b],15618)}]; - -//# sourceMappingURL=_01izkzk._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0454dxv._.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0454dxv._.js new file mode 100644 index 00000000..825caef0 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0454dxv._.js @@ -0,0 +1,3 @@ +module.exports=[53250,a=>{"use strict";let b="/api/v1";async function c(a,b){let c=await a.text();if(!c)return b;try{let a=JSON.parse(c);return a.detail??a.message??c}catch{return c}}async function d(a,b){let c=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:a,password:b}),credentials:"include"});if(!c.ok){let a=Error(await c.text()||`HTTP ${c.status}`);throw a.status=c.status,a}return c.json()}async function e(a,c){let d=await fetch(`${b}${a}`,{cache:"no-store",credentials:"include"});if(!d.ok)throw Error(`API request failed: ${d.status}`);return d.json()}async function f(a,d,e,f){let g=await fetch(`${b}${a}`,{method:e,headers:{"Content-Type":"application/json"},body:JSON.stringify(f),credentials:"include"});if(!g.ok)throw Error(await c(g,`API request failed: ${g.status}`));return g.json()}async function g(a,d){let e=await fetch(`${b}${a}`,{method:"DELETE",credentials:"include"});if(!e.ok)throw Error(await c(e,`API request failed: ${e.status}`))}async function h(a,d,e){let f=await fetch(`${b}${a}`,{...e,headers:{"Content-Type":"application/json",...e?.headers??{}},credentials:"include"});if(!f.ok)throw Error(await c(f,`API request failed: ${f.status}`));return f.json()}a.s(["API_BASE",0,b,"apiDelete",0,g,"apiFetch",0,h,"apiGet",0,e,"apiSend",0,f,"login",0,d,"normalizeValidationPayload",0,function(a){return{...a,...Object.fromEntries(["contact_id","examiner_id"].map(b=>[b,a[b]||null]))}}])},33508,a=>{"use strict";let b=(0,a.i(70106).default)("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]);a.s(["X",0,b],33508)},74618,a=>{"use strict";let b=(0,a.i(70106).default)("CloudUpload",[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"m8 17 4-4 4 4",key:"1quai1"}]]);a.s(["UploadCloud",0,b],74618)},84505,a=>{"use strict";let b=(0,a.i(70106).default)("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);a.s(["Download",0,b],84505)},14548,a=>{"use strict";let b=(0,a.i(70106).default)("Save",[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]]);a.s(["Save",0,b],14548)},67453,a=>{"use strict";let b=(0,a.i(70106).default)("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);a.s(["CheckCircle2",0,b],67453)},99712,a=>{"use strict";var b=a.i(87924),c=a.i(70106);let d=(0,c.default)("CircleAlert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);var e=a.i(67453);let f=(0,c.default)("CircleDashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]]),g=(0,c.default)("ShieldAlert",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]),h={OFFEN:{value:"OFFEN",label:"Noch nicht bewertet",badgeClass:"border-slate-300 bg-slate-100 text-slate-700",previewClass:"border-slate-300 bg-slate-50 text-slate-700",color:"#2E3B40",icon:f},BESTANDEN:{value:"BESTANDEN",label:"Bestanden",badgeClass:"border-success/35 bg-success/15 text-success",previewClass:"border-success/40 bg-success/10 text-success",color:"#245C36",icon:e.CheckCircle2},BESTANDEN_MIT_AUFLAGEN:{value:"BESTANDEN_MIT_AUFLAGEN",label:"Bestanden mit Auflagen",badgeClass:"border-warning/40 bg-warning/15 text-[#7A5A00]",previewClass:"border-warning/45 bg-warning/10 text-[#7A5A00]",color:"#7A5A00",icon:g},NICHT_BESTANDEN:{value:"NICHT_BESTANDEN",label:"Nicht bestanden",badgeClass:"border-danger/35 bg-danger/15 text-danger",previewClass:"border-danger/40 bg-danger/10 text-danger",color:"#7A1F26",icon:d}},i={"":"OFFEN",offen:"OFFEN",OFFEN:"OFFEN",bestanden:"BESTANDEN",BESTANDEN:"BESTANDEN",mit_auflagen:"BESTANDEN_MIT_AUFLAGEN",bestanden_mit_auflagen:"BESTANDEN_MIT_AUFLAGEN","bestanden mit auflagen":"BESTANDEN_MIT_AUFLAGEN",BESTANDEN_MIT_AUFLAGEN:"BESTANDEN_MIT_AUFLAGEN",nicht_bestanden:"NICHT_BESTANDEN","nicht bestanden":"NICHT_BESTANDEN",NICHT_BESTANDEN:"NICHT_BESTANDEN"};function j(a){return i[String(a??"").trim()]??"OFFEN"}function k(a){return h[j(a)]}a.s(["ValidationResultBadge",0,function({value:a,className:c=""}){let d=k(a),e=d.icon;return(0,b.jsxs)("span",{className:`inline-flex items-center gap-1.5 rounded-full border px-3 py-1 text-xs font-semibold ${d.badgeClass} ${c}`,children:[(0,b.jsx)(e,{className:"h-3.5 w-3.5"}),d.label]})},"getValidationResultPresentation",0,k,"normalizeValidationResult",0,j,"validationResultValues",0,["OFFEN","BESTANDEN","BESTANDEN_MIT_AUFLAGEN","NICHT_BESTANDEN"]],99712)},15618,a=>{"use strict";let b=(0,a.i(70106).default)("Plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);a.s(["Plus",0,b],15618)}]; + +//# sourceMappingURL=_0454dxv._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_052zwtf._.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_052zwtf._.js deleted file mode 100644 index 552a7cd9..00000000 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_052zwtf._.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports=[53250,a=>{"use strict";let b="/api/v1";async function c(a,b){let c=await a.text();if(!c)return b;try{let a=JSON.parse(c);return a.detail??a.message??c}catch{return c}}async function d(a,b){let c=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:a,password:b}),credentials:"include"});if(!c.ok){let a=Error(await c.text()||`HTTP ${c.status}`);throw a.status=c.status,a}return c.json()}async function e(a,c){let d=await fetch(`${b}${a}`,{cache:"no-store",credentials:"include"});if(!d.ok)throw Error(`API request failed: ${d.status}`);return d.json()}async function f(a,d,e,f){let g=await fetch(`${b}${a}`,{method:e,headers:{"Content-Type":"application/json"},body:JSON.stringify(f),credentials:"include"});if(!g.ok)throw Error(await c(g,`API request failed: ${g.status}`));return g.json()}async function g(a,d){let e=await fetch(`${b}${a}`,{method:"DELETE",credentials:"include"});if(!e.ok)throw Error(await c(e,`API request failed: ${e.status}`))}async function h(a,d,e){let f=await fetch(`${b}${a}`,{...e,headers:{"Content-Type":"application/json",...e?.headers??{}},credentials:"include"});if(!f.ok)throw Error(await c(f,`API request failed: ${f.status}`));return f.json()}a.s(["API_BASE",0,b,"apiDelete",0,g,"apiFetch",0,h,"apiGet",0,e,"apiSend",0,f,"login",0,d,"normalizeValidationPayload",0,function(a){return{...a,...Object.fromEntries(["contact_id","examiner_id"].map(b=>[b,a[b]||null]))}}])},87532,a=>{"use strict";let b=(0,a.i(70106).default)("Search",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);a.s(["Search",0,b],87532)},81560,a=>{"use strict";let b=(0,a.i(70106).default)("Trash2",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]]);a.s(["Trash2",0,b],81560)},10448,a=>{"use strict";let b=(0,a.i(70106).default)("Pen",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]]);a.s(["Edit2",0,b],10448)},84505,a=>{"use strict";let b=(0,a.i(70106).default)("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);a.s(["Download",0,b],84505)},92e3,a=>{"use strict";let b=(0,a.i(70106).default)("CircleAlert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);a.s(["AlertCircle",0,b],92e3)},67453,a=>{"use strict";let b=(0,a.i(70106).default)("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);a.s(["CheckCircle2",0,b],67453)},99712,a=>{"use strict";var b=a.i(87924),c=a.i(92e3),d=a.i(67453),e=a.i(70106);let f=(0,e.default)("CircleDashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]]),g=(0,e.default)("ShieldAlert",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]),h={OFFEN:{value:"OFFEN",label:"Noch nicht bewertet",badgeClass:"border-slate-300 bg-slate-100 text-slate-700",previewClass:"border-slate-300 bg-slate-50 text-slate-700",color:"#2E3B40",icon:f},BESTANDEN:{value:"BESTANDEN",label:"Bestanden",badgeClass:"border-success/35 bg-success/15 text-success",previewClass:"border-success/40 bg-success/10 text-success",color:"#245C36",icon:d.CheckCircle2},BESTANDEN_MIT_AUFLAGEN:{value:"BESTANDEN_MIT_AUFLAGEN",label:"Bestanden mit Auflagen",badgeClass:"border-warning/40 bg-warning/15 text-[#7A5A00]",previewClass:"border-warning/45 bg-warning/10 text-[#7A5A00]",color:"#7A5A00",icon:g},NICHT_BESTANDEN:{value:"NICHT_BESTANDEN",label:"Nicht bestanden",badgeClass:"border-danger/35 bg-danger/15 text-danger",previewClass:"border-danger/40 bg-danger/10 text-danger",color:"#7A1F26",icon:c.AlertCircle}},i={"":"OFFEN",offen:"OFFEN",OFFEN:"OFFEN",bestanden:"BESTANDEN",BESTANDEN:"BESTANDEN",mit_auflagen:"BESTANDEN_MIT_AUFLAGEN",bestanden_mit_auflagen:"BESTANDEN_MIT_AUFLAGEN","bestanden mit auflagen":"BESTANDEN_MIT_AUFLAGEN",BESTANDEN_MIT_AUFLAGEN:"BESTANDEN_MIT_AUFLAGEN",nicht_bestanden:"NICHT_BESTANDEN","nicht bestanden":"NICHT_BESTANDEN",NICHT_BESTANDEN:"NICHT_BESTANDEN"};function j(a){return i[String(a??"").trim()]??"OFFEN"}function k(a){return h[j(a)]}a.s(["ValidationResultBadge",0,function({value:a,className:c=""}){let d=k(a),e=d.icon;return(0,b.jsxs)("span",{className:`inline-flex items-center gap-1.5 rounded-full border px-3 py-1 text-xs font-semibold ${d.badgeClass} ${c}`,children:[(0,b.jsx)(e,{className:"h-3.5 w-3.5"}),d.label]})},"getValidationResultPresentation",0,k,"normalizeValidationResult",0,j,"validationResultValues",0,["OFFEN","BESTANDEN","BESTANDEN_MIT_AUFLAGEN","NICHT_BESTANDEN"]],99712)},5151,a=>{"use strict";let b=(0,a.i(70106).default)("Copy",[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);a.s(["Copy",0,b],5151)}]; - -//# sourceMappingURL=_052zwtf._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0v6sf8t._.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0arfgns._.js similarity index 63% rename from validation-suite/frontend/atlas/.next/server/chunks/ssr/_0v6sf8t._.js rename to validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0arfgns._.js index 0073ccbb..308c6c08 100644 --- a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_0v6sf8t._.js +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0arfgns._.js @@ -1,3 +1,3 @@ -module.exports=[46058,(a,b,c)=>{"use strict";function d(a){if("function"!=typeof WeakMap)return null;var b=new WeakMap,c=new WeakMap;return(d=function(a){return a?c:b})(a)}c._=function(a,b){if(!b&&a&&a.__esModule)return a;if(null===a||"object"!=typeof a&&"function"!=typeof a)return{default:a};var c=d(b);if(c&&c.has(a))return c.get(a);var e={__proto__:null},f=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var g in a)if("default"!==g&&Object.prototype.hasOwnProperty.call(a,g)){var h=f?Object.getOwnPropertyDescriptor(a,g):null;h&&(h.get||h.set)?Object.defineProperty(e,g,h):e[g]=a[g]}return e.default=a,c&&c.set(a,e),e}},88644,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"InvariantError",{enumerable:!0,get:function(){return d}});class d extends Error{constructor(a,b){super(`Invariant: ${a.endsWith(".")?a:a+"."} This is a bug in Next.js.`,b),this.name="InvariantError"}}},39118,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={DEFAULT_SEGMENT_KEY:function(){return l},NOT_FOUND_SEGMENT_KEY:function(){return m},PAGE_SEGMENT_KEY:function(){return k},addSearchParamsIfPageSegment:function(){return i},computeSelectedLayoutSegment:function(){return j},getSegmentValue:function(){return f},getSelectedLayoutSegmentPath:function(){return function a(b,c,d=!0,e=[]){let g;if(d)g=b[1][c];else{let a=b[1];g=a.children??Object.values(a)[0]}if(!g)return e;let h=f(g[0]);return!h||h.startsWith(k)?e:(e.push(h),a(g,c,!1,e))}},isGroupSegment:function(){return g},isParallelRouteSegment:function(){return h}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});function f(a){return Array.isArray(a)?a[1]:a}function g(a){return"("===a[0]&&a.endsWith(")")}function h(a){return a.startsWith("@")&&"@children"!==a}function i(a,b){if(a.includes(k)){let a=JSON.stringify(b);return"{}"!==a?k+"?"+a:k}return a}function j(a,b){if(!a||0===a.length)return null;let c="children"===b?a[0]:a[a.length-1];return c===l?null:c}let k="__PAGE__",l="__DEFAULT__",m="/_not-found"},54427,(a,b,c)=>{"use strict";function d(){let a,b,c=new Promise((c,d)=>{a=c,b=d});return{resolve:a,reject:b,promise:c}}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"createPromiseWithResolvers",{enumerable:!0,get:function(){return d}})},12794,a=>{"use strict";var b=a.i(18544),c=a.i(85659),d=a.i(21778),e=class extends c.Removable{#a;#b;#c;#d;constructor(a){super(),this.#a=a.client,this.mutationId=a.mutationId,this.#c=a.mutationCache,this.#b=[],this.state=a.state||f(),this.setOptions(a.options),this.scheduleGc()}setOptions(a){this.options=a,this.updateGcTime(this.options.gcTime)}get meta(){return this.options.meta}addObserver(a){this.#b.includes(a)||(this.#b.push(a),this.clearGcTimeout(),this.#c.notify({type:"observerAdded",mutation:this,observer:a}))}removeObserver(a){this.#b=this.#b.filter(b=>b!==a),this.scheduleGc(),this.#c.notify({type:"observerRemoved",mutation:this,observer:a})}optionalRemove(){this.#b.length||("pending"===this.state.status?this.scheduleGc():this.#c.remove(this))}continue(){return this.#d?.continue()??this.execute(this.state.variables)}async execute(a){let b=()=>{this.#e({type:"continue"})},c={client:this.#a,meta:this.options.meta,mutationKey:this.options.mutationKey};this.#d=(0,d.createRetryer)({fn:()=>this.options.mutationFn?this.options.mutationFn(a,c):Promise.reject(Error("No mutationFn found")),onFail:(a,b)=>{this.#e({type:"failed",failureCount:a,error:b})},onPause:()=>{this.#e({type:"pause"})},onContinue:b,retry:this.options.retry??0,retryDelay:this.options.retryDelay,networkMode:this.options.networkMode,canRun:()=>this.#c.canRun(this)});let e="pending"===this.state.status,f=!this.#d.canStart();try{if(e)b();else{this.#e({type:"pending",variables:a,isPaused:f}),this.#c.config.onMutate&&await this.#c.config.onMutate(a,this,c);let b=await this.options.onMutate?.(a,c);b!==this.state.context&&this.#e({type:"pending",context:b,variables:a,isPaused:f})}let d=await this.#d.start();return await this.#c.config.onSuccess?.(d,a,this.state.context,this,c),await this.options.onSuccess?.(d,a,this.state.context,c),await this.#c.config.onSettled?.(d,null,this.state.variables,this.state.context,this,c),await this.options.onSettled?.(d,null,a,this.state.context,c),this.#e({type:"success",data:d}),d}catch(b){try{await this.#c.config.onError?.(b,a,this.state.context,this,c)}catch(a){Promise.reject(a)}try{await this.options.onError?.(b,a,this.state.context,c)}catch(a){Promise.reject(a)}try{await this.#c.config.onSettled?.(void 0,b,this.state.variables,this.state.context,this,c)}catch(a){Promise.reject(a)}try{await this.options.onSettled?.(void 0,b,a,this.state.context,c)}catch(a){Promise.reject(a)}throw this.#e({type:"error",error:b}),b}finally{this.#c.runNext(this)}}#e(a){this.state=(b=>{switch(a.type){case"failed":return{...b,failureCount:a.failureCount,failureReason:a.error};case"pause":return{...b,isPaused:!0};case"continue":return{...b,isPaused:!1};case"pending":return{...b,context:a.context,data:void 0,failureCount:0,failureReason:null,error:null,isPaused:a.isPaused,status:"pending",variables:a.variables,submittedAt:Date.now()};case"success":return{...b,data:a.data,failureCount:0,failureReason:null,error:null,status:"success",isPaused:!1};case"error":return{...b,data:void 0,error:a.error,failureCount:b.failureCount+1,failureReason:a.error,isPaused:!1,status:"error"}}})(this.state),b.notifyManager.batch(()=>{this.#b.forEach(b=>{b.onMutationUpdate(a)}),this.#c.notify({mutation:this,type:"updated",action:a})})}};function f(){return{context:void 0,data:void 0,error:null,failureCount:0,failureReason:null,isPaused:!1,status:"idle",variables:void 0,submittedAt:0}}a.s(["Mutation",0,e,"getDefaultState",0,f])},8591,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"useMergedRef",{enumerable:!0,get:function(){return e}});let d=a.r(72131);function e(a,b){let c=(0,d.useRef)(null),e=(0,d.useRef)(null);return(0,d.useCallback)(d=>{if(null===d){let a=c.current;a&&(c.current=null,a());let b=e.current;b&&(e.current=null,b())}else a&&(c.current=f(a,d)),b&&(e.current=f(b,d))},[a,b])}function f(a,b){if("function"!=typeof a)return a.current=b,()=>{a.current=null};{let c=a(b);return"function"==typeof c?c:()=>a(null)}}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},92434,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"warnOnce",{enumerable:!0,get:function(){return d}});let d=a=>{}},68063,(a,b,c)=>{"use strict";let d;Object.defineProperty(c,"__esModule",{value:!0});var e={getAssetToken:function(){return i},getAssetTokenQuery:function(){return j},getDeploymentId:function(){return g},getDeploymentIdQuery:function(){return h}};for(var f in e)Object.defineProperty(c,f,{enumerable:!0,get:e[f]});function g(){return d}function h(a=!1){return d?`${a?"&":"?"}dpl=${d}`:""}function i(){return!1}function j(a=!1){return""}d=void 0},33354,(a,b,c)=>{"use strict";c._=function(a){return a&&a.__esModule?a:{default:a}}},33095,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={default:function(){return k},getImageProps:function(){return j}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(33354),g=a.r(94915),h=a.r(67161),i=f._(a.r(28427));function j(a){let{props:b}=(0,g.getImgProps)(a,{defaultLoader:i.default,imgConf:{deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],qualities:[75],path:"/_next/image",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!1}});for(let[a,c]of Object.entries(b))void 0===c&&delete b[a];return{props:b}}let k=h.Image},71987,(a,b,c)=>{b.exports=a.r(33095)},73943,a=>{"use strict";var b=a.i(87924),c=a.i(71987);a.s(["BrandLogo",0,function({compact:a=!1}){return(0,b.jsx)("div",{className:"flex items-center gap-3",children:(0,b.jsx)(c.default,{src:"/schubamed-logo.svg",alt:"SCHUBAMED Validation Suite",width:a?180:240,height:64,priority:!0})})}])},97651,35126,a=>{"use strict";var b=a.i(70106);let c=(0,b.default)("Gauge",[["path",{d:"m12 14 4-4",key:"9kzdfg"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0",key:"19p75a"}]]);a.s(["Gauge",0,c],97651);let d=(0,b.default)("Stethoscope",[["path",{d:"M11 2v2",key:"1539x4"}],["path",{d:"M5 2v2",key:"1yf1q8"}],["path",{d:"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1",key:"rb5t3r"}],["path",{d:"M8 15a6 6 0 0 0 12 0v-3",key:"x18d4x"}],["circle",{cx:"20",cy:"10",r:"2",key:"ts1r5v"}]]);a.s(["Stethoscope",0,d],35126)}]; +module.exports=[46058,(a,b,c)=>{"use strict";function d(a){if("function"!=typeof WeakMap)return null;var b=new WeakMap,c=new WeakMap;return(d=function(a){return a?c:b})(a)}c._=function(a,b){if(!b&&a&&a.__esModule)return a;if(null===a||"object"!=typeof a&&"function"!=typeof a)return{default:a};var c=d(b);if(c&&c.has(a))return c.get(a);var e={__proto__:null},f=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var g in a)if("default"!==g&&Object.prototype.hasOwnProperty.call(a,g)){var h=f?Object.getOwnPropertyDescriptor(a,g):null;h&&(h.get||h.set)?Object.defineProperty(e,g,h):e[g]=a[g]}return e.default=a,c&&c.set(a,e),e}},88644,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"InvariantError",{enumerable:!0,get:function(){return d}});class d extends Error{constructor(a,b){super(`Invariant: ${a.endsWith(".")?a:a+"."} This is a bug in Next.js.`,b),this.name="InvariantError"}}},39118,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={DEFAULT_SEGMENT_KEY:function(){return l},NOT_FOUND_SEGMENT_KEY:function(){return m},PAGE_SEGMENT_KEY:function(){return k},addSearchParamsIfPageSegment:function(){return i},computeSelectedLayoutSegment:function(){return j},getSegmentValue:function(){return f},getSelectedLayoutSegmentPath:function(){return function a(b,c,d=!0,e=[]){let g;if(d)g=b[1][c];else{let a=b[1];g=a.children??Object.values(a)[0]}if(!g)return e;let h=f(g[0]);return!h||h.startsWith(k)?e:(e.push(h),a(g,c,!1,e))}},isGroupSegment:function(){return g},isParallelRouteSegment:function(){return h}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});function f(a){return Array.isArray(a)?a[1]:a}function g(a){return"("===a[0]&&a.endsWith(")")}function h(a){return a.startsWith("@")&&"@children"!==a}function i(a,b){if(a.includes(k)){let a=JSON.stringify(b);return"{}"!==a?k+"?"+a:k}return a}function j(a,b){if(!a||0===a.length)return null;let c="children"===b?a[0]:a[a.length-1];return c===l?null:c}let k="__PAGE__",l="__DEFAULT__",m="/_not-found"},54427,(a,b,c)=>{"use strict";function d(){let a,b,c=new Promise((c,d)=>{a=c,b=d});return{resolve:a,reject:b,promise:c}}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"createPromiseWithResolvers",{enumerable:!0,get:function(){return d}})},12794,a=>{"use strict";var b=a.i(18544),c=a.i(85659),d=a.i(21778),e=class extends c.Removable{#a;#b;#c;#d;constructor(a){super(),this.#a=a.client,this.mutationId=a.mutationId,this.#c=a.mutationCache,this.#b=[],this.state=a.state||f(),this.setOptions(a.options),this.scheduleGc()}setOptions(a){this.options=a,this.updateGcTime(this.options.gcTime)}get meta(){return this.options.meta}addObserver(a){this.#b.includes(a)||(this.#b.push(a),this.clearGcTimeout(),this.#c.notify({type:"observerAdded",mutation:this,observer:a}))}removeObserver(a){this.#b=this.#b.filter(b=>b!==a),this.scheduleGc(),this.#c.notify({type:"observerRemoved",mutation:this,observer:a})}optionalRemove(){this.#b.length||("pending"===this.state.status?this.scheduleGc():this.#c.remove(this))}continue(){return this.#d?.continue()??this.execute(this.state.variables)}async execute(a){let b=()=>{this.#e({type:"continue"})},c={client:this.#a,meta:this.options.meta,mutationKey:this.options.mutationKey};this.#d=(0,d.createRetryer)({fn:()=>this.options.mutationFn?this.options.mutationFn(a,c):Promise.reject(Error("No mutationFn found")),onFail:(a,b)=>{this.#e({type:"failed",failureCount:a,error:b})},onPause:()=>{this.#e({type:"pause"})},onContinue:b,retry:this.options.retry??0,retryDelay:this.options.retryDelay,networkMode:this.options.networkMode,canRun:()=>this.#c.canRun(this)});let e="pending"===this.state.status,f=!this.#d.canStart();try{if(e)b();else{this.#e({type:"pending",variables:a,isPaused:f}),this.#c.config.onMutate&&await this.#c.config.onMutate(a,this,c);let b=await this.options.onMutate?.(a,c);b!==this.state.context&&this.#e({type:"pending",context:b,variables:a,isPaused:f})}let d=await this.#d.start();return await this.#c.config.onSuccess?.(d,a,this.state.context,this,c),await this.options.onSuccess?.(d,a,this.state.context,c),await this.#c.config.onSettled?.(d,null,this.state.variables,this.state.context,this,c),await this.options.onSettled?.(d,null,a,this.state.context,c),this.#e({type:"success",data:d}),d}catch(b){try{await this.#c.config.onError?.(b,a,this.state.context,this,c)}catch(a){Promise.reject(a)}try{await this.options.onError?.(b,a,this.state.context,c)}catch(a){Promise.reject(a)}try{await this.#c.config.onSettled?.(void 0,b,this.state.variables,this.state.context,this,c)}catch(a){Promise.reject(a)}try{await this.options.onSettled?.(void 0,b,a,this.state.context,c)}catch(a){Promise.reject(a)}throw this.#e({type:"error",error:b}),b}finally{this.#c.runNext(this)}}#e(a){this.state=(b=>{switch(a.type){case"failed":return{...b,failureCount:a.failureCount,failureReason:a.error};case"pause":return{...b,isPaused:!0};case"continue":return{...b,isPaused:!1};case"pending":return{...b,context:a.context,data:void 0,failureCount:0,failureReason:null,error:null,isPaused:a.isPaused,status:"pending",variables:a.variables,submittedAt:Date.now()};case"success":return{...b,data:a.data,failureCount:0,failureReason:null,error:null,status:"success",isPaused:!1};case"error":return{...b,data:void 0,error:a.error,failureCount:b.failureCount+1,failureReason:a.error,isPaused:!1,status:"error"}}})(this.state),b.notifyManager.batch(()=>{this.#b.forEach(b=>{b.onMutationUpdate(a)}),this.#c.notify({mutation:this,type:"updated",action:a})})}};function f(){return{context:void 0,data:void 0,error:null,failureCount:0,failureReason:null,isPaused:!1,status:"idle",variables:void 0,submittedAt:0}}a.s(["Mutation",0,e,"getDefaultState",0,f])},97112,a=>{"use strict";let b=(0,a.i(70106).default)("FileUp",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M12 12v6",key:"3ahymv"}],["path",{d:"m15 15-3-3-3 3",key:"15xj92"}]]);a.s(["FileUp",0,b],97112)},8591,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"useMergedRef",{enumerable:!0,get:function(){return e}});let d=a.r(72131);function e(a,b){let c=(0,d.useRef)(null),e=(0,d.useRef)(null);return(0,d.useCallback)(d=>{if(null===d){let a=c.current;a&&(c.current=null,a());let b=e.current;b&&(e.current=null,b())}else a&&(c.current=f(a,d)),b&&(e.current=f(b,d))},[a,b])}function f(a,b){if("function"!=typeof a)return a.current=b,()=>{a.current=null};{let c=a(b);return"function"==typeof c?c:()=>a(null)}}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},92434,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"warnOnce",{enumerable:!0,get:function(){return d}});let d=a=>{}},68063,(a,b,c)=>{"use strict";let d;Object.defineProperty(c,"__esModule",{value:!0});var e={getAssetToken:function(){return i},getAssetTokenQuery:function(){return j},getDeploymentId:function(){return g},getDeploymentIdQuery:function(){return h}};for(var f in e)Object.defineProperty(c,f,{enumerable:!0,get:e[f]});function g(){return d}function h(a=!1){return d?`${a?"&":"?"}dpl=${d}`:""}function i(){return!1}function j(a=!1){return""}d=void 0},33354,(a,b,c)=>{"use strict";c._=function(a){return a&&a.__esModule?a:{default:a}}},33095,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={default:function(){return k},getImageProps:function(){return j}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(33354),g=a.r(94915),h=a.r(67161),i=f._(a.r(28427));function j(a){let{props:b}=(0,g.getImgProps)(a,{defaultLoader:i.default,imgConf:{deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],qualities:[75],path:"/_next/image",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!1}});for(let[a,c]of Object.entries(b))void 0===c&&delete b[a];return{props:b}}let k=h.Image},71987,(a,b,c)=>{b.exports=a.r(33095)},73943,a=>{"use strict";var b=a.i(87924),c=a.i(71987);a.s(["BrandLogo",0,function({compact:a=!1}){return(0,b.jsx)("div",{className:"flex items-center gap-3",children:(0,b.jsx)(c.default,{src:"/schubamed-logo.svg",alt:"SCHUBAMED Validation Suite",width:a?180:240,height:64,priority:!0})})}])},97651,35126,a=>{"use strict";var b=a.i(70106);let c=(0,b.default)("Gauge",[["path",{d:"m12 14 4-4",key:"9kzdfg"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0",key:"19p75a"}]]);a.s(["Gauge",0,c],97651);let d=(0,b.default)("Stethoscope",[["path",{d:"M11 2v2",key:"1539x4"}],["path",{d:"M5 2v2",key:"1yf1q8"}],["path",{d:"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1",key:"rb5t3r"}],["path",{d:"M8 15a6 6 0 0 0 12 0v-3",key:"x18d4x"}],["circle",{cx:"20",cy:"10",r:"2",key:"ts1r5v"}]]);a.s(["Stethoscope",0,d],35126)}]; -//# sourceMappingURL=_0v6sf8t._.js.map \ No newline at end of file +//# sourceMappingURL=_0arfgns._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0iy5o-h._.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0iy5o-h._.js index 8b27bdf5..f7b9aaa0 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0iy5o-h._.js +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0iy5o-h._.js @@ -1,3 +1,3 @@ -module.exports=[33508,a=>{"use strict";let b=(0,a.i(70106).default)("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]);a.s(["X",0,b],33508)},53250,a=>{"use strict";let b="/api/v1";async function c(a,b){let c=await a.text();if(!c)return b;try{let a=JSON.parse(c);return a.detail??a.message??c}catch{return c}}async function d(a,b){let c=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:a,password:b}),credentials:"include"});if(!c.ok){let a=Error(await c.text()||`HTTP ${c.status}`);throw a.status=c.status,a}return c.json()}async function e(a,c){let d=await fetch(`${b}${a}`,{cache:"no-store",credentials:"include"});if(!d.ok)throw Error(`API request failed: ${d.status}`);return d.json()}async function f(a,d,e,f){let g=await fetch(`${b}${a}`,{method:e,headers:{"Content-Type":"application/json"},body:JSON.stringify(f),credentials:"include"});if(!g.ok)throw Error(await c(g,`API request failed: ${g.status}`));return g.json()}async function g(a,d){let e=await fetch(`${b}${a}`,{method:"DELETE",credentials:"include"});if(!e.ok)throw Error(await c(e,`API request failed: ${e.status}`))}async function h(a,d,e){let f=await fetch(`${b}${a}`,{...e,headers:{"Content-Type":"application/json",...e?.headers??{}},credentials:"include"});if(!f.ok)throw Error(await c(f,`API request failed: ${f.status}`));return f.json()}a.s(["API_BASE",0,b,"apiDelete",0,g,"apiFetch",0,h,"apiGet",0,e,"apiSend",0,f,"login",0,d,"normalizeValidationPayload",0,function(a){return{...a,...Object.fromEntries(["contact_id","examiner_id"].map(b=>[b,a[b]||null]))}}])},87532,a=>{"use strict";let b=(0,a.i(70106).default)("Search",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);a.s(["Search",0,b],87532)},81560,a=>{"use strict";let b=(0,a.i(70106).default)("Trash2",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]]);a.s(["Trash2",0,b],81560)},10448,a=>{"use strict";let b=(0,a.i(70106).default)("Pen",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]]);a.s(["Edit2",0,b],10448)},57453,a=>{"use strict";var b=a.i(87924),c=a.i(59501),d=a.i(70025),e=a.i(33217),f=a.i(37927),g=a.i(10448),h=a.i(87532),i=a.i(81560),j=a.i(33508),k=a.i(72131),l=a.i(95245),m=a.i(12314),n=a.i(53250);function o(a){return null==a?"":String(a)}a.s(["CrudPage",0,function({title:a,subtitle:p,endpoint:q,columns:r,fields:s,schema:t,emptyValues:u}){let{token:v}=(0,m.useAuth)(),w=(0,f.useQueryClient)(),[x,y]=(0,k.useState)(1),[z,A]=(0,k.useState)(""),[B,C]=(0,k.useState)(null),[D,E]=(0,k.useState)(!1),F=`${q}?page=${x}&page_size=10&search=${encodeURIComponent(z)}`,G=(0,l.useForm)({resolver:(0,c.zodResolver)(t),defaultValues:u}),H=(0,e.useQuery)({queryKey:[q,x,10,z,v],queryFn:()=>(0,n.apiGet)(F,v??""),enabled:!!v}),I=Math.max(1,Math.ceil((H.data?.total??0)/10)),J=()=>w.invalidateQueries({queryKey:[q]}),K=(0,d.useMutation)({mutationFn:a=>{let b=Object.fromEntries(Object.entries(a).map(([a,b])=>[a,""===b?null:b]));return(0,n.apiSend)(B?`${q}/${B.id}`:q,v??"",B?"PUT":"POST",b)},onSuccess:()=>{E(!1),C(null),G.reset(u),J()}}),L=(0,d.useMutation)({mutationFn:a=>(0,n.apiDelete)(`${q}/${a.id}`,v??""),onSuccess:J}),M=(0,k.useMemo)(()=>H.data?.items??[],[H.data]);return(0,b.jsxs)("div",{className:"space-y-6",children:[(0,b.jsxs)("header",{className:"flex flex-col justify-between gap-4 sm:flex-row sm:items-center",children:[(0,b.jsxs)("div",{children:[(0,b.jsx)("h1",{className:"text-3xl font-semibold text-text",children:a}),(0,b.jsx)("p",{className:"mt-2 text-text-light",children:p})]}),(0,b.jsx)("button",{onClick:function(){C(null),G.reset(u),E(!0)},className:"btn btn-primary h-12",children:"Neu"})]}),(0,b.jsxs)("div",{className:"flex items-center gap-3 rounded-lg border border-border bg-surface px-4 py-3 shadow-soft",children:[(0,b.jsx)(h.Search,{className:"h-5 w-5 text-primary"}),(0,b.jsx)("input",{value:z,onChange:a=>{y(1),A(a.target.value)},placeholder:"Suchen",className:"h-9 flex-1 bg-transparent outline-none"})]}),(0,b.jsx)("section",{className:"overflow-hidden rounded-lg border border-border bg-surface shadow-soft",children:(0,b.jsx)("div",{className:"overflow-x-auto",children:(0,b.jsxs)("table",{className:"min-w-full text-left text-sm",children:[(0,b.jsx)("thead",{className:"bg-background text-xs uppercase text-text-light",children:(0,b.jsxs)("tr",{children:[r.map(a=>(0,b.jsx)("th",{className:"px-5 py-4",children:a.label},String(a.key))),(0,b.jsx)("th",{className:"px-5 py-4 text-right",children:"Aktionen"})]})}),(0,b.jsxs)("tbody",{className:"divide-y divide-border",children:[M.map(a=>(0,b.jsxs)("tr",{className:"hover:bg-accent/10",children:[r.map(c=>(0,b.jsx)("td",{className:"whitespace-nowrap px-5 py-4",children:o(a[c.key])},String(c.key))),(0,b.jsx)("td",{className:"px-5 py-4",children:(0,b.jsxs)("div",{className:"flex justify-end gap-2",children:[(0,b.jsx)("button",{"aria-label":"Bearbeiten",title:"Bearbeiten",onClick:()=>{C(a),G.reset(Object.fromEntries(Object.keys(u).map(b=>[b,o(a[b])]))),E(!0)},className:"icon-btn text-primary-dark",children:(0,b.jsx)(g.Edit2,{className:"h-4 w-4"})}),(0,b.jsx)("button",{"aria-label":"Loeschen",title:L.isPending?"Loeschen laeuft...":"Loeschen",disabled:L.isPending,onClick:()=>L.mutate(a),className:"icon-btn text-danger",children:L.isPending?(0,b.jsx)("span",{className:"spinner"}):(0,b.jsx)(i.Trash2,{className:"h-4 w-4"})})]})})]},a.id)),!H.isLoading&&0===M.length&&(0,b.jsx)("tr",{children:(0,b.jsx)("td",{colSpan:r.length+1,className:"px-5 py-10 text-center text-text-light",children:"Keine Datensaetze gefunden."})})]})]})})}),(0,b.jsxs)("footer",{className:"flex items-center justify-between text-sm text-text-light",children:[(0,b.jsxs)("span",{children:[H.data?.total??0," Datensaetze"]}),(0,b.jsxs)("div",{className:"flex items-center gap-3",children:[(0,b.jsx)("button",{disabled:x<=1,title:x<=1?"Erste Seite erreicht":void 0,onClick:()=>y(a=>a-1),className:"btn btn-secondary",children:"Zurueck"}),(0,b.jsxs)("span",{children:["Seite ",x," von ",I]}),(0,b.jsx)("button",{disabled:x>=I,title:x>=I?"Letzte Seite erreicht":void 0,onClick:()=>y(a=>a+1),className:"btn btn-secondary",children:"Weiter"})]})]}),D&&(0,b.jsx)("div",{className:"fixed inset-0 z-50 flex items-end bg-black/20 p-3 sm:items-center sm:justify-center",children:(0,b.jsxs)("form",{onSubmit:G.handleSubmit(a=>K.mutate(a)),className:"max-h-[92vh] w-full max-w-3xl overflow-y-auto rounded-lg bg-surface p-6 shadow-soft",children:[(0,b.jsxs)("div",{className:"mb-5 flex items-center justify-between",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold",children:B?"Bearbeiten":"Neu"}),(0,b.jsx)("button",{type:"button",onClick:()=>E(!1),className:"icon-btn",children:(0,b.jsx)(j.X,{className:"h-4 w-4"})})]}),(0,b.jsx)("div",{className:"grid gap-4 sm:grid-cols-2",children:s.map(a=>(0,b.jsxs)("label",{className:"textarea"===a.type?"sm:col-span-2":"",children:[(0,b.jsx)("span",{className:"text-sm font-medium",children:a.label}),"select"===a.type?(0,b.jsxs)("select",{...G.register(a.name),className:"mt-2 h-11 w-full rounded-lg border border-border px-3",children:[(0,b.jsx)("option",{value:"",children:"Bitte waehlen"}),a.options?.map(a=>(0,b.jsx)("option",{value:a.value,children:a.label},a.value))]}):"textarea"===a.type?(0,b.jsx)("textarea",{...G.register(a.name),className:"mt-2 min-h-24 w-full rounded-lg border border-border px-3 py-2"}):(0,b.jsx)("input",{type:a.type??"text",...G.register(a.name),className:"mt-2 h-11 w-full rounded-lg border border-border px-3"}),G.formState.errors[a.name]&&(0,b.jsx)("span",{className:"mt-1 block text-xs text-danger",children:"Bitte gueltig ausfuellen."})]},a.name))}),K.isError&&(0,b.jsx)("p",{className:"mt-4 text-sm text-danger",children:"Speichern fehlgeschlagen. Bitte Eingaben pruefen."}),(0,b.jsxs)("div",{className:"mt-6 flex justify-end gap-3",children:[(0,b.jsx)("button",{type:"button",onClick:()=>E(!1),className:"btn btn-secondary",children:"Abbrechen"}),(0,b.jsxs)("button",{type:"submit",disabled:K.isPending,title:K.isPending?"Speichern laeuft...":void 0,className:"btn btn-primary",children:[K.isPending?(0,b.jsx)("span",{className:"spinner"}):null,K.isPending?"Speichern...":"Speichern"]})]})]})})]})}])},32623,a=>{"use strict";var b=a.i(87924),c=a.i(88780),d=a.i(57453);let e=c.z.object({customer_type:c.z.enum(["practice","clinic"]),name:c.z.string().min(2),street:c.z.string().optional().nullable(),postal_code:c.z.string().optional().nullable(),city:c.z.string().optional().nullable(),phone:c.z.string().optional().nullable(),email:c.z.union([c.z.string().email(),c.z.literal(""),c.z.null()]).optional(),hygiene_officer:c.z.string().optional().nullable(),quality_manager:c.z.string().optional().nullable(),notes:c.z.string().optional().nullable()});a.s(["default",0,function(){return(0,b.jsx)(d.CrudPage,{title:"Kunden",subtitle:"Praxen und Kliniken mit Kontakt- und Qualitaetsdaten.",endpoint:"/customers",columns:[{key:"name",label:"Name"},{key:"customer_type",label:"Typ"},{key:"city",label:"Ort"},{key:"phone",label:"Telefon"},{key:"email",label:"Mail"}],fields:[{name:"customer_type",label:"Typ",type:"select",options:[{label:"Praxis",value:"practice"},{label:"Klinik",value:"clinic"}]},{name:"name",label:"Name",required:!0},{name:"street",label:"Adresse"},{name:"postal_code",label:"PLZ"},{name:"city",label:"Ort"},{name:"phone",label:"Telefon"},{name:"email",label:"Mail",type:"email"},{name:"hygiene_officer",label:"Hygienebeauftragter"},{name:"quality_manager",label:"QM"},{name:"notes",label:"Bemerkungen",type:"textarea"}],schema:e,emptyValues:{customer_type:"practice",name:"",street:"",postal_code:"",city:"",phone:"",email:"",hygiene_officer:"",quality_manager:"",notes:""}})}])}]; +module.exports=[33508,a=>{"use strict";let b=(0,a.i(70106).default)("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]);a.s(["X",0,b],33508)},53250,a=>{"use strict";let b="/api/v1";async function c(a,b){let c=await a.text();if(!c)return b;try{let a=JSON.parse(c);return a.detail??a.message??c}catch{return c}}async function d(a,b){let c=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:a,password:b}),credentials:"include"});if(!c.ok){let a=Error(await c.text()||`HTTP ${c.status}`);throw a.status=c.status,a}return c.json()}async function e(a,c){let d=await fetch(`${b}${a}`,{cache:"no-store",credentials:"include"});if(!d.ok)throw Error(`API request failed: ${d.status}`);return d.json()}async function f(a,d,e,f){let g=await fetch(`${b}${a}`,{method:e,headers:{"Content-Type":"application/json"},body:JSON.stringify(f),credentials:"include"});if(!g.ok)throw Error(await c(g,`API request failed: ${g.status}`));return g.json()}async function g(a,d){let e=await fetch(`${b}${a}`,{method:"DELETE",credentials:"include"});if(!e.ok)throw Error(await c(e,`API request failed: ${e.status}`))}async function h(a,d,e){let f=await fetch(`${b}${a}`,{...e,headers:{"Content-Type":"application/json",...e?.headers??{}},credentials:"include"});if(!f.ok)throw Error(await c(f,`API request failed: ${f.status}`));return f.json()}a.s(["API_BASE",0,b,"apiDelete",0,g,"apiFetch",0,h,"apiGet",0,e,"apiSend",0,f,"login",0,d,"normalizeValidationPayload",0,function(a){return{...a,...Object.fromEntries(["contact_id","examiner_id"].map(b=>[b,a[b]||null]))}}])},87532,a=>{"use strict";let b=(0,a.i(70106).default)("Search",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);a.s(["Search",0,b],87532)},81560,a=>{"use strict";let b=(0,a.i(70106).default)("Trash2",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]]);a.s(["Trash2",0,b],81560)},10448,a=>{"use strict";let b=(0,a.i(70106).default)("Pen",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]]);a.s(["Edit2",0,b],10448)},57453,a=>{"use strict";var b=a.i(87924),c=a.i(59501),d=a.i(70025),e=a.i(33217),f=a.i(37927),g=a.i(10448),h=a.i(87532),i=a.i(81560),j=a.i(33508),k=a.i(72131),l=a.i(95245),m=a.i(12314),n=a.i(53250);function o(a){return null==a?"":String(a)}a.s(["CrudPage",0,function({title:a,subtitle:p,endpoint:q,columns:r,fields:s,schema:t,emptyValues:u}){let{token:v}=(0,m.useAuth)(),w=(0,f.useQueryClient)(),[x,y]=(0,k.useState)(1),[z,A]=(0,k.useState)(""),[B,C]=(0,k.useState)(null),[D,E]=(0,k.useState)(!1),F=`${q}?page=${x}&page_size=10&search=${encodeURIComponent(z)}`,G=(0,l.useForm)({resolver:(0,c.zodResolver)(t),defaultValues:u}),H=(0,e.useQuery)({queryKey:[q,x,10,z,v],queryFn:()=>(0,n.apiGet)(F,v??""),enabled:!!v}),I=Math.max(1,Math.ceil((H.data?.total??0)/10)),J=()=>w.invalidateQueries({queryKey:[q]}),K=(0,d.useMutation)({mutationFn:a=>{let b=Object.fromEntries(Object.entries(a).map(([a,b])=>[a,""===b?null:b]));return(0,n.apiSend)(B?`${q}/${B.id}`:q,v??"",B?"PUT":"POST",b)},onSuccess:()=>{E(!1),C(null),G.reset(u),J()}}),L=(0,d.useMutation)({mutationFn:a=>(0,n.apiDelete)(`${q}/${a.id}`,v??""),onSuccess:J}),M=(0,k.useMemo)(()=>H.data?.items??[],[H.data]);return(0,b.jsxs)("div",{className:"space-y-6",children:[(0,b.jsxs)("header",{className:"flex flex-col justify-between gap-4 sm:flex-row sm:items-center",children:[(0,b.jsxs)("div",{children:[(0,b.jsx)("h1",{className:"text-3xl font-semibold text-text",children:a}),(0,b.jsx)("p",{className:"mt-2 text-text-light",children:p})]}),(0,b.jsx)("button",{onClick:function(){C(null),G.reset(u),E(!0)},className:"btn btn-primary h-12",children:"Neu"})]}),(0,b.jsxs)("div",{className:"flex items-center gap-3 rounded-lg border border-border bg-surface px-4 py-3 shadow-soft",children:[(0,b.jsx)(h.Search,{className:"h-5 w-5 text-primary"}),(0,b.jsx)("input",{value:z,onChange:a=>{y(1),A(a.target.value)},placeholder:"Suchen",className:"h-9 flex-1 bg-transparent outline-none"})]}),(0,b.jsx)("section",{className:"overflow-hidden rounded-lg border border-border bg-surface shadow-soft",children:(0,b.jsx)("div",{className:"overflow-x-auto",children:(0,b.jsxs)("table",{className:"min-w-full text-left text-sm",children:[(0,b.jsx)("thead",{className:"bg-background text-xs uppercase text-text-light",children:(0,b.jsxs)("tr",{children:[r.map(a=>(0,b.jsx)("th",{className:"px-5 py-4",children:a.label},String(a.key))),(0,b.jsx)("th",{className:"px-5 py-4 text-right",children:"Aktionen"})]})}),(0,b.jsxs)("tbody",{className:"divide-y divide-border",children:[M.map(a=>(0,b.jsxs)("tr",{className:"hover:bg-accent/10",children:[r.map(c=>(0,b.jsx)("td",{className:"whitespace-nowrap px-5 py-4",children:o(a[c.key])},String(c.key))),(0,b.jsx)("td",{className:"px-5 py-4",children:(0,b.jsxs)("div",{className:"flex justify-end gap-2",children:[(0,b.jsx)("button",{"aria-label":"Bearbeiten",title:"Bearbeiten",onClick:()=>{C(a),G.reset(Object.fromEntries(Object.keys(u).map(b=>[b,o(a[b])]))),E(!0)},className:"icon-btn text-primary-dark",children:(0,b.jsx)(g.Edit2,{className:"h-4 w-4"})}),(0,b.jsx)("button",{"aria-label":"Loeschen",title:L.isPending?"Loeschen laeuft...":"Loeschen",disabled:L.isPending,onClick:()=>L.mutate(a),className:"icon-btn text-danger",children:L.isPending?(0,b.jsx)("span",{className:"spinner"}):(0,b.jsx)(i.Trash2,{className:"h-4 w-4"})})]})})]},a.id)),!H.isLoading&&0===M.length&&(0,b.jsx)("tr",{children:(0,b.jsx)("td",{colSpan:r.length+1,className:"px-5 py-10 text-center text-text-light",children:"Keine Datensaetze gefunden."})})]})]})})}),(0,b.jsxs)("footer",{className:"flex items-center justify-between text-sm text-text-light",children:[(0,b.jsxs)("span",{children:[H.data?.total??0," Datensaetze"]}),(0,b.jsxs)("div",{className:"flex items-center gap-3",children:[(0,b.jsx)("button",{disabled:x<=1,title:x<=1?"Erste Seite erreicht":void 0,onClick:()=>y(a=>a-1),className:"btn btn-secondary",children:"Zurueck"}),(0,b.jsxs)("span",{children:["Seite ",x," von ",I]}),(0,b.jsx)("button",{disabled:x>=I,title:x>=I?"Letzte Seite erreicht":void 0,onClick:()=>y(a=>a+1),className:"btn btn-secondary",children:"Weiter"})]})]}),D&&(0,b.jsx)("div",{className:"fixed inset-0 z-50 flex items-end bg-black/20 p-3 sm:items-center sm:justify-center",children:(0,b.jsxs)("form",{onSubmit:G.handleSubmit(a=>K.mutate(a)),className:"max-h-[92vh] w-full max-w-3xl overflow-y-auto rounded-lg bg-surface p-6 shadow-soft",children:[(0,b.jsxs)("div",{className:"mb-5 flex items-center justify-between",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold",children:B?"Bearbeiten":"Neu"}),(0,b.jsx)("button",{type:"button",onClick:()=>E(!1),className:"icon-btn",children:(0,b.jsx)(j.X,{className:"h-4 w-4"})})]}),(0,b.jsx)("div",{className:"grid gap-4 sm:grid-cols-2",children:s.map(a=>(0,b.jsxs)("label",{className:"textarea"===a.type?"sm:col-span-2":"",children:[(0,b.jsx)("span",{className:"text-sm font-medium",children:a.label}),"select"===a.type?(0,b.jsxs)("select",{...G.register(a.name),className:"mt-2 h-11 w-full rounded-lg border border-border px-3",children:[(0,b.jsx)("option",{value:"",children:"Bitte waehlen"}),a.options?.map(a=>(0,b.jsx)("option",{value:a.value,children:a.label},a.value))]}):"textarea"===a.type?(0,b.jsx)("textarea",{...G.register(a.name),className:"mt-2 min-h-24 w-full rounded-lg border border-border px-3 py-2"}):(0,b.jsx)("input",{type:a.type??"text",...G.register(a.name),className:"mt-2 h-11 w-full rounded-lg border border-border px-3"}),G.formState.errors[a.name]&&(0,b.jsx)("span",{className:"mt-1 block text-xs text-danger",children:"Bitte gueltig ausfuellen."})]},a.name))}),K.isError&&(0,b.jsx)("p",{className:"mt-4 text-sm text-danger",children:"Speichern fehlgeschlagen. Bitte Eingaben pruefen."}),(0,b.jsxs)("div",{className:"mt-6 flex justify-end gap-3",children:[(0,b.jsx)("button",{type:"button",onClick:()=>E(!1),className:"btn btn-secondary",children:"Abbrechen"}),(0,b.jsxs)("button",{type:"submit",disabled:K.isPending,title:K.isPending?"Speichern laeuft...":void 0,className:"btn btn-primary",children:[K.isPending?(0,b.jsx)("span",{className:"spinner"}):null,K.isPending?"Speichern...":"Speichern"]})]})]})})]})}])},32623,a=>{"use strict";var b=a.i(87924),c=a.i(88780),d=a.i(57453);let e=c.z.object({customer_type:c.z.enum(["practice","clinic"]),source_system:c.z.string().optional().nullable(),external_id:c.z.string().optional().nullable(),name:c.z.string().min(2),street:c.z.string().optional().nullable(),postal_code:c.z.string().optional().nullable(),city:c.z.string().optional().nullable(),phone:c.z.string().optional().nullable(),email:c.z.union([c.z.string().email(),c.z.literal(""),c.z.null()]).optional(),hygiene_officer:c.z.string().optional().nullable(),quality_manager:c.z.string().optional().nullable(),notes:c.z.string().optional().nullable()});a.s(["default",0,function(){return(0,b.jsx)(d.CrudPage,{title:"Kunden",subtitle:"Praxen und Kliniken mit Kontakt- und Qualitaetsdaten.",endpoint:"/customers",columns:[{key:"name",label:"Name"},{key:"external_id",label:"Kundennr."},{key:"customer_type",label:"Typ"},{key:"city",label:"Ort"},{key:"phone",label:"Telefon"},{key:"email",label:"Mail"}],fields:[{name:"customer_type",label:"Typ",type:"select",options:[{label:"Praxis",value:"practice"},{label:"Klinik",value:"clinic"}]},{name:"source_system",label:"Quellsystem"},{name:"external_id",label:"Kundennummer"},{name:"name",label:"Name",required:!0},{name:"street",label:"Adresse"},{name:"postal_code",label:"PLZ"},{name:"city",label:"Ort"},{name:"phone",label:"Telefon"},{name:"email",label:"Mail",type:"email"},{name:"hygiene_officer",label:"Hygienebeauftragter"},{name:"quality_manager",label:"QM"},{name:"notes",label:"Bemerkungen",type:"textarea"}],schema:e,emptyValues:{customer_type:"practice",source_system:"",external_id:"",name:"",street:"",postal_code:"",city:"",phone:"",email:"",hygiene_officer:"",quality_manager:"",notes:""}})}])}]; //# sourceMappingURL=_0iy5o-h._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0js1deh._.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0nmawq4._.js similarity index 93% rename from validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0js1deh._.js rename to validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0nmawq4._.js index 177a411c..e281677b 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0js1deh._.js +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0nmawq4._.js @@ -1,3 +1,3 @@ -module.exports=[84505,a=>{"use strict";let b=(0,a.i(70106).default)("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);a.s(["Download",0,b],84505)},14548,a=>{"use strict";let b=(0,a.i(70106).default)("Save",[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]]);a.s(["Save",0,b],14548)},87654,a=>{"use strict";let b=(0,a.i(70106).default)("RotateCcw",[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]]);a.s(["RotateCcw",0,b],87654)},86794,a=>{"use strict";var b=a.i(87924),c=a.i(70025),d=a.i(33217),e=a.i(37927),f=a.i(84505),g=a.i(87654),h=a.i(14548),i=a.i(72131),j=a.i(12314);let k={layout_profile:"STANDARD",show_cover_result_text:!0,signature_mode:"TECHNICAL_ONLY",image_size:"MEDIUM",page_break_before_main_chapters:!0,page_margin:"STANDARD",section_spacing:"STANDARD",table_layout:"STANDARD",table_font_size:"STANDARD",image_position:"SIDE_BY_SIDE",max_images_per_page:2,show_image_captions:!0,show_header:!0,show_footer:!0,logo_size:"MEDIUM",compact_cover:!1};async function l(a,b){try{return(await a.json()).detail??b}catch{return b}}async function m(){let a=await fetch("/api/report-settings",{credentials:"include",cache:"no-store"});if(!a.ok)throw Error(await l(a,"Berichtseinstellungen konnten nicht geladen werden."));return await a.json()}async function n(a){let b=await fetch("/api/report-settings",{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(a),credentials:"include",cache:"no-store"});if(!b.ok)throw Error(await l(b,"Berichtseinstellungen konnten nicht gespeichert werden."));return await b.json()}async function o(a){let b=await fetch("/api/report-settings/preview",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(a),credentials:"include",cache:"no-store"});if(!b.ok)throw Error(await l(b,"PDF-Vorschau konnte nicht erzeugt werden."));return URL.createObjectURL(await b.blob())}function p(a){return a?{layout_profile:a.layout_profile,show_cover_result_text:a.show_cover_result_text,signature_mode:a.signature_mode,image_size:a.image_size,page_break_before_main_chapters:a.page_break_before_main_chapters,page_margin:a.page_margin,section_spacing:a.section_spacing,table_layout:a.table_layout,table_font_size:a.table_font_size,image_position:a.image_position,max_images_per_page:a.max_images_per_page,show_image_captions:a.show_image_captions,show_header:a.show_header,show_footer:a.show_footer,logo_size:a.logo_size,compact_cover:a.compact_cover}:k}function q({title:a,description:c,children:d}){return(0,b.jsxs)("section",{className:"rounded-lg border border-border bg-surface p-5 shadow-soft",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold text-text",children:a}),(0,b.jsx)("p",{className:"mt-1 text-sm text-text-light",children:c}),(0,b.jsx)("div",{className:"mt-5 space-y-5",children:d})]})}function r({label:a,value:c,options:d,onChange:e}){return(0,b.jsxs)("div",{children:[(0,b.jsx)("p",{className:"mb-2 text-sm font-semibold text-text",children:a}),(0,b.jsx)("div",{className:"grid gap-2 sm:grid-cols-2",children:d.map(a=>(0,b.jsx)("button",{type:"button","aria-pressed":c===a.value,className:`min-h-12 rounded-lg border px-4 text-sm font-semibold transition hover:shadow-soft focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${c===a.value?"border-primary bg-primary text-white":"border-border bg-white text-text hover:bg-background"}`,onClick:()=>e(a.value),children:a.label},a.value))})]})}function s({label:a,value:c,options:d,onChange:e}){return(0,b.jsxs)("div",{children:[(0,b.jsx)("p",{className:"mb-2 text-sm font-semibold text-text",children:a}),(0,b.jsx)("div",{className:"grid gap-2",children:d.map(a=>(0,b.jsxs)("button",{type:"button","aria-pressed":c===a.value,className:`flex min-h-12 items-center justify-between rounded-lg border px-4 text-left text-sm font-semibold transition hover:shadow-soft focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${c===a.value?"border-primary bg-accent/25 text-primary-dark":"border-border bg-white text-text hover:bg-background"}`,onClick:()=>e(a.value),children:[(0,b.jsx)("span",{children:a.label}),(0,b.jsx)("span",{className:`h-3 w-3 rounded-full border ${c===a.value?"border-primary bg-primary":"border-border"}`})]},a.value))})]})}function t({label:a,checked:c,onChange:d}){return(0,b.jsxs)("button",{type:"button","aria-pressed":c,className:"flex min-h-12 w-full items-center justify-between rounded-lg border border-border bg-white px-4 text-left text-sm font-semibold transition hover:bg-background hover:shadow-soft focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98]",onClick:()=>d(!c),children:[(0,b.jsx)("span",{children:a}),(0,b.jsx)("span",{className:`rounded-full px-3 py-1 text-xs ${c?"bg-success/15 text-success":"bg-slate-100 text-text-light"}`,children:c?"Ein":"Aus"})]})}a.s(["default",0,function(){let{user:a}=(0,j.useAuth)(),l=(0,e.useQueryClient)(),[u,v]=(0,i.useState)(k),[w,x]=(0,i.useState)(""),[y,z]=(0,i.useState)(""),[A,B]=(0,i.useState)(""),C=(0,d.useQuery)({queryKey:["report-settings"],queryFn:m,enabled:a?.role==="admin"}),D=(0,i.useMemo)(()=>p(C.data),[C.data]),E=JSON.stringify(u)!==JSON.stringify(D);(0,i.useEffect)(()=>{C.data&&v(p(C.data))},[C.data]),(0,i.useEffect)(()=>()=>{w&&URL.revokeObjectURL(w)},[w]);let F=(0,c.useMutation)({mutationFn:n,onSuccess:async a=>{z("Berichtseinstellungen gespeichert"),B(""),v(p(a)),await l.invalidateQueries({queryKey:["report-settings"]})},onError:a=>{B(a.message),z("")}}),G=(0,c.useMutation)({mutationFn:o,onSuccess:a=>{x(b=>(b&&URL.revokeObjectURL(b),a)),z("Vorschau aktualisiert"),B("")},onError:a=>{B(a.message),z("")}});return a?.role!=="admin"?(0,b.jsx)("div",{className:"rounded-lg border border-border bg-surface p-6 text-text-light",children:"Nur fuer Administratoren verfuegbar."}):(0,b.jsxs)("div",{className:"space-y-6 pb-24",children:[(0,b.jsxs)("header",{children:[(0,b.jsx)("h1",{className:"text-3xl font-semibold text-text",children:"Berichtseinstellungen"}),(0,b.jsx)("p",{className:"mt-2 max-w-3xl text-text-light",children:"Grundlegende Orion-Berichtsdarstellung mit sicheren Auswahloptionen und PDF-Vorschau."})]}),C.isLoading?(0,b.jsxs)("div",{className:"flex items-center gap-3 rounded-lg border border-border bg-surface p-5 text-sm text-text-light",children:[(0,b.jsx)("span",{className:"spinner"}),"Berichtseinstellungen werden geladen..."]}):C.isError?(0,b.jsx)("div",{className:"rounded-lg border border-danger/40 bg-danger/10 p-5 text-sm text-danger",children:"Berichtseinstellungen konnten nicht geladen werden."}):(0,b.jsxs)("div",{className:"grid gap-5 xl:grid-cols-[minmax(0,1fr)_minmax(360px,520px)]",children:[(0,b.jsxs)("div",{className:"grid gap-5 lg:grid-cols-2 xl:grid-cols-1",children:[(0,b.jsxs)(q,{title:"Seitenlayout",description:"Steuert Seitenränder und Abstände im Bericht.",children:[(0,b.jsx)(r,{label:"Seitenränder",value:u.page_margin,options:[{value:"NARROW",label:"Schmal"},{value:"STANDARD",label:"Standard"},{value:"WIDE",label:"Breit"}],onChange:a=>v(b=>({...b,page_margin:a}))}),(0,b.jsx)(r,{label:"Abschnittsabstände",value:u.section_spacing,options:[{value:"COMPACT",label:"Kompakt"},{value:"STANDARD",label:"Standard"}],onChange:a=>v(b=>({...b,section_spacing:a}))}),(0,b.jsx)(r,{label:"Layoutprofil",value:u.layout_profile,options:[{value:"COMPACT",label:"Kompakt"},{value:"STANDARD",label:"Standard"}],onChange:a=>v(b=>({...b,layout_profile:a}))})]}),(0,b.jsxs)(q,{title:"Deckblatt",description:"Sichtbarkeit und kompaktere Darstellung auf der Titelseite.",children:[(0,b.jsx)(t,{label:"Ergebnistext auf Deckblatt",checked:u.show_cover_result_text,onChange:a=>v(b=>({...b,show_cover_result_text:a}))}),(0,b.jsx)(t,{label:"Deckblatt kompakt",checked:u.compact_cover,onChange:a=>v(b=>({...b,compact_cover:a}))}),(0,b.jsx)(s,{label:"Unterschriften",value:u.signature_mode,options:[{value:"TECHNICAL_ONLY",label:"Nur technische Validierung"},{value:"TECHNICAL_AND_CLIENT",label:"Technische Validierung + Auftraggeber"}],onChange:a=>v(b=>({...b,signature_mode:a}))})]}),(0,b.jsxs)(q,{title:"Tabellen",description:"Dichte und Schrift der Berichtstabellen.",children:[(0,b.jsx)(r,{label:"Tabellenlayout",value:u.table_layout,options:[{value:"COMPACT",label:"Kompakt"},{value:"STANDARD",label:"Standard"}],onChange:a=>v(b=>({...b,table_layout:a}))}),(0,b.jsx)(r,{label:"Tabellenschrift",value:u.table_font_size,options:[{value:"SMALL",label:"Klein"},{value:"STANDARD",label:"Standard"}],onChange:a=>v(b=>({...b,table_font_size:a}))})]}),(0,b.jsxs)(q,{title:"Bilder",description:"Größe, Anordnung und Beschriftungen von Bildern.",children:[(0,b.jsx)(r,{label:"Standard-Bildgröße",value:u.image_size,options:[{value:"SMALL",label:"Klein"},{value:"MEDIUM",label:"Mittel"},{value:"LARGE",label:"Groß"}],onChange:a=>v(b=>({...b,image_size:a}))}),(0,b.jsx)(s,{label:"Bildposition",value:u.image_position,options:[{value:"STACKED",label:"Untereinander"},{value:"SIDE_BY_SIDE",label:"Nebeneinander wenn möglich"}],onChange:a=>v(b=>({...b,image_position:a}))}),(0,b.jsx)(r,{label:"Maximale Bilder pro Seite",value:String(u.max_images_per_page),options:[{value:"1",label:"1"},{value:"2",label:"2"},{value:"4",label:"4"}],onChange:a=>v(b=>({...b,max_images_per_page:Number(a)}))}),(0,b.jsx)(t,{label:"Bildbeschriftungen",checked:u.show_image_captions,onChange:a=>v(b=>({...b,show_image_captions:a}))})]}),(0,b.jsxs)(q,{title:"Kopf- und Fußzeile",description:"Sichtbarkeit und Logo-Größe im Berichtskopf.",children:[(0,b.jsx)(t,{label:"Kopfzeile anzeigen",checked:u.show_header,onChange:a=>v(b=>({...b,show_header:a}))}),(0,b.jsx)(t,{label:"Fußzeile anzeigen",checked:u.show_footer,onChange:a=>v(b=>({...b,show_footer:a}))}),(0,b.jsx)(r,{label:"Firmenlogo",value:u.logo_size,options:[{value:"SMALL",label:"Klein"},{value:"MEDIUM",label:"Mittel"},{value:"LARGE",label:"Groß"}],onChange:a=>v(b=>({...b,logo_size:a}))})]}),(0,b.jsx)(q,{title:"Kapitel",description:"Legt fest, ob Hauptkapitel auf neuen Seiten beginnen.",children:(0,b.jsx)(t,{label:"Neue Seite vor Hauptkapiteln",checked:u.page_break_before_main_chapters,onChange:a=>v(b=>({...b,page_break_before_main_chapters:a}))})})]}),(0,b.jsxs)("aside",{className:"rounded-lg border border-border bg-surface p-4 shadow-soft xl:sticky xl:top-6 xl:h-[calc(100vh-3rem)]",children:[(0,b.jsxs)("div",{className:"flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between xl:flex-col xl:items-stretch",children:[(0,b.jsxs)("div",{children:[(0,b.jsx)("h2",{className:"text-xl font-semibold text-text",children:"Live-Vorschau"}),(0,b.jsx)("p",{className:"mt-1 text-sm text-text-light",children:"PDF-Vorschau mit aktuellen, noch nicht gespeicherten Einstellungen."})]}),(0,b.jsxs)("button",{type:"button",className:"btn btn-secondary h-12",disabled:G.isPending||C.isLoading,onClick:()=>G.mutate(u),children:[G.isPending?(0,b.jsx)("span",{className:"spinner"}):(0,b.jsx)(f.Download,{className:"h-4 w-4"}),G.isPending?"PDF wird erzeugt...":"Vorschau aktualisieren"]})]}),(0,b.jsx)("div",{className:"mt-4 h-[520px] overflow-hidden rounded-lg border border-border bg-background xl:h-[calc(100%-8rem)]",children:w?(0,b.jsx)("iframe",{title:"Orion PDF-Vorschau",src:w,className:"h-full w-full"}):(0,b.jsx)("div",{className:"flex h-full items-center justify-center p-6 text-center text-sm text-text-light",children:"Erzeuge eine Vorschau, um die Auswirkungen der Einstellungen direkt zu prüfen."})}),(0,b.jsx)("p",{className:"mt-3 text-xs text-text-light",children:"Falls der Browser keine eingebetteten PDFs anzeigt, öffnet er die Datei über seine Standard-PDF-Funktion."})]})]}),(y||A||E)&&(0,b.jsx)("div",{className:`rounded-lg border p-4 text-sm ${A?"border-danger/40 bg-danger/10 text-danger":"border-accent/40 bg-accent/10 text-primary-dark"}`,children:A||y||"Ungespeicherte Änderungen"}),(0,b.jsx)("div",{className:"fixed bottom-0 left-0 right-0 z-30 border-t border-border bg-surface/95 px-4 py-3 shadow-soft backdrop-blur lg:left-72",children:(0,b.jsxs)("div",{className:"mx-auto flex max-w-7xl flex-col gap-3 sm:flex-row sm:items-center sm:justify-end",children:[(0,b.jsxs)("button",{type:"button",className:"btn btn-secondary h-12",disabled:!E||F.isPending,onClick:()=>{v(D),B(""),z("Änderungen verworfen")},children:[(0,b.jsx)(g.RotateCcw,{className:"h-4 w-4"}),"Zurücksetzen"]}),(0,b.jsxs)("button",{type:"button",className:"btn btn-secondary h-12",disabled:G.isPending||C.isLoading,onClick:()=>G.mutate(u),children:[G.isPending?(0,b.jsx)("span",{className:"spinner"}):(0,b.jsx)(f.Download,{className:"h-4 w-4"}),G.isPending?"PDF wird erzeugt...":"Vorschau aktualisieren"]}),(0,b.jsxs)("button",{type:"button",className:"btn btn-primary h-12",disabled:!E||F.isPending||C.isLoading,onClick:()=>F.mutate(u),children:[F.isPending?(0,b.jsx)("span",{className:"spinner"}):(0,b.jsx)(h.Save,{className:"h-4 w-4"}),F.isPending?"Speichern...":"Änderungen speichern"]})]})})]})}])}]; +module.exports=[87654,a=>{"use strict";let b=(0,a.i(70106).default)("RotateCcw",[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]]);a.s(["RotateCcw",0,b],87654)},84505,a=>{"use strict";let b=(0,a.i(70106).default)("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);a.s(["Download",0,b],84505)},14548,a=>{"use strict";let b=(0,a.i(70106).default)("Save",[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]]);a.s(["Save",0,b],14548)},86794,a=>{"use strict";var b=a.i(87924),c=a.i(70025),d=a.i(33217),e=a.i(37927),f=a.i(84505),g=a.i(87654),h=a.i(14548),i=a.i(72131),j=a.i(12314);let k={layout_profile:"STANDARD",show_cover_result_text:!0,signature_mode:"TECHNICAL_ONLY",image_size:"MEDIUM",page_break_before_main_chapters:!0,page_margin:"STANDARD",section_spacing:"STANDARD",table_layout:"STANDARD",table_font_size:"STANDARD",image_position:"SIDE_BY_SIDE",max_images_per_page:2,show_image_captions:!0,show_header:!0,show_footer:!0,logo_size:"MEDIUM",compact_cover:!1};async function l(a,b){try{return(await a.json()).detail??b}catch{return b}}async function m(){let a=await fetch("/api/report-settings",{credentials:"include",cache:"no-store"});if(!a.ok)throw Error(await l(a,"Berichtseinstellungen konnten nicht geladen werden."));return await a.json()}async function n(a){let b=await fetch("/api/report-settings",{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(a),credentials:"include",cache:"no-store"});if(!b.ok)throw Error(await l(b,"Berichtseinstellungen konnten nicht gespeichert werden."));return await b.json()}async function o(a){let b=await fetch("/api/report-settings/preview",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(a),credentials:"include",cache:"no-store"});if(!b.ok)throw Error(await l(b,"PDF-Vorschau konnte nicht erzeugt werden."));return URL.createObjectURL(await b.blob())}function p(a){return a?{layout_profile:a.layout_profile,show_cover_result_text:a.show_cover_result_text,signature_mode:a.signature_mode,image_size:a.image_size,page_break_before_main_chapters:a.page_break_before_main_chapters,page_margin:a.page_margin,section_spacing:a.section_spacing,table_layout:a.table_layout,table_font_size:a.table_font_size,image_position:a.image_position,max_images_per_page:a.max_images_per_page,show_image_captions:a.show_image_captions,show_header:a.show_header,show_footer:a.show_footer,logo_size:a.logo_size,compact_cover:a.compact_cover}:k}function q({title:a,description:c,children:d}){return(0,b.jsxs)("section",{className:"rounded-lg border border-border bg-surface p-5 shadow-soft",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold text-text",children:a}),(0,b.jsx)("p",{className:"mt-1 text-sm text-text-light",children:c}),(0,b.jsx)("div",{className:"mt-5 space-y-5",children:d})]})}function r({label:a,value:c,options:d,onChange:e}){return(0,b.jsxs)("div",{children:[(0,b.jsx)("p",{className:"mb-2 text-sm font-semibold text-text",children:a}),(0,b.jsx)("div",{className:"grid gap-2 sm:grid-cols-2",children:d.map(a=>(0,b.jsx)("button",{type:"button","aria-pressed":c===a.value,className:`min-h-12 rounded-lg border px-4 text-sm font-semibold transition hover:shadow-soft focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${c===a.value?"border-primary bg-primary text-white":"border-border bg-white text-text hover:bg-background"}`,onClick:()=>e(a.value),children:a.label},a.value))})]})}function s({label:a,value:c,options:d,onChange:e}){return(0,b.jsxs)("div",{children:[(0,b.jsx)("p",{className:"mb-2 text-sm font-semibold text-text",children:a}),(0,b.jsx)("div",{className:"grid gap-2",children:d.map(a=>(0,b.jsxs)("button",{type:"button","aria-pressed":c===a.value,className:`flex min-h-12 items-center justify-between rounded-lg border px-4 text-left text-sm font-semibold transition hover:shadow-soft focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${c===a.value?"border-primary bg-accent/25 text-primary-dark":"border-border bg-white text-text hover:bg-background"}`,onClick:()=>e(a.value),children:[(0,b.jsx)("span",{children:a.label}),(0,b.jsx)("span",{className:`h-3 w-3 rounded-full border ${c===a.value?"border-primary bg-primary":"border-border"}`})]},a.value))})]})}function t({label:a,checked:c,onChange:d}){return(0,b.jsxs)("button",{type:"button","aria-pressed":c,className:"flex min-h-12 w-full items-center justify-between rounded-lg border border-border bg-white px-4 text-left text-sm font-semibold transition hover:bg-background hover:shadow-soft focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98]",onClick:()=>d(!c),children:[(0,b.jsx)("span",{children:a}),(0,b.jsx)("span",{className:`rounded-full px-3 py-1 text-xs ${c?"bg-success/15 text-success":"bg-slate-100 text-text-light"}`,children:c?"Ein":"Aus"})]})}a.s(["default",0,function(){let{user:a}=(0,j.useAuth)(),l=(0,e.useQueryClient)(),[u,v]=(0,i.useState)(k),[w,x]=(0,i.useState)(""),[y,z]=(0,i.useState)(""),[A,B]=(0,i.useState)(""),C=(0,d.useQuery)({queryKey:["report-settings"],queryFn:m,enabled:a?.role==="admin"}),D=(0,i.useMemo)(()=>p(C.data),[C.data]),E=JSON.stringify(u)!==JSON.stringify(D);(0,i.useEffect)(()=>{C.data&&v(p(C.data))},[C.data]),(0,i.useEffect)(()=>()=>{w&&URL.revokeObjectURL(w)},[w]);let F=(0,c.useMutation)({mutationFn:n,onSuccess:async a=>{z("Berichtseinstellungen gespeichert"),B(""),v(p(a)),await l.invalidateQueries({queryKey:["report-settings"]})},onError:a=>{B(a.message),z("")}}),G=(0,c.useMutation)({mutationFn:o,onSuccess:a=>{x(b=>(b&&URL.revokeObjectURL(b),a)),z("Vorschau aktualisiert"),B("")},onError:a=>{B(a.message),z("")}});return a?.role!=="admin"?(0,b.jsx)("div",{className:"rounded-lg border border-border bg-surface p-6 text-text-light",children:"Nur fuer Administratoren verfuegbar."}):(0,b.jsxs)("div",{className:"space-y-6 pb-24",children:[(0,b.jsxs)("header",{children:[(0,b.jsx)("h1",{className:"text-3xl font-semibold text-text",children:"Berichtseinstellungen"}),(0,b.jsx)("p",{className:"mt-2 max-w-3xl text-text-light",children:"Grundlegende Orion-Berichtsdarstellung mit sicheren Auswahloptionen und PDF-Vorschau."})]}),C.isLoading?(0,b.jsxs)("div",{className:"flex items-center gap-3 rounded-lg border border-border bg-surface p-5 text-sm text-text-light",children:[(0,b.jsx)("span",{className:"spinner"}),"Berichtseinstellungen werden geladen..."]}):C.isError?(0,b.jsx)("div",{className:"rounded-lg border border-danger/40 bg-danger/10 p-5 text-sm text-danger",children:"Berichtseinstellungen konnten nicht geladen werden."}):(0,b.jsxs)("div",{className:"grid gap-5 xl:grid-cols-[minmax(0,1fr)_minmax(360px,520px)]",children:[(0,b.jsxs)("div",{className:"grid gap-5 lg:grid-cols-2 xl:grid-cols-1",children:[(0,b.jsxs)(q,{title:"Seitenlayout",description:"Steuert Seitenränder und Abstände im Bericht.",children:[(0,b.jsx)(r,{label:"Seitenränder",value:u.page_margin,options:[{value:"NARROW",label:"Schmal"},{value:"STANDARD",label:"Standard"},{value:"WIDE",label:"Breit"}],onChange:a=>v(b=>({...b,page_margin:a}))}),(0,b.jsx)(r,{label:"Abschnittsabstände",value:u.section_spacing,options:[{value:"COMPACT",label:"Kompakt"},{value:"STANDARD",label:"Standard"}],onChange:a=>v(b=>({...b,section_spacing:a}))}),(0,b.jsx)(r,{label:"Layoutprofil",value:u.layout_profile,options:[{value:"COMPACT",label:"Kompakt"},{value:"STANDARD",label:"Standard"}],onChange:a=>v(b=>({...b,layout_profile:a}))})]}),(0,b.jsxs)(q,{title:"Deckblatt",description:"Sichtbarkeit und kompaktere Darstellung auf der Titelseite.",children:[(0,b.jsx)(t,{label:"Ergebnistext auf Deckblatt",checked:u.show_cover_result_text,onChange:a=>v(b=>({...b,show_cover_result_text:a}))}),(0,b.jsx)(t,{label:"Deckblatt kompakt",checked:u.compact_cover,onChange:a=>v(b=>({...b,compact_cover:a}))}),(0,b.jsx)(s,{label:"Unterschriften",value:u.signature_mode,options:[{value:"TECHNICAL_ONLY",label:"Nur technische Validierung"},{value:"TECHNICAL_AND_CLIENT",label:"Technische Validierung + Auftraggeber"}],onChange:a=>v(b=>({...b,signature_mode:a}))})]}),(0,b.jsxs)(q,{title:"Tabellen",description:"Dichte und Schrift der Berichtstabellen.",children:[(0,b.jsx)(r,{label:"Tabellenlayout",value:u.table_layout,options:[{value:"COMPACT",label:"Kompakt"},{value:"STANDARD",label:"Standard"}],onChange:a=>v(b=>({...b,table_layout:a}))}),(0,b.jsx)(r,{label:"Tabellenschrift",value:u.table_font_size,options:[{value:"SMALL",label:"Klein"},{value:"STANDARD",label:"Standard"}],onChange:a=>v(b=>({...b,table_font_size:a}))})]}),(0,b.jsxs)(q,{title:"Bilder",description:"Größe, Anordnung und Beschriftungen von Bildern.",children:[(0,b.jsx)(r,{label:"Standard-Bildgröße",value:u.image_size,options:[{value:"SMALL",label:"Klein"},{value:"MEDIUM",label:"Mittel"},{value:"LARGE",label:"Groß"}],onChange:a=>v(b=>({...b,image_size:a}))}),(0,b.jsx)(s,{label:"Bildposition",value:u.image_position,options:[{value:"STACKED",label:"Untereinander"},{value:"SIDE_BY_SIDE",label:"Nebeneinander wenn möglich"}],onChange:a=>v(b=>({...b,image_position:a}))}),(0,b.jsx)(r,{label:"Maximale Bilder pro Seite",value:String(u.max_images_per_page),options:[{value:"1",label:"1"},{value:"2",label:"2"},{value:"4",label:"4"}],onChange:a=>v(b=>({...b,max_images_per_page:Number(a)}))}),(0,b.jsx)(t,{label:"Bildbeschriftungen",checked:u.show_image_captions,onChange:a=>v(b=>({...b,show_image_captions:a}))})]}),(0,b.jsxs)(q,{title:"Kopf- und Fußzeile",description:"Sichtbarkeit und Logo-Größe im Berichtskopf.",children:[(0,b.jsx)(t,{label:"Kopfzeile anzeigen",checked:u.show_header,onChange:a=>v(b=>({...b,show_header:a}))}),(0,b.jsx)(t,{label:"Fußzeile anzeigen",checked:u.show_footer,onChange:a=>v(b=>({...b,show_footer:a}))}),(0,b.jsx)(r,{label:"Firmenlogo",value:u.logo_size,options:[{value:"SMALL",label:"Klein"},{value:"MEDIUM",label:"Mittel"},{value:"LARGE",label:"Groß"}],onChange:a=>v(b=>({...b,logo_size:a}))})]}),(0,b.jsx)(q,{title:"Kapitel",description:"Legt fest, ob Hauptkapitel auf neuen Seiten beginnen.",children:(0,b.jsx)(t,{label:"Neue Seite vor Hauptkapiteln",checked:u.page_break_before_main_chapters,onChange:a=>v(b=>({...b,page_break_before_main_chapters:a}))})})]}),(0,b.jsxs)("aside",{className:"rounded-lg border border-border bg-surface p-4 shadow-soft xl:sticky xl:top-6 xl:h-[calc(100vh-3rem)]",children:[(0,b.jsxs)("div",{className:"flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between xl:flex-col xl:items-stretch",children:[(0,b.jsxs)("div",{children:[(0,b.jsx)("h2",{className:"text-xl font-semibold text-text",children:"Live-Vorschau"}),(0,b.jsx)("p",{className:"mt-1 text-sm text-text-light",children:"PDF-Vorschau mit aktuellen, noch nicht gespeicherten Einstellungen."})]}),(0,b.jsxs)("button",{type:"button",className:"btn btn-secondary h-12",disabled:G.isPending||C.isLoading,onClick:()=>G.mutate(u),children:[G.isPending?(0,b.jsx)("span",{className:"spinner"}):(0,b.jsx)(f.Download,{className:"h-4 w-4"}),G.isPending?"PDF wird erzeugt...":"Vorschau aktualisieren"]})]}),(0,b.jsx)("div",{className:"mt-4 h-[520px] overflow-hidden rounded-lg border border-border bg-background xl:h-[calc(100%-8rem)]",children:w?(0,b.jsx)("iframe",{title:"Orion PDF-Vorschau",src:w,className:"h-full w-full"}):(0,b.jsx)("div",{className:"flex h-full items-center justify-center p-6 text-center text-sm text-text-light",children:"Erzeuge eine Vorschau, um die Auswirkungen der Einstellungen direkt zu prüfen."})}),(0,b.jsx)("p",{className:"mt-3 text-xs text-text-light",children:"Falls der Browser keine eingebetteten PDFs anzeigt, öffnet er die Datei über seine Standard-PDF-Funktion."})]})]}),(y||A||E)&&(0,b.jsx)("div",{className:`rounded-lg border p-4 text-sm ${A?"border-danger/40 bg-danger/10 text-danger":"border-accent/40 bg-accent/10 text-primary-dark"}`,children:A||y||"Ungespeicherte Änderungen"}),(0,b.jsx)("div",{className:"fixed bottom-0 left-0 right-0 z-30 border-t border-border bg-surface/95 px-4 py-3 shadow-soft backdrop-blur lg:left-72",children:(0,b.jsxs)("div",{className:"mx-auto flex max-w-7xl flex-col gap-3 sm:flex-row sm:items-center sm:justify-end",children:[(0,b.jsxs)("button",{type:"button",className:"btn btn-secondary h-12",disabled:!E||F.isPending,onClick:()=>{v(D),B(""),z("Änderungen verworfen")},children:[(0,b.jsx)(g.RotateCcw,{className:"h-4 w-4"}),"Zurücksetzen"]}),(0,b.jsxs)("button",{type:"button",className:"btn btn-secondary h-12",disabled:G.isPending||C.isLoading,onClick:()=>G.mutate(u),children:[G.isPending?(0,b.jsx)("span",{className:"spinner"}):(0,b.jsx)(f.Download,{className:"h-4 w-4"}),G.isPending?"PDF wird erzeugt...":"Vorschau aktualisieren"]}),(0,b.jsxs)("button",{type:"button",className:"btn btn-primary h-12",disabled:!E||F.isPending||C.isLoading,onClick:()=>F.mutate(u),children:[F.isPending?(0,b.jsx)("span",{className:"spinner"}):(0,b.jsx)(h.Save,{className:"h-4 w-4"}),F.isPending?"Speichern...":"Änderungen speichern"]})]})})]})}])}]; -//# sourceMappingURL=_0js1deh._.js.map \ No newline at end of file +//# sourceMappingURL=_0nmawq4._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0xryq0e._.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0xryq0e._.js new file mode 100644 index 00000000..2179e327 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_0xryq0e._.js @@ -0,0 +1,3 @@ +module.exports=[53250,a=>{"use strict";let b="/api/v1";async function c(a,b){let c=await a.text();if(!c)return b;try{let a=JSON.parse(c);return a.detail??a.message??c}catch{return c}}async function d(a,b){let c=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:a,password:b}),credentials:"include"});if(!c.ok){let a=Error(await c.text()||`HTTP ${c.status}`);throw a.status=c.status,a}return c.json()}async function e(a,c){let d=await fetch(`${b}${a}`,{cache:"no-store",credentials:"include"});if(!d.ok)throw Error(`API request failed: ${d.status}`);return d.json()}async function f(a,d,e,f){let g=await fetch(`${b}${a}`,{method:e,headers:{"Content-Type":"application/json"},body:JSON.stringify(f),credentials:"include"});if(!g.ok)throw Error(await c(g,`API request failed: ${g.status}`));return g.json()}async function g(a,d){let e=await fetch(`${b}${a}`,{method:"DELETE",credentials:"include"});if(!e.ok)throw Error(await c(e,`API request failed: ${e.status}`))}async function h(a,d,e){let f=await fetch(`${b}${a}`,{...e,headers:{"Content-Type":"application/json",...e?.headers??{}},credentials:"include"});if(!f.ok)throw Error(await c(f,`API request failed: ${f.status}`));return f.json()}a.s(["API_BASE",0,b,"apiDelete",0,g,"apiFetch",0,h,"apiGet",0,e,"apiSend",0,f,"login",0,d,"normalizeValidationPayload",0,function(a){return{...a,...Object.fromEntries(["contact_id","examiner_id"].map(b=>[b,a[b]||null]))}}])},33508,a=>{"use strict";let b=(0,a.i(70106).default)("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]);a.s(["X",0,b],33508)},74618,a=>{"use strict";let b=(0,a.i(70106).default)("CloudUpload",[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"m8 17 4-4 4 4",key:"1quai1"}]]);a.s(["UploadCloud",0,b],74618)},84505,a=>{"use strict";let b=(0,a.i(70106).default)("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);a.s(["Download",0,b],84505)},14548,a=>{"use strict";let b=(0,a.i(70106).default)("Save",[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]]);a.s(["Save",0,b],14548)},67453,a=>{"use strict";let b=(0,a.i(70106).default)("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);a.s(["CheckCircle2",0,b],67453)},99712,a=>{"use strict";var b=a.i(87924),c=a.i(70106);let d=(0,c.default)("CircleAlert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);var e=a.i(67453);let f=(0,c.default)("CircleDashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]]),g=(0,c.default)("ShieldAlert",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]),h={OFFEN:{value:"OFFEN",label:"Noch nicht bewertet",badgeClass:"border-slate-300 bg-slate-100 text-slate-700",previewClass:"border-slate-300 bg-slate-50 text-slate-700",color:"#2E3B40",icon:f},BESTANDEN:{value:"BESTANDEN",label:"Bestanden",badgeClass:"border-success/35 bg-success/15 text-success",previewClass:"border-success/40 bg-success/10 text-success",color:"#245C36",icon:e.CheckCircle2},BESTANDEN_MIT_AUFLAGEN:{value:"BESTANDEN_MIT_AUFLAGEN",label:"Bestanden mit Auflagen",badgeClass:"border-warning/40 bg-warning/15 text-[#7A5A00]",previewClass:"border-warning/45 bg-warning/10 text-[#7A5A00]",color:"#7A5A00",icon:g},NICHT_BESTANDEN:{value:"NICHT_BESTANDEN",label:"Nicht bestanden",badgeClass:"border-danger/35 bg-danger/15 text-danger",previewClass:"border-danger/40 bg-danger/10 text-danger",color:"#7A1F26",icon:d}},i={"":"OFFEN",offen:"OFFEN",OFFEN:"OFFEN",bestanden:"BESTANDEN",BESTANDEN:"BESTANDEN",mit_auflagen:"BESTANDEN_MIT_AUFLAGEN",bestanden_mit_auflagen:"BESTANDEN_MIT_AUFLAGEN","bestanden mit auflagen":"BESTANDEN_MIT_AUFLAGEN",BESTANDEN_MIT_AUFLAGEN:"BESTANDEN_MIT_AUFLAGEN",nicht_bestanden:"NICHT_BESTANDEN","nicht bestanden":"NICHT_BESTANDEN",NICHT_BESTANDEN:"NICHT_BESTANDEN"};function j(a){return i[String(a??"").trim()]??"OFFEN"}function k(a){return h[j(a)]}a.s(["ValidationResultBadge",0,function({value:a,className:c=""}){let d=k(a),e=d.icon;return(0,b.jsxs)("span",{className:`inline-flex items-center gap-1.5 rounded-full border px-3 py-1 text-xs font-semibold ${d.badgeClass} ${c}`,children:[(0,b.jsx)(e,{className:"h-3.5 w-3.5"}),d.label]})},"getValidationResultPresentation",0,k,"normalizeValidationResult",0,j,"validationResultValues",0,["OFFEN","BESTANDEN","BESTANDEN_MIT_AUFLAGEN","NICHT_BESTANDEN"]],99712)},15618,a=>{"use strict";let b=(0,a.i(70106).default)("Plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);a.s(["Plus",0,b],15618)},2560,a=>{"use strict";var b=a.i(87924),c=a.i(50944),d=a.i(27862);a.s(["default",0,function(){let a=(0,c.useParams)();return(0,b.jsx)(d.default,{validationId:a.id})}])}]; + +//# sourceMappingURL=_0xryq0e._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_1-ty-5z._.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_1-ty-5z._.js new file mode 100644 index 00000000..4022fd13 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_1-ty-5z._.js @@ -0,0 +1,3 @@ +module.exports=[53250,a=>{"use strict";let b="/api/v1";async function c(a,b){let c=await a.text();if(!c)return b;try{let a=JSON.parse(c);return a.detail??a.message??c}catch{return c}}async function d(a,b){let c=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:a,password:b}),credentials:"include"});if(!c.ok){let a=Error(await c.text()||`HTTP ${c.status}`);throw a.status=c.status,a}return c.json()}async function e(a,c){let d=await fetch(`${b}${a}`,{cache:"no-store",credentials:"include"});if(!d.ok)throw Error(`API request failed: ${d.status}`);return d.json()}async function f(a,d,e,f){let g=await fetch(`${b}${a}`,{method:e,headers:{"Content-Type":"application/json"},body:JSON.stringify(f),credentials:"include"});if(!g.ok)throw Error(await c(g,`API request failed: ${g.status}`));return g.json()}async function g(a,d){let e=await fetch(`${b}${a}`,{method:"DELETE",credentials:"include"});if(!e.ok)throw Error(await c(e,`API request failed: ${e.status}`))}async function h(a,d,e){let f=await fetch(`${b}${a}`,{...e,headers:{"Content-Type":"application/json",...e?.headers??{}},credentials:"include"});if(!f.ok)throw Error(await c(f,`API request failed: ${f.status}`));return f.json()}a.s(["API_BASE",0,b,"apiDelete",0,g,"apiFetch",0,h,"apiGet",0,e,"apiSend",0,f,"login",0,d,"normalizeValidationPayload",0,function(a){return{...a,...Object.fromEntries(["contact_id","examiner_id"].map(b=>[b,a[b]||null]))}}])},87532,a=>{"use strict";let b=(0,a.i(70106).default)("Search",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);a.s(["Search",0,b],87532)},81560,a=>{"use strict";let b=(0,a.i(70106).default)("Trash2",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]]);a.s(["Trash2",0,b],81560)},10448,a=>{"use strict";let b=(0,a.i(70106).default)("Pen",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]]);a.s(["Edit2",0,b],10448)},84505,a=>{"use strict";let b=(0,a.i(70106).default)("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);a.s(["Download",0,b],84505)},67453,a=>{"use strict";let b=(0,a.i(70106).default)("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);a.s(["CheckCircle2",0,b],67453)},99712,a=>{"use strict";var b=a.i(87924),c=a.i(70106);let d=(0,c.default)("CircleAlert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);var e=a.i(67453);let f=(0,c.default)("CircleDashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]]),g=(0,c.default)("ShieldAlert",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]),h={OFFEN:{value:"OFFEN",label:"Noch nicht bewertet",badgeClass:"border-slate-300 bg-slate-100 text-slate-700",previewClass:"border-slate-300 bg-slate-50 text-slate-700",color:"#2E3B40",icon:f},BESTANDEN:{value:"BESTANDEN",label:"Bestanden",badgeClass:"border-success/35 bg-success/15 text-success",previewClass:"border-success/40 bg-success/10 text-success",color:"#245C36",icon:e.CheckCircle2},BESTANDEN_MIT_AUFLAGEN:{value:"BESTANDEN_MIT_AUFLAGEN",label:"Bestanden mit Auflagen",badgeClass:"border-warning/40 bg-warning/15 text-[#7A5A00]",previewClass:"border-warning/45 bg-warning/10 text-[#7A5A00]",color:"#7A5A00",icon:g},NICHT_BESTANDEN:{value:"NICHT_BESTANDEN",label:"Nicht bestanden",badgeClass:"border-danger/35 bg-danger/15 text-danger",previewClass:"border-danger/40 bg-danger/10 text-danger",color:"#7A1F26",icon:d}},i={"":"OFFEN",offen:"OFFEN",OFFEN:"OFFEN",bestanden:"BESTANDEN",BESTANDEN:"BESTANDEN",mit_auflagen:"BESTANDEN_MIT_AUFLAGEN",bestanden_mit_auflagen:"BESTANDEN_MIT_AUFLAGEN","bestanden mit auflagen":"BESTANDEN_MIT_AUFLAGEN",BESTANDEN_MIT_AUFLAGEN:"BESTANDEN_MIT_AUFLAGEN",nicht_bestanden:"NICHT_BESTANDEN","nicht bestanden":"NICHT_BESTANDEN",NICHT_BESTANDEN:"NICHT_BESTANDEN"};function j(a){return i[String(a??"").trim()]??"OFFEN"}function k(a){return h[j(a)]}a.s(["ValidationResultBadge",0,function({value:a,className:c=""}){let d=k(a),e=d.icon;return(0,b.jsxs)("span",{className:`inline-flex items-center gap-1.5 rounded-full border px-3 py-1 text-xs font-semibold ${d.badgeClass} ${c}`,children:[(0,b.jsx)(e,{className:"h-3.5 w-3.5"}),d.label]})},"getValidationResultPresentation",0,k,"normalizeValidationResult",0,j,"validationResultValues",0,["OFFEN","BESTANDEN","BESTANDEN_MIT_AUFLAGEN","NICHT_BESTANDEN"]],99712)},5151,a=>{"use strict";let b=(0,a.i(70106).default)("Copy",[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);a.s(["Copy",0,b],5151)}]; + +//# sourceMappingURL=_1-ty-5z._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_101_axp._.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_1_mr0l7._.js similarity index 51% rename from validation-suite/frontend/atlas/.next/server/chunks/ssr/_101_axp._.js rename to validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_1_mr0l7._.js index 2f9e0592..460844f2 100644 --- a/validation-suite/frontend/atlas/.next/server/chunks/ssr/_101_axp._.js +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_1_mr0l7._.js @@ -1,3 +1,3 @@ -module.exports=[53250,a=>{"use strict";let b="/api/v1";async function c(a,b){let c=await a.text();if(!c)return b;try{let a=JSON.parse(c);return a.detail??a.message??c}catch{return c}}async function d(a,b){let c=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:a,password:b}),credentials:"include"});if(!c.ok){let a=Error(await c.text()||`HTTP ${c.status}`);throw a.status=c.status,a}return c.json()}async function e(a,c){let d=await fetch(`${b}${a}`,{cache:"no-store",credentials:"include"});if(!d.ok)throw Error(`API request failed: ${d.status}`);return d.json()}async function f(a,d,e,f){let g=await fetch(`${b}${a}`,{method:e,headers:{"Content-Type":"application/json"},body:JSON.stringify(f),credentials:"include"});if(!g.ok)throw Error(await c(g,`API request failed: ${g.status}`));return g.json()}async function g(a,d){let e=await fetch(`${b}${a}`,{method:"DELETE",credentials:"include"});if(!e.ok)throw Error(await c(e,`API request failed: ${e.status}`))}async function h(a,d,e){let f=await fetch(`${b}${a}`,{...e,headers:{"Content-Type":"application/json",...e?.headers??{}},credentials:"include"});if(!f.ok)throw Error(await c(f,`API request failed: ${f.status}`));return f.json()}a.s(["API_BASE",0,b,"apiDelete",0,g,"apiFetch",0,h,"apiGet",0,e,"apiSend",0,f,"login",0,d,"normalizeValidationPayload",0,function(a){return{...a,...Object.fromEntries(["contact_id","examiner_id"].map(b=>[b,a[b]||null]))}}])},33217,a=>{"use strict";let b;var c=a.i(99745),d=a.i(77048),e=a.i(18544),f=a.i(76644),g=a.i(33791),h=a.i(79715),i=a.i(42871),j=a.i(8361),k=class extends g.Subscribable{constructor(a,b){super(),this.options=b,this.#a=a,this.#b=null,this.#c=(0,h.pendingThenable)(),this.bindMethods(),this.setOptions(b)}#a;#d=void 0;#e=void 0;#f=void 0;#g;#h;#c;#b;#i;#j;#k;#l;#m;#n;#o=new Set;bindMethods(){this.refetch=this.refetch.bind(this)}onSubscribe(){1===this.listeners.size&&(this.#d.addObserver(this),l(this.#d,this.options)?this.#p():this.updateResult(),this.#q())}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return m(this.#d,this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return m(this.#d,this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,this.#r(),this.#s(),this.#d.removeObserver(this)}setOptions(a){let b=this.options,c=this.#d;if(this.options=this.#a.defaultQueryOptions(a),void 0!==this.options.enabled&&"boolean"!=typeof this.options.enabled&&"function"!=typeof this.options.enabled&&"boolean"!=typeof(0,i.resolveQueryBoolean)(this.options.enabled,this.#d))throw Error("Expected enabled to be a boolean or a callback that returns a boolean");this.#t(),this.#d.setOptions(this.options),b._defaulted&&!(0,i.shallowEqualObjects)(this.options,b)&&this.#a.getQueryCache().notify({type:"observerOptionsUpdated",query:this.#d,observer:this});let d=this.hasListeners();d&&n(this.#d,c,this.options,b)&&this.#p(),this.updateResult(),d&&(this.#d!==c||(0,i.resolveQueryBoolean)(this.options.enabled,this.#d)!==(0,i.resolveQueryBoolean)(b.enabled,this.#d)||(0,i.resolveStaleTime)(this.options.staleTime,this.#d)!==(0,i.resolveStaleTime)(b.staleTime,this.#d))&&this.#u();let e=this.#v();d&&(this.#d!==c||(0,i.resolveQueryBoolean)(this.options.enabled,this.#d)!==(0,i.resolveQueryBoolean)(b.enabled,this.#d)||e!==this.#n)&&this.#w(e)}getOptimisticResult(a){var b,c;let d=this.#a.getQueryCache().build(this.#a,a),e=this.createResult(d,a);return b=this,c=e,(0,i.shallowEqualObjects)(b.getCurrentResult(),c)||(this.#f=e,this.#h=this.options,this.#g=this.#d.state),e}getCurrentResult(){return this.#f}trackResult(a,b){return new Proxy(a,{get:(a,c)=>(this.trackProp(c),b?.(c),"promise"===c&&(this.trackProp("data"),this.options.experimental_prefetchInRender||"pending"!==this.#c.status||this.#c.reject(Error("experimental_prefetchInRender feature flag is not enabled"))),Reflect.get(a,c))})}trackProp(a){this.#o.add(a)}getCurrentQuery(){return this.#d}refetch({...a}={}){return this.fetch({...a})}fetchOptimistic(a){let b=this.#a.defaultQueryOptions(a),c=this.#a.getQueryCache().build(this.#a,b);return c.fetch().then(()=>this.createResult(c,b))}fetch(a){return this.#p({...a,cancelRefetch:a.cancelRefetch??!0}).then(()=>(this.updateResult(),this.#f))}#p(a){this.#t();let b=this.#d.fetch(this.options,a);return a?.throwOnError||(b=b.catch(i.noop)),b}#u(){this.#r();let a=(0,i.resolveStaleTime)(this.options.staleTime,this.#d);if(d.environmentManager.isServer()||this.#f.isStale||!(0,i.isValidTimeout)(a))return;let b=(0,i.timeUntilStale)(this.#f.dataUpdatedAt,a);this.#l=j.timeoutManager.setTimeout(()=>{this.#f.isStale||this.updateResult()},b+1)}#v(){return("function"==typeof this.options.refetchInterval?this.options.refetchInterval(this.#d):this.options.refetchInterval)??!1}#w(a){this.#s(),this.#n=a,!d.environmentManager.isServer()&&!1!==(0,i.resolveQueryBoolean)(this.options.enabled,this.#d)&&(0,i.isValidTimeout)(this.#n)&&0!==this.#n&&(this.#m=j.timeoutManager.setInterval(()=>{(this.options.refetchIntervalInBackground||c.focusManager.isFocused())&&this.#p()},this.#n))}#q(){this.#u(),this.#w(this.#v())}#r(){void 0!==this.#l&&(j.timeoutManager.clearTimeout(this.#l),this.#l=void 0)}#s(){void 0!==this.#m&&(j.timeoutManager.clearInterval(this.#m),this.#m=void 0)}createResult(a,b){let c,d=this.#d,e=this.options,g=this.#f,j=this.#g,k=this.#h,m=a!==d?a.state:this.#e,{state:p}=a,q={...p},r=!1;if(b._optimisticResults){let c=this.hasListeners(),g=!c&&l(a,b),h=c&&n(a,d,b,e);(g||h)&&(q={...q,...(0,f.fetchState)(p.data,a.options)}),"isRestoring"===b._optimisticResults&&(q.fetchStatus="idle")}let{error:s,errorUpdatedAt:t,status:u}=q;c=q.data;let v=!1;if(void 0!==b.placeholderData&&void 0===c&&"pending"===u){let a;g?.isPlaceholderData&&b.placeholderData===k?.placeholderData?(a=g.data,v=!0):a="function"==typeof b.placeholderData?b.placeholderData(this.#k?.state.data,this.#k):b.placeholderData,void 0!==a&&(u="success",c=(0,i.replaceData)(g?.data,a,b),r=!0)}if(b.select&&void 0!==c&&!v)if(g&&c===j?.data&&b.select===this.#i)c=this.#j;else try{this.#i=b.select,c=b.select(c),c=(0,i.replaceData)(g?.data,c,b),this.#j=c,this.#b=null}catch(a){this.#b=a}this.#b&&(s=this.#b,c=this.#j,t=Date.now(),u="error");let w="fetching"===q.fetchStatus,x="pending"===u,y="error"===u,z=x&&w,A=void 0!==c,B={status:u,fetchStatus:q.fetchStatus,isPending:x,isSuccess:"success"===u,isError:y,isInitialLoading:z,isLoading:z,data:c,dataUpdatedAt:q.dataUpdatedAt,error:s,errorUpdatedAt:t,failureCount:q.fetchFailureCount,failureReason:q.fetchFailureReason,errorUpdateCount:q.errorUpdateCount,isFetched:a.isFetched(),isFetchedAfterMount:q.dataUpdateCount>m.dataUpdateCount||q.errorUpdateCount>m.errorUpdateCount,isFetching:w,isRefetching:w&&!x,isLoadingError:y&&!A,isPaused:"paused"===q.fetchStatus,isPlaceholderData:r,isRefetchError:y&&A,isStale:o(a,b),refetch:this.refetch,promise:this.#c,isEnabled:!1!==(0,i.resolveQueryBoolean)(b.enabled,a)};if(this.options.experimental_prefetchInRender){let b=void 0!==B.data,c="error"===B.status&&!b,e=a=>{c?a.reject(B.error):b&&a.resolve(B.data)},f=()=>{e(this.#c=B.promise=(0,h.pendingThenable)())},g=this.#c;switch(g.status){case"pending":a.queryHash===d.queryHash&&e(g);break;case"fulfilled":(c||B.data!==g.value)&&f();break;case"rejected":c&&B.error===g.reason||f()}}return B}updateResult(){let a=this.#f,b=this.createResult(this.#d,this.options);if(this.#g=this.#d.state,this.#h=this.options,void 0!==this.#g.data&&(this.#k=this.#d),(0,i.shallowEqualObjects)(b,a))return;this.#f=b;let c=()=>{if(!a)return!0;let{notifyOnChangeProps:b}=this.options,c="function"==typeof b?b():b;if("all"===c||!c&&!this.#o.size)return!0;let d=new Set(c??this.#o);return this.options.throwOnError&&d.add("error"),Object.keys(this.#f).some(b=>this.#f[b]!==a[b]&&d.has(b))};this.#x({listeners:c()})}#t(){let a=this.#a.getQueryCache().build(this.#a,this.options);if(a===this.#d)return;let b=this.#d;this.#d=a,this.#e=a.state,this.hasListeners()&&(b?.removeObserver(this),a.addObserver(this))}onQueryUpdate(){this.updateResult(),this.hasListeners()&&this.#q()}#x(a){e.notifyManager.batch(()=>{a.listeners&&this.listeners.forEach(a=>{a(this.#f)}),this.#a.getQueryCache().notify({query:this.#d,type:"observerResultsUpdated"})})}};function l(a,b){return!1!==(0,i.resolveQueryBoolean)(b.enabled,a)&&void 0===a.state.data&&("error"!==a.state.status||!1!==(0,i.resolveQueryBoolean)(b.retryOnMount,a))||void 0!==a.state.data&&m(a,b,b.refetchOnMount)}function m(a,b,c){if(!1!==(0,i.resolveQueryBoolean)(b.enabled,a)&&"static"!==(0,i.resolveStaleTime)(b.staleTime,a)){let d="function"==typeof c?c(a):c;return"always"===d||!1!==d&&o(a,b)}return!1}function n(a,b,c,d){return(a!==b||!1===(0,i.resolveQueryBoolean)(d.enabled,a))&&(!c.suspense||"error"!==a.state.status)&&o(a,c)}function o(a,b){return!1!==(0,i.resolveQueryBoolean)(b.enabled,a)&&a.isStaleByTime((0,i.resolveStaleTime)(b.staleTime,a))}var p=a.i(72131),q=a.i(37927);a.i(87924);var r=p.createContext((b=!1,{clearReset:()=>{b=!1},reset:()=>{b=!0},isReset:()=>b})),s=p.createContext(!1);s.Provider;var t=(a,b,c)=>b.fetchOptimistic(a).catch(()=>{c.clearReset()});a.s(["useQuery",0,function(a,b){return function(a,b,c){let f,g=p.useContext(s),h=p.useContext(r),j=(0,q.useQueryClient)(c),k=j.defaultQueryOptions(a);j.getDefaultOptions().queries?._experimental_beforeQuery?.(k);let l=j.getQueryCache().get(k.queryHash),m=!1!==a.subscribed;if(k._optimisticResults=g?"isRestoring":m?"optimistic":void 0,k.suspense){let a=a=>"static"===a?a:Math.max(a??1e3,1e3),b=k.staleTime;k.staleTime="function"==typeof b?(...c)=>a(b(...c)):a(b),"number"==typeof k.gcTime&&(k.gcTime=Math.max(k.gcTime,1e3))}f=l?.state.error&&"function"==typeof k.throwOnError?(0,i.shouldThrowError)(k.throwOnError,[l.state.error,l]):k.throwOnError,(k.suspense||k.experimental_prefetchInRender||f)&&!h.isReset()&&(k.retryOnMount=!1),p.useEffect(()=>{h.clearReset()},[h]);let n=!j.getQueryCache().get(k.queryHash),[o]=p.useState(()=>new b(j,k)),u=o.getOptimisticResult(k),v=!g&&m;if(p.useSyncExternalStore(p.useCallback(a=>{let b=v?o.subscribe(e.notifyManager.batchCalls(a)):i.noop;return o.updateResult(),b},[o,v]),()=>o.getCurrentResult(),()=>o.getCurrentResult()),p.useEffect(()=>{o.setOptions(k)},[k,o]),k?.suspense&&u.isPending)throw t(k,o,h);if((({result:a,errorResetBoundary:b,throwOnError:c,query:d,suspense:e})=>a.isError&&!b.isReset()&&!a.isFetching&&d&&(e&&void 0===a.data||(0,i.shouldThrowError)(c,[a.error,d])))({result:u,errorResetBoundary:h,throwOnError:k.throwOnError,query:l,suspense:k.suspense}))throw u.error;if(j.getDefaultOptions().queries?._experimental_afterQuery?.(k,u),k.experimental_prefetchInRender&&!d.environmentManager.isServer()&&u.isLoading&&u.isFetching&&!g){let a=n?t(k,o,h):l?.promise;a?.catch(i.noop).finally(()=>{o.updateResult()})}return k.notifyOnChangeProps?u:o.trackResult(u)}(a,k,b)}],33217)},67453,a=>{"use strict";let b=(0,a.i(70106).default)("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);a.s(["CheckCircle2",0,b],67453)},92e3,a=>{"use strict";let b=(0,a.i(70106).default)("CircleAlert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);a.s(["AlertCircle",0,b],92e3)},99712,a=>{"use strict";var b=a.i(87924),c=a.i(92e3),d=a.i(67453),e=a.i(70106);let f=(0,e.default)("CircleDashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]]),g=(0,e.default)("ShieldAlert",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]),h={OFFEN:{value:"OFFEN",label:"Noch nicht bewertet",badgeClass:"border-slate-300 bg-slate-100 text-slate-700",previewClass:"border-slate-300 bg-slate-50 text-slate-700",color:"#2E3B40",icon:f},BESTANDEN:{value:"BESTANDEN",label:"Bestanden",badgeClass:"border-success/35 bg-success/15 text-success",previewClass:"border-success/40 bg-success/10 text-success",color:"#245C36",icon:d.CheckCircle2},BESTANDEN_MIT_AUFLAGEN:{value:"BESTANDEN_MIT_AUFLAGEN",label:"Bestanden mit Auflagen",badgeClass:"border-warning/40 bg-warning/15 text-[#7A5A00]",previewClass:"border-warning/45 bg-warning/10 text-[#7A5A00]",color:"#7A5A00",icon:g},NICHT_BESTANDEN:{value:"NICHT_BESTANDEN",label:"Nicht bestanden",badgeClass:"border-danger/35 bg-danger/15 text-danger",previewClass:"border-danger/40 bg-danger/10 text-danger",color:"#7A1F26",icon:c.AlertCircle}},i={"":"OFFEN",offen:"OFFEN",OFFEN:"OFFEN",bestanden:"BESTANDEN",BESTANDEN:"BESTANDEN",mit_auflagen:"BESTANDEN_MIT_AUFLAGEN",bestanden_mit_auflagen:"BESTANDEN_MIT_AUFLAGEN","bestanden mit auflagen":"BESTANDEN_MIT_AUFLAGEN",BESTANDEN_MIT_AUFLAGEN:"BESTANDEN_MIT_AUFLAGEN",nicht_bestanden:"NICHT_BESTANDEN","nicht bestanden":"NICHT_BESTANDEN",NICHT_BESTANDEN:"NICHT_BESTANDEN"};function j(a){return i[String(a??"").trim()]??"OFFEN"}function k(a){return h[j(a)]}a.s(["ValidationResultBadge",0,function({value:a,className:c=""}){let d=k(a),e=d.icon;return(0,b.jsxs)("span",{className:`inline-flex items-center gap-1.5 rounded-full border px-3 py-1 text-xs font-semibold ${d.badgeClass} ${c}`,children:[(0,b.jsx)(e,{className:"h-3.5 w-3.5"}),d.label]})},"getValidationResultPresentation",0,k,"normalizeValidationResult",0,j,"validationResultValues",0,["OFFEN","BESTANDEN","BESTANDEN_MIT_AUFLAGEN","NICHT_BESTANDEN"]],99712)},15618,a=>{"use strict";let b=(0,a.i(70106).default)("Plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);a.s(["Plus",0,b],15618)},51739,a=>{"use strict";var b=a.i(87924),c=a.i(33217),d=a.i(70106);let e=(0,d.default)("TriangleAlert",[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);var f=a.i(67453);let g=(0,d.default)("ClipboardList",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M12 11h4",key:"1jrz19"}],["path",{d:"M12 16h4",key:"n85exb"}],["path",{d:"M8 11h.01",key:"1dfujw"}],["path",{d:"M8 16h.01",key:"18s6g9"}]]),h=(0,d.default)("Clock",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 16 14",key:"68esgv"}]]),i=(0,d.default)("FilePenLine",[["path",{d:"m18 5-2.414-2.414A2 2 0 0 0 14.172 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2",key:"142zxg"}],["path",{d:"M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"2t3380"}],["path",{d:"M8 18h1",key:"13wk12"}]]);var j=a.i(97651),k=a.i(15618),l=a.i(35126);let m=(0,d.default)("TestTubeDiagonal",[["path",{d:"M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3",key:"1ub6xw"}],["path",{d:"m16 2 6 6",key:"1gw87d"}],["path",{d:"M12 16H4",key:"1cjfip"}]]),n=(0,d.default)("Users",[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87",key:"kshegd"}],["path",{d:"M16 3.13a4 4 0 0 1 0 7.75",key:"1da9ce"}]]);var o=a.i(38246),p=a.i(12314),q=a.i(53250),r=a.i(73943),s=a.i(99712);let t=[{label:"Neue Validierung starten",value:"Schnellstart",href:"/validations/quick-start",icon:k.Plus},{label:"Validierungen",key:"validations",href:"/validations",icon:g},{label:"Kunden",key:"customers",href:"/customers",icon:n},{label:"Geraete",key:"devices",href:"/devices",icon:l.Stethoscope},{label:"Pruefmittel",key:"equipment",href:"/equipment",icon:m}],u=[{label:"Entwuerfe",key:"validation_drafts",href:"/validations?status=ENTWURF",icon:i},{label:"Bereit zur Pruefung",key:"validation_ready",href:"/validations?status=BEREIT_ZUR_PRUEFUNG",icon:g},{label:"In Pruefung",key:"validation_in_review",href:"/validations?status=IN_PRUEFUNG",icon:h},{label:"Freigegeben",key:"validation_approved",href:"/validations?status=FREIGEGEBEN",icon:f.CheckCircle2},{label:"Ueberfaellige Revalidierungen",key:"validation_overdue",href:"/validations?overdue_only=true",icon:e}];a.s(["default",0,function(){let{token:a}=(0,p.useAuth)(),d=(0,c.useQuery)({queryKey:["dashboard",a],queryFn:()=>(0,q.apiGet)("/dashboard",a??""),enabled:!!a});return(0,b.jsxs)("div",{className:"space-y-8",children:[(0,b.jsxs)("header",{className:"rounded-lg border border-border bg-surface p-6 shadow-soft",children:[(0,b.jsxs)("div",{className:"flex flex-col justify-between gap-4 md:flex-row md:items-center",children:[(0,b.jsx)(r.BrandLogo,{}),(0,b.jsxs)("div",{className:"text-sm text-text-light",children:[(0,b.jsx)("p",{children:"Benutzer: angemeldet"}),(0,b.jsx)("p",{children:"Speicherstatus: synchronisiert"})]})]}),(0,b.jsx)("h1",{className:"mt-6 text-3xl font-semibold text-text",children:"Dashboard"}),(0,b.jsx)("p",{className:"mt-2 text-text-light",children:"Validierungsworkflow und faellige Revalidierungen."})]}),(0,b.jsx)("section",{className:"grid gap-4 sm:grid-cols-2 xl:grid-cols-5",children:t.map(a=>{let c=a.icon,e="key"in a?d.data?.[a.key]??0:a.value;return(0,b.jsxs)(o.default,{href:a.href,className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:-translate-y-0.5 hover:border-primary/40 hover:shadow-lg",children:[(0,b.jsxs)("div",{className:"flex items-center justify-between",children:[(0,b.jsx)("p",{className:"text-sm text-text-light",children:a.label}),(0,b.jsx)(c,{className:"h-5 w-5 text-primary"})]}),(0,b.jsx)("p",{className:"mt-6 text-4xl font-semibold text-text",children:e})]},a.label)})}),(0,b.jsx)("section",{className:"grid gap-4 sm:grid-cols-2 xl:grid-cols-5",children:u.map(a=>{let c=a.icon;return(0,b.jsxs)(o.default,{href:a.href,className:"rounded-lg border border-border bg-surface p-5 shadow-soft transition hover:border-primary/40 hover:bg-background",children:[(0,b.jsxs)("div",{className:"flex items-center justify-between",children:[(0,b.jsx)("p",{className:"text-sm text-text-light",children:a.label}),(0,b.jsx)(c,{className:"h-5 w-5 text-primary"})]}),(0,b.jsx)("p",{className:"mt-4 text-3xl font-semibold text-text",children:d.data?.[a.key]??0})]},a.key)})}),(0,b.jsxs)("section",{className:"grid gap-4 xl:grid-cols-4",children:[(0,b.jsxs)(o.default,{href:"/validations?sort_by=updated_at&sort_order=desc",className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:border-primary/40 hover:bg-background",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold",children:"Zuletzt bearbeitet"}),(0,b.jsx)("p",{className:"mt-3 text-sm leading-6 text-text-light",children:"Aktuelle Validierungen nach Bearbeitungsdatum oeffnen."})]}),(0,b.jsxs)(o.default,{href:"/validations?overdue_only=true",className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:border-danger/40 hover:bg-background",children:[(0,b.jsxs)("div",{className:"flex items-center justify-between",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold",children:"Ueberfaellige Revalidierungen"}),(0,b.jsx)(e,{className:"h-5 w-5 text-danger"})]}),(0,b.jsx)("p",{className:"mt-4 text-3xl font-semibold text-text",children:d.data?.validation_overdue??0})]}),(0,b.jsxs)(o.default,{href:"/equipment",className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:border-primary/40 hover:bg-background",children:[(0,b.jsxs)("div",{className:"flex items-center justify-between",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold",children:"Kalibrierstatus"}),(0,b.jsx)(j.Gauge,{className:"h-5 w-5 text-primary"})]}),(0,b.jsxs)("p",{className:"mt-4 text-sm text-text-light",children:["Gruen ",d.data?.equipment_green??0," · Gelb ",d.data?.equipment_yellow??0," · Rot ",d.data?.equipment_red??0]})]}),(0,b.jsxs)(o.default,{href:"/validations?status=ABGESCHLOSSEN",className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:border-primary/40 hover:bg-background",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold",children:"Letzte Berichte"}),(0,b.jsx)("p",{className:"mt-4 text-3xl font-semibold text-text",children:d.data?.validation_completed??0}),(0,b.jsxs)("div",{className:"mt-4 flex flex-wrap gap-2",children:[(0,b.jsx)(s.ValidationResultBadge,{value:"BESTANDEN",className:"text-[11px]"}),(0,b.jsx)("span",{className:"text-sm font-semibold text-text",children:d.data?.validation_result_passed??0}),(0,b.jsx)(s.ValidationResultBadge,{value:"BESTANDEN_MIT_AUFLAGEN",className:"text-[11px]"}),(0,b.jsx)("span",{className:"text-sm font-semibold text-text",children:d.data?.validation_result_conditional??0}),(0,b.jsx)(s.ValidationResultBadge,{value:"NICHT_BESTANDEN",className:"text-[11px]"}),(0,b.jsx)("span",{className:"text-sm font-semibold text-text",children:d.data?.validation_result_failed??0}),(0,b.jsx)(s.ValidationResultBadge,{value:"OFFEN",className:"text-[11px]"}),(0,b.jsx)("span",{className:"text-sm font-semibold text-text",children:d.data?.validation_result_open??0})]})]})]})]})}],51739)}]; +module.exports=[53250,a=>{"use strict";let b="/api/v1";async function c(a,b){let c=await a.text();if(!c)return b;try{let a=JSON.parse(c);return a.detail??a.message??c}catch{return c}}async function d(a,b){let c=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:a,password:b}),credentials:"include"});if(!c.ok){let a=Error(await c.text()||`HTTP ${c.status}`);throw a.status=c.status,a}return c.json()}async function e(a,c){let d=await fetch(`${b}${a}`,{cache:"no-store",credentials:"include"});if(!d.ok)throw Error(`API request failed: ${d.status}`);return d.json()}async function f(a,d,e,f){let g=await fetch(`${b}${a}`,{method:e,headers:{"Content-Type":"application/json"},body:JSON.stringify(f),credentials:"include"});if(!g.ok)throw Error(await c(g,`API request failed: ${g.status}`));return g.json()}async function g(a,d){let e=await fetch(`${b}${a}`,{method:"DELETE",credentials:"include"});if(!e.ok)throw Error(await c(e,`API request failed: ${e.status}`))}async function h(a,d,e){let f=await fetch(`${b}${a}`,{...e,headers:{"Content-Type":"application/json",...e?.headers??{}},credentials:"include"});if(!f.ok)throw Error(await c(f,`API request failed: ${f.status}`));return f.json()}a.s(["API_BASE",0,b,"apiDelete",0,g,"apiFetch",0,h,"apiGet",0,e,"apiSend",0,f,"login",0,d,"normalizeValidationPayload",0,function(a){return{...a,...Object.fromEntries(["contact_id","examiner_id"].map(b=>[b,a[b]||null]))}}])},33217,a=>{"use strict";let b;var c=a.i(99745),d=a.i(77048),e=a.i(18544),f=a.i(76644),g=a.i(33791),h=a.i(79715),i=a.i(42871),j=a.i(8361),k=class extends g.Subscribable{constructor(a,b){super(),this.options=b,this.#a=a,this.#b=null,this.#c=(0,h.pendingThenable)(),this.bindMethods(),this.setOptions(b)}#a;#d=void 0;#e=void 0;#f=void 0;#g;#h;#c;#b;#i;#j;#k;#l;#m;#n;#o=new Set;bindMethods(){this.refetch=this.refetch.bind(this)}onSubscribe(){1===this.listeners.size&&(this.#d.addObserver(this),l(this.#d,this.options)?this.#p():this.updateResult(),this.#q())}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return m(this.#d,this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return m(this.#d,this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,this.#r(),this.#s(),this.#d.removeObserver(this)}setOptions(a){let b=this.options,c=this.#d;if(this.options=this.#a.defaultQueryOptions(a),void 0!==this.options.enabled&&"boolean"!=typeof this.options.enabled&&"function"!=typeof this.options.enabled&&"boolean"!=typeof(0,i.resolveQueryBoolean)(this.options.enabled,this.#d))throw Error("Expected enabled to be a boolean or a callback that returns a boolean");this.#t(),this.#d.setOptions(this.options),b._defaulted&&!(0,i.shallowEqualObjects)(this.options,b)&&this.#a.getQueryCache().notify({type:"observerOptionsUpdated",query:this.#d,observer:this});let d=this.hasListeners();d&&n(this.#d,c,this.options,b)&&this.#p(),this.updateResult(),d&&(this.#d!==c||(0,i.resolveQueryBoolean)(this.options.enabled,this.#d)!==(0,i.resolveQueryBoolean)(b.enabled,this.#d)||(0,i.resolveStaleTime)(this.options.staleTime,this.#d)!==(0,i.resolveStaleTime)(b.staleTime,this.#d))&&this.#u();let e=this.#v();d&&(this.#d!==c||(0,i.resolveQueryBoolean)(this.options.enabled,this.#d)!==(0,i.resolveQueryBoolean)(b.enabled,this.#d)||e!==this.#n)&&this.#w(e)}getOptimisticResult(a){var b,c;let d=this.#a.getQueryCache().build(this.#a,a),e=this.createResult(d,a);return b=this,c=e,(0,i.shallowEqualObjects)(b.getCurrentResult(),c)||(this.#f=e,this.#h=this.options,this.#g=this.#d.state),e}getCurrentResult(){return this.#f}trackResult(a,b){return new Proxy(a,{get:(a,c)=>(this.trackProp(c),b?.(c),"promise"===c&&(this.trackProp("data"),this.options.experimental_prefetchInRender||"pending"!==this.#c.status||this.#c.reject(Error("experimental_prefetchInRender feature flag is not enabled"))),Reflect.get(a,c))})}trackProp(a){this.#o.add(a)}getCurrentQuery(){return this.#d}refetch({...a}={}){return this.fetch({...a})}fetchOptimistic(a){let b=this.#a.defaultQueryOptions(a),c=this.#a.getQueryCache().build(this.#a,b);return c.fetch().then(()=>this.createResult(c,b))}fetch(a){return this.#p({...a,cancelRefetch:a.cancelRefetch??!0}).then(()=>(this.updateResult(),this.#f))}#p(a){this.#t();let b=this.#d.fetch(this.options,a);return a?.throwOnError||(b=b.catch(i.noop)),b}#u(){this.#r();let a=(0,i.resolveStaleTime)(this.options.staleTime,this.#d);if(d.environmentManager.isServer()||this.#f.isStale||!(0,i.isValidTimeout)(a))return;let b=(0,i.timeUntilStale)(this.#f.dataUpdatedAt,a);this.#l=j.timeoutManager.setTimeout(()=>{this.#f.isStale||this.updateResult()},b+1)}#v(){return("function"==typeof this.options.refetchInterval?this.options.refetchInterval(this.#d):this.options.refetchInterval)??!1}#w(a){this.#s(),this.#n=a,!d.environmentManager.isServer()&&!1!==(0,i.resolveQueryBoolean)(this.options.enabled,this.#d)&&(0,i.isValidTimeout)(this.#n)&&0!==this.#n&&(this.#m=j.timeoutManager.setInterval(()=>{(this.options.refetchIntervalInBackground||c.focusManager.isFocused())&&this.#p()},this.#n))}#q(){this.#u(),this.#w(this.#v())}#r(){void 0!==this.#l&&(j.timeoutManager.clearTimeout(this.#l),this.#l=void 0)}#s(){void 0!==this.#m&&(j.timeoutManager.clearInterval(this.#m),this.#m=void 0)}createResult(a,b){let c,d=this.#d,e=this.options,g=this.#f,j=this.#g,k=this.#h,m=a!==d?a.state:this.#e,{state:p}=a,q={...p},r=!1;if(b._optimisticResults){let c=this.hasListeners(),g=!c&&l(a,b),h=c&&n(a,d,b,e);(g||h)&&(q={...q,...(0,f.fetchState)(p.data,a.options)}),"isRestoring"===b._optimisticResults&&(q.fetchStatus="idle")}let{error:s,errorUpdatedAt:t,status:u}=q;c=q.data;let v=!1;if(void 0!==b.placeholderData&&void 0===c&&"pending"===u){let a;g?.isPlaceholderData&&b.placeholderData===k?.placeholderData?(a=g.data,v=!0):a="function"==typeof b.placeholderData?b.placeholderData(this.#k?.state.data,this.#k):b.placeholderData,void 0!==a&&(u="success",c=(0,i.replaceData)(g?.data,a,b),r=!0)}if(b.select&&void 0!==c&&!v)if(g&&c===j?.data&&b.select===this.#i)c=this.#j;else try{this.#i=b.select,c=b.select(c),c=(0,i.replaceData)(g?.data,c,b),this.#j=c,this.#b=null}catch(a){this.#b=a}this.#b&&(s=this.#b,c=this.#j,t=Date.now(),u="error");let w="fetching"===q.fetchStatus,x="pending"===u,y="error"===u,z=x&&w,A=void 0!==c,B={status:u,fetchStatus:q.fetchStatus,isPending:x,isSuccess:"success"===u,isError:y,isInitialLoading:z,isLoading:z,data:c,dataUpdatedAt:q.dataUpdatedAt,error:s,errorUpdatedAt:t,failureCount:q.fetchFailureCount,failureReason:q.fetchFailureReason,errorUpdateCount:q.errorUpdateCount,isFetched:a.isFetched(),isFetchedAfterMount:q.dataUpdateCount>m.dataUpdateCount||q.errorUpdateCount>m.errorUpdateCount,isFetching:w,isRefetching:w&&!x,isLoadingError:y&&!A,isPaused:"paused"===q.fetchStatus,isPlaceholderData:r,isRefetchError:y&&A,isStale:o(a,b),refetch:this.refetch,promise:this.#c,isEnabled:!1!==(0,i.resolveQueryBoolean)(b.enabled,a)};if(this.options.experimental_prefetchInRender){let b=void 0!==B.data,c="error"===B.status&&!b,e=a=>{c?a.reject(B.error):b&&a.resolve(B.data)},f=()=>{e(this.#c=B.promise=(0,h.pendingThenable)())},g=this.#c;switch(g.status){case"pending":a.queryHash===d.queryHash&&e(g);break;case"fulfilled":(c||B.data!==g.value)&&f();break;case"rejected":c&&B.error===g.reason||f()}}return B}updateResult(){let a=this.#f,b=this.createResult(this.#d,this.options);if(this.#g=this.#d.state,this.#h=this.options,void 0!==this.#g.data&&(this.#k=this.#d),(0,i.shallowEqualObjects)(b,a))return;this.#f=b;let c=()=>{if(!a)return!0;let{notifyOnChangeProps:b}=this.options,c="function"==typeof b?b():b;if("all"===c||!c&&!this.#o.size)return!0;let d=new Set(c??this.#o);return this.options.throwOnError&&d.add("error"),Object.keys(this.#f).some(b=>this.#f[b]!==a[b]&&d.has(b))};this.#x({listeners:c()})}#t(){let a=this.#a.getQueryCache().build(this.#a,this.options);if(a===this.#d)return;let b=this.#d;this.#d=a,this.#e=a.state,this.hasListeners()&&(b?.removeObserver(this),a.addObserver(this))}onQueryUpdate(){this.updateResult(),this.hasListeners()&&this.#q()}#x(a){e.notifyManager.batch(()=>{a.listeners&&this.listeners.forEach(a=>{a(this.#f)}),this.#a.getQueryCache().notify({query:this.#d,type:"observerResultsUpdated"})})}};function l(a,b){return!1!==(0,i.resolveQueryBoolean)(b.enabled,a)&&void 0===a.state.data&&("error"!==a.state.status||!1!==(0,i.resolveQueryBoolean)(b.retryOnMount,a))||void 0!==a.state.data&&m(a,b,b.refetchOnMount)}function m(a,b,c){if(!1!==(0,i.resolveQueryBoolean)(b.enabled,a)&&"static"!==(0,i.resolveStaleTime)(b.staleTime,a)){let d="function"==typeof c?c(a):c;return"always"===d||!1!==d&&o(a,b)}return!1}function n(a,b,c,d){return(a!==b||!1===(0,i.resolveQueryBoolean)(d.enabled,a))&&(!c.suspense||"error"!==a.state.status)&&o(a,c)}function o(a,b){return!1!==(0,i.resolveQueryBoolean)(b.enabled,a)&&a.isStaleByTime((0,i.resolveStaleTime)(b.staleTime,a))}var p=a.i(72131),q=a.i(37927);a.i(87924);var r=p.createContext((b=!1,{clearReset:()=>{b=!1},reset:()=>{b=!0},isReset:()=>b})),s=p.createContext(!1);s.Provider;var t=(a,b,c)=>b.fetchOptimistic(a).catch(()=>{c.clearReset()});a.s(["useQuery",0,function(a,b){return function(a,b,c){let f,g=p.useContext(s),h=p.useContext(r),j=(0,q.useQueryClient)(c),k=j.defaultQueryOptions(a);j.getDefaultOptions().queries?._experimental_beforeQuery?.(k);let l=j.getQueryCache().get(k.queryHash),m=!1!==a.subscribed;if(k._optimisticResults=g?"isRestoring":m?"optimistic":void 0,k.suspense){let a=a=>"static"===a?a:Math.max(a??1e3,1e3),b=k.staleTime;k.staleTime="function"==typeof b?(...c)=>a(b(...c)):a(b),"number"==typeof k.gcTime&&(k.gcTime=Math.max(k.gcTime,1e3))}f=l?.state.error&&"function"==typeof k.throwOnError?(0,i.shouldThrowError)(k.throwOnError,[l.state.error,l]):k.throwOnError,(k.suspense||k.experimental_prefetchInRender||f)&&!h.isReset()&&(k.retryOnMount=!1),p.useEffect(()=>{h.clearReset()},[h]);let n=!j.getQueryCache().get(k.queryHash),[o]=p.useState(()=>new b(j,k)),u=o.getOptimisticResult(k),v=!g&&m;if(p.useSyncExternalStore(p.useCallback(a=>{let b=v?o.subscribe(e.notifyManager.batchCalls(a)):i.noop;return o.updateResult(),b},[o,v]),()=>o.getCurrentResult(),()=>o.getCurrentResult()),p.useEffect(()=>{o.setOptions(k)},[k,o]),k?.suspense&&u.isPending)throw t(k,o,h);if((({result:a,errorResetBoundary:b,throwOnError:c,query:d,suspense:e})=>a.isError&&!b.isReset()&&!a.isFetching&&d&&(e&&void 0===a.data||(0,i.shouldThrowError)(c,[a.error,d])))({result:u,errorResetBoundary:h,throwOnError:k.throwOnError,query:l,suspense:k.suspense}))throw u.error;if(j.getDefaultOptions().queries?._experimental_afterQuery?.(k,u),k.experimental_prefetchInRender&&!d.environmentManager.isServer()&&u.isLoading&&u.isFetching&&!g){let a=n?t(k,o,h):l?.promise;a?.catch(i.noop).finally(()=>{o.updateResult()})}return k.notifyOnChangeProps?u:o.trackResult(u)}(a,k,b)}],33217)},67453,a=>{"use strict";let b=(0,a.i(70106).default)("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);a.s(["CheckCircle2",0,b],67453)},99712,a=>{"use strict";var b=a.i(87924),c=a.i(70106);let d=(0,c.default)("CircleAlert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);var e=a.i(67453);let f=(0,c.default)("CircleDashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]]),g=(0,c.default)("ShieldAlert",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]),h={OFFEN:{value:"OFFEN",label:"Noch nicht bewertet",badgeClass:"border-slate-300 bg-slate-100 text-slate-700",previewClass:"border-slate-300 bg-slate-50 text-slate-700",color:"#2E3B40",icon:f},BESTANDEN:{value:"BESTANDEN",label:"Bestanden",badgeClass:"border-success/35 bg-success/15 text-success",previewClass:"border-success/40 bg-success/10 text-success",color:"#245C36",icon:e.CheckCircle2},BESTANDEN_MIT_AUFLAGEN:{value:"BESTANDEN_MIT_AUFLAGEN",label:"Bestanden mit Auflagen",badgeClass:"border-warning/40 bg-warning/15 text-[#7A5A00]",previewClass:"border-warning/45 bg-warning/10 text-[#7A5A00]",color:"#7A5A00",icon:g},NICHT_BESTANDEN:{value:"NICHT_BESTANDEN",label:"Nicht bestanden",badgeClass:"border-danger/35 bg-danger/15 text-danger",previewClass:"border-danger/40 bg-danger/10 text-danger",color:"#7A1F26",icon:d}},i={"":"OFFEN",offen:"OFFEN",OFFEN:"OFFEN",bestanden:"BESTANDEN",BESTANDEN:"BESTANDEN",mit_auflagen:"BESTANDEN_MIT_AUFLAGEN",bestanden_mit_auflagen:"BESTANDEN_MIT_AUFLAGEN","bestanden mit auflagen":"BESTANDEN_MIT_AUFLAGEN",BESTANDEN_MIT_AUFLAGEN:"BESTANDEN_MIT_AUFLAGEN",nicht_bestanden:"NICHT_BESTANDEN","nicht bestanden":"NICHT_BESTANDEN",NICHT_BESTANDEN:"NICHT_BESTANDEN"};function j(a){return i[String(a??"").trim()]??"OFFEN"}function k(a){return h[j(a)]}a.s(["ValidationResultBadge",0,function({value:a,className:c=""}){let d=k(a),e=d.icon;return(0,b.jsxs)("span",{className:`inline-flex items-center gap-1.5 rounded-full border px-3 py-1 text-xs font-semibold ${d.badgeClass} ${c}`,children:[(0,b.jsx)(e,{className:"h-3.5 w-3.5"}),d.label]})},"getValidationResultPresentation",0,k,"normalizeValidationResult",0,j,"validationResultValues",0,["OFFEN","BESTANDEN","BESTANDEN_MIT_AUFLAGEN","NICHT_BESTANDEN"]],99712)},15618,a=>{"use strict";let b=(0,a.i(70106).default)("Plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);a.s(["Plus",0,b],15618)},73570,a=>{"use strict";let b=(0,a.i(70106).default)("TriangleAlert",[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);a.s(["AlertTriangle",0,b],73570)},51739,a=>{"use strict";var b=a.i(87924),c=a.i(33217),d=a.i(73570),e=a.i(67453),f=a.i(70106);let g=(0,f.default)("ClipboardList",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M12 11h4",key:"1jrz19"}],["path",{d:"M12 16h4",key:"n85exb"}],["path",{d:"M8 11h.01",key:"1dfujw"}],["path",{d:"M8 16h.01",key:"18s6g9"}]]),h=(0,f.default)("Clock",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 16 14",key:"68esgv"}]]),i=(0,f.default)("FilePenLine",[["path",{d:"m18 5-2.414-2.414A2 2 0 0 0 14.172 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2",key:"142zxg"}],["path",{d:"M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"2t3380"}],["path",{d:"M8 18h1",key:"13wk12"}]]);var j=a.i(97651),k=a.i(15618),l=a.i(35126);let m=(0,f.default)("TestTubeDiagonal",[["path",{d:"M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3",key:"1ub6xw"}],["path",{d:"m16 2 6 6",key:"1gw87d"}],["path",{d:"M12 16H4",key:"1cjfip"}]]),n=(0,f.default)("Users",[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87",key:"kshegd"}],["path",{d:"M16 3.13a4 4 0 0 1 0 7.75",key:"1da9ce"}]]);var o=a.i(38246),p=a.i(12314),q=a.i(53250),r=a.i(73943),s=a.i(99712);let t=[{label:"Neue Validierung starten",value:"Schnellstart",href:"/validations/quick-start",icon:k.Plus},{label:"Validierungen",key:"validations",href:"/validations",icon:g},{label:"Kunden",key:"customers",href:"/customers",icon:n},{label:"Geraete",key:"devices",href:"/devices",icon:l.Stethoscope},{label:"Pruefmittel",key:"equipment",href:"/equipment",icon:m}],u=[{label:"Entwuerfe",key:"validation_drafts",href:"/validations?status=ENTWURF",icon:i},{label:"Bereit zur Pruefung",key:"validation_ready",href:"/validations?status=BEREIT_ZUR_PRUEFUNG",icon:g},{label:"In Pruefung",key:"validation_in_review",href:"/validations?status=IN_PRUEFUNG",icon:h},{label:"Freigegeben",key:"validation_approved",href:"/validations?status=FREIGEGEBEN",icon:e.CheckCircle2},{label:"Ueberfaellige Revalidierungen",key:"validation_overdue",href:"/validations?overdue_only=true",icon:d.AlertTriangle}];a.s(["default",0,function(){let{token:a}=(0,p.useAuth)(),e=(0,c.useQuery)({queryKey:["dashboard",a],queryFn:()=>(0,q.apiGet)("/dashboard",a??""),enabled:!!a});return(0,b.jsxs)("div",{className:"space-y-8",children:[(0,b.jsxs)("header",{className:"rounded-lg border border-border bg-surface p-6 shadow-soft",children:[(0,b.jsxs)("div",{className:"flex flex-col justify-between gap-4 md:flex-row md:items-center",children:[(0,b.jsx)(r.BrandLogo,{}),(0,b.jsxs)("div",{className:"text-sm text-text-light",children:[(0,b.jsx)("p",{children:"Benutzer: angemeldet"}),(0,b.jsx)("p",{children:"Speicherstatus: synchronisiert"})]})]}),(0,b.jsx)("h1",{className:"mt-6 text-3xl font-semibold text-text",children:"Dashboard"}),(0,b.jsx)("p",{className:"mt-2 text-text-light",children:"Validierungsworkflow und faellige Revalidierungen."})]}),(0,b.jsx)("section",{className:"grid gap-4 sm:grid-cols-2 xl:grid-cols-5",children:t.map(a=>{let c=a.icon,d="key"in a?e.data?.[a.key]??0:a.value;return(0,b.jsxs)(o.default,{href:a.href,className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:-translate-y-0.5 hover:border-primary/40 hover:shadow-lg",children:[(0,b.jsxs)("div",{className:"flex items-center justify-between",children:[(0,b.jsx)("p",{className:"text-sm text-text-light",children:a.label}),(0,b.jsx)(c,{className:"h-5 w-5 text-primary"})]}),(0,b.jsx)("p",{className:"mt-6 text-4xl font-semibold text-text",children:d})]},a.label)})}),(0,b.jsx)("section",{className:"grid gap-4 sm:grid-cols-2 xl:grid-cols-5",children:u.map(a=>{let c=a.icon;return(0,b.jsxs)(o.default,{href:a.href,className:"rounded-lg border border-border bg-surface p-5 shadow-soft transition hover:border-primary/40 hover:bg-background",children:[(0,b.jsxs)("div",{className:"flex items-center justify-between",children:[(0,b.jsx)("p",{className:"text-sm text-text-light",children:a.label}),(0,b.jsx)(c,{className:"h-5 w-5 text-primary"})]}),(0,b.jsx)("p",{className:"mt-4 text-3xl font-semibold text-text",children:e.data?.[a.key]??0})]},a.key)})}),(0,b.jsxs)("section",{className:"grid gap-4 xl:grid-cols-4",children:[(0,b.jsxs)(o.default,{href:"/validations?sort_by=updated_at&sort_order=desc",className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:border-primary/40 hover:bg-background",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold",children:"Zuletzt bearbeitet"}),(0,b.jsx)("p",{className:"mt-3 text-sm leading-6 text-text-light",children:"Aktuelle Validierungen nach Bearbeitungsdatum oeffnen."})]}),(0,b.jsxs)(o.default,{href:"/validations?overdue_only=true",className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:border-danger/40 hover:bg-background",children:[(0,b.jsxs)("div",{className:"flex items-center justify-between",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold",children:"Ueberfaellige Revalidierungen"}),(0,b.jsx)(d.AlertTriangle,{className:"h-5 w-5 text-danger"})]}),(0,b.jsx)("p",{className:"mt-4 text-3xl font-semibold text-text",children:e.data?.validation_overdue??0})]}),(0,b.jsxs)(o.default,{href:"/equipment",className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:border-primary/40 hover:bg-background",children:[(0,b.jsxs)("div",{className:"flex items-center justify-between",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold",children:"Kalibrierstatus"}),(0,b.jsx)(j.Gauge,{className:"h-5 w-5 text-primary"})]}),(0,b.jsxs)("p",{className:"mt-4 text-sm text-text-light",children:["Gruen ",e.data?.equipment_green??0," · Gelb ",e.data?.equipment_yellow??0," · Rot ",e.data?.equipment_red??0]})]}),(0,b.jsxs)(o.default,{href:"/validations?status=ABGESCHLOSSEN",className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:border-primary/40 hover:bg-background",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold",children:"Letzte Berichte"}),(0,b.jsx)("p",{className:"mt-4 text-3xl font-semibold text-text",children:e.data?.validation_completed??0}),(0,b.jsxs)("div",{className:"mt-4 flex flex-wrap gap-2",children:[(0,b.jsx)(s.ValidationResultBadge,{value:"BESTANDEN",className:"text-[11px]"}),(0,b.jsx)("span",{className:"text-sm font-semibold text-text",children:e.data?.validation_result_passed??0}),(0,b.jsx)(s.ValidationResultBadge,{value:"BESTANDEN_MIT_AUFLAGEN",className:"text-[11px]"}),(0,b.jsx)("span",{className:"text-sm font-semibold text-text",children:e.data?.validation_result_conditional??0}),(0,b.jsx)(s.ValidationResultBadge,{value:"NICHT_BESTANDEN",className:"text-[11px]"}),(0,b.jsx)("span",{className:"text-sm font-semibold text-text",children:e.data?.validation_result_failed??0}),(0,b.jsx)(s.ValidationResultBadge,{value:"OFFEN",className:"text-[11px]"}),(0,b.jsx)("span",{className:"text-sm font-semibold text-text",children:e.data?.validation_result_open??0})]})]})]})]})}],51739)}]; -//# sourceMappingURL=_101_axp._.js.map \ No newline at end of file +//# sourceMappingURL=_1_mr0l7._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_1ewnf_e._.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_1ewnf_e._.js deleted file mode 100644 index bead33bd..00000000 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_1ewnf_e._.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports=[53250,a=>{"use strict";let b="/api/v1";async function c(a,b){let c=await a.text();if(!c)return b;try{let a=JSON.parse(c);return a.detail??a.message??c}catch{return c}}async function d(a,b){let c=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:a,password:b}),credentials:"include"});if(!c.ok){let a=Error(await c.text()||`HTTP ${c.status}`);throw a.status=c.status,a}return c.json()}async function e(a,c){let d=await fetch(`${b}${a}`,{cache:"no-store",credentials:"include"});if(!d.ok)throw Error(`API request failed: ${d.status}`);return d.json()}async function f(a,d,e,f){let g=await fetch(`${b}${a}`,{method:e,headers:{"Content-Type":"application/json"},body:JSON.stringify(f),credentials:"include"});if(!g.ok)throw Error(await c(g,`API request failed: ${g.status}`));return g.json()}async function g(a,d){let e=await fetch(`${b}${a}`,{method:"DELETE",credentials:"include"});if(!e.ok)throw Error(await c(e,`API request failed: ${e.status}`))}async function h(a,d,e){let f=await fetch(`${b}${a}`,{...e,headers:{"Content-Type":"application/json",...e?.headers??{}},credentials:"include"});if(!f.ok)throw Error(await c(f,`API request failed: ${f.status}`));return f.json()}a.s(["API_BASE",0,b,"apiDelete",0,g,"apiFetch",0,h,"apiGet",0,e,"apiSend",0,f,"login",0,d,"normalizeValidationPayload",0,function(a){return{...a,...Object.fromEntries(["contact_id","examiner_id"].map(b=>[b,a[b]||null]))}}])},33508,a=>{"use strict";let b=(0,a.i(70106).default)("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]);a.s(["X",0,b],33508)},84505,a=>{"use strict";let b=(0,a.i(70106).default)("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);a.s(["Download",0,b],84505)},14548,a=>{"use strict";let b=(0,a.i(70106).default)("Save",[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]]);a.s(["Save",0,b],14548)},92e3,a=>{"use strict";let b=(0,a.i(70106).default)("CircleAlert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);a.s(["AlertCircle",0,b],92e3)},67453,a=>{"use strict";let b=(0,a.i(70106).default)("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);a.s(["CheckCircle2",0,b],67453)},99712,a=>{"use strict";var b=a.i(87924),c=a.i(92e3),d=a.i(67453),e=a.i(70106);let f=(0,e.default)("CircleDashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]]),g=(0,e.default)("ShieldAlert",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]),h={OFFEN:{value:"OFFEN",label:"Noch nicht bewertet",badgeClass:"border-slate-300 bg-slate-100 text-slate-700",previewClass:"border-slate-300 bg-slate-50 text-slate-700",color:"#2E3B40",icon:f},BESTANDEN:{value:"BESTANDEN",label:"Bestanden",badgeClass:"border-success/35 bg-success/15 text-success",previewClass:"border-success/40 bg-success/10 text-success",color:"#245C36",icon:d.CheckCircle2},BESTANDEN_MIT_AUFLAGEN:{value:"BESTANDEN_MIT_AUFLAGEN",label:"Bestanden mit Auflagen",badgeClass:"border-warning/40 bg-warning/15 text-[#7A5A00]",previewClass:"border-warning/45 bg-warning/10 text-[#7A5A00]",color:"#7A5A00",icon:g},NICHT_BESTANDEN:{value:"NICHT_BESTANDEN",label:"Nicht bestanden",badgeClass:"border-danger/35 bg-danger/15 text-danger",previewClass:"border-danger/40 bg-danger/10 text-danger",color:"#7A1F26",icon:c.AlertCircle}},i={"":"OFFEN",offen:"OFFEN",OFFEN:"OFFEN",bestanden:"BESTANDEN",BESTANDEN:"BESTANDEN",mit_auflagen:"BESTANDEN_MIT_AUFLAGEN",bestanden_mit_auflagen:"BESTANDEN_MIT_AUFLAGEN","bestanden mit auflagen":"BESTANDEN_MIT_AUFLAGEN",BESTANDEN_MIT_AUFLAGEN:"BESTANDEN_MIT_AUFLAGEN",nicht_bestanden:"NICHT_BESTANDEN","nicht bestanden":"NICHT_BESTANDEN",NICHT_BESTANDEN:"NICHT_BESTANDEN"};function j(a){return i[String(a??"").trim()]??"OFFEN"}function k(a){return h[j(a)]}a.s(["ValidationResultBadge",0,function({value:a,className:c=""}){let d=k(a),e=d.icon;return(0,b.jsxs)("span",{className:`inline-flex items-center gap-1.5 rounded-full border px-3 py-1 text-xs font-semibold ${d.badgeClass} ${c}`,children:[(0,b.jsx)(e,{className:"h-3.5 w-3.5"}),d.label]})},"getValidationResultPresentation",0,k,"normalizeValidationResult",0,j,"validationResultValues",0,["OFFEN","BESTANDEN","BESTANDEN_MIT_AUFLAGEN","NICHT_BESTANDEN"]],99712)},15618,a=>{"use strict";let b=(0,a.i(70106).default)("Plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);a.s(["Plus",0,b],15618)},2560,a=>{"use strict";var b=a.i(87924),c=a.i(50944),d=a.i(27862);a.s(["default",0,function(){let a=(0,c.useParams)();return(0,b.jsx)(d.default,{validationId:a.id})}])}]; - -//# sourceMappingURL=_1ewnf_e._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_1i3n8ki._.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_1i3n8ki._.js new file mode 100644 index 00000000..00bf294b --- /dev/null +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_1i3n8ki._.js @@ -0,0 +1,3 @@ +module.exports=[87654,a=>{"use strict";let b=(0,a.i(70106).default)("RotateCcw",[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]]);a.s(["RotateCcw",0,b],87654)},67453,a=>{"use strict";let b=(0,a.i(70106).default)("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);a.s(["CheckCircle2",0,b],67453)},74618,a=>{"use strict";let b=(0,a.i(70106).default)("CloudUpload",[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"m8 17 4-4 4 4",key:"1quai1"}]]);a.s(["UploadCloud",0,b],74618)},73570,a=>{"use strict";let b=(0,a.i(70106).default)("TriangleAlert",[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);a.s(["AlertTriangle",0,b],73570)},50010,a=>{"use strict";var b=a.i(87924),c=a.i(73570),d=a.i(67453),e=a.i(97112),f=a.i(87654),g=a.i(74618),h=a.i(38246),i=a.i(72131),j=a.i(12314);let k={NEU_ANLEGEN:"Neu anlegen",BESTEHENDEN_AKTUALISIEREN:"Aktualisieren",UEBERSPRINGEN:"Überspringen",ERROR:"Fehler"},l=[{value:"all",label:"Alle"},{value:"NEU_ANLEGEN",label:"Neu"},{value:"BESTEHENDEN_AKTUALISIEREN",label:"Aktualisieren"},{value:"duplicates",label:"Mögliche Dubletten"},{value:"ERROR",label:"Fehler"},{value:"UEBERSPRINGEN",label:"Überspringen"}];async function m(a,b){try{return(await a.json()).detail??b}catch{return b}}function n({label:a,value:c}){return(0,b.jsxs)("div",{className:"rounded-lg border border-border bg-white p-3",children:[(0,b.jsx)("div",{className:"text-2xl font-semibold",children:c??0}),(0,b.jsx)("div",{className:"text-sm text-text-light",children:a})]})}a.s(["default",0,function(){let{user:a}=(0,j.useAuth)(),[o,p]=(0,i.useState)(null),[q,r]=(0,i.useState)(null),[s,t]=(0,i.useState)({}),[u,v]=(0,i.useState)({}),[w,x]=(0,i.useState)("all"),[y,z]=(0,i.useState)(!0),[A,B]=(0,i.useState)(null),[C,D]=(0,i.useState)(""),[E,F]=(0,i.useState)(""),G=(0,i.useMemo)(()=>{let a=q?.rows??[];return"all"===w?a:"duplicates"===w?a.filter(a=>a.matches&&Object.keys(a.matches).length>0&&"UEBERSPRINGEN"===a.action):a.filter(a=>(u[String(a.row_number)]??a.action)===w)},[w,q?.rows,u]);if(a?.role!=="admin")return(0,b.jsx)("div",{className:"rounded-lg border border-border bg-surface p-6 text-text-light",children:"Nur fuer Administratoren verfuegbar."});async function H(a){if(!o)return void F("Bitte zuerst eine Datei auswählen.");D("preview"),F(""),B(null);let b=new FormData;b.set("file",o),a&&b.set("mapping",JSON.stringify(a));let c=await fetch("/api/customer-imports/preview",{method:"POST",body:b,credentials:"include"});if(!c.ok){F(await m(c,"Importvorschau konnte nicht erzeugt werden.")),D("");return}let d=await c.json();r(d),t(d.mapping),v(Object.fromEntries(d.rows.map(a=>[String(a.row_number),a.action]))),D("")}async function I(){if(!o||!q)return;D("confirm"),F("");let a=new FormData;a.set("file",o),a.set("mapping",JSON.stringify(s)),a.set("row_actions",JSON.stringify(u)),a.set("ignore_empty_values",String(y));let b=await fetch("/api/customer-imports/confirm",{method:"POST",body:a,credentials:"include"});if(!b.ok){F(await m(b,"Kundenimport konnte nicht ausgeführt werden.")),D("");return}B(await b.json()),D("")}return(0,b.jsxs)("div",{className:"space-y-6 pb-10",children:[(0,b.jsxs)("header",{className:"flex flex-col gap-3 md:flex-row md:items-center md:justify-between",children:[(0,b.jsxs)("div",{children:[(0,b.jsx)("h1",{className:"text-3xl font-semibold text-text",children:"Kunden importieren"}),(0,b.jsx)("p",{className:"mt-2 text-text-light",children:"CSV- oder XLSX-Kundenstamm kontrolliert prüfen und übernehmen."})]}),(0,b.jsx)(h.default,{href:"/customers",className:"btn btn-secondary h-12",children:"Zur Kundenliste"})]}),E?(0,b.jsx)("div",{className:"rounded-lg border border-danger/40 bg-danger/10 p-4 text-sm text-danger",children:E}):null,(0,b.jsx)("section",{className:"rounded-lg border border-border bg-surface p-5 shadow-soft",children:(0,b.jsxs)("div",{className:"flex items-start gap-4",children:[(0,b.jsx)("div",{className:"rounded-lg bg-accent/20 p-3 text-primary",children:(0,b.jsx)(g.UploadCloud,{className:"h-6 w-6"})}),(0,b.jsxs)("div",{className:"flex-1",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold",children:"1. Datei hochladen"}),(0,b.jsx)("p",{className:"mt-1 text-sm text-text-light",children:"Erlaubt sind UTF-8 CSV und XLSX bis 5 MB. Der Upload verändert noch keine Daten."}),(0,b.jsxs)("label",{className:"mt-4 flex min-h-32 cursor-pointer flex-col items-center justify-center rounded-lg border border-dashed border-primary/40 bg-background p-5 text-center transition hover:border-primary hover:bg-accent/10",children:[(0,b.jsx)(e.FileUp,{className:"h-7 w-7 text-primary"}),(0,b.jsx)("span",{className:"mt-2 font-semibold",children:o?o.name:"Datei auswählen oder hier ablegen"}),(0,b.jsx)("span",{className:"text-sm text-text-light",children:"CSV oder XLSX"}),(0,b.jsx)("input",{type:"file",accept:".csv,.xlsx,text/csv,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",className:"sr-only",onChange:a=>{p(a.target.files?.[0]??null),r(null),B(null)}})]}),(0,b.jsxs)("div",{className:"mt-4 flex flex-wrap gap-3",children:[(0,b.jsxs)("button",{type:"button",className:"btn btn-primary h-12",disabled:!o||"preview"===C,onClick:()=>H(),children:["preview"===C?(0,b.jsx)("span",{className:"spinner"}):null,"Vorschau vorbereiten"]}),(0,b.jsxs)("button",{type:"button",className:"btn btn-secondary h-12",onClick:function(){p(null),r(null),t({}),v({}),B(null),F("")},children:[(0,b.jsx)(f.RotateCcw,{className:"h-4 w-4"})," Zurücksetzen"]})]})]})]})}),q?(0,b.jsxs)(b.Fragment,{children:[(0,b.jsxs)("section",{className:"rounded-lg border border-border bg-surface p-5 shadow-soft",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold",children:"2. Spalten zuordnen"}),(0,b.jsx)("p",{className:"mt-1 text-sm text-text-light",children:"Bitte automatische Zuordnung prüfen und bei Bedarf ändern."}),q.warnings.map(a=>(0,b.jsxs)("div",{className:"mt-3 flex items-center gap-2 rounded-lg border border-warning/40 bg-warning/10 p-3 text-sm text-[#7A5A00]",children:[(0,b.jsx)(c.AlertTriangle,{className:"h-4 w-4"})," ",a]},a)),(0,b.jsx)("div",{className:"mt-4 grid gap-3 md:grid-cols-2",children:q.columns.map(a=>(0,b.jsxs)("label",{className:"grid gap-2 rounded-lg border border-border p-3",children:[(0,b.jsx)("span",{className:"text-sm font-semibold",children:a}),(0,b.jsx)("select",{value:s[a]??"ignore",onChange:b=>t(c=>({...c,[a]:b.target.value})),className:"h-11 rounded-lg border border-border px-3",children:Object.entries(q.target_fields).map(([a,c])=>(0,b.jsx)("option",{value:a,children:c},a))})]},a))}),(0,b.jsxs)("button",{type:"button",className:"btn btn-secondary mt-4 h-12",disabled:"preview"===C,onClick:()=>H(s),children:["preview"===C?(0,b.jsx)("span",{className:"spinner"}):null,"Vorschau mit Zuordnung aktualisieren"]})]}),(0,b.jsxs)("section",{className:"rounded-lg border border-border bg-surface p-5 shadow-soft",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold",children:"3. Importvorschau prüfen"}),(0,b.jsx)("div",{className:"mt-3 flex flex-wrap gap-2",children:l.map(a=>(0,b.jsx)("button",{type:"button",onClick:()=>x(a.value),className:`rounded-lg border px-3 py-2 text-sm font-semibold transition hover:shadow-soft ${w===a.value?"border-primary bg-primary text-white":"border-border bg-white text-text"}`,children:a.label},a.value))}),(0,b.jsx)("div",{className:"mt-4 overflow-x-auto",children:(0,b.jsxs)("table",{className:"min-w-full text-left text-sm",children:[(0,b.jsx)("thead",{className:"bg-background text-xs uppercase text-text-light",children:(0,b.jsxs)("tr",{children:[(0,b.jsx)("th",{className:"px-4 py-3",children:"Zeile"}),(0,b.jsx)("th",{className:"px-4 py-3",children:"Kunde"}),(0,b.jsx)("th",{className:"px-4 py-3",children:"Standort"}),(0,b.jsx)("th",{className:"px-4 py-3",children:"Ansprechpartner"}),(0,b.jsx)("th",{className:"px-4 py-3",children:"Hinweis"}),(0,b.jsx)("th",{className:"px-4 py-3",children:"Aktion"})]})}),(0,b.jsx)("tbody",{className:"divide-y divide-border",children:G.map(a=>{let c=u[String(a.row_number)]??a.action;return(0,b.jsxs)("tr",{className:"hover:bg-accent/10",children:[(0,b.jsx)("td",{className:"px-4 py-3",children:a.row_number}),(0,b.jsxs)("td",{className:"px-4 py-3",children:[(0,b.jsx)("strong",{children:a.recognized.customer.name||"nicht erkannt"}),(0,b.jsx)("br",{}),(0,b.jsx)("span",{className:"text-text-light",children:a.recognized.customer.external_id||a.recognized.customer.email})]}),(0,b.jsxs)("td",{className:"px-4 py-3",children:[a.recognized.location.name,(0,b.jsx)("br",{}),(0,b.jsxs)("span",{className:"text-text-light",children:[a.recognized.location.postal_code," ",a.recognized.location.city]})]}),(0,b.jsx)("td",{className:"px-4 py-3",children:a.recognized.contact.full_name||"nicht erfasst"}),(0,b.jsx)("td",{className:"px-4 py-3",children:a.errors.length?(0,b.jsx)("span",{className:"text-danger",children:a.errors.join(", ")}):a.message}),(0,b.jsx)("td",{className:"px-4 py-3",children:(0,b.jsx)("select",{value:c,disabled:a.allowed_actions.length<=1,onChange:b=>v(c=>({...c,[String(a.row_number)]:b.target.value})),className:"h-10 rounded-lg border border-border px-3",children:a.allowed_actions.map(a=>(0,b.jsx)("option",{value:a,children:k[a]},a))})})]},a.row_number)})})]})})]}),(0,b.jsxs)("section",{className:"rounded-lg border border-border bg-surface p-5 shadow-soft",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold",children:"4. Import bestätigen"}),(0,b.jsxs)("div",{className:"mt-3 grid gap-3 sm:grid-cols-5",children:[(0,b.jsx)(n,{label:"Zeilen",value:q.summary.total}),(0,b.jsx)(n,{label:"Neu",value:q.summary.new}),(0,b.jsx)(n,{label:"Aktualisieren",value:q.summary.update}),(0,b.jsx)(n,{label:"Dubletten",value:q.summary.duplicates}),(0,b.jsx)(n,{label:"Fehler",value:q.summary.errors})]}),(0,b.jsxs)("label",{className:"mt-4 flex items-center gap-3 text-sm font-semibold",children:[(0,b.jsx)("input",{type:"checkbox",checked:y,onChange:a=>z(a.target.checked),className:"h-5 w-5"}),"Leere Importfelder ignorieren"]}),(0,b.jsxs)("button",{type:"button",className:"btn btn-primary mt-4 h-12",disabled:"confirm"===C||!q.rows.length,onClick:I,children:["confirm"===C?(0,b.jsx)("span",{className:"spinner"}):(0,b.jsx)(d.CheckCircle2,{className:"h-4 w-4"}),"confirm"===C?"Import läuft...":"Kunden jetzt importieren"]})]})]}):null,A?(0,b.jsxs)("section",{className:"rounded-lg border border-success/40 bg-success/10 p-5 shadow-soft",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold text-success",children:"Import abgeschlossen"}),(0,b.jsxs)("div",{className:"mt-3 grid gap-3 sm:grid-cols-3",children:[(0,b.jsx)(n,{label:"Kunden neu",value:A.summary.created_customers}),(0,b.jsx)(n,{label:"Kunden aktualisiert",value:A.summary.updated_customers}),(0,b.jsx)(n,{label:"Fehler",value:A.summary.error_rows}),(0,b.jsx)(n,{label:"Standorte neu",value:A.summary.created_locations}),(0,b.jsx)(n,{label:"Ansprechpartner neu",value:A.summary.created_contacts}),(0,b.jsx)(n,{label:"Übersprungen",value:A.summary.skipped_rows})]})]}):null]})}])}]; + +//# sourceMappingURL=_1i3n8ki._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_next-internal_server_app_(app)_customers_import_page_actions_20ppyww.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_next-internal_server_app_(app)_customers_import_page_actions_20ppyww.js new file mode 100644 index 00000000..d11b351e --- /dev/null +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/_next-internal_server_app_(app)_customers_import_page_actions_20ppyww.js @@ -0,0 +1,3 @@ +module.exports=[91583,(a,b,c)=>{}]; + +//# sourceMappingURL=_next-internal_server_app_%28app%29_customers_import_page_actions_20ppyww.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/components_1g-t6zb._.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/components_1g-t6zb._.js index 37aa0955..2a8ff685 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/components_1g-t6zb._.js +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/components_1g-t6zb._.js @@ -1,3 +1,3 @@ -module.exports=[87897,a=>{"use strict";var b=a.i(87924),c=a.i(70106);let d=(0,c.default)("Building2",[["path",{d:"M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18Z",key:"1b4qmf"}],["path",{d:"M6 12H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2",key:"i71pzd"}],["path",{d:"M18 9h2a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-2",key:"10jefs"}],["path",{d:"M10 6h4",key:"1itunk"}],["path",{d:"M10 10h4",key:"tcdvrf"}],["path",{d:"M10 14h4",key:"kelpxr"}],["path",{d:"M10 18h4",key:"1ulq68"}]]),e=(0,c.default)("ClipboardCheck",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"m9 14 2 2 4-4",key:"df797q"}]]),f=(0,c.default)("ClipboardPlus",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M9 14h6",key:"159ibu"}],["path",{d:"M12 17v-6",key:"1y8rbf"}]]),g=(0,c.default)("FileArchive",[["path",{d:"M10 12v-1",key:"v7bkov"}],["path",{d:"M10 18v-2",key:"1cjy8d"}],["path",{d:"M10 7V6",key:"dljcrl"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M15.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 .274 1.01",key:"gkbcor"}],["circle",{cx:"10",cy:"20",r:"2",key:"1xzdoj"}]]),h=(0,c.default)("FileCog",[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m3.2 12.9-.9-.4",key:"1i3dj5"}],["path",{d:"m3.2 15.1-.9.4",key:"1fvgj0"}],["path",{d:"M4.677 21.5a2 2 0 0 0 1.313.5H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2.5",key:"1yo3oz"}],["path",{d:"m4.9 11.2-.4-.9",key:"otmhb9"}],["path",{d:"m4.9 16.8-.4.9",key:"1b8z07"}],["path",{d:"m7.5 10.3-.4.9",key:"11k65u"}],["path",{d:"m7.5 17.7-.4-.9",key:"431x55"}],["path",{d:"m9.7 12.5-.9.4",key:"87sjan"}],["path",{d:"m9.7 15.5-.9-.4",key:"khqm91"}],["circle",{cx:"6",cy:"14",r:"3",key:"a1xfv6"}]]);var i=a.i(97651);let j=(0,c.default)("LayoutDashboard",[["rect",{width:"7",height:"9",x:"3",y:"3",rx:"1",key:"10lvy0"}],["rect",{width:"7",height:"5",x:"14",y:"3",rx:"1",key:"16une8"}],["rect",{width:"7",height:"9",x:"14",y:"12",rx:"1",key:"1hutg5"}],["rect",{width:"7",height:"5",x:"3",y:"16",rx:"1",key:"ldoo1y"}]]),k=(0,c.default)("LogOut",[["path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4",key:"1uf3rs"}],["polyline",{points:"16 17 21 12 16 7",key:"1gabdz"}],["line",{x1:"21",x2:"9",y1:"12",y2:"12",key:"1uyos4"}]]),l=(0,c.default)("MapPin",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}]]),m=(0,c.default)("Shield",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}]]);var n=a.i(35126);let o=(0,c.default)("UserRound",[["circle",{cx:"12",cy:"8",r:"5",key:"1hypcn"}],["path",{d:"M20 21a8 8 0 0 0-16 0",key:"rfgkzh"}]]);var p=a.i(38246),q=a.i(50944),r=a.i(72131),s=a.i(12314),t=a.i(73943);let u="/validations/quick-start",v=["admin","pruefer","mitarbeiter"],w=[{href:"/dashboard",label:"Dashboard",icon:j},{href:"/customers",label:"Kunden",icon:d},{href:"/locations",label:"Standorte",icon:l},{href:"/contacts",label:"Ansprechpartner",icon:o},{href:"/devices",label:"Geraete",icon:n.Stethoscope},{href:"/equipment",label:"Pruefmittel",icon:i.Gauge},{href:"/validations",label:"Validierungen",icon:e},{href:"/documents",label:"Dokumente",icon:g},{href:"/settings/report-layout",label:"Berichtseinstellungen",icon:h,adminOnly:!0},{href:"/users",label:"Benutzer",icon:m,adminOnly:!0}];function x(a,b){return"/validations"===b?a===b||a.startsWith(`${b}/`)&&a!==u:a===b||a.startsWith(`${b}/`)}a.s(["AppShell",0,function({children:a}){var c;let d=(0,q.usePathname)(),e=(0,s.useAuth)(),g=!!(c=e.user?.role)&&v.includes(c),h=d===u;return(0,r.useEffect)(()=>{e.user?.must_change_password&&"/profile/security"!==d&&window.location.replace("/profile/security")},[e.user?.must_change_password,d]),(0,b.jsxs)("div",{className:"min-h-screen bg-background text-text",children:[(0,b.jsxs)("header",{className:"sticky top-0 z-40 border-b border-border bg-surface/95 px-4 py-4 shadow-soft backdrop-blur lg:hidden",children:[(0,b.jsx)("div",{className:"flex items-center justify-between gap-3",children:(0,b.jsx)(t.BrandLogo,{compact:!0})}),g?(0,b.jsxs)(p.default,{href:u,"aria-current":h?"page":void 0,className:`mt-4 flex min-h-12 w-full items-center justify-center gap-3 rounded-lg border px-4 text-sm font-bold shadow-soft transition hover:shadow-md focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${h?"border-primary-dark bg-primary-dark text-white":"border-primary bg-primary text-white hover:bg-primary-dark"}`,children:[(0,b.jsx)(f,{className:"h-5 w-5"}),(0,b.jsx)("span",{children:"Neue Validierung starten"})]}):null,(0,b.jsx)("nav",{className:"mt-4 flex gap-2 overflow-x-auto pb-1",children:w.map((a,c)=>{let f=a.icon;if("adminOnly"in a&&a.adminOnly&&e.user?.role!=="admin")return null;let g=x(d,a.href);return(0,b.jsxs)(p.default,{href:a.href,"aria-current":g?"page":void 0,className:`flex min-h-11 shrink-0 items-center gap-2 rounded-lg border px-3 text-sm font-medium transition hover:shadow-soft focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${g?"border-accent bg-accent/35 text-primary-dark":"border-border bg-white text-text-light hover:bg-background hover:text-text"}`,children:[(0,b.jsx)(f,{className:"h-4 w-4"}),(0,b.jsx)("span",{children:a.label})]},`${a.label}-mobile-${c}`)})})]}),(0,b.jsxs)("aside",{className:"fixed inset-y-0 left-0 z-30 hidden w-72 border-r border-border bg-surface px-5 py-6 lg:block",children:[(0,b.jsx)("div",{className:"mb-8",children:(0,b.jsx)(t.BrandLogo,{compact:!0})}),g?(0,b.jsxs)(p.default,{href:u,"aria-current":h?"page":void 0,className:`mb-6 flex min-h-12 w-full items-center justify-center gap-3 rounded-lg border px-4 text-sm font-bold shadow-soft transition hover:shadow-md focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${h?"border-primary-dark bg-primary-dark text-white":"border-primary bg-primary text-white hover:bg-primary-dark"}`,children:[(0,b.jsx)(f,{className:"h-5 w-5"}),(0,b.jsx)("span",{children:"Neue Validierung starten"})]}):null,(0,b.jsx)("nav",{className:"space-y-1 pb-20",children:w.map((a,c)=>{let f=a.icon;if("adminOnly"in a&&a.adminOnly&&e.user?.role!=="admin")return null;let g=x(d,a.href);return(0,b.jsxs)(p.default,{href:a.href,"aria-current":g?"page":void 0,className:`flex h-11 items-center gap-3 rounded-lg px-3 text-sm font-medium transition hover:shadow-soft active:scale-[0.98] ${g?"bg-accent/35 text-primary-dark":"text-text-light hover:bg-background hover:text-text"}`,children:[(0,b.jsx)(f,{className:"h-4 w-4"}),(0,b.jsx)("span",{children:a.label})]},`${a.label}-${c}`)})}),(0,b.jsxs)("button",{type:"button",onClick:e.logout,className:"btn btn-primary absolute bottom-6 left-5 right-5 h-11 text-sm",children:[(0,b.jsx)(k,{className:"h-4 w-4"}),"Logout"]})]}),(0,b.jsx)("main",{className:"lg:pl-72",children:(0,b.jsx)("div",{className:"mx-auto min-h-screen max-w-7xl px-4 py-5 sm:px-6 lg:px-10 lg:py-8",children:a})})]})}],87897)},98773,a=>{"use strict";var b=a.i(87924),c=a.i(42871),d=a.i(76644),e=a.i(18544),f=a.i(33791),g=class extends f.Subscribable{constructor(a={}){super(),this.config=a,this.#a=new Map}#a;build(a,b,e){let f=b.queryKey,g=b.queryHash??(0,c.hashQueryKeyByOptions)(f,b),h=this.get(g);return h||(h=new d.Query({client:a,queryKey:f,queryHash:g,options:a.defaultQueryOptions(b),state:e,defaultOptions:a.getQueryDefaults(f)}),this.add(h)),h}add(a){this.#a.has(a.queryHash)||(this.#a.set(a.queryHash,a),this.notify({type:"added",query:a}))}remove(a){let b=this.#a.get(a.queryHash);b&&(a.destroy(),b===a&&this.#a.delete(a.queryHash),this.notify({type:"removed",query:a}))}clear(){e.notifyManager.batch(()=>{this.getAll().forEach(a=>{this.remove(a)})})}get(a){return this.#a.get(a)}getAll(){return[...this.#a.values()]}find(a){let b={exact:!0,...a};return this.getAll().find(a=>(0,c.matchQuery)(b,a))}findAll(a={}){let b=this.getAll();return Object.keys(a).length>0?b.filter(b=>(0,c.matchQuery)(a,b)):b}notify(a){e.notifyManager.batch(()=>{this.listeners.forEach(b=>{b(a)})})}onFocus(){e.notifyManager.batch(()=>{this.getAll().forEach(a=>{a.onFocus()})})}onOnline(){e.notifyManager.batch(()=>{this.getAll().forEach(a=>{a.onOnline()})})}},h=a.i(12794),i=f,j=class extends i.Subscribable{constructor(a={}){super(),this.config=a,this.#b=new Set,this.#c=new Map,this.#d=0}#b;#c;#d;build(a,b,c){let d=new h.Mutation({client:a,mutationCache:this,mutationId:++this.#d,options:a.defaultMutationOptions(b),state:c});return this.add(d),d}add(a){this.#b.add(a);let b=k(a);if("string"==typeof b){let c=this.#c.get(b);c?c.push(a):this.#c.set(b,[a])}this.notify({type:"added",mutation:a})}remove(a){if(this.#b.delete(a)){let b=k(a);if("string"==typeof b){let c=this.#c.get(b);if(c)if(c.length>1){let b=c.indexOf(a);-1!==b&&c.splice(b,1)}else c[0]===a&&this.#c.delete(b)}}this.notify({type:"removed",mutation:a})}canRun(a){let b=k(a);if("string"!=typeof b)return!0;{let c=this.#c.get(b),d=c?.find(a=>"pending"===a.state.status);return!d||d===a}}runNext(a){let b=k(a);if("string"!=typeof b)return Promise.resolve();{let c=this.#c.get(b)?.find(b=>b!==a&&b.state.isPaused);return c?.continue()??Promise.resolve()}}clear(){e.notifyManager.batch(()=>{this.#b.forEach(a=>{this.notify({type:"removed",mutation:a})}),this.#b.clear(),this.#c.clear()})}getAll(){return Array.from(this.#b)}find(a){let b={exact:!0,...a};return this.getAll().find(a=>(0,c.matchMutation)(b,a))}findAll(a={}){return this.getAll().filter(b=>(0,c.matchMutation)(a,b))}notify(a){e.notifyManager.batch(()=>{this.listeners.forEach(b=>{b(a)})})}resumePausedMutations(){let a=this.getAll().filter(a=>a.state.isPaused);return e.notifyManager.batch(()=>Promise.all(a.map(a=>a.continue().catch(c.noop))))}};function k(a){return a.options.scope?.id}var l=a.i(99745),m=a.i(12552),n=class{#e;#f;#g;#h;#i;#j;#k;#l;constructor(a={}){this.#e=a.queryCache||new g,this.#f=a.mutationCache||new j,this.#g=a.defaultOptions||{},this.#h=new Map,this.#i=new Map,this.#j=0}mount(){this.#j++,1===this.#j&&(this.#k=l.focusManager.subscribe(async a=>{a&&(await this.resumePausedMutations(),this.#e.onFocus())}),this.#l=m.onlineManager.subscribe(async a=>{a&&(await this.resumePausedMutations(),this.#e.onOnline())}))}unmount(){this.#j--,0===this.#j&&(this.#k?.(),this.#k=void 0,this.#l?.(),this.#l=void 0)}isFetching(a){return this.#e.findAll({...a,fetchStatus:"fetching"}).length}isMutating(a){return this.#f.findAll({...a,status:"pending"}).length}getQueryData(a){let b=this.defaultQueryOptions({queryKey:a});return this.#e.get(b.queryHash)?.state.data}ensureQueryData(a){let b=this.defaultQueryOptions(a),d=this.#e.build(this,b),e=d.state.data;return void 0===e?this.fetchQuery(a):(a.revalidateIfStale&&d.isStaleByTime((0,c.resolveStaleTime)(b.staleTime,d))&&this.prefetchQuery(b),Promise.resolve(e))}getQueriesData(a){return this.#e.findAll(a).map(({queryKey:a,state:b})=>[a,b.data])}setQueryData(a,b,d){let e=this.defaultQueryOptions({queryKey:a}),f=this.#e.get(e.queryHash),g=f?.state.data,h=(0,c.functionalUpdate)(b,g);if(void 0!==h)return this.#e.build(this,e).setData(h,{...d,manual:!0})}setQueriesData(a,b,c){return e.notifyManager.batch(()=>this.#e.findAll(a).map(({queryKey:a})=>[a,this.setQueryData(a,b,c)]))}getQueryState(a){let b=this.defaultQueryOptions({queryKey:a});return this.#e.get(b.queryHash)?.state}removeQueries(a){let b=this.#e;e.notifyManager.batch(()=>{b.findAll(a).forEach(a=>{b.remove(a)})})}resetQueries(a,b){let c=this.#e;return e.notifyManager.batch(()=>(c.findAll(a).forEach(a=>{a.reset()}),this.refetchQueries({type:"active",...a},b)))}cancelQueries(a,b={}){let d={revert:!0,...b};return Promise.all(e.notifyManager.batch(()=>this.#e.findAll(a).map(a=>a.cancel(d)))).then(c.noop).catch(c.noop)}invalidateQueries(a,b={}){return e.notifyManager.batch(()=>(this.#e.findAll(a).forEach(a=>{a.invalidate()}),a?.refetchType==="none")?Promise.resolve():this.refetchQueries({...a,type:a?.refetchType??a?.type??"active"},b))}refetchQueries(a,b={}){let d={...b,cancelRefetch:b.cancelRefetch??!0};return Promise.all(e.notifyManager.batch(()=>this.#e.findAll(a).filter(a=>!a.isDisabled()&&!a.isStatic()).map(a=>{let b=a.fetch(void 0,d);return d.throwOnError||(b=b.catch(c.noop)),"paused"===a.state.fetchStatus?Promise.resolve():b}))).then(c.noop)}fetchQuery(a){let b=this.defaultQueryOptions(a);void 0===b.retry&&(b.retry=!1);let d=this.#e.build(this,b);return d.isStaleByTime((0,c.resolveStaleTime)(b.staleTime,d))?d.fetch(b):Promise.resolve(d.state.data)}prefetchQuery(a){return this.fetchQuery(a).then(c.noop).catch(c.noop)}fetchInfiniteQuery(a){return a._type="infinite",this.fetchQuery(a)}prefetchInfiniteQuery(a){return this.fetchInfiniteQuery(a).then(c.noop).catch(c.noop)}ensureInfiniteQueryData(a){return a._type="infinite",this.ensureQueryData(a)}resumePausedMutations(){return m.onlineManager.isOnline()?this.#f.resumePausedMutations():Promise.resolve()}getQueryCache(){return this.#e}getMutationCache(){return this.#f}getDefaultOptions(){return this.#g}setDefaultOptions(a){this.#g=a}setQueryDefaults(a,b){this.#h.set((0,c.hashKey)(a),{queryKey:a,defaultOptions:b})}getQueryDefaults(a){let b=[...this.#h.values()],d={};return b.forEach(b=>{(0,c.partialMatchKey)(a,b.queryKey)&&Object.assign(d,b.defaultOptions)}),d}setMutationDefaults(a,b){this.#i.set((0,c.hashKey)(a),{mutationKey:a,defaultOptions:b})}getMutationDefaults(a){let b=[...this.#i.values()],d={};return b.forEach(b=>{(0,c.partialMatchKey)(a,b.mutationKey)&&Object.assign(d,b.defaultOptions)}),d}defaultQueryOptions(a){if(a._defaulted)return a;let b={...this.#g.queries,...this.getQueryDefaults(a.queryKey),...a,_defaulted:!0};return b.queryHash||(b.queryHash=(0,c.hashQueryKeyByOptions)(b.queryKey,b)),void 0===b.refetchOnReconnect&&(b.refetchOnReconnect="always"!==b.networkMode),void 0===b.throwOnError&&(b.throwOnError=!!b.suspense),!b.networkMode&&b.persister&&(b.networkMode="offlineFirst"),b.queryFn===c.skipToken&&(b.enabled=!1),b}defaultMutationOptions(a){return a?._defaulted?a:{...this.#g.mutations,...a?.mutationKey&&this.getMutationDefaults(a.mutationKey),...a,_defaulted:!0}}clear(){this.#e.clear(),this.#f.clear()}},o=a.i(37927),p=a.i(72131);a.s(["QueryProvider",0,function({children:a}){let[c]=(0,p.useState)(()=>new n);return(0,b.jsx)(o.QueryClientProvider,{client:c,children:a})}],98773)}]; +module.exports=[87897,a=>{"use strict";var b=a.i(87924),c=a.i(70106);let d=(0,c.default)("Building2",[["path",{d:"M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18Z",key:"1b4qmf"}],["path",{d:"M6 12H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2",key:"i71pzd"}],["path",{d:"M18 9h2a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-2",key:"10jefs"}],["path",{d:"M10 6h4",key:"1itunk"}],["path",{d:"M10 10h4",key:"tcdvrf"}],["path",{d:"M10 14h4",key:"kelpxr"}],["path",{d:"M10 18h4",key:"1ulq68"}]]),e=(0,c.default)("ClipboardCheck",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"m9 14 2 2 4-4",key:"df797q"}]]),f=(0,c.default)("ClipboardPlus",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M9 14h6",key:"159ibu"}],["path",{d:"M12 17v-6",key:"1y8rbf"}]]),g=(0,c.default)("FileArchive",[["path",{d:"M10 12v-1",key:"v7bkov"}],["path",{d:"M10 18v-2",key:"1cjy8d"}],["path",{d:"M10 7V6",key:"dljcrl"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M15.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 .274 1.01",key:"gkbcor"}],["circle",{cx:"10",cy:"20",r:"2",key:"1xzdoj"}]]),h=(0,c.default)("FileCog",[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m3.2 12.9-.9-.4",key:"1i3dj5"}],["path",{d:"m3.2 15.1-.9.4",key:"1fvgj0"}],["path",{d:"M4.677 21.5a2 2 0 0 0 1.313.5H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2.5",key:"1yo3oz"}],["path",{d:"m4.9 11.2-.4-.9",key:"otmhb9"}],["path",{d:"m4.9 16.8-.4.9",key:"1b8z07"}],["path",{d:"m7.5 10.3-.4.9",key:"11k65u"}],["path",{d:"m7.5 17.7-.4-.9",key:"431x55"}],["path",{d:"m9.7 12.5-.9.4",key:"87sjan"}],["path",{d:"m9.7 15.5-.9-.4",key:"khqm91"}],["circle",{cx:"6",cy:"14",r:"3",key:"a1xfv6"}]]);var i=a.i(97112),j=a.i(97651);let k=(0,c.default)("LayoutDashboard",[["rect",{width:"7",height:"9",x:"3",y:"3",rx:"1",key:"10lvy0"}],["rect",{width:"7",height:"5",x:"14",y:"3",rx:"1",key:"16une8"}],["rect",{width:"7",height:"9",x:"14",y:"12",rx:"1",key:"1hutg5"}],["rect",{width:"7",height:"5",x:"3",y:"16",rx:"1",key:"ldoo1y"}]]),l=(0,c.default)("LogOut",[["path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4",key:"1uf3rs"}],["polyline",{points:"16 17 21 12 16 7",key:"1gabdz"}],["line",{x1:"21",x2:"9",y1:"12",y2:"12",key:"1uyos4"}]]),m=(0,c.default)("MapPin",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}]]),n=(0,c.default)("Shield",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}]]);var o=a.i(35126);let p=(0,c.default)("UserRound",[["circle",{cx:"12",cy:"8",r:"5",key:"1hypcn"}],["path",{d:"M20 21a8 8 0 0 0-16 0",key:"rfgkzh"}]]);var q=a.i(38246),r=a.i(50944),s=a.i(72131),t=a.i(12314),u=a.i(73943);let v="/validations/quick-start",w=["admin","pruefer","mitarbeiter"],x=[{href:"/dashboard",label:"Dashboard",icon:k},{href:"/customers",label:"Kunden",icon:d},{href:"/customers/import",label:"Kunden importieren",icon:i.FileUp,adminOnly:!0},{href:"/locations",label:"Standorte",icon:m},{href:"/contacts",label:"Ansprechpartner",icon:p},{href:"/devices",label:"Geraete",icon:o.Stethoscope},{href:"/equipment",label:"Pruefmittel",icon:j.Gauge},{href:"/validations",label:"Validierungen",icon:e},{href:"/documents",label:"Dokumente",icon:g},{href:"/settings/report-layout",label:"Berichtseinstellungen",icon:h,adminOnly:!0},{href:"/users",label:"Benutzer",icon:n,adminOnly:!0}];function y(a,b){return"/customers"===b?a===b:"/validations"===b?a===b||a.startsWith(`${b}/`)&&a!==v:a===b||a.startsWith(`${b}/`)}a.s(["AppShell",0,function({children:a}){var c;let d=(0,r.usePathname)(),e=(0,t.useAuth)(),g=!!(c=e.user?.role)&&w.includes(c),h=d===v;return(0,s.useEffect)(()=>{e.user?.must_change_password&&"/profile/security"!==d&&window.location.replace("/profile/security")},[e.user?.must_change_password,d]),(0,b.jsxs)("div",{className:"min-h-screen bg-background text-text",children:[(0,b.jsxs)("header",{className:"sticky top-0 z-40 border-b border-border bg-surface/95 px-4 py-4 shadow-soft backdrop-blur lg:hidden",children:[(0,b.jsx)("div",{className:"flex items-center justify-between gap-3",children:(0,b.jsx)(u.BrandLogo,{compact:!0})}),g?(0,b.jsxs)(q.default,{href:v,"aria-current":h?"page":void 0,className:`mt-4 flex min-h-12 w-full items-center justify-center gap-3 rounded-lg border px-4 text-sm font-bold shadow-soft transition hover:shadow-md focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${h?"border-primary-dark bg-primary-dark text-white":"border-primary bg-primary text-white hover:bg-primary-dark"}`,children:[(0,b.jsx)(f,{className:"h-5 w-5"}),(0,b.jsx)("span",{children:"Neue Validierung starten"})]}):null,(0,b.jsx)("nav",{className:"mt-4 flex gap-2 overflow-x-auto pb-1",children:x.map((a,c)=>{let f=a.icon;if("adminOnly"in a&&a.adminOnly&&e.user?.role!=="admin")return null;let g=y(d,a.href);return(0,b.jsxs)(q.default,{href:a.href,"aria-current":g?"page":void 0,className:`flex min-h-11 shrink-0 items-center gap-2 rounded-lg border px-3 text-sm font-medium transition hover:shadow-soft focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${g?"border-accent bg-accent/35 text-primary-dark":"border-border bg-white text-text-light hover:bg-background hover:text-text"}`,children:[(0,b.jsx)(f,{className:"h-4 w-4"}),(0,b.jsx)("span",{children:a.label})]},`${a.label}-mobile-${c}`)})})]}),(0,b.jsxs)("aside",{className:"fixed inset-y-0 left-0 z-30 hidden w-72 border-r border-border bg-surface px-5 py-6 lg:block",children:[(0,b.jsx)("div",{className:"mb-8",children:(0,b.jsx)(u.BrandLogo,{compact:!0})}),g?(0,b.jsxs)(q.default,{href:v,"aria-current":h?"page":void 0,className:`mb-6 flex min-h-12 w-full items-center justify-center gap-3 rounded-lg border px-4 text-sm font-bold shadow-soft transition hover:shadow-md focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${h?"border-primary-dark bg-primary-dark text-white":"border-primary bg-primary text-white hover:bg-primary-dark"}`,children:[(0,b.jsx)(f,{className:"h-5 w-5"}),(0,b.jsx)("span",{children:"Neue Validierung starten"})]}):null,(0,b.jsx)("nav",{className:"space-y-1 pb-20",children:x.map((a,c)=>{let f=a.icon;if("adminOnly"in a&&a.adminOnly&&e.user?.role!=="admin")return null;let g=y(d,a.href);return(0,b.jsxs)(q.default,{href:a.href,"aria-current":g?"page":void 0,className:`flex h-11 items-center gap-3 rounded-lg px-3 text-sm font-medium transition hover:shadow-soft active:scale-[0.98] ${g?"bg-accent/35 text-primary-dark":"text-text-light hover:bg-background hover:text-text"}`,children:[(0,b.jsx)(f,{className:"h-4 w-4"}),(0,b.jsx)("span",{children:a.label})]},`${a.label}-${c}`)})}),(0,b.jsxs)("button",{type:"button",onClick:e.logout,className:"btn btn-primary absolute bottom-6 left-5 right-5 h-11 text-sm",children:[(0,b.jsx)(l,{className:"h-4 w-4"}),"Logout"]})]}),(0,b.jsx)("main",{className:"lg:pl-72",children:(0,b.jsx)("div",{className:"mx-auto min-h-screen max-w-7xl px-4 py-5 sm:px-6 lg:px-10 lg:py-8",children:a})})]})}],87897)},98773,a=>{"use strict";var b=a.i(87924),c=a.i(42871),d=a.i(76644),e=a.i(18544),f=a.i(33791),g=class extends f.Subscribable{constructor(a={}){super(),this.config=a,this.#a=new Map}#a;build(a,b,e){let f=b.queryKey,g=b.queryHash??(0,c.hashQueryKeyByOptions)(f,b),h=this.get(g);return h||(h=new d.Query({client:a,queryKey:f,queryHash:g,options:a.defaultQueryOptions(b),state:e,defaultOptions:a.getQueryDefaults(f)}),this.add(h)),h}add(a){this.#a.has(a.queryHash)||(this.#a.set(a.queryHash,a),this.notify({type:"added",query:a}))}remove(a){let b=this.#a.get(a.queryHash);b&&(a.destroy(),b===a&&this.#a.delete(a.queryHash),this.notify({type:"removed",query:a}))}clear(){e.notifyManager.batch(()=>{this.getAll().forEach(a=>{this.remove(a)})})}get(a){return this.#a.get(a)}getAll(){return[...this.#a.values()]}find(a){let b={exact:!0,...a};return this.getAll().find(a=>(0,c.matchQuery)(b,a))}findAll(a={}){let b=this.getAll();return Object.keys(a).length>0?b.filter(b=>(0,c.matchQuery)(a,b)):b}notify(a){e.notifyManager.batch(()=>{this.listeners.forEach(b=>{b(a)})})}onFocus(){e.notifyManager.batch(()=>{this.getAll().forEach(a=>{a.onFocus()})})}onOnline(){e.notifyManager.batch(()=>{this.getAll().forEach(a=>{a.onOnline()})})}},h=a.i(12794),i=f,j=class extends i.Subscribable{constructor(a={}){super(),this.config=a,this.#b=new Set,this.#c=new Map,this.#d=0}#b;#c;#d;build(a,b,c){let d=new h.Mutation({client:a,mutationCache:this,mutationId:++this.#d,options:a.defaultMutationOptions(b),state:c});return this.add(d),d}add(a){this.#b.add(a);let b=k(a);if("string"==typeof b){let c=this.#c.get(b);c?c.push(a):this.#c.set(b,[a])}this.notify({type:"added",mutation:a})}remove(a){if(this.#b.delete(a)){let b=k(a);if("string"==typeof b){let c=this.#c.get(b);if(c)if(c.length>1){let b=c.indexOf(a);-1!==b&&c.splice(b,1)}else c[0]===a&&this.#c.delete(b)}}this.notify({type:"removed",mutation:a})}canRun(a){let b=k(a);if("string"!=typeof b)return!0;{let c=this.#c.get(b),d=c?.find(a=>"pending"===a.state.status);return!d||d===a}}runNext(a){let b=k(a);if("string"!=typeof b)return Promise.resolve();{let c=this.#c.get(b)?.find(b=>b!==a&&b.state.isPaused);return c?.continue()??Promise.resolve()}}clear(){e.notifyManager.batch(()=>{this.#b.forEach(a=>{this.notify({type:"removed",mutation:a})}),this.#b.clear(),this.#c.clear()})}getAll(){return Array.from(this.#b)}find(a){let b={exact:!0,...a};return this.getAll().find(a=>(0,c.matchMutation)(b,a))}findAll(a={}){return this.getAll().filter(b=>(0,c.matchMutation)(a,b))}notify(a){e.notifyManager.batch(()=>{this.listeners.forEach(b=>{b(a)})})}resumePausedMutations(){let a=this.getAll().filter(a=>a.state.isPaused);return e.notifyManager.batch(()=>Promise.all(a.map(a=>a.continue().catch(c.noop))))}};function k(a){return a.options.scope?.id}var l=a.i(99745),m=a.i(12552),n=class{#e;#f;#g;#h;#i;#j;#k;#l;constructor(a={}){this.#e=a.queryCache||new g,this.#f=a.mutationCache||new j,this.#g=a.defaultOptions||{},this.#h=new Map,this.#i=new Map,this.#j=0}mount(){this.#j++,1===this.#j&&(this.#k=l.focusManager.subscribe(async a=>{a&&(await this.resumePausedMutations(),this.#e.onFocus())}),this.#l=m.onlineManager.subscribe(async a=>{a&&(await this.resumePausedMutations(),this.#e.onOnline())}))}unmount(){this.#j--,0===this.#j&&(this.#k?.(),this.#k=void 0,this.#l?.(),this.#l=void 0)}isFetching(a){return this.#e.findAll({...a,fetchStatus:"fetching"}).length}isMutating(a){return this.#f.findAll({...a,status:"pending"}).length}getQueryData(a){let b=this.defaultQueryOptions({queryKey:a});return this.#e.get(b.queryHash)?.state.data}ensureQueryData(a){let b=this.defaultQueryOptions(a),d=this.#e.build(this,b),e=d.state.data;return void 0===e?this.fetchQuery(a):(a.revalidateIfStale&&d.isStaleByTime((0,c.resolveStaleTime)(b.staleTime,d))&&this.prefetchQuery(b),Promise.resolve(e))}getQueriesData(a){return this.#e.findAll(a).map(({queryKey:a,state:b})=>[a,b.data])}setQueryData(a,b,d){let e=this.defaultQueryOptions({queryKey:a}),f=this.#e.get(e.queryHash),g=f?.state.data,h=(0,c.functionalUpdate)(b,g);if(void 0!==h)return this.#e.build(this,e).setData(h,{...d,manual:!0})}setQueriesData(a,b,c){return e.notifyManager.batch(()=>this.#e.findAll(a).map(({queryKey:a})=>[a,this.setQueryData(a,b,c)]))}getQueryState(a){let b=this.defaultQueryOptions({queryKey:a});return this.#e.get(b.queryHash)?.state}removeQueries(a){let b=this.#e;e.notifyManager.batch(()=>{b.findAll(a).forEach(a=>{b.remove(a)})})}resetQueries(a,b){let c=this.#e;return e.notifyManager.batch(()=>(c.findAll(a).forEach(a=>{a.reset()}),this.refetchQueries({type:"active",...a},b)))}cancelQueries(a,b={}){let d={revert:!0,...b};return Promise.all(e.notifyManager.batch(()=>this.#e.findAll(a).map(a=>a.cancel(d)))).then(c.noop).catch(c.noop)}invalidateQueries(a,b={}){return e.notifyManager.batch(()=>(this.#e.findAll(a).forEach(a=>{a.invalidate()}),a?.refetchType==="none")?Promise.resolve():this.refetchQueries({...a,type:a?.refetchType??a?.type??"active"},b))}refetchQueries(a,b={}){let d={...b,cancelRefetch:b.cancelRefetch??!0};return Promise.all(e.notifyManager.batch(()=>this.#e.findAll(a).filter(a=>!a.isDisabled()&&!a.isStatic()).map(a=>{let b=a.fetch(void 0,d);return d.throwOnError||(b=b.catch(c.noop)),"paused"===a.state.fetchStatus?Promise.resolve():b}))).then(c.noop)}fetchQuery(a){let b=this.defaultQueryOptions(a);void 0===b.retry&&(b.retry=!1);let d=this.#e.build(this,b);return d.isStaleByTime((0,c.resolveStaleTime)(b.staleTime,d))?d.fetch(b):Promise.resolve(d.state.data)}prefetchQuery(a){return this.fetchQuery(a).then(c.noop).catch(c.noop)}fetchInfiniteQuery(a){return a._type="infinite",this.fetchQuery(a)}prefetchInfiniteQuery(a){return this.fetchInfiniteQuery(a).then(c.noop).catch(c.noop)}ensureInfiniteQueryData(a){return a._type="infinite",this.ensureQueryData(a)}resumePausedMutations(){return m.onlineManager.isOnline()?this.#f.resumePausedMutations():Promise.resolve()}getQueryCache(){return this.#e}getMutationCache(){return this.#f}getDefaultOptions(){return this.#g}setDefaultOptions(a){this.#g=a}setQueryDefaults(a,b){this.#h.set((0,c.hashKey)(a),{queryKey:a,defaultOptions:b})}getQueryDefaults(a){let b=[...this.#h.values()],d={};return b.forEach(b=>{(0,c.partialMatchKey)(a,b.queryKey)&&Object.assign(d,b.defaultOptions)}),d}setMutationDefaults(a,b){this.#i.set((0,c.hashKey)(a),{mutationKey:a,defaultOptions:b})}getMutationDefaults(a){let b=[...this.#i.values()],d={};return b.forEach(b=>{(0,c.partialMatchKey)(a,b.mutationKey)&&Object.assign(d,b.defaultOptions)}),d}defaultQueryOptions(a){if(a._defaulted)return a;let b={...this.#g.queries,...this.getQueryDefaults(a.queryKey),...a,_defaulted:!0};return b.queryHash||(b.queryHash=(0,c.hashQueryKeyByOptions)(b.queryKey,b)),void 0===b.refetchOnReconnect&&(b.refetchOnReconnect="always"!==b.networkMode),void 0===b.throwOnError&&(b.throwOnError=!!b.suspense),!b.networkMode&&b.persister&&(b.networkMode="offlineFirst"),b.queryFn===c.skipToken&&(b.enabled=!1),b}defaultMutationOptions(a){return a?._defaulted?a:{...this.#g.mutations,...a?.mutationKey&&this.getMutationDefaults(a.mutationKey),...a,_defaulted:!0}}clear(){this.#e.clear(),this.#f.clear()}},o=a.i(37927),p=a.i(72131);a.s(["QueryProvider",0,function({children:a}){let[c]=(0,p.useState)(()=>new n);return(0,b.jsx)(o.QueryClientProvider,{client:c,children:a})}],98773)}]; //# sourceMappingURL=components_1g-t6zb._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/components_validations_validation-editor_tsx_1twfibv._.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/components_validations_validation-editor_tsx_1twfibv._.js index 3a8fa541..d5f331a3 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/components_validations_validation-editor_tsx_1twfibv._.js +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/components_validations_validation-editor_tsx_1twfibv._.js @@ -1,3 +1,3 @@ -module.exports=[27862,a=>{"use strict";var b=a.i(87924),c=a.i(59501),d=a.i(70025),e=a.i(33217),f=a.i(37927),g=a.i(70106);let h=(0,g.default)("ChevronDown",[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]]);var i=a.i(84505);let j=(0,g.default)("FileText",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M10 9H8",key:"b1mrlr"}],["path",{d:"M16 13H8",key:"t4e002"}],["path",{d:"M16 17H8",key:"z1uh3a"}]]);var k=a.i(15618),l=a.i(14548);let m=(0,g.default)("ShieldCheck",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]),n=(0,g.default)("CloudUpload",[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"m8 17 4-4 4 4",key:"1quai1"}]]);var o=a.i(33508),p=a.i(72131),q=a.i(95245),r=a.i(88780);let s=(0,g.default)("Check",[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]]);function t({children:a,icon:c,state:d="normal",loadingText:e,successText:f="Gespeichert",disabled:g,disabledReason:h,variant:i="secondary",className:j="",...k}){let l=g||"loading"===d,m="success"===d?"btn-success":"error"===d?"btn-danger":`btn-${i}`;return(0,b.jsxs)("button",{...k,disabled:l,title:l?h:k.title,className:`btn ${m} ${j}`,children:["loading"===d?(0,b.jsx)("span",{className:"spinner"}):"success"===d?(0,b.jsx)(s,{className:"h-4 w-4"}):c,(0,b.jsx)("span",{children:"loading"===d?e??"Laedt...":"success"===d?f:a})]})}var u=a.i(12314),v=a.i(53250),w=a.i(99712);let x=["yes","no","na"],y=new Date().toISOString().slice(0,10),z=["Aufbereitungsraum","reiner Bereich","unreiner Bereich","Sterilisator","Beladung","Sensorposition","Chargenprotokoll","Indikator","Zertifikat","Kalibrierschein","Winlog-Auswertung"],A={report_number:{label:"Berichtsnummer",section:"Allgemeine Angaben"},validation_type:{label:"Validierungsart",section:"Allgemeine Angaben"},performed_on:{label:"Pruefdatum",section:"Allgemeine Angaben"},customer_id:{label:"Kunde",section:"Kunde und Standort"},location_id:{label:"Standort",section:"Kunde und Standort"},device_id:{label:"Geraet",section:"Geraet"},examiner_name:{label:"Pruefer",section:"Allgemeine Angaben"}},B=r.z.object({report_number:r.z.string().min(3),validation_type:r.z.string().min(1),project:r.z.string().optional(),performed_on:r.z.string().min(1),next_validation_on:r.z.string().optional().nullable(),revalidation_interval_months:r.z.coerce.number().int().min(1),next_validation_manually_overridden:r.z.boolean(),test_location:r.z.string().optional(),examiner_name:r.z.string().min(1),participants:r.z.string().optional(),status:r.z.string().min(1),result:r.z.string().min(1),customer_id:r.z.string().min(1),location_id:r.z.string().min(1),contact_id:r.z.string().optional().nullable(),examiner_id:r.z.string().optional().nullable(),operator_name:r.z.string().optional(),device_id:r.z.string().min(1),equipment_ids:r.z.array(r.z.string()),environment_conditions:r.z.record(r.z.unknown()),documentation_checklist:r.z.array(r.z.record(r.z.unknown())),performance_checklist:r.z.array(r.z.record(r.z.unknown())),programs:r.z.array(r.z.record(r.z.unknown())),loading_patterns:r.z.array(r.z.record(r.z.unknown())),measurement_data:r.z.array(r.z.record(r.z.unknown())),drying:r.z.record(r.z.unknown()),recommendations:r.z.array(r.z.record(r.z.unknown())),attachments:r.z.array(r.z.record(r.z.unknown()))});function C(a=""){return{report_number:a,validation_type:"Erstvalidierung",project:"",performed_on:y,next_validation_on:"",revalidation_interval_months:24,next_validation_manually_overridden:!1,test_location:"",examiner_name:"",participants:"",status:"ENTWURF",result:"OFFEN",customer_id:"",location_id:"",contact_id:"",examiner_id:"",operator_name:"",device_id:"",equipment_ids:[],environment_conditions:{room_temperature:"",humidity:"",test_time:"",checks:[{text:"Raumbedingungen stabil",value:"na",comment:""},{text:"Aufstellort frei zugaenglich",value:"na",comment:""},{text:"Medienversorgung verfuegbar",value:"na",comment:""}]},documentation_checklist:[],performance_checklist:[],programs:[{name:"Vakuumtest",selected:!1,custom:!1},{name:"Bowie-Dick / Leerkammerprofil",selected:!1,custom:!1},{name:"134 C hohl verpackt",selected:!1,custom:!1}],loading_patterns:[1,2,3].map(a=>({run:a,pattern:"",description:"",images:[]})),measurement_data:["Vakuumtest","Leerkammerprofil","Testlauf 1","Testlauf 2","Testlauf 3"].map(a=>({name:a,start_time:"",end_time:"",duration:"",leak_rate:"",min_temperature:"",max_temperature:"",temperature_band:"",equilibration_time:"",holding_time:"",pressure:"",result:"",imports:[]})),drying:{start_weight:"",end_weight:"",difference:"",rating:"",comment:""},recommendations:[],attachments:[]}}function D({title:a,children:c,defaultOpen:d=!1}){let[e,f]=(0,p.useState)(d);return(0,b.jsxs)("section",{className:"rounded-lg border border-border bg-surface shadow-soft",children:[(0,b.jsxs)("button",{type:"button",onClick:()=>f(a=>!a),className:"flex w-full items-center justify-between px-5 py-4 text-left text-lg font-semibold hover:bg-background",children:[a,(0,b.jsx)(h,{className:`h-5 w-5 transition ${e?"rotate-180":""}`})]}),e&&(0,b.jsx)("div",{className:"border-t border-border p-5",children:c})]})}function E({label:a,children:c}){return(0,b.jsxs)("label",{className:"block",children:[(0,b.jsx)("span",{className:"text-sm font-medium text-text",children:a}),(0,b.jsx)("div",{className:"mt-2",children:c})]})}let F="h-12 w-full rounded-lg border border-border bg-white px-4 outline-none focus:border-primary",G="min-h-24 w-full rounded-lg border border-border bg-white px-4 py-3 outline-none focus:border-primary";function H({validationId:a}){let{token:g}=(0,u.useAuth)(),h=(0,f.useQueryClient)(),[r,s]=(0,p.useState)(a??null),[x,N]=(0,p.useState)(""),[O,P]=(0,p.useState)(""),[Q,R]=(0,p.useState)(null),[S,T]=(0,p.useState)("normal"),[U,V]=(0,p.useState)("normal"),[W,X]=(0,p.useState)("normal"),[Y,Z]=(0,p.useState)(null),$=(0,p.useRef)(null),_=(0,e.useQuery)({queryKey:["next-report-number",g],queryFn:()=>(0,v.apiGet)("/validations/next-report-number",g??""),enabled:!!g}),aa=(0,e.useQuery)({queryKey:["customers-options",g],queryFn:()=>(0,v.apiGet)("/customers?page=1&page_size=100",g??""),enabled:!!g}),ab=(0,e.useQuery)({queryKey:["locations-options",g],queryFn:()=>(0,v.apiGet)("/locations?page=1&page_size=100",g??""),enabled:!!g}),ac=(0,e.useQuery)({queryKey:["contacts-options",g],queryFn:()=>(0,v.apiGet)("/contacts?page=1&page_size=100",g??""),enabled:!!g}),ad=(0,e.useQuery)({queryKey:["devices-options",g],queryFn:()=>(0,v.apiGet)("/devices?page=1&page_size=100",g??""),enabled:!!g}),ae=(0,e.useQuery)({queryKey:["equipment-options",g],queryFn:()=>(0,v.apiGet)("/equipment?page=1&page_size=100",g??""),enabled:!!g}),af=(0,e.useQuery)({queryKey:["report-checklists",g],queryFn:()=>(0,v.apiGet)("/report-templates/default/checklists",g??""),enabled:!!g}),ag=(0,e.useQuery)({queryKey:["validation",a,g],queryFn:()=>(0,v.apiGet)(`/validations/${a}`,g??""),enabled:!!(g&&a)}),ah=(0,q.useForm)({resolver:(0,c.zodResolver)(B),defaultValues:C()}),ai=(0,q.useWatch)({control:ah.control}),aj=ad.data?.items.find(a=>a.id===ah.watch("device_id")),ak=ae.data?.items.filter(a=>ah.watch("equipment_ids").includes(a.id))??[],al=(0,w.getValidationResultPresentation)(ah.watch("result")),am=(0,q.useFieldArray)({control:ah.control,name:"recommendations"}),an=(0,q.useFieldArray)({control:ah.control,name:"attachments"});(0,p.useEffect)(()=>{_.data?.report_number&&!ah.getValues("report_number")&&ah.setValue("report_number",_.data.report_number)},[ah,_.data]),(0,p.useEffect)(()=>{if(!ag.data)return;let a=ag.data;ah.reset({...C(),...a,result:(0,w.normalizeValidationResult)(a.result),project:a.project??"",test_location:a.test_location??"",examiner_name:a.examiner_name??"",participants:a.participants??"",operator_name:a.operator_name??"",performed_on:a.performed_on??"",next_validation_on:a.next_validation_on??"",contact_id:a.contact_id??"",examiner_id:"",location_id:a.location_id??"",device_id:a.device_id??""}),s(a.id)},[ag.data,ah]),(0,p.useEffect)(()=>{if(!af.data||ag.data||ah.getValues("documentation_checklist").length>0)return;let a=af.data.flatMap(a=>a.items.map(b=>({...b,template_key:a.checklist_key,template_title:a.title})));ah.setValue("documentation_checklist",a)},[af.data,ag.data,ah]);let ao=ag.data?.status==="FREIGEGEBEN"||ag.data?.status==="ABGESCHLOSSEN",ap=(0,d.useMutation)({mutationFn:a=>(0,v.apiSend)(r?`/validations/${r}`:"/validations",g??"",r?"PUT":"POST",(0,v.normalizeValidationPayload)(a)),onSuccess:a=>{s(a.id),N(new Date().toLocaleTimeString("de-DE",{hour:"2-digit",minute:"2-digit"})),P(""),T("success"),window.setTimeout(()=>T("normal"),1500),h.invalidateQueries({queryKey:["dashboard"]})},onError:a=>{T("error"),P(a instanceof Error?a.message:"Speichern fehlgeschlagen.")}});(0,p.useEffect)(()=>{if(!ao&&g&&ai.report_number&&ai.validation_type&&ai.customer_id&&ai.location_id&&ai.device_id&&ai.examiner_name&&ai.performed_on)return $.current&&clearTimeout($.current),$.current=setTimeout(()=>{let a=ah.getValues();ap.mutate(a)},2500),()=>{$.current&&clearTimeout($.current)}},[ah,ap,g,ai]);let aq=aa.data?.items??[],ar=aq.find(a=>a.id===ah.watch("customer_id")),as=(ab.data?.items??[]).filter(a=>!ah.watch("customer_id")||a.customer_id===ah.watch("customer_id")),at=(ac.data?.items??[]).filter(a=>!ah.watch("customer_id")||a.customer_id===ah.watch("customer_id")),au=(ad.data?.items??[]).filter(a=>!ah.watch("customer_id")||a.customer_id===ah.watch("customer_id")),av=(0,p.useMemo)(()=>ak.filter(a=>a.calibration_due_on&&a.calibration_due_on!a[b])}function ax(){let a=aw()[0];return!!a&&(P(`${a[1].label} fehlt in ${a[1].section}.`),document.querySelector(`[name="${a[0]}"]`)?.scrollIntoView({behavior:"smooth",block:"center"}),!0)}async function ay(){if(ao)return void P("Diese Validierung ist schreibgeschuetzt.");if(aw().length){V("error"),ax();return}try{V("loading");let a=r?null:await ap.mutateAsync(ah.getValues()),b=r??a?.id;if(!b||!g)return;let c=await fetch(`${v.API_BASE}/validations/${b}/review`,{method:"POST",headers:{Authorization:`Bearer ${g}`}}),d=await c.json();R(d),V("success"),window.setTimeout(()=>V("normal"),1500),P(d.errors.length?"Pruefung abgeschlossen: Fehler blockieren die Freigabe.":"Pruefung abgeschlossen: keine blockierenden Fehler.")}catch(a){V("error"),P(a instanceof Error?a.message:"Pruefung fehlgeschlagen.")}}async function az(a,b){if(a&&0!==a.length){if(!r||!g)return void P("Bitte den Entwurf speichern, bevor Bilder oder Anlagen hochgeladen werden.");try{for(let[c,d]of(Z(b),Array.from(a).entries())){let a=an.fields.length+c+1,e=new FormData;e.append("category",b),e.append("description",""),e.append("order",String(a)),e.append("file",d);let f=await fetch(`${v.API_BASE}/validations/${r}/attachments`,{method:"POST",headers:{Authorization:`Bearer ${g}`},body:e});if(!f.ok){let a=await f.json().catch(()=>null);throw Error(a?.detail??"Upload fehlgeschlagen.")}let h=await f.json();an.append(h)}h.invalidateQueries({queryKey:["validation",r,g]}),P("Upload abgeschlossen.")}catch(a){P(a instanceof Error?a.message:"Upload fehlgeschlagen.")}finally{Z(null)}}}async function aA(){if(r&&g)try{X("loading");let a=await fetch(`${v.API_BASE}/validations/${r}/report.pdf`,{headers:{Authorization:`Bearer ${g}`}});if(!a.ok){let b=await a.json().catch(()=>null);throw Error(b?.detail??"PDF konnte nicht erzeugt werden.")}let b=await a.blob(),c=URL.createObjectURL(b),d=document.createElement("a");d.href=c,d.download=`${ah.getValues("report_number")}.pdf`,d.click(),URL.revokeObjectURL(c),X("success"),window.setTimeout(()=>X("normal"),1500)}catch(a){X("error"),P(a instanceof Error?a.message:"PDF-Download fehlgeschlagen.")}}return(0,b.jsxs)("form",{onSubmit:ah.handleSubmit(function(a){if(ao)return void P("Diese Validierung ist schreibgeschuetzt.");if(aw(a).length){T("error"),ax();return}T("loading"),ap.mutate(a)}),className:"space-y-5 pb-28",children:[(0,b.jsxs)("header",{children:[(0,b.jsx)("h1",{className:"text-3xl font-semibold text-text",children:"Validierungsbericht"}),(0,b.jsx)("p",{className:"mt-2 text-text-light",children:ao?"Schreibgeschuetzte freigegebene oder abgeschlossene Validierung.":"Eine responsive Seite fuer Erfassung, Pruefung und Berichtserstellung."})]}),(0,b.jsx)(D,{title:"1. Allgemeine Angaben",defaultOpen:!0,children:(0,b.jsxs)("div",{className:"grid gap-4 md:grid-cols-2",children:[(0,b.jsx)(E,{label:"Berichtsnummer *",children:(0,b.jsx)("input",{className:F,...ah.register("report_number")})}),(0,b.jsx)(E,{label:"Validierungsart *",children:(0,b.jsxs)("select",{className:F,...ah.register("validation_type"),children:[(0,b.jsx)("option",{children:"Erstvalidierung"}),(0,b.jsx)("option",{children:"Revalidierung"}),(0,b.jsx)("option",{children:"Leistungsbeurteilung"}),(0,b.jsx)("option",{children:"Sonderpruefung"})]})}),(0,b.jsx)(E,{label:"Projekt",children:(0,b.jsx)("input",{className:F,...ah.register("project")})}),(0,b.jsx)(E,{label:"Pruefdatum *",children:(0,b.jsx)("input",{type:"date",className:F,...ah.register("performed_on")})}),(0,b.jsx)(E,{label:"Revalidierungsintervall Monate",children:(0,b.jsx)("input",{type:"number",className:F,...ah.register("revalidation_interval_months")})}),(0,b.jsx)(E,{label:"Naechste Validierung",children:(0,b.jsx)("input",{type:"date",className:F,...ah.register("next_validation_on"),onChange:a=>{ah.setValue("next_validation_manually_overridden",!0),ah.setValue("next_validation_on",a.target.value)}})}),(0,b.jsx)(E,{label:"Pruefungsort",children:(0,b.jsx)("input",{className:F,...ah.register("test_location")})}),(0,b.jsx)(E,{label:"Pruefer *",children:(0,b.jsx)("input",{className:F,...ah.register("examiner_name")})}),(0,b.jsx)(E,{label:"Mitwirkende Personen",children:(0,b.jsx)("textarea",{className:G,...ah.register("participants")})}),(0,b.jsx)(E,{label:"Status",children:(0,b.jsxs)("select",{className:F,...ah.register("status"),children:[(0,b.jsx)("option",{value:"ENTWURF",children:"Entwurf"}),(0,b.jsx)("option",{value:"BEREIT_ZUR_PRUEFUNG",children:"Bereit zur Pruefung"}),(0,b.jsx)("option",{value:"IN_PRUEFUNG",children:"In Pruefung"}),(0,b.jsx)("option",{value:"FREIGEGEBEN",children:"Freigegeben"}),(0,b.jsx)("option",{value:"ABGESCHLOSSEN",children:"Abgeschlossen"}),(0,b.jsx)("option",{value:"STORNIERT",children:"Storniert"})]})}),(0,b.jsxs)(E,{label:"Gesamtergebnis",children:[(0,b.jsx)("select",{className:F,...ah.register("result"),children:w.validationResultValues.map(a=>(0,b.jsx)("option",{value:a,children:(0,w.getValidationResultPresentation)(a).label},a))}),(0,b.jsx)("div",{className:`mt-3 flex min-h-12 items-center justify-center rounded-lg border px-4 text-sm font-semibold ${al.previewClass}`,children:al.label})]})]})}),(0,b.jsx)(D,{title:"2. Kunde und Standort",children:(0,b.jsxs)("div",{className:"grid gap-4 md:grid-cols-2",children:[(0,b.jsx)(E,{label:"Kunde *",children:(0,b.jsxs)("select",{className:F,...ah.register("customer_id"),children:[(0,b.jsx)("option",{value:"",children:"Bitte waehlen"}),aq.map(a=>(0,b.jsx)("option",{value:a.id,children:a.name},a.id))]})}),(0,b.jsx)(E,{label:"Standort *",children:(0,b.jsxs)("select",{className:F,...ah.register("location_id"),children:[(0,b.jsx)("option",{value:"",children:"Bitte waehlen"}),as.map(a=>(0,b.jsx)("option",{value:a.id,children:a.name},a.id))]})}),(0,b.jsx)(E,{label:"Ansprechpartner",children:(0,b.jsxs)("select",{className:F,...ah.register("contact_id"),children:[(0,b.jsx)("option",{value:"",children:"Bitte waehlen"}),at.map(a=>(0,b.jsx)("option",{value:a.id,children:a.full_name},a.id))]})}),(0,b.jsx)(E,{label:"Betreiber",children:(0,b.jsx)("input",{className:F,...ah.register("operator_name")})}),(0,b.jsx)(E,{label:"QM-/Hygienebeauftragter",children:(0,b.jsx)("input",{className:F,value:[ar?.quality_manager,ar?.hygiene_officer].filter(Boolean).join(" / "),readOnly:!0})})]})}),(0,b.jsxs)(D,{title:"3. Geraet",children:[(0,b.jsx)(E,{label:"Geraet *",children:(0,b.jsxs)("select",{className:F,...ah.register("device_id"),children:[(0,b.jsx)("option",{value:"",children:"Bitte waehlen"}),au.map(a=>(0,b.jsxs)("option",{value:a.id,children:[a.manufacturer," ",a.model," - ",a.serial_number]},a.id))]})}),(0,b.jsx)("div",{className:"mt-4 grid gap-4 md:grid-cols-3",children:[["Hersteller",aj?.manufacturer],["Modell",aj?.model],["Seriennummer",aj?.serial_number],["Baujahr",aj?.year_built],["Inbetriebnahme",aj?.commissioned_on],["Kammervolumen",aj?.chamber_volume_liters],["Dampferzeugung",aj?.steam_generation],["Wasseraufbereitung",aj?.water_treatment],["Dokumentation",aj?.documentation],["Lieferant",aj?.supplier]].map(([a,c])=>(0,b.jsxs)("div",{className:"rounded-lg border border-border bg-background p-4",children:[(0,b.jsx)("p",{className:"text-xs text-text-light",children:a}),(0,b.jsx)("p",{className:"mt-1 font-medium",children:String(c??"-")})]},a))})]}),(0,b.jsxs)(D,{title:"4. Pruefmittel",children:[(0,b.jsx)(q.Controller,{control:ah.control,name:"equipment_ids",render:({field:a})=>(0,b.jsx)("div",{className:"grid gap-3 md:grid-cols-2",children:(ae.data?.items??[]).map(c=>{let d=!!(c.calibration_due_on&&c.calibration_due_ona.onChange(b.target.checked?[...a.value,c.id]:a.value.filter(a=>a!==c.id))}),(0,b.jsxs)("span",{children:[(0,b.jsx)("strong",{children:c.kind}),(0,b.jsx)("br",{}),c.serial_number," · ",c.calibrated_on??"-"," · ",c.status,d&&(0,b.jsx)("span",{className:"ml-2 text-danger",children:"Kalibrierung abgelaufen"})]})]},c.id)})})}),av.length>0&&(0,b.jsx)("p",{className:"mt-4 rounded-lg border border-danger/30 bg-danger/5 p-4 text-danger",children:"Mindestens ein ausgewaehltes Pruefmittel hat eine abgelaufene Kalibrierung."})]}),(0,b.jsxs)(D,{title:"5. Umgebungsbedingungen",children:[(0,b.jsxs)("div",{className:"grid gap-4 md:grid-cols-3",children:[(0,b.jsx)(E,{label:"Raumtemperatur",children:(0,b.jsx)("input",{className:F,...ah.register("environment_conditions.room_temperature")})}),(0,b.jsx)(E,{label:"relative Luftfeuchtigkeit",children:(0,b.jsx)("input",{className:F,...ah.register("environment_conditions.humidity")})}),(0,b.jsx)(E,{label:"Pruefzeit",children:(0,b.jsx)("input",{className:F,...ah.register("environment_conditions.test_time")})})]}),[0,1,2].map(a=>(0,b.jsx)(I,{form:ah,path:`environment_conditions.checks.${a}`},a))]}),(0,b.jsxs)(D,{title:"6. Dokumentations- und Leistungschecklisten",children:[ah.watch("documentation_checklist").map((a,c)=>(0,b.jsx)(I,{form:ah,path:`documentation_checklist.${c}`},`${String(a.template_key??"check")}-${c}`)),ah.watch("performance_checklist").map((a,c)=>(0,b.jsx)(I,{form:ah,path:`performance_checklist.${c}`},`performance-${c}`))]}),(0,b.jsxs)(D,{title:"7. Programme",children:[[0,1,2].map(a=>(0,b.jsx)(K,{form:ah,index:a},a)),(0,b.jsx)(t,{type:"button",icon:(0,b.jsx)(k.Plus,{className:"h-4 w-4"}),onClick:()=>ah.setValue("programs",[...ah.getValues("programs"),{name:"",selected:!0,custom:!0}]),className:"mt-4",children:"Eigenes Programm"})]}),(0,b.jsx)(D,{title:"8. Beladungsmuster",children:[0,1,2].map(a=>(0,b.jsx)(L,{form:ah,index:a},a))}),(0,b.jsx)(D,{title:"9. Messdaten",children:[0,1,2,3,4].map(a=>(0,b.jsx)(M,{form:ah,index:a},a))}),(0,b.jsx)(D,{title:"10. Trocknung",children:(0,b.jsxs)("div",{className:"grid gap-4 md:grid-cols-2",children:[["start_weight","end_weight","difference","rating"].map(a=>(0,b.jsx)(E,{label:a,children:(0,b.jsx)("input",{className:F,...ah.register(`drying.${a}`)})},a)),(0,b.jsx)(E,{label:"Bemerkung",children:(0,b.jsx)("textarea",{className:G,...ah.register("drying.comment")})})]})}),(0,b.jsxs)(D,{title:"11. Empfehlungen und Auflagen",children:[am.fields.map((a,c)=>(0,b.jsxs)("div",{className:"mb-3 grid gap-3 rounded-lg border border-border p-4 md:grid-cols-4",children:[(0,b.jsx)("input",{className:F,placeholder:"Nummer",...ah.register(`recommendations.${c}.number`)}),(0,b.jsx)("input",{className:F,placeholder:"Text",...ah.register(`recommendations.${c}.text`)}),(0,b.jsx)("input",{type:"date",className:F,...ah.register(`recommendations.${c}.deadline`)}),(0,b.jsx)("input",{className:F,placeholder:"Status",...ah.register(`recommendations.${c}.status`)})]},a.id)),(0,b.jsx)(t,{type:"button",icon:(0,b.jsx)(k.Plus,{className:"h-4 w-4"}),onClick:()=>am.append({number:am.fields.length+1,text:"",deadline:"",status:"offen"}),children:"Zeile hinzufuegen"})]}),(0,b.jsxs)(D,{title:"12. Bilder und Anlagen",children:[(0,b.jsx)("div",{className:"grid gap-3 md:grid-cols-2",children:z.map(a=>(0,b.jsxs)("label",{className:"rounded-lg border border-dashed border-primary/40 p-4 transition hover:border-primary hover:bg-background",children:[(0,b.jsx)(n,{className:"mb-2 h-5 w-5 text-primary"}),a,Y===a&&(0,b.jsx)("span",{className:"ml-2 text-sm text-text-light",children:"Upload..."}),(0,b.jsx)("input",{type:"file",multiple:!0,className:"mt-3 block w-full text-sm",onChange:b=>az(b.target.files,a)})]},a))}),(0,b.jsx)("div",{className:"mt-5 grid gap-3 md:grid-cols-2",children:an.fields.map((a,c)=>{let d=String(ah.watch(`attachments.${c}.url`)??""),e=d&&/\.(png|jpe?g|webp|svg)$/i.test(d)?`${v.API_BASE.replace("/api/v1","")}${d}`:"";return(0,b.jsxs)("div",{className:"rounded-lg border border-border p-4",children:[e&&(0,b.jsx)("img",{src:e,alt:String(ah.watch(`attachments.${c}.filename`)??""),className:"mb-3 max-h-56 w-full rounded-lg border border-border object-contain"}),(0,b.jsxs)("div",{className:"flex justify-between gap-3",children:[(0,b.jsx)("strong",{children:String(ah.watch(`attachments.${c}.filename`)??"")}),(0,b.jsx)("button",{type:"button",onClick:()=>an.remove(c),children:(0,b.jsx)(o.X,{className:"h-4 w-4 text-danger"})})]}),(0,b.jsx)("input",{className:`${F} mt-3`,placeholder:"Beschreibung",...ah.register(`attachments.${c}.description`)}),(0,b.jsx)("input",{className:`${F} mt-3`,placeholder:"Reihenfolge",...ah.register(`attachments.${c}.order`)})]},a.id)})})]}),Q&&(0,b.jsxs)("section",{className:"rounded-lg border border-border bg-surface p-5 shadow-soft",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold",children:"Pruefergebnis"}),(0,b.jsxs)("div",{className:"mt-4 grid gap-4 md:grid-cols-3",children:[(0,b.jsx)(J,{title:"Fehler",items:Q.errors,tone:"danger"}),(0,b.jsx)(J,{title:"Warnungen",items:Q.warnings,tone:"warning"}),(0,b.jsxs)("div",{children:[(0,b.jsx)("h3",{className:"font-semibold text-success",children:"Vollstaendige Bereiche"}),Q.complete_sections.map(a=>(0,b.jsx)("p",{className:"mt-2 text-sm",children:a},a))]})]})]}),ap.isError&&O&&(0,b.jsx)("div",{className:"fixed right-4 top-4 z-50 max-w-md rounded-lg border border-danger/30 bg-white p-4 text-sm text-danger shadow-soft",children:O}),(0,b.jsx)("fieldset",{disabled:ao,className:ao?"pointer-events-none contents opacity-80":"contents"}),(0,b.jsx)("div",{className:"fixed inset-x-0 bottom-0 z-40 border-t border-border bg-surface/95 px-4 py-3 shadow-soft backdrop-blur",children:(0,b.jsxs)("div",{className:"mx-auto flex max-w-7xl flex-wrap items-center justify-between gap-3",children:[(0,b.jsxs)("div",{className:"text-sm text-text-light",children:[(0,b.jsx)("p",{children:x?`Automatisch gespeichert um ${x}`:"Autosave startet nach Ausfuellen der Pflichtfelder."}),aw().length>0&&(0,b.jsxs)("p",{className:"text-danger",children:["Fehlt: ",aw().map(([,a])=>a.label).join(", ")]}),O&&(0,b.jsx)("p",{className:"text-primary-dark",children:O})]}),(0,b.jsxs)("div",{className:"flex flex-wrap gap-2",children:[(0,b.jsx)(t,{type:"submit",disabled:ao,disabledReason:"Freigegebene und abgeschlossene Validierungen sind schreibgeschuetzt",icon:(0,b.jsx)(l.Save,{className:"h-4 w-4"}),state:S,loadingText:"Speichern...",successText:"Gespeichert",children:"Entwurf speichern"}),(0,b.jsx)(t,{type:"button",disabled:ao,disabledReason:"Freigegebene und abgeschlossene Validierungen sind schreibgeschuetzt",icon:(0,b.jsx)(m,{className:"h-4 w-4"}),state:U,loadingText:"Pruefung laeuft...",successText:"Geprueft",onClick:ay,children:"Bericht pruefen"}),(0,b.jsx)(t,{type:"button",variant:"primary",icon:(0,b.jsx)(j,{className:"h-4 w-4"}),onClick:()=>r?window.location.assign(`/validations/${r}/preview`):ax(),children:"HTML-Vorschau"}),(0,b.jsx)(t,{type:"button",icon:(0,b.jsx)(i.Download,{className:"h-4 w-4"}),state:W,loadingText:"PDF wird erzeugt...",successText:"PDF erzeugt",onClick:()=>r?aA():ax(),children:"PDF herunterladen"})]})]})})]})}function I({form:a,path:c}){return(0,b.jsxs)("div",{className:"mt-3 grid gap-3 rounded-lg border border-border p-4 md:grid-cols-[1fr_180px_1fr]",children:[(0,b.jsx)("input",{className:F,readOnly:!0,...a.register(`${c}.text`)}),(0,b.jsx)("select",{className:F,...a.register(`${c}.value`),children:x.map(a=>(0,b.jsx)("option",{value:a,children:"yes"===a?"Ja":"no"===a?"Nein":"Nicht zutreffend"},a))}),(0,b.jsx)("input",{className:F,placeholder:"Kommentar",...a.register(`${c}.comment`)})]})}function J({title:a,items:c,tone:d}){return(0,b.jsxs)("div",{children:[(0,b.jsx)("h3",{className:`font-semibold ${"danger"===d?"text-danger":"text-warning"}`,children:a}),0===c.length?(0,b.jsx)("p",{className:"mt-2 text-sm text-text-light",children:"Keine Eintraege."}):c.map(a=>(0,b.jsxs)("p",{className:"mt-2 text-sm",children:[a.section,": ",a.message]},`${a.field}-${a.message}`))]})}function K({form:a,index:c}){return(0,b.jsxs)("div",{className:"mb-3 grid gap-3 rounded-lg border border-border p-4 md:grid-cols-[80px_1fr]",children:[(0,b.jsx)("input",{type:"checkbox",className:"h-6 w-6",...a.register(`programs.${c}.selected`)}),(0,b.jsx)("input",{className:F,...a.register(`programs.${c}.name`)})]})}function L({form:a,index:c}){return(0,b.jsxs)("div",{className:"mb-4 rounded-lg border border-border p-4",children:[(0,b.jsxs)("h3",{className:"font-semibold",children:["Testlauf ",c+1]}),(0,b.jsxs)("div",{className:"mt-3 grid gap-3 md:grid-cols-2",children:[(0,b.jsx)("input",{className:F,placeholder:"Beladungsmuster",...a.register(`loading_patterns.${c}.pattern`)}),(0,b.jsx)("input",{className:F,placeholder:"Beschreibung",...a.register(`loading_patterns.${c}.description`)}),(0,b.jsx)("input",{type:"file",multiple:!0,className:"rounded-lg border border-border p-3 md:col-span-2"})]})]})}function M({form:a,index:c}){return(0,b.jsxs)("div",{className:"mb-4 rounded-lg border border-border p-4",children:[(0,b.jsx)("h3",{className:"font-semibold",children:String(a.watch(`measurement_data.${c}.name`)??"")}),(0,b.jsxs)("div",{className:"mt-3 grid gap-3 md:grid-cols-3",children:[["start_time","end_time","duration","leak_rate","min_temperature","max_temperature","temperature_band","equilibration_time","holding_time","pressure","result"].map(d=>(0,b.jsx)("input",{className:F,placeholder:d,...a.register(`measurement_data.${c}.${d}`)},d)),(0,b.jsx)("input",{type:"file",multiple:!0,accept:".csv,.pdf",className:"rounded-lg border border-border p-3 md:col-span-3"})]})]})}a.s(["ValidationEditor",0,H,"default",0,H],27862)}]; +module.exports=[27862,a=>{"use strict";var b=a.i(87924),c=a.i(59501),d=a.i(70025),e=a.i(33217),f=a.i(37927),g=a.i(70106);let h=(0,g.default)("ChevronDown",[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]]);var i=a.i(84505);let j=(0,g.default)("FileText",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M10 9H8",key:"b1mrlr"}],["path",{d:"M16 13H8",key:"t4e002"}],["path",{d:"M16 17H8",key:"z1uh3a"}]]);var k=a.i(15618),l=a.i(14548);let m=(0,g.default)("ShieldCheck",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);var n=a.i(74618),o=a.i(33508),p=a.i(72131),q=a.i(95245),r=a.i(88780);let s=(0,g.default)("Check",[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]]);function t({children:a,icon:c,state:d="normal",loadingText:e,successText:f="Gespeichert",disabled:g,disabledReason:h,variant:i="secondary",className:j="",...k}){let l=g||"loading"===d,m="success"===d?"btn-success":"error"===d?"btn-danger":`btn-${i}`;return(0,b.jsxs)("button",{...k,disabled:l,title:l?h:k.title,className:`btn ${m} ${j}`,children:["loading"===d?(0,b.jsx)("span",{className:"spinner"}):"success"===d?(0,b.jsx)(s,{className:"h-4 w-4"}):c,(0,b.jsx)("span",{children:"loading"===d?e??"Laedt...":"success"===d?f:a})]})}var u=a.i(12314),v=a.i(53250),w=a.i(99712);let x=["yes","no","na"],y=new Date().toISOString().slice(0,10),z=["Aufbereitungsraum","reiner Bereich","unreiner Bereich","Sterilisator","Beladung","Sensorposition","Chargenprotokoll","Indikator","Zertifikat","Kalibrierschein","Winlog-Auswertung"],A={report_number:{label:"Berichtsnummer",section:"Allgemeine Angaben"},validation_type:{label:"Validierungsart",section:"Allgemeine Angaben"},performed_on:{label:"Pruefdatum",section:"Allgemeine Angaben"},customer_id:{label:"Kunde",section:"Kunde und Standort"},location_id:{label:"Standort",section:"Kunde und Standort"},device_id:{label:"Geraet",section:"Geraet"},examiner_name:{label:"Pruefer",section:"Allgemeine Angaben"}},B=r.z.object({report_number:r.z.string().min(3),validation_type:r.z.string().min(1),project:r.z.string().optional(),performed_on:r.z.string().min(1),next_validation_on:r.z.string().optional().nullable(),revalidation_interval_months:r.z.coerce.number().int().min(1),next_validation_manually_overridden:r.z.boolean(),test_location:r.z.string().optional(),examiner_name:r.z.string().min(1),participants:r.z.string().optional(),status:r.z.string().min(1),result:r.z.string().min(1),customer_id:r.z.string().min(1),location_id:r.z.string().min(1),contact_id:r.z.string().optional().nullable(),examiner_id:r.z.string().optional().nullable(),operator_name:r.z.string().optional(),device_id:r.z.string().min(1),equipment_ids:r.z.array(r.z.string()),environment_conditions:r.z.record(r.z.unknown()),documentation_checklist:r.z.array(r.z.record(r.z.unknown())),performance_checklist:r.z.array(r.z.record(r.z.unknown())),programs:r.z.array(r.z.record(r.z.unknown())),loading_patterns:r.z.array(r.z.record(r.z.unknown())),measurement_data:r.z.array(r.z.record(r.z.unknown())),drying:r.z.record(r.z.unknown()),recommendations:r.z.array(r.z.record(r.z.unknown())),attachments:r.z.array(r.z.record(r.z.unknown()))});function C(a=""){return{report_number:a,validation_type:"Erstvalidierung",project:"",performed_on:y,next_validation_on:"",revalidation_interval_months:24,next_validation_manually_overridden:!1,test_location:"",examiner_name:"",participants:"",status:"ENTWURF",result:"OFFEN",customer_id:"",location_id:"",contact_id:"",examiner_id:"",operator_name:"",device_id:"",equipment_ids:[],environment_conditions:{room_temperature:"",humidity:"",test_time:"",checks:[{text:"Raumbedingungen stabil",value:"na",comment:""},{text:"Aufstellort frei zugaenglich",value:"na",comment:""},{text:"Medienversorgung verfuegbar",value:"na",comment:""}]},documentation_checklist:[],performance_checklist:[],programs:[{name:"Vakuumtest",selected:!1,custom:!1},{name:"Bowie-Dick / Leerkammerprofil",selected:!1,custom:!1},{name:"134 C hohl verpackt",selected:!1,custom:!1}],loading_patterns:[1,2,3].map(a=>({run:a,pattern:"",description:"",images:[]})),measurement_data:["Vakuumtest","Leerkammerprofil","Testlauf 1","Testlauf 2","Testlauf 3"].map(a=>({name:a,start_time:"",end_time:"",duration:"",leak_rate:"",min_temperature:"",max_temperature:"",temperature_band:"",equilibration_time:"",holding_time:"",pressure:"",result:"",imports:[]})),drying:{start_weight:"",end_weight:"",difference:"",rating:"",comment:""},recommendations:[],attachments:[]}}function D({title:a,children:c,defaultOpen:d=!1}){let[e,f]=(0,p.useState)(d);return(0,b.jsxs)("section",{className:"rounded-lg border border-border bg-surface shadow-soft",children:[(0,b.jsxs)("button",{type:"button",onClick:()=>f(a=>!a),className:"flex w-full items-center justify-between px-5 py-4 text-left text-lg font-semibold hover:bg-background",children:[a,(0,b.jsx)(h,{className:`h-5 w-5 transition ${e?"rotate-180":""}`})]}),e&&(0,b.jsx)("div",{className:"border-t border-border p-5",children:c})]})}function E({label:a,children:c}){return(0,b.jsxs)("label",{className:"block",children:[(0,b.jsx)("span",{className:"text-sm font-medium text-text",children:a}),(0,b.jsx)("div",{className:"mt-2",children:c})]})}let F="h-12 w-full rounded-lg border border-border bg-white px-4 outline-none focus:border-primary",G="min-h-24 w-full rounded-lg border border-border bg-white px-4 py-3 outline-none focus:border-primary";function H({validationId:a}){let{token:g}=(0,u.useAuth)(),h=(0,f.useQueryClient)(),[r,s]=(0,p.useState)(a??null),[x,N]=(0,p.useState)(""),[O,P]=(0,p.useState)(""),[Q,R]=(0,p.useState)(null),[S,T]=(0,p.useState)("normal"),[U,V]=(0,p.useState)("normal"),[W,X]=(0,p.useState)("normal"),[Y,Z]=(0,p.useState)(null),$=(0,p.useRef)(null),_=(0,e.useQuery)({queryKey:["next-report-number",g],queryFn:()=>(0,v.apiGet)("/validations/next-report-number",g??""),enabled:!!g}),aa=(0,e.useQuery)({queryKey:["customers-options",g],queryFn:()=>(0,v.apiGet)("/customers?page=1&page_size=100",g??""),enabled:!!g}),ab=(0,e.useQuery)({queryKey:["locations-options",g],queryFn:()=>(0,v.apiGet)("/locations?page=1&page_size=100",g??""),enabled:!!g}),ac=(0,e.useQuery)({queryKey:["contacts-options",g],queryFn:()=>(0,v.apiGet)("/contacts?page=1&page_size=100",g??""),enabled:!!g}),ad=(0,e.useQuery)({queryKey:["devices-options",g],queryFn:()=>(0,v.apiGet)("/devices?page=1&page_size=100",g??""),enabled:!!g}),ae=(0,e.useQuery)({queryKey:["equipment-options",g],queryFn:()=>(0,v.apiGet)("/equipment?page=1&page_size=100",g??""),enabled:!!g}),af=(0,e.useQuery)({queryKey:["report-checklists",g],queryFn:()=>(0,v.apiGet)("/report-templates/default/checklists",g??""),enabled:!!g}),ag=(0,e.useQuery)({queryKey:["validation",a,g],queryFn:()=>(0,v.apiGet)(`/validations/${a}`,g??""),enabled:!!(g&&a)}),ah=(0,q.useForm)({resolver:(0,c.zodResolver)(B),defaultValues:C()}),ai=(0,q.useWatch)({control:ah.control}),aj=ad.data?.items.find(a=>a.id===ah.watch("device_id")),ak=ae.data?.items.filter(a=>ah.watch("equipment_ids").includes(a.id))??[],al=(0,w.getValidationResultPresentation)(ah.watch("result")),am=(0,q.useFieldArray)({control:ah.control,name:"recommendations"}),an=(0,q.useFieldArray)({control:ah.control,name:"attachments"});(0,p.useEffect)(()=>{_.data?.report_number&&!ah.getValues("report_number")&&ah.setValue("report_number",_.data.report_number)},[ah,_.data]),(0,p.useEffect)(()=>{if(!ag.data)return;let a=ag.data;ah.reset({...C(),...a,result:(0,w.normalizeValidationResult)(a.result),project:a.project??"",test_location:a.test_location??"",examiner_name:a.examiner_name??"",participants:a.participants??"",operator_name:a.operator_name??"",performed_on:a.performed_on??"",next_validation_on:a.next_validation_on??"",contact_id:a.contact_id??"",examiner_id:"",location_id:a.location_id??"",device_id:a.device_id??""}),s(a.id)},[ag.data,ah]),(0,p.useEffect)(()=>{if(!af.data||ag.data||ah.getValues("documentation_checklist").length>0)return;let a=af.data.flatMap(a=>a.items.map(b=>({...b,template_key:a.checklist_key,template_title:a.title})));ah.setValue("documentation_checklist",a)},[af.data,ag.data,ah]);let ao=ag.data?.status==="FREIGEGEBEN"||ag.data?.status==="ABGESCHLOSSEN",ap=(0,d.useMutation)({mutationFn:a=>(0,v.apiSend)(r?`/validations/${r}`:"/validations",g??"",r?"PUT":"POST",(0,v.normalizeValidationPayload)(a)),onSuccess:a=>{s(a.id),N(new Date().toLocaleTimeString("de-DE",{hour:"2-digit",minute:"2-digit"})),P(""),T("success"),window.setTimeout(()=>T("normal"),1500),h.invalidateQueries({queryKey:["dashboard"]})},onError:a=>{T("error"),P(a instanceof Error?a.message:"Speichern fehlgeschlagen.")}});(0,p.useEffect)(()=>{if(!ao&&g&&ai.report_number&&ai.validation_type&&ai.customer_id&&ai.location_id&&ai.device_id&&ai.examiner_name&&ai.performed_on)return $.current&&clearTimeout($.current),$.current=setTimeout(()=>{let a=ah.getValues();ap.mutate(a)},2500),()=>{$.current&&clearTimeout($.current)}},[ah,ap,g,ai]);let aq=aa.data?.items??[],ar=aq.find(a=>a.id===ah.watch("customer_id")),as=(ab.data?.items??[]).filter(a=>!ah.watch("customer_id")||a.customer_id===ah.watch("customer_id")),at=(ac.data?.items??[]).filter(a=>!ah.watch("customer_id")||a.customer_id===ah.watch("customer_id")),au=(ad.data?.items??[]).filter(a=>!ah.watch("customer_id")||a.customer_id===ah.watch("customer_id")),av=(0,p.useMemo)(()=>ak.filter(a=>a.calibration_due_on&&a.calibration_due_on!a[b])}function ax(){let a=aw()[0];return!!a&&(P(`${a[1].label} fehlt in ${a[1].section}.`),document.querySelector(`[name="${a[0]}"]`)?.scrollIntoView({behavior:"smooth",block:"center"}),!0)}async function ay(){if(ao)return void P("Diese Validierung ist schreibgeschuetzt.");if(aw().length){V("error"),ax();return}try{V("loading");let a=r?null:await ap.mutateAsync(ah.getValues()),b=r??a?.id;if(!b||!g)return;let c=await fetch(`${v.API_BASE}/validations/${b}/review`,{method:"POST",headers:{Authorization:`Bearer ${g}`}}),d=await c.json();R(d),V("success"),window.setTimeout(()=>V("normal"),1500),P(d.errors.length?"Pruefung abgeschlossen: Fehler blockieren die Freigabe.":"Pruefung abgeschlossen: keine blockierenden Fehler.")}catch(a){V("error"),P(a instanceof Error?a.message:"Pruefung fehlgeschlagen.")}}async function az(a,b){if(a&&0!==a.length){if(!r||!g)return void P("Bitte den Entwurf speichern, bevor Bilder oder Anlagen hochgeladen werden.");try{for(let[c,d]of(Z(b),Array.from(a).entries())){let a=an.fields.length+c+1,e=new FormData;e.append("category",b),e.append("description",""),e.append("order",String(a)),e.append("file",d);let f=await fetch(`${v.API_BASE}/validations/${r}/attachments`,{method:"POST",headers:{Authorization:`Bearer ${g}`},body:e});if(!f.ok){let a=await f.json().catch(()=>null);throw Error(a?.detail??"Upload fehlgeschlagen.")}let h=await f.json();an.append(h)}h.invalidateQueries({queryKey:["validation",r,g]}),P("Upload abgeschlossen.")}catch(a){P(a instanceof Error?a.message:"Upload fehlgeschlagen.")}finally{Z(null)}}}async function aA(){if(r&&g)try{X("loading");let a=await fetch(`${v.API_BASE}/validations/${r}/report.pdf`,{headers:{Authorization:`Bearer ${g}`}});if(!a.ok){let b=await a.json().catch(()=>null);throw Error(b?.detail??"PDF konnte nicht erzeugt werden.")}let b=await a.blob(),c=URL.createObjectURL(b),d=document.createElement("a");d.href=c,d.download=`${ah.getValues("report_number")}.pdf`,d.click(),URL.revokeObjectURL(c),X("success"),window.setTimeout(()=>X("normal"),1500)}catch(a){X("error"),P(a instanceof Error?a.message:"PDF-Download fehlgeschlagen.")}}return(0,b.jsxs)("form",{onSubmit:ah.handleSubmit(function(a){if(ao)return void P("Diese Validierung ist schreibgeschuetzt.");if(aw(a).length){T("error"),ax();return}T("loading"),ap.mutate(a)}),className:"space-y-5 pb-28",children:[(0,b.jsxs)("header",{children:[(0,b.jsx)("h1",{className:"text-3xl font-semibold text-text",children:"Validierungsbericht"}),(0,b.jsx)("p",{className:"mt-2 text-text-light",children:ao?"Schreibgeschuetzte freigegebene oder abgeschlossene Validierung.":"Eine responsive Seite fuer Erfassung, Pruefung und Berichtserstellung."})]}),(0,b.jsx)(D,{title:"1. Allgemeine Angaben",defaultOpen:!0,children:(0,b.jsxs)("div",{className:"grid gap-4 md:grid-cols-2",children:[(0,b.jsx)(E,{label:"Berichtsnummer *",children:(0,b.jsx)("input",{className:F,...ah.register("report_number")})}),(0,b.jsx)(E,{label:"Validierungsart *",children:(0,b.jsxs)("select",{className:F,...ah.register("validation_type"),children:[(0,b.jsx)("option",{children:"Erstvalidierung"}),(0,b.jsx)("option",{children:"Revalidierung"}),(0,b.jsx)("option",{children:"Leistungsbeurteilung"}),(0,b.jsx)("option",{children:"Sonderpruefung"})]})}),(0,b.jsx)(E,{label:"Projekt",children:(0,b.jsx)("input",{className:F,...ah.register("project")})}),(0,b.jsx)(E,{label:"Pruefdatum *",children:(0,b.jsx)("input",{type:"date",className:F,...ah.register("performed_on")})}),(0,b.jsx)(E,{label:"Revalidierungsintervall Monate",children:(0,b.jsx)("input",{type:"number",className:F,...ah.register("revalidation_interval_months")})}),(0,b.jsx)(E,{label:"Naechste Validierung",children:(0,b.jsx)("input",{type:"date",className:F,...ah.register("next_validation_on"),onChange:a=>{ah.setValue("next_validation_manually_overridden",!0),ah.setValue("next_validation_on",a.target.value)}})}),(0,b.jsx)(E,{label:"Pruefungsort",children:(0,b.jsx)("input",{className:F,...ah.register("test_location")})}),(0,b.jsx)(E,{label:"Pruefer *",children:(0,b.jsx)("input",{className:F,...ah.register("examiner_name")})}),(0,b.jsx)(E,{label:"Mitwirkende Personen",children:(0,b.jsx)("textarea",{className:G,...ah.register("participants")})}),(0,b.jsx)(E,{label:"Status",children:(0,b.jsxs)("select",{className:F,...ah.register("status"),children:[(0,b.jsx)("option",{value:"ENTWURF",children:"Entwurf"}),(0,b.jsx)("option",{value:"BEREIT_ZUR_PRUEFUNG",children:"Bereit zur Pruefung"}),(0,b.jsx)("option",{value:"IN_PRUEFUNG",children:"In Pruefung"}),(0,b.jsx)("option",{value:"FREIGEGEBEN",children:"Freigegeben"}),(0,b.jsx)("option",{value:"ABGESCHLOSSEN",children:"Abgeschlossen"}),(0,b.jsx)("option",{value:"STORNIERT",children:"Storniert"})]})}),(0,b.jsxs)(E,{label:"Gesamtergebnis",children:[(0,b.jsx)("select",{className:F,...ah.register("result"),children:w.validationResultValues.map(a=>(0,b.jsx)("option",{value:a,children:(0,w.getValidationResultPresentation)(a).label},a))}),(0,b.jsx)("div",{className:`mt-3 flex min-h-12 items-center justify-center rounded-lg border px-4 text-sm font-semibold ${al.previewClass}`,children:al.label})]})]})}),(0,b.jsx)(D,{title:"2. Kunde und Standort",children:(0,b.jsxs)("div",{className:"grid gap-4 md:grid-cols-2",children:[(0,b.jsx)(E,{label:"Kunde *",children:(0,b.jsxs)("select",{className:F,...ah.register("customer_id"),children:[(0,b.jsx)("option",{value:"",children:"Bitte waehlen"}),aq.map(a=>(0,b.jsx)("option",{value:a.id,children:a.name},a.id))]})}),(0,b.jsx)(E,{label:"Standort *",children:(0,b.jsxs)("select",{className:F,...ah.register("location_id"),children:[(0,b.jsx)("option",{value:"",children:"Bitte waehlen"}),as.map(a=>(0,b.jsx)("option",{value:a.id,children:a.name},a.id))]})}),(0,b.jsx)(E,{label:"Ansprechpartner",children:(0,b.jsxs)("select",{className:F,...ah.register("contact_id"),children:[(0,b.jsx)("option",{value:"",children:"Bitte waehlen"}),at.map(a=>(0,b.jsx)("option",{value:a.id,children:a.full_name},a.id))]})}),(0,b.jsx)(E,{label:"Betreiber",children:(0,b.jsx)("input",{className:F,...ah.register("operator_name")})}),(0,b.jsx)(E,{label:"QM-/Hygienebeauftragter",children:(0,b.jsx)("input",{className:F,value:[ar?.quality_manager,ar?.hygiene_officer].filter(Boolean).join(" / "),readOnly:!0})})]})}),(0,b.jsxs)(D,{title:"3. Geraet",children:[(0,b.jsx)(E,{label:"Geraet *",children:(0,b.jsxs)("select",{className:F,...ah.register("device_id"),children:[(0,b.jsx)("option",{value:"",children:"Bitte waehlen"}),au.map(a=>(0,b.jsxs)("option",{value:a.id,children:[a.manufacturer," ",a.model," - ",a.serial_number]},a.id))]})}),(0,b.jsx)("div",{className:"mt-4 grid gap-4 md:grid-cols-3",children:[["Hersteller",aj?.manufacturer],["Modell",aj?.model],["Seriennummer",aj?.serial_number],["Baujahr",aj?.year_built],["Inbetriebnahme",aj?.commissioned_on],["Kammervolumen",aj?.chamber_volume_liters],["Dampferzeugung",aj?.steam_generation],["Wasseraufbereitung",aj?.water_treatment],["Dokumentation",aj?.documentation],["Lieferant",aj?.supplier]].map(([a,c])=>(0,b.jsxs)("div",{className:"rounded-lg border border-border bg-background p-4",children:[(0,b.jsx)("p",{className:"text-xs text-text-light",children:a}),(0,b.jsx)("p",{className:"mt-1 font-medium",children:String(c??"-")})]},a))})]}),(0,b.jsxs)(D,{title:"4. Pruefmittel",children:[(0,b.jsx)(q.Controller,{control:ah.control,name:"equipment_ids",render:({field:a})=>(0,b.jsx)("div",{className:"grid gap-3 md:grid-cols-2",children:(ae.data?.items??[]).map(c=>{let d=!!(c.calibration_due_on&&c.calibration_due_ona.onChange(b.target.checked?[...a.value,c.id]:a.value.filter(a=>a!==c.id))}),(0,b.jsxs)("span",{children:[(0,b.jsx)("strong",{children:c.kind}),(0,b.jsx)("br",{}),c.serial_number," · ",c.calibrated_on??"-"," · ",c.status,d&&(0,b.jsx)("span",{className:"ml-2 text-danger",children:"Kalibrierung abgelaufen"})]})]},c.id)})})}),av.length>0&&(0,b.jsx)("p",{className:"mt-4 rounded-lg border border-danger/30 bg-danger/5 p-4 text-danger",children:"Mindestens ein ausgewaehltes Pruefmittel hat eine abgelaufene Kalibrierung."})]}),(0,b.jsxs)(D,{title:"5. Umgebungsbedingungen",children:[(0,b.jsxs)("div",{className:"grid gap-4 md:grid-cols-3",children:[(0,b.jsx)(E,{label:"Raumtemperatur",children:(0,b.jsx)("input",{className:F,...ah.register("environment_conditions.room_temperature")})}),(0,b.jsx)(E,{label:"relative Luftfeuchtigkeit",children:(0,b.jsx)("input",{className:F,...ah.register("environment_conditions.humidity")})}),(0,b.jsx)(E,{label:"Pruefzeit",children:(0,b.jsx)("input",{className:F,...ah.register("environment_conditions.test_time")})})]}),[0,1,2].map(a=>(0,b.jsx)(I,{form:ah,path:`environment_conditions.checks.${a}`},a))]}),(0,b.jsxs)(D,{title:"6. Dokumentations- und Leistungschecklisten",children:[ah.watch("documentation_checklist").map((a,c)=>(0,b.jsx)(I,{form:ah,path:`documentation_checklist.${c}`},`${String(a.template_key??"check")}-${c}`)),ah.watch("performance_checklist").map((a,c)=>(0,b.jsx)(I,{form:ah,path:`performance_checklist.${c}`},`performance-${c}`))]}),(0,b.jsxs)(D,{title:"7. Programme",children:[[0,1,2].map(a=>(0,b.jsx)(K,{form:ah,index:a},a)),(0,b.jsx)(t,{type:"button",icon:(0,b.jsx)(k.Plus,{className:"h-4 w-4"}),onClick:()=>ah.setValue("programs",[...ah.getValues("programs"),{name:"",selected:!0,custom:!0}]),className:"mt-4",children:"Eigenes Programm"})]}),(0,b.jsx)(D,{title:"8. Beladungsmuster",children:[0,1,2].map(a=>(0,b.jsx)(L,{form:ah,index:a},a))}),(0,b.jsx)(D,{title:"9. Messdaten",children:[0,1,2,3,4].map(a=>(0,b.jsx)(M,{form:ah,index:a},a))}),(0,b.jsx)(D,{title:"10. Trocknung",children:(0,b.jsxs)("div",{className:"grid gap-4 md:grid-cols-2",children:[["start_weight","end_weight","difference","rating"].map(a=>(0,b.jsx)(E,{label:a,children:(0,b.jsx)("input",{className:F,...ah.register(`drying.${a}`)})},a)),(0,b.jsx)(E,{label:"Bemerkung",children:(0,b.jsx)("textarea",{className:G,...ah.register("drying.comment")})})]})}),(0,b.jsxs)(D,{title:"11. Empfehlungen und Auflagen",children:[am.fields.map((a,c)=>(0,b.jsxs)("div",{className:"mb-3 grid gap-3 rounded-lg border border-border p-4 md:grid-cols-4",children:[(0,b.jsx)("input",{className:F,placeholder:"Nummer",...ah.register(`recommendations.${c}.number`)}),(0,b.jsx)("input",{className:F,placeholder:"Text",...ah.register(`recommendations.${c}.text`)}),(0,b.jsx)("input",{type:"date",className:F,...ah.register(`recommendations.${c}.deadline`)}),(0,b.jsx)("input",{className:F,placeholder:"Status",...ah.register(`recommendations.${c}.status`)})]},a.id)),(0,b.jsx)(t,{type:"button",icon:(0,b.jsx)(k.Plus,{className:"h-4 w-4"}),onClick:()=>am.append({number:am.fields.length+1,text:"",deadline:"",status:"offen"}),children:"Zeile hinzufuegen"})]}),(0,b.jsxs)(D,{title:"12. Bilder und Anlagen",children:[(0,b.jsx)("div",{className:"grid gap-3 md:grid-cols-2",children:z.map(a=>(0,b.jsxs)("label",{className:"rounded-lg border border-dashed border-primary/40 p-4 transition hover:border-primary hover:bg-background",children:[(0,b.jsx)(n.UploadCloud,{className:"mb-2 h-5 w-5 text-primary"}),a,Y===a&&(0,b.jsx)("span",{className:"ml-2 text-sm text-text-light",children:"Upload..."}),(0,b.jsx)("input",{type:"file",multiple:!0,className:"mt-3 block w-full text-sm",onChange:b=>az(b.target.files,a)})]},a))}),(0,b.jsx)("div",{className:"mt-5 grid gap-3 md:grid-cols-2",children:an.fields.map((a,c)=>{let d=String(ah.watch(`attachments.${c}.url`)??""),e=d&&/\.(png|jpe?g|webp|svg)$/i.test(d)?`${v.API_BASE.replace("/api/v1","")}${d}`:"";return(0,b.jsxs)("div",{className:"rounded-lg border border-border p-4",children:[e&&(0,b.jsx)("img",{src:e,alt:String(ah.watch(`attachments.${c}.filename`)??""),className:"mb-3 max-h-56 w-full rounded-lg border border-border object-contain"}),(0,b.jsxs)("div",{className:"flex justify-between gap-3",children:[(0,b.jsx)("strong",{children:String(ah.watch(`attachments.${c}.filename`)??"")}),(0,b.jsx)("button",{type:"button",onClick:()=>an.remove(c),children:(0,b.jsx)(o.X,{className:"h-4 w-4 text-danger"})})]}),(0,b.jsx)("input",{className:`${F} mt-3`,placeholder:"Beschreibung",...ah.register(`attachments.${c}.description`)}),(0,b.jsx)("input",{className:`${F} mt-3`,placeholder:"Reihenfolge",...ah.register(`attachments.${c}.order`)})]},a.id)})})]}),Q&&(0,b.jsxs)("section",{className:"rounded-lg border border-border bg-surface p-5 shadow-soft",children:[(0,b.jsx)("h2",{className:"text-xl font-semibold",children:"Pruefergebnis"}),(0,b.jsxs)("div",{className:"mt-4 grid gap-4 md:grid-cols-3",children:[(0,b.jsx)(J,{title:"Fehler",items:Q.errors,tone:"danger"}),(0,b.jsx)(J,{title:"Warnungen",items:Q.warnings,tone:"warning"}),(0,b.jsxs)("div",{children:[(0,b.jsx)("h3",{className:"font-semibold text-success",children:"Vollstaendige Bereiche"}),Q.complete_sections.map(a=>(0,b.jsx)("p",{className:"mt-2 text-sm",children:a},a))]})]})]}),ap.isError&&O&&(0,b.jsx)("div",{className:"fixed right-4 top-4 z-50 max-w-md rounded-lg border border-danger/30 bg-white p-4 text-sm text-danger shadow-soft",children:O}),(0,b.jsx)("fieldset",{disabled:ao,className:ao?"pointer-events-none contents opacity-80":"contents"}),(0,b.jsx)("div",{className:"fixed inset-x-0 bottom-0 z-40 border-t border-border bg-surface/95 px-4 py-3 shadow-soft backdrop-blur",children:(0,b.jsxs)("div",{className:"mx-auto flex max-w-7xl flex-wrap items-center justify-between gap-3",children:[(0,b.jsxs)("div",{className:"text-sm text-text-light",children:[(0,b.jsx)("p",{children:x?`Automatisch gespeichert um ${x}`:"Autosave startet nach Ausfuellen der Pflichtfelder."}),aw().length>0&&(0,b.jsxs)("p",{className:"text-danger",children:["Fehlt: ",aw().map(([,a])=>a.label).join(", ")]}),O&&(0,b.jsx)("p",{className:"text-primary-dark",children:O})]}),(0,b.jsxs)("div",{className:"flex flex-wrap gap-2",children:[(0,b.jsx)(t,{type:"submit",disabled:ao,disabledReason:"Freigegebene und abgeschlossene Validierungen sind schreibgeschuetzt",icon:(0,b.jsx)(l.Save,{className:"h-4 w-4"}),state:S,loadingText:"Speichern...",successText:"Gespeichert",children:"Entwurf speichern"}),(0,b.jsx)(t,{type:"button",disabled:ao,disabledReason:"Freigegebene und abgeschlossene Validierungen sind schreibgeschuetzt",icon:(0,b.jsx)(m,{className:"h-4 w-4"}),state:U,loadingText:"Pruefung laeuft...",successText:"Geprueft",onClick:ay,children:"Bericht pruefen"}),(0,b.jsx)(t,{type:"button",variant:"primary",icon:(0,b.jsx)(j,{className:"h-4 w-4"}),onClick:()=>r?window.location.assign(`/validations/${r}/preview`):ax(),children:"HTML-Vorschau"}),(0,b.jsx)(t,{type:"button",icon:(0,b.jsx)(i.Download,{className:"h-4 w-4"}),state:W,loadingText:"PDF wird erzeugt...",successText:"PDF erzeugt",onClick:()=>r?aA():ax(),children:"PDF herunterladen"})]})]})})]})}function I({form:a,path:c}){return(0,b.jsxs)("div",{className:"mt-3 grid gap-3 rounded-lg border border-border p-4 md:grid-cols-[1fr_180px_1fr]",children:[(0,b.jsx)("input",{className:F,readOnly:!0,...a.register(`${c}.text`)}),(0,b.jsx)("select",{className:F,...a.register(`${c}.value`),children:x.map(a=>(0,b.jsx)("option",{value:a,children:"yes"===a?"Ja":"no"===a?"Nein":"Nicht zutreffend"},a))}),(0,b.jsx)("input",{className:F,placeholder:"Kommentar",...a.register(`${c}.comment`)})]})}function J({title:a,items:c,tone:d}){return(0,b.jsxs)("div",{children:[(0,b.jsx)("h3",{className:`font-semibold ${"danger"===d?"text-danger":"text-warning"}`,children:a}),0===c.length?(0,b.jsx)("p",{className:"mt-2 text-sm text-text-light",children:"Keine Eintraege."}):c.map(a=>(0,b.jsxs)("p",{className:"mt-2 text-sm",children:[a.section,": ",a.message]},`${a.field}-${a.message}`))]})}function K({form:a,index:c}){return(0,b.jsxs)("div",{className:"mb-3 grid gap-3 rounded-lg border border-border p-4 md:grid-cols-[80px_1fr]",children:[(0,b.jsx)("input",{type:"checkbox",className:"h-6 w-6",...a.register(`programs.${c}.selected`)}),(0,b.jsx)("input",{className:F,...a.register(`programs.${c}.name`)})]})}function L({form:a,index:c}){return(0,b.jsxs)("div",{className:"mb-4 rounded-lg border border-border p-4",children:[(0,b.jsxs)("h3",{className:"font-semibold",children:["Testlauf ",c+1]}),(0,b.jsxs)("div",{className:"mt-3 grid gap-3 md:grid-cols-2",children:[(0,b.jsx)("input",{className:F,placeholder:"Beladungsmuster",...a.register(`loading_patterns.${c}.pattern`)}),(0,b.jsx)("input",{className:F,placeholder:"Beschreibung",...a.register(`loading_patterns.${c}.description`)}),(0,b.jsx)("input",{type:"file",multiple:!0,className:"rounded-lg border border-border p-3 md:col-span-2"})]})]})}function M({form:a,index:c}){return(0,b.jsxs)("div",{className:"mb-4 rounded-lg border border-border p-4",children:[(0,b.jsx)("h3",{className:"font-semibold",children:String(a.watch(`measurement_data.${c}.name`)??"")}),(0,b.jsxs)("div",{className:"mt-3 grid gap-3 md:grid-cols-3",children:[["start_time","end_time","duration","leak_rate","min_temperature","max_temperature","temperature_band","equilibration_time","holding_time","pressure","result"].map(d=>(0,b.jsx)("input",{className:F,placeholder:d,...a.register(`measurement_data.${c}.${d}`)},d)),(0,b.jsx)("input",{type:"file",multiple:!0,accept:".csv,.pdf",className:"rounded-lg border border-border p-3 md:col-span-3"})]})]})}a.s(["ValidationEditor",0,H,"default",0,H],27862)}]; //# sourceMappingURL=components_validations_validation-editor_tsx_1twfibv._.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0npvcom.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0npvcom.js new file mode 100644 index 00000000..c3450a77 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0npvcom.js @@ -0,0 +1,4 @@ +module.exports=[98158,a=>{"use strict";var b=a.i(52425),c=a.i(71306),d=a.i(79847),e=a.i(9185),f=a.i(72842),g=a.i(54897),h=a.i(56157),i=a.i(94331),j=a.i(15988),k=a.i(25766),l=a.i(29725),m=a.i(90833),n=a.i(5785),o=a.i(74793),p=a.i(85826),q=a.i(21565),r=a.i(65911),s=a.i(25128),t=a.i(40781);a.i(69411);var u=a.i(63081),v=a.i(62837),w=a.i(34607),x=a.i(96338),y=a.i(50642),z=a.i(32242),A=a.i(88530),B=a.i(93695),C=a.i(8583),D=a.i(38534),E=a.i(42440);a.i(70408);var F=a.i(22922),G=a.i(78294),H=a.i(16625),I=a.i(88648),J=a.i(51914),K=a.i(25466);let L=["",{children:["(app)",{children:["customers",{children:["import",{children:["__PAGE__",{},{metadata:{},page:[()=>a.r(77507),"[project]/app/(app)/customers/import/page.tsx"]},[]]},{metadata:{}},[]]},{metadata:{}},[]]},{metadata:{},layout:[()=>a.r(10162),"[project]/app/(app)/layout.tsx"],"not-found":[()=>a.r(2894),"[project]/app/not-found.tsx"],forbidden:[()=>a.r(13718),"[project]/node_modules/next/dist/client/components/builtin/forbidden.js"],unauthorized:[()=>a.r(18198),"[project]/node_modules/next/dist/client/components/builtin/unauthorized.js"]},[]]},{metadata:{icon:[async c=>{let d=(0,i.interopDefault)(await a.r(48760));return[{url:(0,b.fillMetadataSegment)("//",await c.params,"icon.svg",!0)+`?${d.src.split("/").splice(-1)[0]}`,sizes:"any",type:"image/svg+xml"}]}]},layout:[()=>a.r(70864),"[project]/app/layout.tsx"],loading:[()=>a.r(45538),"[project]/app/loading.tsx"],"not-found":[()=>a.r(2894),"[project]/app/not-found.tsx"],forbidden:[()=>a.r(13718),"[project]/node_modules/next/dist/client/components/builtin/forbidden.js"],unauthorized:[()=>a.r(18198),"[project]/node_modules/next/dist/client/components/builtin/unauthorized.js"],"global-error":[()=>a.r(62212),"[project]/node_modules/next/dist/client/components/builtin/global-error.js"]},[]],M={require:a.r.bind(a),loadChunk:a.l.bind(a)},N=new c.AppPageRouteModule({definition:{kind:d.RouteKind.APP_PAGE,page:"/(app)/customers/import/page",pathname:"/customers/import",bundlePath:"",filename:"",appPaths:[]},userland:{loaderTree:L},distDir:".next",relativeProjectDir:""});async function O(b,c,P){var Q,R,S,T,U;P.requestMeta&&(0,g.setRequestMeta)(b,P.requestMeta),N.isDev&&(0,g.addRequestMeta)(b,"devRequestTimingInternalsEnd",process.hrtime.bigint());let V=!!(0,g.getRequestMeta)(b,"minimalMode"),W="/(app)/customers/import/page";W=W.replace(/\/index$/,"")||"/";let X=await N.prepare(b,c,{srcPage:W,multiZoneDraftMode:!1});if(!X)return c.statusCode=400,c.end("Bad Request"),null==P.waitUntil||P.waitUntil.call(P,Promise.resolve()),null;let{buildId:Y,query:Z,params:$,pageIsDynamic:_,buildManifest:aa,nextFontManifest:ab,reactLoadableManifest:ac,serverActionsManifest:ad,clientReferenceManifest:ae,subresourceIntegrityManifest:af,prerenderManifest:ag,isDraftMode:ah,resolvedPathname:ai,revalidateOnlyGenerated:aj,routerServerContext:ak,nextConfig:al,parsedUrl:am,interceptionRoutePatterns:an,deploymentId:ao,clientAssetToken:ap}=X,aq=(0,q.normalizeAppPath)(W),{isOnDemandRevalidate:ar}=X,as=al.experimental.ppr&&!al.cacheComponents&&(0,J.isInterceptionRouteAppPath)(ai)?null:N.match(ai,ag),at=(null==as?void 0:as.route)??null,au=!!ag.routes[ai],av=b.headers["user-agent"]||"",aw=(0,t.getBotType)(av),ax=(0,p.isHtmlBotRequest)(b),ay=(0,g.getRequestMeta)(b,"isPrefetchRSCRequest")??"1"===b.headers[s.NEXT_ROUTER_PREFETCH_HEADER],az=(0,g.getRequestMeta)(b,"isRSCRequest")??(0,m.isRSCRequestHeader)(b.headers[s.RSC_HEADER]),aA=(0,r.getIsPossibleServerAction)(b),aB=(0,l.checkIsAppPPREnabled)(al.experimental.ppr),aC=b.headers[x.NEXT_RESUME_STATE_LENGTH_HEADER];if(!(0,g.getRequestMeta)(b,"postponed")&&V&&aB&&aA&&aC&&"string"==typeof aC){let d=parseInt(aC,10),{maxPostponedStateSize:e,maxPostponedStateSizeBytes:f}=(0,D.getMaxPostponedStateSize)(al.experimental.maxPostponedStateSize);if(!isNaN(d)&&d>0){if(d>f)return c.statusCode=413,c.end((0,D.getPostponedStateExceededErrorMessage)(e)),null==P.waitUntil||P.waitUntil.call(P,Promise.resolve()),null;let h="1 MB",i=(null==(U=al.experimental.serverActions)?void 0:U.bodySizeLimit)??h,j=d+(i!==h?a.r(14465).parse(i):1048576),k=await (0,D.readBodyWithSizeLimit)(b,j);if(null===k)return c.statusCode=413,c.end("Request body exceeded limit. To configure the body size limit for Server Actions, see: https://nextjs.org/docs/app/api-reference/next-config-js/serverActions#bodysizelimit"),null==P.waitUntil||P.waitUntil.call(P,Promise.resolve()),null;if(k.length>=d){let a=k.subarray(0,d).toString("utf8");(0,g.addRequestMeta)(b,"postponed",a);let c=k.subarray(d);(0,g.addRequestMeta)(b,"actionBody",c)}else throw Object.defineProperty(Error(`invariant: expected ${d} bytes of postponed state but only received ${k.length} bytes`),"__NEXT_ERROR_CODE",{value:"E979",enumerable:!1,configurable:!0})}}if(!(0,g.getRequestMeta)(b,"postponed")&&aB&&"1"===b.headers[x.NEXT_RESUME_HEADER]&&"POST"===b.method){let{maxPostponedStateSize:a,maxPostponedStateSizeBytes:d}=(0,D.getMaxPostponedStateSize)(al.experimental.maxPostponedStateSize),e=await (0,D.readBodyWithSizeLimit)(b,d);if(null===e)return c.statusCode=413,c.end((0,D.getPostponedStateExceededErrorMessage)(a)),null==P.waitUntil||P.waitUntil.call(P,Promise.resolve()),null;let f=e.toString("utf8");(0,g.addRequestMeta)(b,"postponed",f)}let aD=!0===N.isDev||!0===al.experimental.exposeTestingApiInProductionBuild,aE=aD&&("1"===b.headers[s.NEXT_INSTANT_PREFETCH_HEADER]||!(0,m.isRSCRequestHeader)(b.headers[s.RSC_HEADER])&&"string"==typeof b.headers.cookie&&b.headers.cookie.includes(s.NEXT_INSTANT_TEST_COOKIE+"=")),aF=(aB||aE)&&((null==(Q=ag.routes[aq]??ag.dynamicRoutes[aq])?void 0:Q.renderingMode)==="PARTIALLY_STATIC"||aE&&(aD||(null==ak?void 0:ak.experimentalTestProxy)===!0)),aG=aE&&aF,aH=aG&&!0===N.isDev,aI=!1,aJ=aF?(0,g.getRequestMeta)(b,"postponed"):void 0,aK=null==(R=ag.routes[ai])?void 0:R.prefetchDataRoute,aL=aF&&az&&!ay&&!aK;V&&(aL=aL&&!!aJ);let aM=(0,g.getRequestMeta)(b,"segmentPrefetchRSCRequest"),aN=(!aw||!aF)&&(!av||(0,p.shouldServeStreamingMetadata)(av,al.htmlLimitedBots)),aO=!!((at||au||ag.routes[aq])&&!(aw&&aF)),aP=aF&&!0===al.cacheComponents,aQ=!0===N.isDev||!aO||"string"==typeof aJ||(aP&&(0,g.getRequestMeta)(b,"onCacheEntryV2")?aL&&!V:aL),aR=!!aw&&aF,aS=(null==at?void 0:at.remainingPrerenderableParams)??[],aT=(null==at?void 0:at.fallback)===null&&((null==(S=at.fallbackRootParams)?void 0:S.length)??0)>0,aU=null;if(!ah&&aO&&!aQ&&!aA&&!aJ&&!aL){let a=as?"string"==typeof(null==at?void 0:at.fallback)?at.fallback:as.source:null;if(!0===al.experimental.partialFallbacks&&a&&(null==at?void 0:at.fallbackRouteParams)&&!aT){if(aS.length>0){let b,c=(b=new Map(aS.map(a=>[a.paramName,a])),a.split("/").map(a=>{let c=(0,K.getSegmentParam)(a);if(!c)return a;let d=b.get(c.paramName);if(!d)return a;let e=null==$?void 0:$[d.paramName];if(!e)return a;let f=Array.isArray(e)?e.map(a=>encodeURIComponent(a)).join("/"):encodeURIComponent(e);return a.replace((0,n.buildDynamicSegmentPlaceholder)(d),f)}).join("/")||"/");aU=c!==a?c:null}}else aU=ai}let aV=aU;!aV&&(N.isDev||aO&&_&&(null==at?void 0:at.fallbackRouteParams)&&!aA)&&(aV=ai),N.isDev||ah||!aO||!az||aL||(0,j.stripFlightHeaders)(b.headers);let aW={...F,tree:L,handler:O,routeModule:N,__next_app__:M};ad&&ae&&(0,o.setManifestsSingleton)({page:W,clientReferenceManifest:ae,serverActionsManifest:ad});let aX=b.method||"GET",aY=(0,f.getTracer)(),aZ=aY.getActiveScopeSpan(),a$=!!(null==ak?void 0:ak.isWrappedByNextServer),a_=!0===al.experimental.partialFallbacks&&aS.length>0?(null==at||null==(T=at.fallbackRouteParams)?void 0:T.filter(a=>!aS.some(b=>b.paramName===a.paramName)))??[]:[],a0=async()=>((null==ak?void 0:ak.render404)?await ak.render404(b,c,am,!1):c.end("This page could not be found"),null);try{let a,j=N.getVaryHeader(ai,an);c.setHeader("Vary",j);let l=async(d,e)=>{let f=new k.NodeNextRequest(b),g=new k.NodeNextResponse(c);return N.render(f,g,e).finally(()=>{if(!d)return;d.setAttributes({"http.status_code":c.statusCode,"next.rsc":!1});let b=aY.getRootSpanAttributes();if(!b)return;if(b.get("next.span_type")!==h.BaseServerSpan.handleRequest)return void console.warn(`Unexpected root span type '${b.get("next.span_type")}'. Please report this Next.js issue https://github.com/vercel/next.js`);let e=b.get("next.route");if(e){let b=`${aX} ${e}`;d.setAttributes({"next.route":e,"http.route":e,"next.span_name":b}),d.updateName(b),a&&a!==d&&(a.setAttribute("http.route",e),a.updateName(b))}else d.updateName(`${aX} ${W}`)})},m=(0,g.getRequestMeta)(b,"incrementalCache")||await N.getIncrementalCache(b,al,ag,V);null==m||m.resetRequestCache(),globalThis.__incrementalCache=m;let o=async({span:a,postponed:d,fallbackRouteParams:e,forceStaticRender:f})=>{let h={query:Z,params:$,page:aq,sharedContext:{buildId:Y,deploymentId:ao,clientAssetToken:ap},serverComponentsHmrCache:(0,g.getRequestMeta)(b,"serverComponentsHmrCache"),fallbackRouteParams:e,renderOpts:{App:()=>null,Document:()=>null,pageConfig:{},ComponentMod:aW,Component:(0,i.interopDefault)(aW),params:$,routeModule:N,page:W,postponed:d,shouldWaitOnAllReady:aR,serveStreamingMetadata:aN,supportsDynamicResponse:"string"==typeof d||aQ,buildManifest:aa,nextFontManifest:ab,reactLoadableManifest:ac,subresourceIntegrityManifest:af,setCacheStatus:null==ak?void 0:ak.setCacheStatus,setIsrStatus:null==ak?void 0:ak.setIsrStatus,setReactDebugChannel:null==ak?void 0:ak.setReactDebugChannel,sendErrorsToBrowser:null==ak?void 0:ak.sendErrorsToBrowser,dir:require("path").join(process.cwd(),N.relativeProjectDir),isDraftMode:ah,botType:aw,isOnDemandRevalidate:ar,isPossibleServerAction:aA,assetPrefix:al.assetPrefix,nextConfigOutput:al.output,crossOrigin:al.crossOrigin,trailingSlash:al.trailingSlash,images:al.images,previewProps:ag.preview,enableTainting:al.experimental.taint,htmlLimitedBots:al.htmlLimitedBots,reactMaxHeadersLength:al.reactMaxHeadersLength,multiZoneDraftMode:!1,incrementalCache:m,cacheLifeProfiles:al.cacheLife,basePath:al.basePath,serverActions:al.experimental.serverActions,logServerFunctions:"object"==typeof al.logging&&!!al.logging.serverFunctions,...aG||aH||aI?{isBuildTimePrerendering:!0,supportsDynamicResponse:!1,isStaticGeneration:!0,isDebugDynamicAccesses:aH}:{},cacheComponents:!!al.cacheComponents,experimental:{isRoutePPREnabled:aF,expireTime:al.expireTime,staleTimes:al.experimental.staleTimes,dynamicOnHover:!!al.experimental.dynamicOnHover,optimisticRouting:!!al.experimental.optimisticRouting,inlineCss:!!al.experimental.inlineCss,prefetchInlining:al.experimental.prefetchInlining??!1,authInterrupts:!!al.experimental.authInterrupts,cachedNavigations:!!al.experimental.cachedNavigations,clientTraceMetadata:al.experimental.clientTraceMetadata||[],clientParamParsingOrigins:al.experimental.clientParamParsingOrigins,maxPostponedStateSizeBytes:(0,C.parseMaxPostponedStateSize)(al.experimental.maxPostponedStateSize)},waitUntil:P.waitUntil,onClose:a=>{c.on("close",a)},onAfterTaskError:()=>{},onInstrumentationRequestError:(a,c,d,e)=>N.onRequestError(b,a,d,e,ak),err:(0,g.getRequestMeta)(b,"invokeError")}};f&&(h.renderOpts.supportsDynamicResponse=!1);let j=await l(a,h),{metadata:k}=j,{cacheControl:n,headers:o={},fetchTags:p,fetchMetrics:q}=k;if(p&&(o[x.NEXT_CACHE_TAGS_HEADER]=p),b.fetchMetrics=q,aO&&(null==n?void 0:n.revalidate)===0&&!N.isDev&&!aF){let a=k.staticBailoutInfo,b=Object.defineProperty(Error(`Page changed from static to dynamic at runtime ${ai}${(null==a?void 0:a.description)?`, reason: ${a.description}`:""} +see more here https://nextjs.org/docs/messages/app-static-to-dynamic-error`),"__NEXT_ERROR_CODE",{value:"E132",enumerable:!1,configurable:!0});if(null==a?void 0:a.stack){let c=a.stack;b.stack=b.message+c.substring(c.indexOf("\n"))}throw b}return{value:{kind:u.CachedRouteKind.APP_PAGE,html:j,headers:o,rscData:k.flightData,postponed:k.postponed,status:k.statusCode,segmentData:k.segmentData},cacheControl:n}},p=async({hasResolved:a,previousCacheEntry:f,isRevalidating:h,span:i,forceStaticRender:j=!1})=>{let k=!1===N.isDev,l=a||c.writableEnded;try{var q;let e;if(ar&&aj&&!f&&!V)return(null==ak?void 0:ak.render404)?await ak.render404(b,c):(c.statusCode=404,c.end("This page could not be found")),null;if(at&&(e=(0,v.parseFallbackField)(at.fallback)),!0===al.experimental.partialFallbacks&&(null==at?void 0:at.fallback)===null&&!aT&&aS.length>0&&(e=v.FallbackMode.PRERENDER),e===v.FallbackMode.PRERENDER&&(0,t.isBot)(av)&&(!aF||ax)&&(e=v.FallbackMode.BLOCKING_STATIC_RENDER),(null==f?void 0:f.isStale)===-1&&(ar=!0),ar&&(e!==v.FallbackMode.NOT_FOUND||f)&&(e=v.FallbackMode.BLOCKING_STATIC_RENDER),!V&&e!==v.FallbackMode.BLOCKING_STATIC_RENDER&&aV&&!l&&!ah&&_&&(k||!au)){if((k||at)&&e===v.FallbackMode.NOT_FOUND){if(al.adapterPath)return await a0();throw new B.NoFallbackError}if(aF&&(al.cacheComponents?!aL:!az)){let c=k&&"string"==typeof(null==at?void 0:at.fallback)?at.fallback:aq,e=(k||aG)&&(null==at?void 0:at.fallbackRouteParams)?(0,n.createOpaqueFallbackRouteParams)(at.fallbackRouteParams):aI?(0,n.getFallbackRouteParams)(aq,N):null;aG&&e&&(0,g.addRequestMeta)(b,"fallbackParams",e);let f=await N.handleResponse({cacheKey:c,req:b,nextConfig:al,routeKind:d.RouteKind.APP_PAGE,isFallback:!0,prerenderManifest:ag,isRoutePPREnabled:aF,responseGenerator:async()=>o({span:i,postponed:void 0,fallbackRouteParams:e,forceStaticRender:!0}),waitUntil:P.waitUntil,isMinimalMode:V});if(null===f)return null;if(f)return V||!aF||!(aS.length>0)||!0!==al.experimental.partialFallbacks||!aU||!m||ar||aI||aD||aE||ay||(0,I.scheduleOnNextTick)(async()=>{let c=N.getResponseCache(b);try{await c.revalidate(aU,m,aF,!1,a=>o({span:a.span,postponed:void 0,fallbackRouteParams:a_.length>0?(0,n.createOpaqueFallbackRouteParams)(a_):null,forceStaticRender:!0}),null,a,P.waitUntil)}catch(a){console.error("Error revalidating the page in the background",a)}}),delete f.cacheControl,f}}let r=ar||h||!aJ?void 0:aJ;if(aP&&!V&&m&&(aL||aA)&&!j){let c=await m.get(ai,{kind:u.IncrementalCacheKind.APP_PAGE,isRoutePPREnabled:!0,isFallback:!1});c&&c.value&&c.value.kind===u.CachedRouteKind.APP_PAGE&&(r=c.value.postponed,c&&(-1===c.isStale||!0===c.isStale)&&(0,I.scheduleOnNextTick)(async()=>{let c=N.getResponseCache(b);try{await c.revalidate(ai,m,aF,!1,a=>p({...a,forceStaticRender:!0}),null,a,P.waitUntil)}catch(a){console.error("Error revalidating the page in the background",a)}}))}if((aG||aH)&&void 0!==r)return{cacheControl:{revalidate:1,expire:void 0},value:{kind:u.CachedRouteKind.PAGES,html:w.default.EMPTY,pageData:{},headers:void 0,status:void 0}};let s=!N.isDev&&_&&(null==at?void 0:at.fallbackRouteParams)?(0,n.getPlaceholderFallbackRouteParams)($,at.fallbackRouteParams):null,x=s&&s.length>0?s:null==at?void 0:at.fallbackRouteParams,y=null!=s&&s.length>0,z=null;if(al.cacheComponents&&(null==at?void 0:at.fallbackRouteParams)){let a=(0,g.getRequestMeta)(b,"resolvedRouteParamKeys");a&&a.size>0&&(z=at.fallbackRouteParams.filter(b=>!a.has(b.paramName)))}let A=(k&&(0,g.getRequestMeta)(b,"renderFallbackShell")||y||aG&&!au)&&x?(0,n.createOpaqueFallbackRouteParams)(x):z&&z.length>0&&z.length<((null==at||null==(q=at.fallbackRouteParams)?void 0:q.length)??0)?(0,n.createOpaqueFallbackRouteParams)(z):aI?(0,n.getFallbackRouteParams)(aq,N):null;if((k||aG)&&al.cacheComponents&&!au&&(null==at?void 0:at.fallbackRouteParams)){let a=(0,n.createOpaqueFallbackRouteParams)(x??at.fallbackRouteParams);a&&(0,g.addRequestMeta)(b,"fallbackParams",a)}return o({span:i,postponed:r,fallbackRouteParams:A,forceStaticRender:j})}catch(a){throw(null==f?void 0:f.isStale)&&await N.onRequestError(b,a,{routerKind:"App Router",routePath:W,routeType:"render",revalidateReason:(0,e.getRevalidateReason)({isStaticGeneration:aO,isOnDemandRevalidate:ar})},!1,ak),a}},q=async a=>{var e,f,h,i,j,k;let l,m=await N.handleResponse({cacheKey:aU,responseGenerator:b=>p({span:a,...b}),routeKind:d.RouteKind.APP_PAGE,isOnDemandRevalidate:ar,isRoutePPREnabled:aF,req:b,nextConfig:al,prerenderManifest:ag,waitUntil:P.waitUntil,isMinimalMode:V});if(ah&&c.setHeader("Cache-Control","private, no-cache, no-store, max-age=0, must-revalidate"),N.isDev&&c.setHeader("Cache-Control","no-cache, must-revalidate"),!m){if(aU)throw Object.defineProperty(Error("invariant: cache entry required but not generated"),"__NEXT_ERROR_CODE",{value:"E62",enumerable:!1,configurable:!0});return null}if((null==(e=m.value)?void 0:e.kind)!==u.CachedRouteKind.APP_PAGE)throw Object.defineProperty(Error(`Invariant app-page handler received invalid cache entry ${null==(h=m.value)?void 0:h.kind}`),"__NEXT_ERROR_CODE",{value:"E707",enumerable:!1,configurable:!0});let n="string"==typeof m.value.postponed;az&&!aA&&ao&&c.setHeader(x.NEXT_NAV_DEPLOYMENT_ID_HEADER,ao),aO&&!aL&&(!n||ay)&&(V||c.setHeader("x-nextjs-cache",ar?"REVALIDATED":m.isMiss?"MISS":m.isStale?"STALE":"HIT"),c.setHeader(s.NEXT_IS_PRERENDER_HEADER,"1"));let{value:q}=m;if(aJ)l={revalidate:0,expire:void 0};else if(aL)l={revalidate:0,expire:void 0};else if(!N.isDev)if(ah)l={revalidate:0,expire:void 0};else if(aO){if(m.cacheControl)if("number"==typeof m.cacheControl.revalidate){if(m.cacheControl.revalidate<1)throw Object.defineProperty(Error(`Invalid revalidate configuration provided: ${m.cacheControl.revalidate} < 1`),"__NEXT_ERROR_CODE",{value:"E22",enumerable:!1,configurable:!0});l={revalidate:m.cacheControl.revalidate,expire:(null==(i=m.cacheControl)?void 0:i.expire)??al.expireTime}}else l={revalidate:x.CACHE_ONE_YEAR_SECONDS,expire:void 0}}else c.getHeader("Cache-Control")||(l={revalidate:0,expire:void 0});if(m.cacheControl=l,"string"==typeof aM&&(null==q?void 0:q.kind)===u.CachedRouteKind.APP_PAGE&&q.segmentData){c.setHeader(s.NEXT_DID_POSTPONE_HEADER,"2");let a=null==(j=q.headers)?void 0:j[x.NEXT_CACHE_TAGS_HEADER];V&&aO&&a&&"string"==typeof a&&c.setHeader(x.NEXT_CACHE_TAGS_HEADER,a);let d=q.segmentData.get(aM);return void 0!==d?(0,A.sendRenderResult)({req:b,res:c,generateEtags:al.generateEtags,poweredByHeader:al.poweredByHeader,result:w.default.fromStatic(d,s.RSC_CONTENT_TYPE_HEADER),cacheControl:m.cacheControl}):(c.statusCode=204,(0,A.sendRenderResult)({req:b,res:c,generateEtags:al.generateEtags,poweredByHeader:al.poweredByHeader,result:w.default.EMPTY,cacheControl:m.cacheControl}))}let r=aP?(0,g.getRequestMeta)(b,"onCacheEntryV2")??(0,g.getRequestMeta)(b,"onCacheEntry"):(0,g.getRequestMeta)(b,"onCacheEntry");if(r){let a=(0,g.getRequestMeta)(b,"initURL")??b.url,c=a?(null==(k=(0,E.parseUrl)(a))?void 0:k.pathname)??a:void 0;if(await r(m,{url:c}))return null}if(q.headers){let a={...q.headers};for(let[b,d]of(V&&aO||delete a[x.NEXT_CACHE_TAGS_HEADER],Object.entries(a)))if(void 0!==d)if(Array.isArray(d))for(let a of d)c.appendHeader(b,a);else"number"==typeof d&&(d=d.toString()),c.appendHeader(b,d)}let t=null==(f=q.headers)?void 0:f[x.NEXT_CACHE_TAGS_HEADER];if(V&&aO&&t&&"string"==typeof t&&c.setHeader(x.NEXT_CACHE_TAGS_HEADER,t),!q.status||az&&aF||(c.statusCode=q.status),!V&&q.status&&G.RedirectStatusCode[q.status]&&az&&(c.statusCode=200),n&&!aL&&c.setHeader(s.NEXT_DID_POSTPONE_HEADER,"1"),az&&!ah){if(void 0===q.rscData){if(q.html.contentType!==s.RSC_CONTENT_TYPE_HEADER)if(al.cacheComponents)return c.statusCode=404,(0,A.sendRenderResult)({req:b,res:c,generateEtags:al.generateEtags,poweredByHeader:al.poweredByHeader,result:w.default.EMPTY,cacheControl:m.cacheControl});else throw Object.defineProperty(new H.InvariantError(`Expected RSC response, got ${q.html.contentType}`),"__NEXT_ERROR_CODE",{value:"E789",enumerable:!1,configurable:!0});return(0,A.sendRenderResult)({req:b,res:c,generateEtags:al.generateEtags,poweredByHeader:al.poweredByHeader,result:q.html,cacheControl:m.cacheControl})}return(0,A.sendRenderResult)({req:b,res:c,generateEtags:al.generateEtags,poweredByHeader:al.poweredByHeader,result:w.default.fromStatic(q.rscData,s.RSC_CONTENT_TYPE_HEADER),cacheControl:m.cacheControl})}let v=q.html;if(aE&&aG){let a=!0===N.isDev?crypto.randomUUID():null;return v.pipeThrough(await (0,z.createInstantTestScriptInsertionTransformStream)(a)),(0,A.sendRenderResult)({req:b,res:c,generateEtags:al.generateEtags,poweredByHeader:al.poweredByHeader,result:v,cacheControl:{revalidate:0,expire:void 0}})}if(!n||V||az)return(0,A.sendRenderResult)({req:b,res:c,generateEtags:al.generateEtags,poweredByHeader:al.poweredByHeader,result:v,cacheControl:m.cacheControl});if(aG||aH)return v.push(new ReadableStream({start(a){a.enqueue(y.ENCODED_TAGS.CLOSED.BODY_AND_HTML),a.close()}})),(0,A.sendRenderResult)({req:b,res:c,generateEtags:al.generateEtags,poweredByHeader:al.poweredByHeader,result:v,cacheControl:{revalidate:0,expire:void 0}});let B=new TransformStream;return v.push(B.readable),o({span:a,postponed:q.postponed,fallbackRouteParams:null,forceStaticRender:!1}).then(async a=>{var b,c;if(!a)throw Object.defineProperty(Error("Invariant: expected a result to be returned"),"__NEXT_ERROR_CODE",{value:"E463",enumerable:!1,configurable:!0});if((null==(b=a.value)?void 0:b.kind)!==u.CachedRouteKind.APP_PAGE)throw Object.defineProperty(Error(`Invariant: expected a page response, got ${null==(c=a.value)?void 0:c.kind}`),"__NEXT_ERROR_CODE",{value:"E305",enumerable:!1,configurable:!0});await a.value.html.pipeTo(B.writable)}).catch(a=>{B.writable.abort(a).catch(a=>{console.error("couldn't abort transformer",a)})}),(0,A.sendRenderResult)({req:b,res:c,generateEtags:al.generateEtags,poweredByHeader:al.poweredByHeader,result:v,cacheControl:{revalidate:0,expire:void 0}})};if(!a$||!aZ)return a=aY.getActiveScopeSpan(),await aY.withPropagatedContext(b.headers,()=>aY.trace(h.BaseServerSpan.handleRequest,{spanName:`${aX} ${W}`,kind:f.SpanKind.SERVER,attributes:{"http.method":aX,"http.target":b.url}},q),void 0,!a$);await q(aZ)}catch(a){throw a instanceof B.NoFallbackError||await N.onRequestError(b,a,{routerKind:"App Router",routePath:W,routeType:"render",revalidateReason:(0,e.getRevalidateReason)({isStaticGeneration:aO,isOnDemandRevalidate:ar})},!1,ak),a}}a.s(["__next_app__",0,M,"handler",0,O,"routeModule",0,N],2799),a.i(2799),a.s(["ClientPageRoot",()=>F.ClientPageRoot,"ClientSegmentRoot",()=>F.ClientSegmentRoot,"Fragment",()=>F.Fragment,"HTTPAccessFallbackBoundary",()=>F.HTTPAccessFallbackBoundary,"InstantValidation",()=>F.InstantValidation,"LayoutRouter",()=>F.LayoutRouter,"LoadingBoundaryProvider",()=>F.LoadingBoundaryProvider,"Postpone",()=>F.Postpone,"RenderFromTemplateContext",()=>F.RenderFromTemplateContext,"RootLayoutBoundary",()=>F.RootLayoutBoundary,"SegmentViewNode",()=>F.SegmentViewNode,"SegmentViewStateNode",()=>F.SegmentViewStateNode,"__next_app__",0,M,"actionAsyncStorage",()=>F.actionAsyncStorage,"captureOwnerStack",()=>F.captureOwnerStack,"collectPrefetchHints",()=>F.collectPrefetchHints,"collectSegmentData",()=>F.collectSegmentData,"createElement",()=>F.createElement,"createMetadataComponents",()=>F.createMetadataComponents,"createPrerenderParamsForClientSegment",()=>F.createPrerenderParamsForClientSegment,"createPrerenderSearchParamsForClientPage",()=>F.createPrerenderSearchParamsForClientPage,"createServerParamsForServerSegment",()=>F.createServerParamsForServerSegment,"createServerSearchParamsForServerPage",()=>F.createServerSearchParamsForServerPage,"createTemporaryReferenceSet",()=>F.createTemporaryReferenceSet,"decodeAction",()=>F.decodeAction,"decodeFormState",()=>F.decodeFormState,"decodeReply",()=>F.decodeReply,"handler",0,O,"patchFetch",()=>F.patchFetch,"preconnect",()=>F.preconnect,"preloadFont",()=>F.preloadFont,"preloadStyle",()=>F.preloadStyle,"prerender",()=>F.prerender,"renderToReadableStream",()=>F.renderToReadableStream,"routeModule",0,N,"serverHooks",()=>F.serverHooks,"taintObjectReference",()=>F.taintObjectReference,"workAsyncStorage",()=>F.workAsyncStorage,"workUnitAsyncStorage",()=>F.workUnitAsyncStorage],98158)}]; + +//# sourceMappingURL=node_modules_next_dist_esm_build_templates_app-page_0npvcom.js.map \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/middleware-build-manifest.js b/validation-suite/frontend/atlas/.next/standalone/.next/server/middleware-build-manifest.js index 132e7e2c..242907a7 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/middleware-build-manifest.js +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/middleware-build-manifest.js @@ -7,9 +7,9 @@ globalThis.__BUILD_MANIFEST = { "static/chunks/0cz1d0mv5g_q7.js" ], "lowPriorityFiles": [ - "static/T1Sq4P6mWswk2NfmBZrTz/_buildManifest.js", - "static/T1Sq4P6mWswk2NfmBZrTz/_ssgManifest.js", - "static/T1Sq4P6mWswk2NfmBZrTz/_clientMiddlewareManifest.js" + "static/MO_FrTIQMTyIgUY4at_vj/_buildManifest.js", + "static/MO_FrTIQMTyIgUY4at_vj/_ssgManifest.js", + "static/MO_FrTIQMTyIgUY4at_vj/_clientMiddlewareManifest.js" ], "rootMainFiles": [ "static/chunks/2zjueh7t2vecu.js", diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/middleware-manifest.json b/validation-suite/frontend/atlas/.next/standalone/.next/server/middleware-manifest.json index 96240d8d..2913aa69 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/middleware-manifest.json +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/middleware-manifest.json @@ -55,7 +55,7 @@ "wasm": [], "assets": [], "env": { - "__NEXT_BUILD_ID": "T1Sq4P6mWswk2NfmBZrTz", + "__NEXT_BUILD_ID": "MO_FrTIQMTyIgUY4at_vj", "NEXT_SERVER_ACTIONS_ENCRYPTION_KEY": "+/et5PtgFqduwH/FIeKKhFN8OgLmX1v88vZt8Z32w3w=", "__NEXT_PREVIEW_MODE_ID": "0f172cc22924763dbc2171b120c8e101", "__NEXT_PREVIEW_MODE_ENCRYPTION_KEY": "1a645d1d69a5d15a9c01f8a02a837daa722446dbaa1ad52098685247ffb9188c", diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/pages/404.html b/validation-suite/frontend/atlas/.next/standalone/.next/server/pages/404.html index 824d0167..75122e74 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/pages/404.html +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/pages/404.html @@ -1 +1 @@ -Validation Suite
SCHUBAMED Validation Suite

Seite nicht gefunden

Die angeforderte Seite ist nicht vorhanden oder wurde verschoben.

Zum Dashboard
\ No newline at end of file +Validation Suite
SCHUBAMED Validation Suite

Seite nicht gefunden

Die angeforderte Seite ist nicht vorhanden oder wurde verschoben.

Zum Dashboard
\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/.next/server/pages/500.html b/validation-suite/frontend/atlas/.next/standalone/.next/server/pages/500.html index b11e3bb6..f68a3f3a 100644 --- a/validation-suite/frontend/atlas/.next/standalone/.next/server/pages/500.html +++ b/validation-suite/frontend/atlas/.next/standalone/.next/server/pages/500.html @@ -1 +1 @@ -500: This page couldn’t load

This page couldn’t load

A server error occurred. Reload to try again.

\ No newline at end of file +500: This page couldn’t load

This page couldn’t load

A server error occurred. Reload to try again.

\ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/standalone/package.json b/validation-suite/frontend/atlas/.next/standalone/package.json index 509ea8ef..26b149a2 100644 --- a/validation-suite/frontend/atlas/.next/standalone/package.json +++ b/validation-suite/frontend/atlas/.next/standalone/package.json @@ -8,6 +8,7 @@ "start": "next start", "lint": "next lint", "test:auth": "node --test tests/auth-cookie.test.mjs", + "test:customer-import": "node --test tests/customer-import.test.mjs", "test:middleware": "node --test tests/middleware-ssl.test.mjs", "test:quickstart-navigation": "node --test tests/quickstart-navigation.test.mjs", "test:quickstart-workflow": "node --test tests/quickstart-workflow.test.mjs", diff --git a/validation-suite/frontend/atlas/.next/static/T1Sq4P6mWswk2NfmBZrTz/_buildManifest.js b/validation-suite/frontend/atlas/.next/static/MO_FrTIQMTyIgUY4at_vj/_buildManifest.js similarity index 100% rename from validation-suite/frontend/atlas/.next/static/T1Sq4P6mWswk2NfmBZrTz/_buildManifest.js rename to validation-suite/frontend/atlas/.next/static/MO_FrTIQMTyIgUY4at_vj/_buildManifest.js diff --git a/validation-suite/frontend/atlas/.next/static/T1Sq4P6mWswk2NfmBZrTz/_clientMiddlewareManifest.js b/validation-suite/frontend/atlas/.next/static/MO_FrTIQMTyIgUY4at_vj/_clientMiddlewareManifest.js similarity index 100% rename from validation-suite/frontend/atlas/.next/static/T1Sq4P6mWswk2NfmBZrTz/_clientMiddlewareManifest.js rename to validation-suite/frontend/atlas/.next/static/MO_FrTIQMTyIgUY4at_vj/_clientMiddlewareManifest.js diff --git a/validation-suite/frontend/atlas/.next/static/T1Sq4P6mWswk2NfmBZrTz/_ssgManifest.js b/validation-suite/frontend/atlas/.next/static/MO_FrTIQMTyIgUY4at_vj/_ssgManifest.js similarity index 100% rename from validation-suite/frontend/atlas/.next/static/T1Sq4P6mWswk2NfmBZrTz/_ssgManifest.js rename to validation-suite/frontend/atlas/.next/static/MO_FrTIQMTyIgUY4at_vj/_ssgManifest.js diff --git a/validation-suite/frontend/atlas/.next/static/chunks/3_bqwdscuc1c8.js b/validation-suite/frontend/atlas/.next/static/chunks/05xkqica3e3uw.js similarity index 70% rename from validation-suite/frontend/atlas/.next/static/chunks/3_bqwdscuc1c8.js rename to validation-suite/frontend/atlas/.next/static/chunks/05xkqica3e3uw.js index dadb6f29..c8717faa 100644 --- a/validation-suite/frontend/atlas/.next/static/chunks/3_bqwdscuc1c8.js +++ b/validation-suite/frontend/atlas/.next/static/chunks/05xkqica3e3uw.js @@ -1,3 +1,3 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,75254,e=>{"use strict";var t=e.i(71645);let r=(...e)=>e.filter((e,t,r)=>!!e&&""!==e.trim()&&r.indexOf(e)===t).join(" ").trim();var i={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};let s=(0,t.forwardRef)(({color:e="currentColor",size:s=24,strokeWidth:n=2,absoluteStrokeWidth:a,className:o="",children:u,iconNode:l,...c},h)=>(0,t.createElement)("svg",{ref:h,...i,width:s,height:s,stroke:e,strokeWidth:a?24*Number(n)/Number(s):n,className:r("lucide",o),...c},[...l.map(([e,r])=>(0,t.createElement)(e,r)),...Array.isArray(u)?u:[u]]));e.s(["default",0,(e,i)=>{let n=(0,t.forwardRef)(({className:n,...a},o)=>(0,t.createElement)(s,{ref:o,iconNode:i,className:r(`lucide-${e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase()}`,n),...a}));return n.displayName=`${e}`,n}],75254)},18566,(e,t,r)=>{t.exports=e.r(76562)},28779,e=>{"use strict";var t=e.i(43476),r=e.i(18566),i=e.i(71645);let s=(0,i.createContext)(null);e.s(["AuthProvider",0,function({children:e}){let n=(0,r.useRouter)(),[a,o]=(0,i.useState)(null),[u,l]=(0,i.useState)(null),c=(0,i.useRef)(null),h=(0,i.useRef)(null);(0,i.useEffect)(()=>{c.current=a},[a]),(0,i.useEffect)(()=>{h.current=u},[u]),(0,i.useEffect)(()=>{fetch("/api/me",{credentials:"include",cache:"no-store"}).then(async e=>{if(!e.ok)throw Error(`HTTP ${e.status}`);return await e.json()}).then(e=>{l(e),o("authenticated")}).catch(()=>{c.current||h.current||(l(null),o(null))})},[]);let d=(0,i.useMemo)(()=>{let e=e=>{o(e)};return{token:a,setToken:e,setUser:l,logout:()=>{e(null),fetch("/api/logout",{method:"POST",credentials:"include"}),n.push("/login")},user:u,refreshUser:async()=>{try{let e=await fetch("/api/me",{credentials:"include",cache:"no-store"});if(!e.ok)throw Error(`HTTP ${e.status}`);let t=await e.json();return l(t),o("authenticated"),t}catch{return h.current||(l(null),o(null)),null}}}},[n,a,u]);return(0,t.jsx)(s.Provider,{value:d,children:e})},"useAuth",0,function(){let e=(0,i.useContext)(s);if(!e)throw Error("useAuth must be used inside AuthProvider");return e}])},80166,e=>{"use strict";var t={setTimeout:(e,t)=>setTimeout(e,t),clearTimeout:e=>clearTimeout(e),setInterval:(e,t)=>setInterval(e,t),clearInterval:e=>clearInterval(e)},r=new class{#e=t;#t=!1;setTimeoutProvider(e){this.#e=e}setTimeout(e,t){return this.#e.setTimeout(e,t)}clearTimeout(e){this.#e.clearTimeout(e)}setInterval(e,t){return this.#e.setInterval(e,t)}clearInterval(e){this.#e.clearInterval(e)}};e.s(["systemSetTimeoutZero",0,function(e){setTimeout(e,0)},"timeoutManager",0,r])},19273,e=>{"use strict";var t=e.i(80166),r="u"u(t)?Object.keys(t).sort().reduce((e,r)=>(e[r]=t[r],e),{}):t)}function n(e,t){return e===t||typeof e==typeof t&&!!e&&!!t&&"object"==typeof e&&"object"==typeof t&&Object.keys(t).every(r=>n(e[r],t[r]))}var a=Object.prototype.hasOwnProperty;function o(e){return Array.isArray(e)&&e.length===Object.keys(e).length}function u(e){if(!l(e))return!1;let t=e.constructor;if(void 0===t)return!0;let r=t.prototype;return!!l(r)&&!!r.hasOwnProperty("isPrototypeOf")&&Object.getPrototypeOf(e)===Object.prototype}function l(e){return"[object Object]"===Object.prototype.toString.call(e)}var c=Symbol();e.s(["addConsumeAwareSignal",0,function(e,t,r){let i,s=!1;return Object.defineProperty(e,"signal",{enumerable:!0,get:()=>(i??=t(),s||(s=!0,i.aborted?r():i.addEventListener("abort",r,{once:!0})),i)}),e},"addToEnd",0,function(e,t,r=0){let i=[...e,t];return r&&i.length>r?i.slice(1):i},"addToStart",0,function(e,t,r=0){let i=[t,...e];return r&&i.length>r?i.slice(0,-1):i},"ensureQueryFn",0,function(e,t){return!e.queryFn&&t?.initialPromise?()=>t.initialPromise:e.queryFn&&e.queryFn!==c?e.queryFn:()=>Promise.reject(Error(`Missing queryFn: '${e.queryHash}'`))},"functionalUpdate",0,function(e,t){return"function"==typeof e?e(t):e},"hashKey",0,s,"hashQueryKeyByOptions",0,i,"isServer",0,r,"isValidTimeout",0,function(e){return"number"==typeof e&&e>=0&&e!==1/0},"matchMutation",0,function(e,t){let{exact:r,status:i,predicate:a,mutationKey:o}=e;if(o){if(!t.options.mutationKey)return!1;if(r){if(s(t.options.mutationKey)!==s(o))return!1}else if(!n(t.options.mutationKey,o))return!1}return(!i||t.state.status===i)&&(!a||!!a(t))},"matchQuery",0,function(e,t){let{type:r="all",exact:s,fetchStatus:a,predicate:o,queryKey:u,stale:l}=e;if(u){if(s){if(t.queryHash!==i(u,t.options))return!1}else if(!n(t.queryKey,u))return!1}if("all"!==r){let e=t.isActive();if("active"===r&&!e||"inactive"===r&&e)return!1}return("boolean"!=typeof l||t.isStale()===l)&&(!a||a===t.state.fetchStatus)&&(!o||!!o(t))},"noop",0,function(){},"partialMatchKey",0,n,"replaceData",0,function(e,t,r){return"function"==typeof r.structuralSharing?r.structuralSharing(e,t):!1!==r.structuralSharing?function e(t,r,i=0){if(t===r)return t;if(i>500)return r;let s=o(t)&&o(r);if(!s&&!(u(t)&&u(r)))return r;let n=(s?t:Object.keys(t)).length,l=s?r:Object.keys(r),c=l.length,h=s?Array(c):{},d=0;for(let o=0;o{t.timeoutManager.setTimeout(r,e)})},"timeUntilStale",0,function(e,t){return Math.max(e+(t||0)-Date.now(),0)}])},40143,e=>{"use strict";let t,r,i,s,n,a;var o=e.i(80166).systemSetTimeoutZero,u=(t=[],r=0,i=e=>{e()},s=e=>{e()},n=o,{batch:e=>{let a;r++;try{a=e()}finally{let e;--r||(e=t,t=[],e.length&&n(()=>{s(()=>{e.forEach(e=>{i(e)})})}))}return a},batchCalls:e=>(...t)=>{a(()=>{e(...t)})},schedule:a=e=>{r?t.push(e):n(()=>{i(e)})},setNotifyFunction:e=>{i=e},setBatchNotifyFunction:e=>{s=e},setScheduler:e=>{n=e}});e.s(["notifyManager",0,u])},75555,15823,e=>{"use strict";var t=class{constructor(){this.listeners=new Set,this.subscribe=this.subscribe.bind(this)}subscribe(e){return this.listeners.add(e),this.onSubscribe(),()=>{this.listeners.delete(e),this.onUnsubscribe()}}hasListeners(){return this.listeners.size>0}onSubscribe(){}onUnsubscribe(){}};e.s(["Subscribable",0,t],15823);var r=new class extends t{#r;#i;#s;constructor(){super(),this.#s=e=>{if("u">typeof window&&window.addEventListener){let t=()=>e();return window.addEventListener("visibilitychange",t,!1),()=>{window.removeEventListener("visibilitychange",t)}}}}onSubscribe(){this.#i||this.setEventListener(this.#s)}onUnsubscribe(){this.hasListeners()||(this.#i?.(),this.#i=void 0)}setEventListener(e){this.#s=e,this.#i?.(),this.#i=e(e=>{"boolean"==typeof e?this.setFocused(e):this.onFocus()})}setFocused(e){this.#r!==e&&(this.#r=e,this.onFocus())}onFocus(){let e=this.isFocused();this.listeners.forEach(t=>{t(e)})}isFocused(){return"boolean"==typeof this.#r?this.#r:globalThis.document?.visibilityState!=="hidden"}};e.s(["focusManager",0,r],75555)},14448,93803,e=>{"use strict";var t=e.i(15823),r=new class extends t.Subscribable{#n=!0;#i;#s;constructor(){super(),this.#s=e=>{if("u">typeof window&&window.addEventListener){let t=()=>e(!0),r=()=>e(!1);return window.addEventListener("online",t,!1),window.addEventListener("offline",r,!1),()=>{window.removeEventListener("online",t),window.removeEventListener("offline",r)}}}}onSubscribe(){this.#i||this.setEventListener(this.#s)}onUnsubscribe(){this.hasListeners()||(this.#i?.(),this.#i=void 0)}setEventListener(e){this.#s=e,this.#i?.(),this.#i=e(this.setOnline.bind(this))}setOnline(e){this.#n!==e&&(this.#n=e,this.listeners.forEach(t=>{t(e)}))}isOnline(){return this.#n}};e.s(["onlineManager",0,r],14448),e.i(19273),e.s(["pendingThenable",0,function(){let e,t,r=new Promise((r,i)=>{e=r,t=i});function i(e){Object.assign(r,e),delete r.resolve,delete r.reject}return r.status="pending",r.catch(()=>{}),r.resolve=t=>{i({status:"fulfilled",value:t}),e(t)},r.reject=e=>{i({status:"rejected",reason:e}),t(e)},r}],93803)},73911,e=>{"use strict";let t;var r=e.i(19273),i=(t=()=>r.isServer,{isServer:()=>t(),setIsServer(e){t=e}});e.s(["environmentManager",0,i])},36553,e=>{"use strict";var t=e.i(75555),r=e.i(14448),i=e.i(93803),s=e.i(73911),n=e.i(19273);function a(e){return Math.min(1e3*2**e,3e4)}function o(e){return(e??"online")!=="online"||r.onlineManager.isOnline()}var u=class extends Error{constructor(e){super("CancelledError"),this.revert=e?.revert,this.silent=e?.silent}};e.s(["CancelledError",0,u,"canFetch",0,o,"createRetryer",0,function(e){let l,c=!1,h=0,d=(0,i.pendingThenable)(),f=()=>t.focusManager.isFocused()&&("always"===e.networkMode||r.onlineManager.isOnline())&&e.canRun(),p=()=>o(e.networkMode)&&e.canRun(),y=e=>{"pending"===d.status&&(l?.(),d.resolve(e))},m=e=>{"pending"===d.status&&(l?.(),d.reject(e))},g=()=>new Promise(t=>{l=e=>{("pending"!==d.status||f())&&t(e)},e.onPause?.()}).then(()=>{l=void 0,"pending"===d.status&&e.onContinue?.()}),v=()=>{let t;if("pending"!==d.status)return;let r=0===h?e.initialPromise:void 0;try{t=r??e.fn()}catch(e){t=Promise.reject(e)}Promise.resolve(t).then(y).catch(t=>{if("pending"!==d.status)return;let r=e.retry??3*!s.environmentManager.isServer(),i=e.retryDelay??a,o="function"==typeof i?i(h,t):i,u=!0===r||"number"==typeof r&&hf()?void 0:g()).then(()=>{c?m(t):v()}))})};return{promise:d,status:()=>d.status,cancel:t=>{if("pending"===d.status){let r=new u(t);m(r),e.onCancel?.(r)}},continue:()=>(l?.(),d),cancelRetry:()=>{c=!0},continueRetry:()=>{c=!1},canStart:p,start:()=>(p()?v():g().then(v),d)}}])},88587,e=>{"use strict";var t=e.i(80166),r=e.i(73911),i=e.i(19273),s=class{#a;destroy(){this.clearGcTimeout()}scheduleGc(){this.clearGcTimeout(),(0,i.isValidTimeout)(this.gcTime)&&(this.#a=t.timeoutManager.setTimeout(()=>{this.optionalRemove()},this.gcTime))}updateGcTime(e){this.gcTime=Math.max(this.gcTime||0,e??(r.environmentManager.isServer()?1/0:3e5))}clearGcTimeout(){void 0!==this.#a&&(t.timeoutManager.clearTimeout(this.#a),this.#a=void 0)}};e.s(["Removable",0,s])},86491,e=>{"use strict";e.i(47167);var t=e.i(19273),r=e.i(40143),i=e.i(36553),s=e.i(88587);function n(e,{pages:t,pageParams:r}){let i=t.length-1;return t.length>0?e.getNextPageParam(t[i],t,r[i],r):void 0}var a=class extends s.Removable{#o;#u;#l;#c;#h;#d;#f;#p;constructor(e){super(),this.#p=!1,this.#f=e.defaultOptions,this.setOptions(e.options),this.observers=[],this.#h=e.client,this.#c=this.#h.getQueryCache(),this.queryKey=e.queryKey,this.queryHash=e.queryHash,this.#u=l(this.options),this.state=e.state??this.#u,this.scheduleGc()}get meta(){return this.options.meta}get queryType(){return this.#o}get promise(){return this.#d?.promise}setOptions(e){if(this.options={...this.#f,...e},e?._type&&(this.#o=e._type),this.updateGcTime(this.options.gcTime),this.state&&void 0===this.state.data){let e=l(this.options);void 0!==e.data&&(this.setState(u(e.data,e.dataUpdatedAt)),this.#u=e)}}optionalRemove(){this.observers.length||"idle"!==this.state.fetchStatus||this.#c.remove(this)}setData(e,r){let i=(0,t.replaceData)(this.state.data,e,this.options);return this.#y({data:i,type:"success",dataUpdatedAt:r?.updatedAt,manual:r?.manual}),i}setState(e){this.#y({type:"setState",state:e})}cancel(e){let r=this.#d?.promise;return this.#d?.cancel(e),r?r.then(t.noop).catch(t.noop):Promise.resolve()}destroy(){super.destroy(),this.cancel({silent:!0})}get resetState(){return this.#u}reset(){this.destroy(),this.setState(this.resetState)}isActive(){return this.observers.some(e=>!1!==(0,t.resolveQueryBoolean)(e.options.enabled,this))}isDisabled(){return this.getObserversCount()>0?!this.isActive():this.options.queryFn===t.skipToken||!this.isFetched()}isFetched(){return this.state.dataUpdateCount+this.state.errorUpdateCount>0}isStatic(){return this.getObserversCount()>0&&this.observers.some(e=>"static"===(0,t.resolveStaleTime)(e.options.staleTime,this))}isStale(){return this.getObserversCount()>0?this.observers.some(e=>e.getCurrentResult().isStale):void 0===this.state.data||this.state.isInvalidated}isStaleByTime(e=0){return void 0===this.state.data||"static"!==e&&(!!this.state.isInvalidated||!(0,t.timeUntilStale)(this.state.dataUpdatedAt,e))}onFocus(){let e=this.observers.find(e=>e.shouldFetchOnWindowFocus());e?.refetch({cancelRefetch:!1}),this.#d?.continue()}onOnline(){let e=this.observers.find(e=>e.shouldFetchOnReconnect());e?.refetch({cancelRefetch:!1}),this.#d?.continue()}addObserver(e){this.observers.includes(e)||(this.observers.push(e),this.clearGcTimeout(),this.#c.notify({type:"observerAdded",query:this,observer:e}))}removeObserver(e){this.observers.includes(e)&&(this.observers=this.observers.filter(t=>t!==e),this.observers.length||(this.#d&&(this.#p||this.#m()?this.#d.cancel({revert:!0}):this.#d.cancelRetry()),this.scheduleGc()),this.#c.notify({type:"observerRemoved",query:this,observer:e}))}getObserversCount(){return this.observers.length}#m(){return"paused"===this.state.fetchStatus&&"pending"===this.state.status}invalidate(){this.state.isInvalidated||this.#y({type:"invalidate"})}async fetch(e,r){var s;let a;if("idle"!==this.state.fetchStatus&&this.#d?.status()!=="rejected"){if(void 0!==this.state.data&&r?.cancelRefetch)this.cancel({silent:!0});else if(this.#d)return this.#d.continueRetry(),this.#d.promise}if(e&&this.setOptions(e),!this.options.queryFn){let e=this.observers.find(e=>e.options.queryFn);e&&this.setOptions(e.options)}let o=new AbortController,u=e=>{Object.defineProperty(e,"signal",{enumerable:!0,get:()=>(this.#p=!0,o.signal)})},l=()=>{let e,i=(0,t.ensureQueryFn)(this.options,r),s=(u(e={client:this.#h,queryKey:this.queryKey,meta:this.meta}),e);return(this.#p=!1,this.options.persister)?this.options.persister(i,s,this):i(s)},c=(u(a={fetchOptions:r,options:this.options,queryKey:this.queryKey,client:this.#h,state:this.state,fetchFn:l}),a),h="infinite"===this.#o?(s=this.options.pages,{onFetch:(e,r)=>{let i=e.options,a=e.fetchOptions?.meta?.fetchMore?.direction,o=e.state.data?.pages||[],u=e.state.data?.pageParams||[],l={pages:[],pageParams:[]},c=0,h=async()=>{let r=!1,h=(0,t.ensureQueryFn)(e.options,e.fetchOptions),d=async(i,s,n)=>{let a;if(r)return Promise.reject(e.signal.reason);if(null==s&&i.pages.length)return Promise.resolve(i);let o=(a={client:e.client,queryKey:e.queryKey,pageParam:s,direction:n?"backward":"forward",meta:e.options.meta},(0,t.addConsumeAwareSignal)(a,()=>e.signal,()=>r=!0),a),u=await h(o),{maxPages:l}=e.options,c=n?t.addToStart:t.addToEnd;return{pages:c(i.pages,u,l),pageParams:c(i.pageParams,s,l)}};if(a&&o.length){let e="backward"===a,t={pages:o,pageParams:u},r=(e?function(e,{pages:t,pageParams:r}){return t.length>0?e.getPreviousPageParam?.(t[0],t,r[0],r):void 0}:n)(i,t);l=await d(t,r,e)}else{let e=s??o.length;do{let e=0===c?u[0]??i.initialPageParam:n(i,l);if(c>0&&null==e)break;l=await d(l,e),c++}while(ce.options.persister?.(h,{client:e.client,queryKey:e.queryKey,meta:e.options.meta,signal:e.signal},r):e.fetchFn=h}}):this.options.behavior;h?.onFetch(c,this),this.#l=this.state,("idle"===this.state.fetchStatus||this.state.fetchMeta!==c.fetchOptions?.meta)&&this.#y({type:"fetch",meta:c.fetchOptions?.meta}),this.#d=(0,i.createRetryer)({initialPromise:r?.initialPromise,fn:c.fetchFn,onCancel:e=>{e instanceof i.CancelledError&&e.revert&&this.setState({...this.#l,fetchStatus:"idle"}),o.abort()},onFail:(e,t)=>{this.#y({type:"failed",failureCount:e,error:t})},onPause:()=>{this.#y({type:"pause"})},onContinue:()=>{this.#y({type:"continue"})},retry:c.options.retry,retryDelay:c.options.retryDelay,networkMode:c.options.networkMode,canRun:()=>!0});try{let e=await this.#d.start();if(void 0===e)throw Error(`${this.queryHash} data is undefined`);return this.setData(e),this.#c.config.onSuccess?.(e,this),this.#c.config.onSettled?.(e,this.state.error,this),e}catch(e){if(e instanceof i.CancelledError){if(e.silent)return this.#d.promise;else if(e.revert){if(void 0===this.state.data)throw e;return this.state.data}}throw this.#y({type:"error",error:e}),this.#c.config.onError?.(e,this),this.#c.config.onSettled?.(this.state.data,e,this),e}finally{this.scheduleGc()}}#y(e){let t=t=>{switch(e.type){case"failed":return{...t,fetchFailureCount:e.failureCount,fetchFailureReason:e.error};case"pause":return{...t,fetchStatus:"paused"};case"continue":return{...t,fetchStatus:"fetching"};case"fetch":return{...t,...o(t.data,this.options),fetchMeta:e.meta??null};case"success":let r={...t,...u(e.data,e.dataUpdatedAt),dataUpdateCount:t.dataUpdateCount+1,...!e.manual&&{fetchStatus:"idle",fetchFailureCount:0,fetchFailureReason:null}};return this.#l=e.manual?r:void 0,r;case"error":let i=e.error;return{...t,error:i,errorUpdateCount:t.errorUpdateCount+1,errorUpdatedAt:Date.now(),fetchFailureCount:t.fetchFailureCount+1,fetchFailureReason:i,fetchStatus:"idle",status:"error",isInvalidated:!0};case"invalidate":return{...t,isInvalidated:!0};case"setState":return{...t,...e.state}}};this.state=t(this.state),r.notifyManager.batch(()=>{this.observers.forEach(e=>{e.onQueryUpdate()}),this.#c.notify({query:this,type:"updated",action:e})})}};function o(e,t){return{fetchFailureCount:0,fetchFailureReason:null,fetchStatus:(0,i.canFetch)(t.networkMode)?"fetching":"paused",...void 0===e&&{error:null,status:"pending"}}}function u(e,t){return{data:e,dataUpdatedAt:t??Date.now(),error:null,isInvalidated:!1,status:"success"}}function l(e){let t="function"==typeof e.initialData?e.initialData():e.initialData,r=void 0!==t,i=r?"function"==typeof e.initialDataUpdatedAt?e.initialDataUpdatedAt():e.initialDataUpdatedAt:0;return{data:t,dataUpdateCount:0,dataUpdatedAt:r?i??Date.now():0,error:null,errorUpdateCount:0,errorUpdatedAt:0,fetchFailureCount:0,fetchFailureReason:null,fetchMeta:null,isInvalidated:!1,status:r?"success":"pending",fetchStatus:"idle"}}e.s(["Query",0,a,"fetchState",0,o],86491)},12598,e=>{"use strict";var t=e.i(71645),r=e.i(43476),i=t.createContext(void 0);e.s(["QueryClientProvider",0,({client:e,children:s})=>(t.useEffect(()=>(e.mount(),()=>{e.unmount()}),[e]),(0,r.jsx)(i.Provider,{value:e,children:s})),"useQueryClient",0,e=>{let r=t.useContext(i);if(e)return e;if(!r)throw Error("No QueryClient set, use QueryClientProvider to set one");return r}])},14272,e=>{"use strict";var t=e.i(40143),r=e.i(88587),i=e.i(36553),s=class extends r.Removable{#h;#g;#v;#d;constructor(e){super(),this.#h=e.client,this.mutationId=e.mutationId,this.#v=e.mutationCache,this.#g=[],this.state=e.state||n(),this.setOptions(e.options),this.scheduleGc()}setOptions(e){this.options=e,this.updateGcTime(this.options.gcTime)}get meta(){return this.options.meta}addObserver(e){this.#g.includes(e)||(this.#g.push(e),this.clearGcTimeout(),this.#v.notify({type:"observerAdded",mutation:this,observer:e}))}removeObserver(e){this.#g=this.#g.filter(t=>t!==e),this.scheduleGc(),this.#v.notify({type:"observerRemoved",mutation:this,observer:e})}optionalRemove(){this.#g.length||("pending"===this.state.status?this.scheduleGc():this.#v.remove(this))}continue(){return this.#d?.continue()??this.execute(this.state.variables)}async execute(e){let t=()=>{this.#y({type:"continue"})},r={client:this.#h,meta:this.options.meta,mutationKey:this.options.mutationKey};this.#d=(0,i.createRetryer)({fn:()=>this.options.mutationFn?this.options.mutationFn(e,r):Promise.reject(Error("No mutationFn found")),onFail:(e,t)=>{this.#y({type:"failed",failureCount:e,error:t})},onPause:()=>{this.#y({type:"pause"})},onContinue:t,retry:this.options.retry??0,retryDelay:this.options.retryDelay,networkMode:this.options.networkMode,canRun:()=>this.#v.canRun(this)});let s="pending"===this.state.status,n=!this.#d.canStart();try{if(s)t();else{this.#y({type:"pending",variables:e,isPaused:n}),this.#v.config.onMutate&&await this.#v.config.onMutate(e,this,r);let t=await this.options.onMutate?.(e,r);t!==this.state.context&&this.#y({type:"pending",context:t,variables:e,isPaused:n})}let i=await this.#d.start();return await this.#v.config.onSuccess?.(i,e,this.state.context,this,r),await this.options.onSuccess?.(i,e,this.state.context,r),await this.#v.config.onSettled?.(i,null,this.state.variables,this.state.context,this,r),await this.options.onSettled?.(i,null,e,this.state.context,r),this.#y({type:"success",data:i}),i}catch(t){try{await this.#v.config.onError?.(t,e,this.state.context,this,r)}catch(e){Promise.reject(e)}try{await this.options.onError?.(t,e,this.state.context,r)}catch(e){Promise.reject(e)}try{await this.#v.config.onSettled?.(void 0,t,this.state.variables,this.state.context,this,r)}catch(e){Promise.reject(e)}try{await this.options.onSettled?.(void 0,t,e,this.state.context,r)}catch(e){Promise.reject(e)}throw this.#y({type:"error",error:t}),t}finally{this.#v.runNext(this)}}#y(e){this.state=(t=>{switch(e.type){case"failed":return{...t,failureCount:e.failureCount,failureReason:e.error};case"pause":return{...t,isPaused:!0};case"continue":return{...t,isPaused:!1};case"pending":return{...t,context:e.context,data:void 0,failureCount:0,failureReason:null,error:null,isPaused:e.isPaused,status:"pending",variables:e.variables,submittedAt:Date.now()};case"success":return{...t,data:e.data,failureCount:0,failureReason:null,error:null,status:"success",isPaused:!1};case"error":return{...t,data:void 0,error:e.error,failureCount:t.failureCount+1,failureReason:e.error,isPaused:!1,status:"error"}}})(this.state),t.notifyManager.batch(()=>{this.#g.forEach(t=>{t.onMutationUpdate(e)}),this.#v.notify({mutation:this,type:"updated",action:e})})}};function n(){return{context:void 0,data:void 0,error:null,failureCount:0,failureReason:null,isPaused:!1,status:"idle",variables:void 0,submittedAt:0}}e.s(["Mutation",0,s,"getDefaultState",0,n])},18581,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"useMergedRef",{enumerable:!0,get:function(){return s}});let i=e.r(71645);function s(e,t){let r=(0,i.useRef)(null),s=(0,i.useRef)(null);return(0,i.useCallback)(i=>{if(null===i){let e=r.current;e&&(r.current=null,e());let t=s.current;t&&(s.current=null,t())}else e&&(r.current=n(e,i)),t&&(s.current=n(t,i))},[e,t])}function n(e,t){if("function"!=typeof e)return e.current=t,()=>{e.current=null};{let r=e(t);return"function"==typeof r?r:()=>e(null)}}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},95057,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var i={formatUrl:function(){return o},formatWithValidation:function(){return l},urlObjectKeys:function(){return u}};for(var s in i)Object.defineProperty(r,s,{enumerable:!0,get:i[s]});let n=e.r(90809)._(e.r(98183)),a=/https?|ftp|gopher|file/;function o(e){let{auth:t,hostname:r}=e,i=e.protocol||"",s=e.pathname||"",o=e.hash||"",u=e.query||"",l=!1;t=t?encodeURIComponent(t).replace(/%3A/i,":")+"@":"",e.host?l=t+e.host:r&&(l=t+(~r.indexOf(":")?`[${r}]`:r),e.port&&(l+=":"+e.port)),u&&"object"==typeof u&&(u=String(n.urlQueryToSearchParams(u)));let c=e.search||u&&`?${u}`||"";return i&&!i.endsWith(":")&&(i+=":"),e.slashes||(!i||a.test(i))&&!1!==l?(l="//"+(l||""),s&&"/"!==s[0]&&(s="/"+s)):l||(l=""),o&&"#"!==o[0]&&(o="#"+o),c&&"?"!==c[0]&&(c="?"+c),s=s.replace(/[?#]/g,encodeURIComponent),c=c.replace("#","%23"),`${i}${l}${s}${c}${o}`}let u=["auth","hash","host","hostname","href","path","pathname","port","protocol","query","search","slashes"];function l(e){return o(e)}},73668,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"isLocalURL",{enumerable:!0,get:function(){return n}});let i=e.r(18967),s=e.r(52817);function n(e){if(!(0,i.isAbsoluteUrl)(e))return!0;try{let t=(0,i.getLocationOrigin)(),r=new URL(e,t);return r.origin===t&&(0,s.hasBasePath)(r.pathname)}catch(e){return!1}}},84508,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"errorOnce",{enumerable:!0,get:function(){return i}});let i=e=>{}},22016,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var i={default:function(){return g},useLinkStatus:function(){return b}};for(var s in i)Object.defineProperty(r,s,{enumerable:!0,get:i[s]});let n=e.r(90809),a=e.r(43476),o=n._(e.r(71645)),u=e.r(95057),l=e.r(8372),c=e.r(18581),h=e.r(18967),d=e.r(5550);e.r(33525);let f=e.r(88540),p=e.r(91949),y=e.r(73668),m=e.r(9396);function g(t){var r,i;let s,n,g,[b,w]=(0,o.useOptimistic)(p.IDLE_LINK_STATUS),x=(0,o.useRef)(null),{href:C,as:O,children:S,prefetch:P=null,passHref:j,replace:M,shallow:k,scroll:_,onClick:E,onMouseEnter:q,onTouchStart:R,legacyBehavior:T=!1,onNavigate:A,transitionTypes:D,ref:F,unstable_dynamicOnHover:I,...Q}=t;s=S,T&&("string"==typeof s||"number"==typeof s)&&(s=(0,a.jsx)("a",{children:s}));let U=o.default.useContext(l.AppRouterContext),N=!1!==P,L=!1!==P?null===(i=P)||"auto"===i?m.FetchStrategy.PPR:m.FetchStrategy.Full:m.FetchStrategy.PPR,$="string"==typeof(r=O||C)?r:(0,u.formatUrl)(r);if(T){if(s?.$$typeof===Symbol.for("react.lazy"))throw Object.defineProperty(Error("`` received a direct child that is either a Server Component, or JSX that was loaded with React.lazy(). This is not supported. Either remove legacyBehavior, or make the direct child a Client Component that renders the Link's `` tag."),"__NEXT_ERROR_CODE",{value:"E863",enumerable:!1,configurable:!0});n=o.default.Children.only(s)}let z=T?n&&"object"==typeof n&&n.ref:F,K=o.default.useCallback(e=>(null!==U&&(x.current=(0,p.mountLinkInstance)(e,$,U,L,N,w)),()=>{x.current&&((0,p.unmountLinkForCurrentNavigation)(x.current),x.current=null),(0,p.unmountPrefetchableInstance)(e)}),[N,$,U,L,w]),B={ref:(0,c.useMergedRef)(K,z),onClick(t){T||"function"!=typeof E||E(t),T&&n.props&&"function"==typeof n.props.onClick&&n.props.onClick(t),!U||t.defaultPrevented||function(t,r,i,s,n,a,u){if("u">typeof window){let l,{nodeName:c}=t.currentTarget;if("A"===c.toUpperCase()&&((l=t.currentTarget.getAttribute("target"))&&"_self"!==l||t.metaKey||t.ctrlKey||t.shiftKey||t.altKey||t.nativeEvent&&2===t.nativeEvent.which)||t.currentTarget.hasAttribute("download"))return;if(!(0,y.isLocalURL)(r)){s&&(t.preventDefault(),location.replace(r));return}if(t.preventDefault(),a){let e=!1;if(a({preventDefault:()=>{e=!0}}),e)return}let{dispatchNavigateAction:h}=e.r(99781);o.default.startTransition(()=>{h(r,s?"replace":"push",!1===n?f.ScrollBehavior.NoScroll:f.ScrollBehavior.Default,i.current,u)})}}(t,$,x,M,_,A,D)},onMouseEnter(e){T||"function"!=typeof q||q(e),T&&n.props&&"function"==typeof n.props.onMouseEnter&&n.props.onMouseEnter(e),U&&N&&(0,p.onNavigationIntent)(e.currentTarget,!0===I)},onTouchStart:function(e){T||"function"!=typeof R||R(e),T&&n.props&&"function"==typeof n.props.onTouchStart&&n.props.onTouchStart(e),U&&N&&(0,p.onNavigationIntent)(e.currentTarget,!0===I)}};return(0,h.isAbsoluteUrl)($)?B.href=$:T&&!j&&("a"!==n.type||"href"in n.props)||(B.href=(0,d.addBasePath)($)),g=T?o.default.cloneElement(n,B):(0,a.jsx)("a",{...Q,...B,children:s}),(0,a.jsx)(v.Provider,{value:b,children:g})}e.r(84508);let v=(0,o.createContext)(p.IDLE_LINK_STATUS),b=()=>(0,o.useContext)(v);("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},88143,(e,t,r)=>{"use strict";function i({widthInt:e,heightInt:t,blurWidth:r,blurHeight:s,blurDataURL:n,objectFit:a}){let o=r?40*r:e,u=s?40*s:t,l=o&&u?`viewBox='0 0 ${o} ${u}'`:"";return`%3Csvg xmlns='http://www.w3.org/2000/svg' ${l}%3E%3Cfilter id='b' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='20'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 100 -1' result='s'/%3E%3CfeFlood x='0' y='0' width='100%25' height='100%25'/%3E%3CfeComposite operator='out' in='s'/%3E%3CfeComposite in2='SourceGraphic'/%3E%3CfeGaussianBlur stdDeviation='20'/%3E%3C/filter%3E%3Cimage width='100%25' height='100%25' x='0' y='0' preserveAspectRatio='${l?"none":"contain"===a?"xMidYMid":"cover"===a?"xMidYMid slice":"none"}' style='filter: url(%23b);' href='${n}'/%3E%3C/svg%3E`}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"getImageBlurSvg",{enumerable:!0,get:function(){return i}})},87690,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var i={VALID_LOADERS:function(){return n},imageConfigDefault:function(){return a}};for(var s in i)Object.defineProperty(r,s,{enumerable:!0,get:i[s]});let n=["default","imgix","cloudinary","akamai","custom"],a={deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],path:"/_next/image",loader:"default",loaderFile:"",domains:[],disableStaticImages:!1,minimumCacheTTL:14400,formats:["image/webp"],maximumDiskCacheSize:void 0,maximumRedirects:3,maximumResponseBody:5e7,dangerouslyAllowLocalIP:!1,dangerouslyAllowSVG:!1,contentSecurityPolicy:"script-src 'none'; frame-src 'none'; sandbox;",contentDispositionType:"attachment",localPatterns:void 0,remotePatterns:[],qualities:[75],unoptimized:!1,customCacheHandler:!1}},8927,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"getImgProps",{enumerable:!0,get:function(){return l}}),e.r(33525);let i=e.r(43369),s=e.r(88143),n=e.r(87690),a=["-moz-initial","fill","none","scale-down",void 0];function o(e){return void 0!==e.default}function u(e){return void 0===e?e:"number"==typeof e?Number.isFinite(e)?e:NaN:"string"==typeof e&&/^[0-9]+$/.test(e)?parseInt(e,10):NaN}function l({src:e,sizes:t,unoptimized:r=!1,priority:c=!1,preload:h=!1,loading:d,className:f,quality:p,width:y,height:m,fill:g=!1,style:v,overrideSrc:b,onLoad:w,onLoadingComplete:x,placeholder:C="empty",blurDataURL:O,fetchPriority:S,decoding:P="async",layout:j,objectFit:M,objectPosition:k,lazyBoundary:_,lazyRoot:E,...q},R){var T;let A,D,F,{imgConf:I,showAltText:Q,blurComplete:U,defaultLoader:N}=R,L=I||n.imageConfigDefault;if("allSizes"in L)A=L;else{let e=[...L.deviceSizes,...L.imageSizes].sort((e,t)=>e-t),t=L.deviceSizes.sort((e,t)=>e-t),r=L.qualities?.sort((e,t)=>e-t);A={...L,allSizes:e,deviceSizes:t,qualities:r}}if(void 0===N)throw Object.defineProperty(Error("images.loaderFile detected but the file is missing default export.\nRead more: https://nextjs.org/docs/messages/invalid-images-config"),"__NEXT_ERROR_CODE",{value:"E163",enumerable:!1,configurable:!0});let $=q.loader||N;delete q.loader,delete q.srcSet;let z="__next_img_default"in $;if(z){if("custom"===A.loader)throw Object.defineProperty(Error(`Image with src "${e}" is missing "loader" prop. -Read more: https://nextjs.org/docs/messages/next-image-missing-loader`),"__NEXT_ERROR_CODE",{value:"E252",enumerable:!1,configurable:!0})}else{let e=$;$=t=>{let{config:r,...i}=t;return e(i)}}if(j){"fill"===j&&(g=!0);let e={intrinsic:{maxWidth:"100%",height:"auto"},responsive:{width:"100%",height:"auto"}}[j];e&&(v={...v,...e});let r={responsive:"100vw",fill:"100vw"}[j];r&&!t&&(t=r)}let K="",B=u(y),H=u(m);if((T=e)&&"object"==typeof T&&(o(T)||void 0!==T.src)){let t=o(e)?e.default:e;if(!t.src)throw Object.defineProperty(Error(`An object should only be passed to the image component src parameter if it comes from a static image import. It must include src. Received ${JSON.stringify(t)}`),"__NEXT_ERROR_CODE",{value:"E460",enumerable:!1,configurable:!0});if(!t.height||!t.width)throw Object.defineProperty(Error(`An object should only be passed to the image component src parameter if it comes from a static image import. It must include height and width. Received ${JSON.stringify(t)}`),"__NEXT_ERROR_CODE",{value:"E48",enumerable:!1,configurable:!0});if(D=t.blurWidth,F=t.blurHeight,O=O||t.blurDataURL,K=t.src,!g)if(B||H){if(B&&!H){let e=B/t.width;H=Math.round(t.height*e)}else if(!B&&H){let e=H/t.height;B=Math.round(t.width*e)}}else B=t.width,H=t.height}let G=!c&&!h&&("lazy"===d||void 0===d);(!(e="string"==typeof e?e:K)||e.startsWith("data:")||e.startsWith("blob:"))&&(r=!0,G=!1),A.unoptimized&&(r=!0),z&&!A.dangerouslyAllowSVG&&e.split("?",1)[0].endsWith(".svg")&&(r=!0);let V=u(p),W=Object.assign(g?{position:"absolute",height:"100%",width:"100%",left:0,top:0,right:0,bottom:0,objectFit:M,objectPosition:k}:{},Q?{}:{color:"transparent"},v),X=U||"empty"===C?null:"blur"===C?`url("data:image/svg+xml;charset=utf-8,${(0,s.getImageBlurSvg)({widthInt:B,heightInt:H,blurWidth:D,blurHeight:F,blurDataURL:O||"",objectFit:W.objectFit})}")`:`url("${C}")`,J=a.includes(W.objectFit)?"fill"===W.objectFit?"100% 100%":"cover":W.objectFit,Z=X?{backgroundSize:J,backgroundPosition:W.objectPosition||"50% 50%",backgroundRepeat:"no-repeat",backgroundImage:X}:{},Y=function({config:e,src:t,unoptimized:r,width:s,quality:n,sizes:a,loader:o}){if(r){if(t.startsWith("/")&&!t.startsWith("//")){let e=(0,i.getDeploymentId)();if(e){let r=t.indexOf("?");if(-1!==r){let i=new URLSearchParams(t.slice(r+1));i.get("dpl")||(i.append("dpl",e),t=t.slice(0,r)+"?"+i.toString())}else t+=`?dpl=${e}`}}return{src:t,srcSet:void 0,sizes:void 0}}let{widths:u,kind:l}=function({deviceSizes:e,allSizes:t},r,i){if(i){let r=/(^|\s)(1?\d?\d)vw/g,s=[];for(let e;e=r.exec(i);)s.push(parseInt(e[2]));if(s.length){let r=.01*Math.min(...s);return{widths:t.filter(t=>t>=e[0]*r),kind:"w"}}return{widths:t,kind:"w"}}return"number"!=typeof r?{widths:e,kind:"w"}:{widths:[...new Set([r,2*r].map(e=>t.find(t=>t>=e)||t[t.length-1]))],kind:"x"}}(e,s,a),c=u.length-1;return{sizes:a||"w"!==l?a:"100vw",srcSet:u.map((r,i)=>`${o({config:e,src:t,quality:n,width:r})} ${"w"===l?r:i+1}${l}`).join(", "),src:o({config:e,src:t,quality:n,width:u[c]})}}({config:A,src:e,unoptimized:r,width:B,quality:V,sizes:t,loader:$}),ee=G?"lazy":d;return{props:{...q,loading:ee,fetchPriority:S,width:B,height:H,decoding:P,className:f,style:{...W,...Z},sizes:Y.sizes,srcSet:Y.srcSet,src:b||Y.src},meta:{unoptimized:r,preload:h||c,placeholder:C,fill:g}}}},98879,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"default",{enumerable:!0,get:function(){return o}});let i=e.r(71645),s="u"{}:i.useLayoutEffect,a=s?()=>{}:i.useEffect;function o(e){let{headManager:t,reduceComponentsToState:r}=e;function o(){if(t&&t.mountedInstances){let e=i.Children.toArray(Array.from(t.mountedInstances).filter(Boolean));t.updateHead(r(e))}}return s&&(t?.mountedInstances?.add(e.children),o()),n(()=>(t?.mountedInstances?.add(e.children),()=>{t?.mountedInstances?.delete(e.children)})),n(()=>(t&&(t._pendingUpdate=o),()=>{t&&(t._pendingUpdate=o)})),a(()=>(t&&t._pendingUpdate&&(t._pendingUpdate(),t._pendingUpdate=null),()=>{t&&t._pendingUpdate&&(t._pendingUpdate(),t._pendingUpdate=null)})),null}},25633,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var i={default:function(){return y},defaultHead:function(){return h}};for(var s in i)Object.defineProperty(r,s,{enumerable:!0,get:i[s]});let n=e.r(55682),a=e.r(90809),o=e.r(43476),u=a._(e.r(71645)),l=n._(e.r(98879)),c=e.r(42732);function h(){return[(0,o.jsx)("meta",{charSet:"utf-8"},"charset"),(0,o.jsx)("meta",{name:"viewport",content:"width=device-width"},"viewport")]}function d(e,t){return"string"==typeof t||"number"==typeof t?e:t.type===u.default.Fragment?e.concat(u.default.Children.toArray(t.props.children).reduce((e,t)=>"string"==typeof t||"number"==typeof t?e:e.concat(t),[])):e.concat(t)}e.r(33525);let f=["name","httpEquiv","charSet","itemProp"];function p(e){let t,r,i,s;return e.reduce(d,[]).reverse().concat(h().reverse()).filter((t=new Set,r=new Set,i=new Set,s={},e=>{let n=!0,a=!1;if(e.key&&"number"!=typeof e.key&&e.key.indexOf("$")>0){a=!0;let r=e.key.slice(e.key.indexOf("$")+1);t.has(r)?n=!1:t.add(r)}switch(e.type){case"title":case"base":r.has(e.type)?n=!1:r.add(e.type);break;case"meta":for(let t=0,r=f.length;t{let r=e.key||t;return u.default.cloneElement(e,{key:r})})}let y=function({children:e}){let t=(0,u.useContext)(c.HeadManagerContext);return(0,o.jsx)(l.default,{reduceComponentsToState:p,headManager:t,children:e})};("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},18556,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"ImageConfigContext",{enumerable:!0,get:function(){return n}});let i=e.r(55682)._(e.r(71645)),s=e.r(87690),n=i.default.createContext(s.imageConfigDefault)},65856,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"RouterContext",{enumerable:!0,get:function(){return i}});let i=e.r(55682)._(e.r(71645)).default.createContext(null)},70965,(e,t,r)=>{"use strict";function i(e,t){let r=e||75;return t?.qualities?.length?t.qualities.reduce((e,t)=>Math.abs(t-r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"default",{enumerable:!0,get:function(){return a}});let i=e.r(70965),s=e.r(43369);function n({config:e,src:t,width:r,quality:a}){let o=(0,s.getDeploymentId)();if(t.startsWith("/")&&!t.startsWith("//")){let e=t.indexOf("?");if(-1!==e){let r=new URLSearchParams(t.slice(e+1)),i=r.get("dpl");if(i){o=i,r.delete("dpl");let s=r.toString();t=t.slice(0,e)+(s?"?"+s:"")}}}if(t.startsWith("/")&&t.includes("?")&&e.localPatterns?.length===1&&"**"===e.localPatterns[0].pathname&&""===e.localPatterns[0].search)throw Object.defineProperty(Error(`Image with src "${t}" is using a query string which is not configured in images.localPatterns. -Read more: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`),"__NEXT_ERROR_CODE",{value:"E871",enumerable:!1,configurable:!0});let u=(0,i.findClosestQuality)(a,e);return`${e.path}?url=${encodeURIComponent(t)}&w=${r}&q=${u}${t.startsWith("/")&&o?`&dpl=${o}`:""}`}n.__next_img_default=!0;let a=n},5500,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"Image",{enumerable:!0,get:function(){return w}});let i=e.r(55682),s=e.r(90809),n=e.r(43476),a=s._(e.r(71645)),o=i._(e.r(74080)),u=i._(e.r(25633)),l=e.r(8927),c=e.r(87690),h=e.r(18556);e.r(33525);let d=e.r(65856),f=i._(e.r(1948)),p=e.r(18581),y={deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],qualities:[75],path:"/_next/image",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!1};function m(e,t,r,i,s,n,a){let o=e?.src;e&&e["data-loaded-src"]!==o&&(e["data-loaded-src"]=o,("decode"in e?e.decode():Promise.resolve()).catch(()=>{}).then(()=>{if(e.parentElement&&e.isConnected){if("empty"!==t&&s(!0),r?.current){let t=new Event("load");Object.defineProperty(t,"target",{writable:!1,value:e});let i=!1,s=!1;r.current({...t,nativeEvent:t,currentTarget:e,target:e,isDefaultPrevented:()=>i,isPropagationStopped:()=>s,persist:()=>{},preventDefault:()=>{i=!0,t.preventDefault()},stopPropagation:()=>{s=!0,t.stopPropagation()}})}i?.current&&i.current(e)}}))}function g(e){return a.use?{fetchPriority:e}:{fetchpriority:e}}"u"{let M=(0,a.useCallback)(e=>{e&&(S&&(e.src=e.src),e.complete&&m(e,h,v,b,w,f,C))},[e,h,v,b,w,S,f,C]),k=(0,p.useMergedRef)(j,M);return(0,n.jsx)("img",{...P,...g(c),loading:d,width:s,height:i,decoding:o,"data-nimg":y?"fill":"1",className:u,style:l,sizes:r,srcSet:t,src:e,ref:k,onLoad:e=>{m(e.currentTarget,h,v,b,w,f,C)},onError:e=>{x(!0),"empty"!==h&&w(!0),S&&S(e)}})});function b({isAppRouter:e,imgAttributes:t}){let r={as:"image",imageSrcSet:t.srcSet,imageSizes:t.sizes,crossOrigin:t.crossOrigin,referrerPolicy:t.referrerPolicy,...g(t.fetchPriority)};return e&&o.default.preload?(o.default.preload(t.src,r),null):(0,n.jsx)(u.default,{children:(0,n.jsx)("link",{rel:"preload",href:t.srcSet?void 0:t.src,...r},"__nimg-"+t.src+t.srcSet+t.sizes)})}let w=(0,a.forwardRef)((e,t)=>{let r=(0,a.useContext)(d.RouterContext),i=(0,a.useContext)(h.ImageConfigContext),s=(0,a.useMemo)(()=>{let e=y||i||c.imageConfigDefault,t=[...e.deviceSizes,...e.imageSizes].sort((e,t)=>e-t),r=e.deviceSizes.sort((e,t)=>e-t),s=e.qualities?.sort((e,t)=>e-t);return{...e,allSizes:t,deviceSizes:r,qualities:s,localPatterns:"u"{p.current=o},[o]);let m=(0,a.useRef)(u);(0,a.useEffect)(()=>{m.current=u},[u]);let[g,w]=(0,a.useState)(!1),[x,C]=(0,a.useState)(!1),{props:O,meta:S}=(0,l.getImgProps)(e,{defaultLoader:f.default,imgConf:s,blurComplete:g,showAltText:x});return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(v,{...O,unoptimized:S.unoptimized,placeholder:S.placeholder,fill:S.fill,onLoadRef:p,onLoadingCompleteRef:m,setBlurComplete:w,setShowAltText:C,sizesInput:e.sizes,ref:t}),S.preload?(0,n.jsx)(b,{isAppRouter:!r,imgAttributes:O}):null]})});("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},94909,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var i={default:function(){return c},getImageProps:function(){return l}};for(var s in i)Object.defineProperty(r,s,{enumerable:!0,get:i[s]});let n=e.r(55682),a=e.r(8927),o=e.r(5500),u=n._(e.r(1948));function l(e){let{props:t}=(0,a.getImgProps)(e,{defaultLoader:u.default,imgConf:{deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],qualities:[75],path:"/_next/image",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!1}});for(let[e,r]of Object.entries(t))void 0===r&&delete t[e];return{props:t}}let c=o.Image},57688,(e,t,r)=>{t.exports=e.r(94909)},82649,e=>{"use strict";var t=e.i(43476),r=e.i(57688);e.s(["BrandLogo",0,function({compact:e=!1}){return(0,t.jsx)("div",{className:"flex items-center gap-3",children:(0,t.jsx)(r.default,{src:"/schubamed-logo.svg",alt:"SCHUBAMED Validation Suite",width:e?180:240,height:64,priority:!0})})}])},94827,20286,e=>{"use strict";var t=e.i(75254);let r=(0,t.default)("Gauge",[["path",{d:"m12 14 4-4",key:"9kzdfg"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0",key:"19p75a"}]]);e.s(["Gauge",0,r],94827);let i=(0,t.default)("Stethoscope",[["path",{d:"M11 2v2",key:"1539x4"}],["path",{d:"M5 2v2",key:"1yf1q8"}],["path",{d:"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1",key:"rb5t3r"}],["path",{d:"M8 15a6 6 0 0 0 12 0v-3",key:"x18d4x"}],["circle",{cx:"20",cy:"10",r:"2",key:"ts1r5v"}]]);e.s(["Stethoscope",0,i],20286)},48026,e=>{"use strict";var t=e.i(43476),r=e.i(75254);let i=(0,r.default)("Building2",[["path",{d:"M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18Z",key:"1b4qmf"}],["path",{d:"M6 12H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2",key:"i71pzd"}],["path",{d:"M18 9h2a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-2",key:"10jefs"}],["path",{d:"M10 6h4",key:"1itunk"}],["path",{d:"M10 10h4",key:"tcdvrf"}],["path",{d:"M10 14h4",key:"kelpxr"}],["path",{d:"M10 18h4",key:"1ulq68"}]]),s=(0,r.default)("ClipboardCheck",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"m9 14 2 2 4-4",key:"df797q"}]]),n=(0,r.default)("ClipboardPlus",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M9 14h6",key:"159ibu"}],["path",{d:"M12 17v-6",key:"1y8rbf"}]]),a=(0,r.default)("FileArchive",[["path",{d:"M10 12v-1",key:"v7bkov"}],["path",{d:"M10 18v-2",key:"1cjy8d"}],["path",{d:"M10 7V6",key:"dljcrl"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M15.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 .274 1.01",key:"gkbcor"}],["circle",{cx:"10",cy:"20",r:"2",key:"1xzdoj"}]]),o=(0,r.default)("FileCog",[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m3.2 12.9-.9-.4",key:"1i3dj5"}],["path",{d:"m3.2 15.1-.9.4",key:"1fvgj0"}],["path",{d:"M4.677 21.5a2 2 0 0 0 1.313.5H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2.5",key:"1yo3oz"}],["path",{d:"m4.9 11.2-.4-.9",key:"otmhb9"}],["path",{d:"m4.9 16.8-.4.9",key:"1b8z07"}],["path",{d:"m7.5 10.3-.4.9",key:"11k65u"}],["path",{d:"m7.5 17.7-.4-.9",key:"431x55"}],["path",{d:"m9.7 12.5-.9.4",key:"87sjan"}],["path",{d:"m9.7 15.5-.9-.4",key:"khqm91"}],["circle",{cx:"6",cy:"14",r:"3",key:"a1xfv6"}]]);var u=e.i(94827);let l=(0,r.default)("LayoutDashboard",[["rect",{width:"7",height:"9",x:"3",y:"3",rx:"1",key:"10lvy0"}],["rect",{width:"7",height:"5",x:"14",y:"3",rx:"1",key:"16une8"}],["rect",{width:"7",height:"9",x:"14",y:"12",rx:"1",key:"1hutg5"}],["rect",{width:"7",height:"5",x:"3",y:"16",rx:"1",key:"ldoo1y"}]]),c=(0,r.default)("LogOut",[["path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4",key:"1uf3rs"}],["polyline",{points:"16 17 21 12 16 7",key:"1gabdz"}],["line",{x1:"21",x2:"9",y1:"12",y2:"12",key:"1uyos4"}]]),h=(0,r.default)("MapPin",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}]]),d=(0,r.default)("Shield",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}]]);var f=e.i(20286);let p=(0,r.default)("UserRound",[["circle",{cx:"12",cy:"8",r:"5",key:"1hypcn"}],["path",{d:"M20 21a8 8 0 0 0-16 0",key:"rfgkzh"}]]);var y=e.i(22016),m=e.i(18566),g=e.i(71645),v=e.i(28779),b=e.i(82649);let w="/validations/quick-start",x=["admin","pruefer","mitarbeiter"],C=[{href:"/dashboard",label:"Dashboard",icon:l},{href:"/customers",label:"Kunden",icon:i},{href:"/locations",label:"Standorte",icon:h},{href:"/contacts",label:"Ansprechpartner",icon:p},{href:"/devices",label:"Geraete",icon:f.Stethoscope},{href:"/equipment",label:"Pruefmittel",icon:u.Gauge},{href:"/validations",label:"Validierungen",icon:s},{href:"/documents",label:"Dokumente",icon:a},{href:"/settings/report-layout",label:"Berichtseinstellungen",icon:o,adminOnly:!0},{href:"/users",label:"Benutzer",icon:d,adminOnly:!0}];function O(e,t){return"/validations"===t?e===t||e.startsWith(`${t}/`)&&e!==w:e===t||e.startsWith(`${t}/`)}e.s(["AppShell",0,function({children:e}){var r;let i=(0,m.usePathname)(),s=(0,v.useAuth)(),a=!!(r=s.user?.role)&&x.includes(r),o=i===w;return(0,g.useEffect)(()=>{s.user?.must_change_password&&"/profile/security"!==i&&window.location.replace("/profile/security")},[s.user?.must_change_password,i]),(0,t.jsxs)("div",{className:"min-h-screen bg-background text-text",children:[(0,t.jsxs)("header",{className:"sticky top-0 z-40 border-b border-border bg-surface/95 px-4 py-4 shadow-soft backdrop-blur lg:hidden",children:[(0,t.jsx)("div",{className:"flex items-center justify-between gap-3",children:(0,t.jsx)(b.BrandLogo,{compact:!0})}),a?(0,t.jsxs)(y.default,{href:w,"aria-current":o?"page":void 0,className:`mt-4 flex min-h-12 w-full items-center justify-center gap-3 rounded-lg border px-4 text-sm font-bold shadow-soft transition hover:shadow-md focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${o?"border-primary-dark bg-primary-dark text-white":"border-primary bg-primary text-white hover:bg-primary-dark"}`,children:[(0,t.jsx)(n,{className:"h-5 w-5"}),(0,t.jsx)("span",{children:"Neue Validierung starten"})]}):null,(0,t.jsx)("nav",{className:"mt-4 flex gap-2 overflow-x-auto pb-1",children:C.map((e,r)=>{let n=e.icon;if("adminOnly"in e&&e.adminOnly&&s.user?.role!=="admin")return null;let a=O(i,e.href);return(0,t.jsxs)(y.default,{href:e.href,"aria-current":a?"page":void 0,className:`flex min-h-11 shrink-0 items-center gap-2 rounded-lg border px-3 text-sm font-medium transition hover:shadow-soft focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${a?"border-accent bg-accent/35 text-primary-dark":"border-border bg-white text-text-light hover:bg-background hover:text-text"}`,children:[(0,t.jsx)(n,{className:"h-4 w-4"}),(0,t.jsx)("span",{children:e.label})]},`${e.label}-mobile-${r}`)})})]}),(0,t.jsxs)("aside",{className:"fixed inset-y-0 left-0 z-30 hidden w-72 border-r border-border bg-surface px-5 py-6 lg:block",children:[(0,t.jsx)("div",{className:"mb-8",children:(0,t.jsx)(b.BrandLogo,{compact:!0})}),a?(0,t.jsxs)(y.default,{href:w,"aria-current":o?"page":void 0,className:`mb-6 flex min-h-12 w-full items-center justify-center gap-3 rounded-lg border px-4 text-sm font-bold shadow-soft transition hover:shadow-md focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${o?"border-primary-dark bg-primary-dark text-white":"border-primary bg-primary text-white hover:bg-primary-dark"}`,children:[(0,t.jsx)(n,{className:"h-5 w-5"}),(0,t.jsx)("span",{children:"Neue Validierung starten"})]}):null,(0,t.jsx)("nav",{className:"space-y-1 pb-20",children:C.map((e,r)=>{let n=e.icon;if("adminOnly"in e&&e.adminOnly&&s.user?.role!=="admin")return null;let a=O(i,e.href);return(0,t.jsxs)(y.default,{href:e.href,"aria-current":a?"page":void 0,className:`flex h-11 items-center gap-3 rounded-lg px-3 text-sm font-medium transition hover:shadow-soft active:scale-[0.98] ${a?"bg-accent/35 text-primary-dark":"text-text-light hover:bg-background hover:text-text"}`,children:[(0,t.jsx)(n,{className:"h-4 w-4"}),(0,t.jsx)("span",{children:e.label})]},`${e.label}-${r}`)})}),(0,t.jsxs)("button",{type:"button",onClick:s.logout,className:"btn btn-primary absolute bottom-6 left-5 right-5 h-11 text-sm",children:[(0,t.jsx)(c,{className:"h-4 w-4"}),"Logout"]})]}),(0,t.jsx)("main",{className:"lg:pl-72",children:(0,t.jsx)("div",{className:"mx-auto min-h-screen max-w-7xl px-4 py-5 sm:px-6 lg:px-10 lg:py-8",children:e})})]})}],48026)},24487,e=>{"use strict";var t=e.i(43476),r=e.i(19273),i=e.i(86491),s=e.i(40143),n=e.i(15823),a=class extends n.Subscribable{constructor(e={}){super(),this.config=e,this.#b=new Map}#b;build(e,t,s){let n=t.queryKey,a=t.queryHash??(0,r.hashQueryKeyByOptions)(n,t),o=this.get(a);return o||(o=new i.Query({client:e,queryKey:n,queryHash:a,options:e.defaultQueryOptions(t),state:s,defaultOptions:e.getQueryDefaults(n)}),this.add(o)),o}add(e){this.#b.has(e.queryHash)||(this.#b.set(e.queryHash,e),this.notify({type:"added",query:e}))}remove(e){let t=this.#b.get(e.queryHash);t&&(e.destroy(),t===e&&this.#b.delete(e.queryHash),this.notify({type:"removed",query:e}))}clear(){s.notifyManager.batch(()=>{this.getAll().forEach(e=>{this.remove(e)})})}get(e){return this.#b.get(e)}getAll(){return[...this.#b.values()]}find(e){let t={exact:!0,...e};return this.getAll().find(e=>(0,r.matchQuery)(t,e))}findAll(e={}){let t=this.getAll();return Object.keys(e).length>0?t.filter(t=>(0,r.matchQuery)(e,t)):t}notify(e){s.notifyManager.batch(()=>{this.listeners.forEach(t=>{t(e)})})}onFocus(){s.notifyManager.batch(()=>{this.getAll().forEach(e=>{e.onFocus()})})}onOnline(){s.notifyManager.batch(()=>{this.getAll().forEach(e=>{e.onOnline()})})}},o=e.i(14272),u=n,l=class extends u.Subscribable{constructor(e={}){super(),this.config=e,this.#w=new Set,this.#x=new Map,this.#C=0}#w;#x;#C;build(e,t,r){let i=new o.Mutation({client:e,mutationCache:this,mutationId:++this.#C,options:e.defaultMutationOptions(t),state:r});return this.add(i),i}add(e){this.#w.add(e);let t=c(e);if("string"==typeof t){let r=this.#x.get(t);r?r.push(e):this.#x.set(t,[e])}this.notify({type:"added",mutation:e})}remove(e){if(this.#w.delete(e)){let t=c(e);if("string"==typeof t){let r=this.#x.get(t);if(r)if(r.length>1){let t=r.indexOf(e);-1!==t&&r.splice(t,1)}else r[0]===e&&this.#x.delete(t)}}this.notify({type:"removed",mutation:e})}canRun(e){let t=c(e);if("string"!=typeof t)return!0;{let r=this.#x.get(t),i=r?.find(e=>"pending"===e.state.status);return!i||i===e}}runNext(e){let t=c(e);if("string"!=typeof t)return Promise.resolve();{let r=this.#x.get(t)?.find(t=>t!==e&&t.state.isPaused);return r?.continue()??Promise.resolve()}}clear(){s.notifyManager.batch(()=>{this.#w.forEach(e=>{this.notify({type:"removed",mutation:e})}),this.#w.clear(),this.#x.clear()})}getAll(){return Array.from(this.#w)}find(e){let t={exact:!0,...e};return this.getAll().find(e=>(0,r.matchMutation)(t,e))}findAll(e={}){return this.getAll().filter(t=>(0,r.matchMutation)(e,t))}notify(e){s.notifyManager.batch(()=>{this.listeners.forEach(t=>{t(e)})})}resumePausedMutations(){let e=this.getAll().filter(e=>e.state.isPaused);return s.notifyManager.batch(()=>Promise.all(e.map(e=>e.continue().catch(r.noop))))}};function c(e){return e.options.scope?.id}var h=e.i(75555),d=e.i(14448),f=class{#O;#v;#f;#S;#P;#j;#M;#k;constructor(e={}){this.#O=e.queryCache||new a,this.#v=e.mutationCache||new l,this.#f=e.defaultOptions||{},this.#S=new Map,this.#P=new Map,this.#j=0}mount(){this.#j++,1===this.#j&&(this.#M=h.focusManager.subscribe(async e=>{e&&(await this.resumePausedMutations(),this.#O.onFocus())}),this.#k=d.onlineManager.subscribe(async e=>{e&&(await this.resumePausedMutations(),this.#O.onOnline())}))}unmount(){this.#j--,0===this.#j&&(this.#M?.(),this.#M=void 0,this.#k?.(),this.#k=void 0)}isFetching(e){return this.#O.findAll({...e,fetchStatus:"fetching"}).length}isMutating(e){return this.#v.findAll({...e,status:"pending"}).length}getQueryData(e){let t=this.defaultQueryOptions({queryKey:e});return this.#O.get(t.queryHash)?.state.data}ensureQueryData(e){let t=this.defaultQueryOptions(e),i=this.#O.build(this,t),s=i.state.data;return void 0===s?this.fetchQuery(e):(e.revalidateIfStale&&i.isStaleByTime((0,r.resolveStaleTime)(t.staleTime,i))&&this.prefetchQuery(t),Promise.resolve(s))}getQueriesData(e){return this.#O.findAll(e).map(({queryKey:e,state:t})=>[e,t.data])}setQueryData(e,t,i){let s=this.defaultQueryOptions({queryKey:e}),n=this.#O.get(s.queryHash),a=n?.state.data,o=(0,r.functionalUpdate)(t,a);if(void 0!==o)return this.#O.build(this,s).setData(o,{...i,manual:!0})}setQueriesData(e,t,r){return s.notifyManager.batch(()=>this.#O.findAll(e).map(({queryKey:e})=>[e,this.setQueryData(e,t,r)]))}getQueryState(e){let t=this.defaultQueryOptions({queryKey:e});return this.#O.get(t.queryHash)?.state}removeQueries(e){let t=this.#O;s.notifyManager.batch(()=>{t.findAll(e).forEach(e=>{t.remove(e)})})}resetQueries(e,t){let r=this.#O;return s.notifyManager.batch(()=>(r.findAll(e).forEach(e=>{e.reset()}),this.refetchQueries({type:"active",...e},t)))}cancelQueries(e,t={}){let i={revert:!0,...t};return Promise.all(s.notifyManager.batch(()=>this.#O.findAll(e).map(e=>e.cancel(i)))).then(r.noop).catch(r.noop)}invalidateQueries(e,t={}){return s.notifyManager.batch(()=>(this.#O.findAll(e).forEach(e=>{e.invalidate()}),e?.refetchType==="none")?Promise.resolve():this.refetchQueries({...e,type:e?.refetchType??e?.type??"active"},t))}refetchQueries(e,t={}){let i={...t,cancelRefetch:t.cancelRefetch??!0};return Promise.all(s.notifyManager.batch(()=>this.#O.findAll(e).filter(e=>!e.isDisabled()&&!e.isStatic()).map(e=>{let t=e.fetch(void 0,i);return i.throwOnError||(t=t.catch(r.noop)),"paused"===e.state.fetchStatus?Promise.resolve():t}))).then(r.noop)}fetchQuery(e){let t=this.defaultQueryOptions(e);void 0===t.retry&&(t.retry=!1);let i=this.#O.build(this,t);return i.isStaleByTime((0,r.resolveStaleTime)(t.staleTime,i))?i.fetch(t):Promise.resolve(i.state.data)}prefetchQuery(e){return this.fetchQuery(e).then(r.noop).catch(r.noop)}fetchInfiniteQuery(e){return e._type="infinite",this.fetchQuery(e)}prefetchInfiniteQuery(e){return this.fetchInfiniteQuery(e).then(r.noop).catch(r.noop)}ensureInfiniteQueryData(e){return e._type="infinite",this.ensureQueryData(e)}resumePausedMutations(){return d.onlineManager.isOnline()?this.#v.resumePausedMutations():Promise.resolve()}getQueryCache(){return this.#O}getMutationCache(){return this.#v}getDefaultOptions(){return this.#f}setDefaultOptions(e){this.#f=e}setQueryDefaults(e,t){this.#S.set((0,r.hashKey)(e),{queryKey:e,defaultOptions:t})}getQueryDefaults(e){let t=[...this.#S.values()],i={};return t.forEach(t=>{(0,r.partialMatchKey)(e,t.queryKey)&&Object.assign(i,t.defaultOptions)}),i}setMutationDefaults(e,t){this.#P.set((0,r.hashKey)(e),{mutationKey:e,defaultOptions:t})}getMutationDefaults(e){let t=[...this.#P.values()],i={};return t.forEach(t=>{(0,r.partialMatchKey)(e,t.mutationKey)&&Object.assign(i,t.defaultOptions)}),i}defaultQueryOptions(e){if(e._defaulted)return e;let t={...this.#f.queries,...this.getQueryDefaults(e.queryKey),...e,_defaulted:!0};return t.queryHash||(t.queryHash=(0,r.hashQueryKeyByOptions)(t.queryKey,t)),void 0===t.refetchOnReconnect&&(t.refetchOnReconnect="always"!==t.networkMode),void 0===t.throwOnError&&(t.throwOnError=!!t.suspense),!t.networkMode&&t.persister&&(t.networkMode="offlineFirst"),t.queryFn===r.skipToken&&(t.enabled=!1),t}defaultMutationOptions(e){return e?._defaulted?e:{...this.#f.mutations,...e?.mutationKey&&this.getMutationDefaults(e.mutationKey),...e,_defaulted:!0}}clear(){this.#O.clear(),this.#v.clear()}},p=e.i(12598),y=e.i(71645);e.s(["QueryProvider",0,function({children:e}){let[r]=(0,y.useState)(()=>new f);return(0,t.jsx)(p.QueryClientProvider,{client:r,children:e})}],24487)}]); \ No newline at end of file +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,75254,e=>{"use strict";var t=e.i(71645);let r=(...e)=>e.filter((e,t,r)=>!!e&&""!==e.trim()&&r.indexOf(e)===t).join(" ").trim();var i={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};let s=(0,t.forwardRef)(({color:e="currentColor",size:s=24,strokeWidth:n=2,absoluteStrokeWidth:a,className:o="",children:u,iconNode:l,...c},h)=>(0,t.createElement)("svg",{ref:h,...i,width:s,height:s,stroke:e,strokeWidth:a?24*Number(n)/Number(s):n,className:r("lucide",o),...c},[...l.map(([e,r])=>(0,t.createElement)(e,r)),...Array.isArray(u)?u:[u]]));e.s(["default",0,(e,i)=>{let n=(0,t.forwardRef)(({className:n,...a},o)=>(0,t.createElement)(s,{ref:o,iconNode:i,className:r(`lucide-${e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase()}`,n),...a}));return n.displayName=`${e}`,n}],75254)},18566,(e,t,r)=>{t.exports=e.r(76562)},28779,e=>{"use strict";var t=e.i(43476),r=e.i(18566),i=e.i(71645);let s=(0,i.createContext)(null);e.s(["AuthProvider",0,function({children:e}){let n=(0,r.useRouter)(),[a,o]=(0,i.useState)(null),[u,l]=(0,i.useState)(null),c=(0,i.useRef)(null),h=(0,i.useRef)(null);(0,i.useEffect)(()=>{c.current=a},[a]),(0,i.useEffect)(()=>{h.current=u},[u]),(0,i.useEffect)(()=>{fetch("/api/me",{credentials:"include",cache:"no-store"}).then(async e=>{if(!e.ok)throw Error(`HTTP ${e.status}`);return await e.json()}).then(e=>{l(e),o("authenticated")}).catch(()=>{c.current||h.current||(l(null),o(null))})},[]);let d=(0,i.useMemo)(()=>{let e=e=>{o(e)};return{token:a,setToken:e,setUser:l,logout:()=>{e(null),fetch("/api/logout",{method:"POST",credentials:"include"}),n.push("/login")},user:u,refreshUser:async()=>{try{let e=await fetch("/api/me",{credentials:"include",cache:"no-store"});if(!e.ok)throw Error(`HTTP ${e.status}`);let t=await e.json();return l(t),o("authenticated"),t}catch{return h.current||(l(null),o(null)),null}}}},[n,a,u]);return(0,t.jsx)(s.Provider,{value:d,children:e})},"useAuth",0,function(){let e=(0,i.useContext)(s);if(!e)throw Error("useAuth must be used inside AuthProvider");return e}])},80166,e=>{"use strict";var t={setTimeout:(e,t)=>setTimeout(e,t),clearTimeout:e=>clearTimeout(e),setInterval:(e,t)=>setInterval(e,t),clearInterval:e=>clearInterval(e)},r=new class{#e=t;#t=!1;setTimeoutProvider(e){this.#e=e}setTimeout(e,t){return this.#e.setTimeout(e,t)}clearTimeout(e){this.#e.clearTimeout(e)}setInterval(e,t){return this.#e.setInterval(e,t)}clearInterval(e){this.#e.clearInterval(e)}};e.s(["systemSetTimeoutZero",0,function(e){setTimeout(e,0)},"timeoutManager",0,r])},19273,e=>{"use strict";var t=e.i(80166),r="u"u(t)?Object.keys(t).sort().reduce((e,r)=>(e[r]=t[r],e),{}):t)}function n(e,t){return e===t||typeof e==typeof t&&!!e&&!!t&&"object"==typeof e&&"object"==typeof t&&Object.keys(t).every(r=>n(e[r],t[r]))}var a=Object.prototype.hasOwnProperty;function o(e){return Array.isArray(e)&&e.length===Object.keys(e).length}function u(e){if(!l(e))return!1;let t=e.constructor;if(void 0===t)return!0;let r=t.prototype;return!!l(r)&&!!r.hasOwnProperty("isPrototypeOf")&&Object.getPrototypeOf(e)===Object.prototype}function l(e){return"[object Object]"===Object.prototype.toString.call(e)}var c=Symbol();e.s(["addConsumeAwareSignal",0,function(e,t,r){let i,s=!1;return Object.defineProperty(e,"signal",{enumerable:!0,get:()=>(i??=t(),s||(s=!0,i.aborted?r():i.addEventListener("abort",r,{once:!0})),i)}),e},"addToEnd",0,function(e,t,r=0){let i=[...e,t];return r&&i.length>r?i.slice(1):i},"addToStart",0,function(e,t,r=0){let i=[t,...e];return r&&i.length>r?i.slice(0,-1):i},"ensureQueryFn",0,function(e,t){return!e.queryFn&&t?.initialPromise?()=>t.initialPromise:e.queryFn&&e.queryFn!==c?e.queryFn:()=>Promise.reject(Error(`Missing queryFn: '${e.queryHash}'`))},"functionalUpdate",0,function(e,t){return"function"==typeof e?e(t):e},"hashKey",0,s,"hashQueryKeyByOptions",0,i,"isServer",0,r,"isValidTimeout",0,function(e){return"number"==typeof e&&e>=0&&e!==1/0},"matchMutation",0,function(e,t){let{exact:r,status:i,predicate:a,mutationKey:o}=e;if(o){if(!t.options.mutationKey)return!1;if(r){if(s(t.options.mutationKey)!==s(o))return!1}else if(!n(t.options.mutationKey,o))return!1}return(!i||t.state.status===i)&&(!a||!!a(t))},"matchQuery",0,function(e,t){let{type:r="all",exact:s,fetchStatus:a,predicate:o,queryKey:u,stale:l}=e;if(u){if(s){if(t.queryHash!==i(u,t.options))return!1}else if(!n(t.queryKey,u))return!1}if("all"!==r){let e=t.isActive();if("active"===r&&!e||"inactive"===r&&e)return!1}return("boolean"!=typeof l||t.isStale()===l)&&(!a||a===t.state.fetchStatus)&&(!o||!!o(t))},"noop",0,function(){},"partialMatchKey",0,n,"replaceData",0,function(e,t,r){return"function"==typeof r.structuralSharing?r.structuralSharing(e,t):!1!==r.structuralSharing?function e(t,r,i=0){if(t===r)return t;if(i>500)return r;let s=o(t)&&o(r);if(!s&&!(u(t)&&u(r)))return r;let n=(s?t:Object.keys(t)).length,l=s?r:Object.keys(r),c=l.length,h=s?Array(c):{},d=0;for(let o=0;o{t.timeoutManager.setTimeout(r,e)})},"timeUntilStale",0,function(e,t){return Math.max(e+(t||0)-Date.now(),0)}])},40143,e=>{"use strict";let t,r,i,s,n,a;var o=e.i(80166).systemSetTimeoutZero,u=(t=[],r=0,i=e=>{e()},s=e=>{e()},n=o,{batch:e=>{let a;r++;try{a=e()}finally{let e;--r||(e=t,t=[],e.length&&n(()=>{s(()=>{e.forEach(e=>{i(e)})})}))}return a},batchCalls:e=>(...t)=>{a(()=>{e(...t)})},schedule:a=e=>{r?t.push(e):n(()=>{i(e)})},setNotifyFunction:e=>{i=e},setBatchNotifyFunction:e=>{s=e},setScheduler:e=>{n=e}});e.s(["notifyManager",0,u])},75555,15823,e=>{"use strict";var t=class{constructor(){this.listeners=new Set,this.subscribe=this.subscribe.bind(this)}subscribe(e){return this.listeners.add(e),this.onSubscribe(),()=>{this.listeners.delete(e),this.onUnsubscribe()}}hasListeners(){return this.listeners.size>0}onSubscribe(){}onUnsubscribe(){}};e.s(["Subscribable",0,t],15823);var r=new class extends t{#r;#i;#s;constructor(){super(),this.#s=e=>{if("u">typeof window&&window.addEventListener){let t=()=>e();return window.addEventListener("visibilitychange",t,!1),()=>{window.removeEventListener("visibilitychange",t)}}}}onSubscribe(){this.#i||this.setEventListener(this.#s)}onUnsubscribe(){this.hasListeners()||(this.#i?.(),this.#i=void 0)}setEventListener(e){this.#s=e,this.#i?.(),this.#i=e(e=>{"boolean"==typeof e?this.setFocused(e):this.onFocus()})}setFocused(e){this.#r!==e&&(this.#r=e,this.onFocus())}onFocus(){let e=this.isFocused();this.listeners.forEach(t=>{t(e)})}isFocused(){return"boolean"==typeof this.#r?this.#r:globalThis.document?.visibilityState!=="hidden"}};e.s(["focusManager",0,r],75555)},14448,93803,e=>{"use strict";var t=e.i(15823),r=new class extends t.Subscribable{#n=!0;#i;#s;constructor(){super(),this.#s=e=>{if("u">typeof window&&window.addEventListener){let t=()=>e(!0),r=()=>e(!1);return window.addEventListener("online",t,!1),window.addEventListener("offline",r,!1),()=>{window.removeEventListener("online",t),window.removeEventListener("offline",r)}}}}onSubscribe(){this.#i||this.setEventListener(this.#s)}onUnsubscribe(){this.hasListeners()||(this.#i?.(),this.#i=void 0)}setEventListener(e){this.#s=e,this.#i?.(),this.#i=e(this.setOnline.bind(this))}setOnline(e){this.#n!==e&&(this.#n=e,this.listeners.forEach(t=>{t(e)}))}isOnline(){return this.#n}};e.s(["onlineManager",0,r],14448),e.i(19273),e.s(["pendingThenable",0,function(){let e,t,r=new Promise((r,i)=>{e=r,t=i});function i(e){Object.assign(r,e),delete r.resolve,delete r.reject}return r.status="pending",r.catch(()=>{}),r.resolve=t=>{i({status:"fulfilled",value:t}),e(t)},r.reject=e=>{i({status:"rejected",reason:e}),t(e)},r}],93803)},73911,e=>{"use strict";let t;var r=e.i(19273),i=(t=()=>r.isServer,{isServer:()=>t(),setIsServer(e){t=e}});e.s(["environmentManager",0,i])},36553,e=>{"use strict";var t=e.i(75555),r=e.i(14448),i=e.i(93803),s=e.i(73911),n=e.i(19273);function a(e){return Math.min(1e3*2**e,3e4)}function o(e){return(e??"online")!=="online"||r.onlineManager.isOnline()}var u=class extends Error{constructor(e){super("CancelledError"),this.revert=e?.revert,this.silent=e?.silent}};e.s(["CancelledError",0,u,"canFetch",0,o,"createRetryer",0,function(e){let l,c=!1,h=0,d=(0,i.pendingThenable)(),f=()=>t.focusManager.isFocused()&&("always"===e.networkMode||r.onlineManager.isOnline())&&e.canRun(),p=()=>o(e.networkMode)&&e.canRun(),y=e=>{"pending"===d.status&&(l?.(),d.resolve(e))},m=e=>{"pending"===d.status&&(l?.(),d.reject(e))},g=()=>new Promise(t=>{l=e=>{("pending"!==d.status||f())&&t(e)},e.onPause?.()}).then(()=>{l=void 0,"pending"===d.status&&e.onContinue?.()}),v=()=>{let t;if("pending"!==d.status)return;let r=0===h?e.initialPromise:void 0;try{t=r??e.fn()}catch(e){t=Promise.reject(e)}Promise.resolve(t).then(y).catch(t=>{if("pending"!==d.status)return;let r=e.retry??3*!s.environmentManager.isServer(),i=e.retryDelay??a,o="function"==typeof i?i(h,t):i,u=!0===r||"number"==typeof r&&hf()?void 0:g()).then(()=>{c?m(t):v()}))})};return{promise:d,status:()=>d.status,cancel:t=>{if("pending"===d.status){let r=new u(t);m(r),e.onCancel?.(r)}},continue:()=>(l?.(),d),cancelRetry:()=>{c=!0},continueRetry:()=>{c=!1},canStart:p,start:()=>(p()?v():g().then(v),d)}}])},88587,e=>{"use strict";var t=e.i(80166),r=e.i(73911),i=e.i(19273),s=class{#a;destroy(){this.clearGcTimeout()}scheduleGc(){this.clearGcTimeout(),(0,i.isValidTimeout)(this.gcTime)&&(this.#a=t.timeoutManager.setTimeout(()=>{this.optionalRemove()},this.gcTime))}updateGcTime(e){this.gcTime=Math.max(this.gcTime||0,e??(r.environmentManager.isServer()?1/0:3e5))}clearGcTimeout(){void 0!==this.#a&&(t.timeoutManager.clearTimeout(this.#a),this.#a=void 0)}};e.s(["Removable",0,s])},86491,e=>{"use strict";e.i(47167);var t=e.i(19273),r=e.i(40143),i=e.i(36553),s=e.i(88587);function n(e,{pages:t,pageParams:r}){let i=t.length-1;return t.length>0?e.getNextPageParam(t[i],t,r[i],r):void 0}var a=class extends s.Removable{#o;#u;#l;#c;#h;#d;#f;#p;constructor(e){super(),this.#p=!1,this.#f=e.defaultOptions,this.setOptions(e.options),this.observers=[],this.#h=e.client,this.#c=this.#h.getQueryCache(),this.queryKey=e.queryKey,this.queryHash=e.queryHash,this.#u=l(this.options),this.state=e.state??this.#u,this.scheduleGc()}get meta(){return this.options.meta}get queryType(){return this.#o}get promise(){return this.#d?.promise}setOptions(e){if(this.options={...this.#f,...e},e?._type&&(this.#o=e._type),this.updateGcTime(this.options.gcTime),this.state&&void 0===this.state.data){let e=l(this.options);void 0!==e.data&&(this.setState(u(e.data,e.dataUpdatedAt)),this.#u=e)}}optionalRemove(){this.observers.length||"idle"!==this.state.fetchStatus||this.#c.remove(this)}setData(e,r){let i=(0,t.replaceData)(this.state.data,e,this.options);return this.#y({data:i,type:"success",dataUpdatedAt:r?.updatedAt,manual:r?.manual}),i}setState(e){this.#y({type:"setState",state:e})}cancel(e){let r=this.#d?.promise;return this.#d?.cancel(e),r?r.then(t.noop).catch(t.noop):Promise.resolve()}destroy(){super.destroy(),this.cancel({silent:!0})}get resetState(){return this.#u}reset(){this.destroy(),this.setState(this.resetState)}isActive(){return this.observers.some(e=>!1!==(0,t.resolveQueryBoolean)(e.options.enabled,this))}isDisabled(){return this.getObserversCount()>0?!this.isActive():this.options.queryFn===t.skipToken||!this.isFetched()}isFetched(){return this.state.dataUpdateCount+this.state.errorUpdateCount>0}isStatic(){return this.getObserversCount()>0&&this.observers.some(e=>"static"===(0,t.resolveStaleTime)(e.options.staleTime,this))}isStale(){return this.getObserversCount()>0?this.observers.some(e=>e.getCurrentResult().isStale):void 0===this.state.data||this.state.isInvalidated}isStaleByTime(e=0){return void 0===this.state.data||"static"!==e&&(!!this.state.isInvalidated||!(0,t.timeUntilStale)(this.state.dataUpdatedAt,e))}onFocus(){let e=this.observers.find(e=>e.shouldFetchOnWindowFocus());e?.refetch({cancelRefetch:!1}),this.#d?.continue()}onOnline(){let e=this.observers.find(e=>e.shouldFetchOnReconnect());e?.refetch({cancelRefetch:!1}),this.#d?.continue()}addObserver(e){this.observers.includes(e)||(this.observers.push(e),this.clearGcTimeout(),this.#c.notify({type:"observerAdded",query:this,observer:e}))}removeObserver(e){this.observers.includes(e)&&(this.observers=this.observers.filter(t=>t!==e),this.observers.length||(this.#d&&(this.#p||this.#m()?this.#d.cancel({revert:!0}):this.#d.cancelRetry()),this.scheduleGc()),this.#c.notify({type:"observerRemoved",query:this,observer:e}))}getObserversCount(){return this.observers.length}#m(){return"paused"===this.state.fetchStatus&&"pending"===this.state.status}invalidate(){this.state.isInvalidated||this.#y({type:"invalidate"})}async fetch(e,r){var s;let a;if("idle"!==this.state.fetchStatus&&this.#d?.status()!=="rejected"){if(void 0!==this.state.data&&r?.cancelRefetch)this.cancel({silent:!0});else if(this.#d)return this.#d.continueRetry(),this.#d.promise}if(e&&this.setOptions(e),!this.options.queryFn){let e=this.observers.find(e=>e.options.queryFn);e&&this.setOptions(e.options)}let o=new AbortController,u=e=>{Object.defineProperty(e,"signal",{enumerable:!0,get:()=>(this.#p=!0,o.signal)})},l=()=>{let e,i=(0,t.ensureQueryFn)(this.options,r),s=(u(e={client:this.#h,queryKey:this.queryKey,meta:this.meta}),e);return(this.#p=!1,this.options.persister)?this.options.persister(i,s,this):i(s)},c=(u(a={fetchOptions:r,options:this.options,queryKey:this.queryKey,client:this.#h,state:this.state,fetchFn:l}),a),h="infinite"===this.#o?(s=this.options.pages,{onFetch:(e,r)=>{let i=e.options,a=e.fetchOptions?.meta?.fetchMore?.direction,o=e.state.data?.pages||[],u=e.state.data?.pageParams||[],l={pages:[],pageParams:[]},c=0,h=async()=>{let r=!1,h=(0,t.ensureQueryFn)(e.options,e.fetchOptions),d=async(i,s,n)=>{let a;if(r)return Promise.reject(e.signal.reason);if(null==s&&i.pages.length)return Promise.resolve(i);let o=(a={client:e.client,queryKey:e.queryKey,pageParam:s,direction:n?"backward":"forward",meta:e.options.meta},(0,t.addConsumeAwareSignal)(a,()=>e.signal,()=>r=!0),a),u=await h(o),{maxPages:l}=e.options,c=n?t.addToStart:t.addToEnd;return{pages:c(i.pages,u,l),pageParams:c(i.pageParams,s,l)}};if(a&&o.length){let e="backward"===a,t={pages:o,pageParams:u},r=(e?function(e,{pages:t,pageParams:r}){return t.length>0?e.getPreviousPageParam?.(t[0],t,r[0],r):void 0}:n)(i,t);l=await d(t,r,e)}else{let e=s??o.length;do{let e=0===c?u[0]??i.initialPageParam:n(i,l);if(c>0&&null==e)break;l=await d(l,e),c++}while(ce.options.persister?.(h,{client:e.client,queryKey:e.queryKey,meta:e.options.meta,signal:e.signal},r):e.fetchFn=h}}):this.options.behavior;h?.onFetch(c,this),this.#l=this.state,("idle"===this.state.fetchStatus||this.state.fetchMeta!==c.fetchOptions?.meta)&&this.#y({type:"fetch",meta:c.fetchOptions?.meta}),this.#d=(0,i.createRetryer)({initialPromise:r?.initialPromise,fn:c.fetchFn,onCancel:e=>{e instanceof i.CancelledError&&e.revert&&this.setState({...this.#l,fetchStatus:"idle"}),o.abort()},onFail:(e,t)=>{this.#y({type:"failed",failureCount:e,error:t})},onPause:()=>{this.#y({type:"pause"})},onContinue:()=>{this.#y({type:"continue"})},retry:c.options.retry,retryDelay:c.options.retryDelay,networkMode:c.options.networkMode,canRun:()=>!0});try{let e=await this.#d.start();if(void 0===e)throw Error(`${this.queryHash} data is undefined`);return this.setData(e),this.#c.config.onSuccess?.(e,this),this.#c.config.onSettled?.(e,this.state.error,this),e}catch(e){if(e instanceof i.CancelledError){if(e.silent)return this.#d.promise;else if(e.revert){if(void 0===this.state.data)throw e;return this.state.data}}throw this.#y({type:"error",error:e}),this.#c.config.onError?.(e,this),this.#c.config.onSettled?.(this.state.data,e,this),e}finally{this.scheduleGc()}}#y(e){let t=t=>{switch(e.type){case"failed":return{...t,fetchFailureCount:e.failureCount,fetchFailureReason:e.error};case"pause":return{...t,fetchStatus:"paused"};case"continue":return{...t,fetchStatus:"fetching"};case"fetch":return{...t,...o(t.data,this.options),fetchMeta:e.meta??null};case"success":let r={...t,...u(e.data,e.dataUpdatedAt),dataUpdateCount:t.dataUpdateCount+1,...!e.manual&&{fetchStatus:"idle",fetchFailureCount:0,fetchFailureReason:null}};return this.#l=e.manual?r:void 0,r;case"error":let i=e.error;return{...t,error:i,errorUpdateCount:t.errorUpdateCount+1,errorUpdatedAt:Date.now(),fetchFailureCount:t.fetchFailureCount+1,fetchFailureReason:i,fetchStatus:"idle",status:"error",isInvalidated:!0};case"invalidate":return{...t,isInvalidated:!0};case"setState":return{...t,...e.state}}};this.state=t(this.state),r.notifyManager.batch(()=>{this.observers.forEach(e=>{e.onQueryUpdate()}),this.#c.notify({query:this,type:"updated",action:e})})}};function o(e,t){return{fetchFailureCount:0,fetchFailureReason:null,fetchStatus:(0,i.canFetch)(t.networkMode)?"fetching":"paused",...void 0===e&&{error:null,status:"pending"}}}function u(e,t){return{data:e,dataUpdatedAt:t??Date.now(),error:null,isInvalidated:!1,status:"success"}}function l(e){let t="function"==typeof e.initialData?e.initialData():e.initialData,r=void 0!==t,i=r?"function"==typeof e.initialDataUpdatedAt?e.initialDataUpdatedAt():e.initialDataUpdatedAt:0;return{data:t,dataUpdateCount:0,dataUpdatedAt:r?i??Date.now():0,error:null,errorUpdateCount:0,errorUpdatedAt:0,fetchFailureCount:0,fetchFailureReason:null,fetchMeta:null,isInvalidated:!1,status:r?"success":"pending",fetchStatus:"idle"}}e.s(["Query",0,a,"fetchState",0,o],86491)},12598,e=>{"use strict";var t=e.i(71645),r=e.i(43476),i=t.createContext(void 0);e.s(["QueryClientProvider",0,({client:e,children:s})=>(t.useEffect(()=>(e.mount(),()=>{e.unmount()}),[e]),(0,r.jsx)(i.Provider,{value:e,children:s})),"useQueryClient",0,e=>{let r=t.useContext(i);if(e)return e;if(!r)throw Error("No QueryClient set, use QueryClientProvider to set one");return r}])},14272,e=>{"use strict";var t=e.i(40143),r=e.i(88587),i=e.i(36553),s=class extends r.Removable{#h;#g;#v;#d;constructor(e){super(),this.#h=e.client,this.mutationId=e.mutationId,this.#v=e.mutationCache,this.#g=[],this.state=e.state||n(),this.setOptions(e.options),this.scheduleGc()}setOptions(e){this.options=e,this.updateGcTime(this.options.gcTime)}get meta(){return this.options.meta}addObserver(e){this.#g.includes(e)||(this.#g.push(e),this.clearGcTimeout(),this.#v.notify({type:"observerAdded",mutation:this,observer:e}))}removeObserver(e){this.#g=this.#g.filter(t=>t!==e),this.scheduleGc(),this.#v.notify({type:"observerRemoved",mutation:this,observer:e})}optionalRemove(){this.#g.length||("pending"===this.state.status?this.scheduleGc():this.#v.remove(this))}continue(){return this.#d?.continue()??this.execute(this.state.variables)}async execute(e){let t=()=>{this.#y({type:"continue"})},r={client:this.#h,meta:this.options.meta,mutationKey:this.options.mutationKey};this.#d=(0,i.createRetryer)({fn:()=>this.options.mutationFn?this.options.mutationFn(e,r):Promise.reject(Error("No mutationFn found")),onFail:(e,t)=>{this.#y({type:"failed",failureCount:e,error:t})},onPause:()=>{this.#y({type:"pause"})},onContinue:t,retry:this.options.retry??0,retryDelay:this.options.retryDelay,networkMode:this.options.networkMode,canRun:()=>this.#v.canRun(this)});let s="pending"===this.state.status,n=!this.#d.canStart();try{if(s)t();else{this.#y({type:"pending",variables:e,isPaused:n}),this.#v.config.onMutate&&await this.#v.config.onMutate(e,this,r);let t=await this.options.onMutate?.(e,r);t!==this.state.context&&this.#y({type:"pending",context:t,variables:e,isPaused:n})}let i=await this.#d.start();return await this.#v.config.onSuccess?.(i,e,this.state.context,this,r),await this.options.onSuccess?.(i,e,this.state.context,r),await this.#v.config.onSettled?.(i,null,this.state.variables,this.state.context,this,r),await this.options.onSettled?.(i,null,e,this.state.context,r),this.#y({type:"success",data:i}),i}catch(t){try{await this.#v.config.onError?.(t,e,this.state.context,this,r)}catch(e){Promise.reject(e)}try{await this.options.onError?.(t,e,this.state.context,r)}catch(e){Promise.reject(e)}try{await this.#v.config.onSettled?.(void 0,t,this.state.variables,this.state.context,this,r)}catch(e){Promise.reject(e)}try{await this.options.onSettled?.(void 0,t,e,this.state.context,r)}catch(e){Promise.reject(e)}throw this.#y({type:"error",error:t}),t}finally{this.#v.runNext(this)}}#y(e){this.state=(t=>{switch(e.type){case"failed":return{...t,failureCount:e.failureCount,failureReason:e.error};case"pause":return{...t,isPaused:!0};case"continue":return{...t,isPaused:!1};case"pending":return{...t,context:e.context,data:void 0,failureCount:0,failureReason:null,error:null,isPaused:e.isPaused,status:"pending",variables:e.variables,submittedAt:Date.now()};case"success":return{...t,data:e.data,failureCount:0,failureReason:null,error:null,status:"success",isPaused:!1};case"error":return{...t,data:void 0,error:e.error,failureCount:t.failureCount+1,failureReason:e.error,isPaused:!1,status:"error"}}})(this.state),t.notifyManager.batch(()=>{this.#g.forEach(t=>{t.onMutationUpdate(e)}),this.#v.notify({mutation:this,type:"updated",action:e})})}};function n(){return{context:void 0,data:void 0,error:null,failureCount:0,failureReason:null,isPaused:!1,status:"idle",variables:void 0,submittedAt:0}}e.s(["Mutation",0,s,"getDefaultState",0,n])},18581,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"useMergedRef",{enumerable:!0,get:function(){return s}});let i=e.r(71645);function s(e,t){let r=(0,i.useRef)(null),s=(0,i.useRef)(null);return(0,i.useCallback)(i=>{if(null===i){let e=r.current;e&&(r.current=null,e());let t=s.current;t&&(s.current=null,t())}else e&&(r.current=n(e,i)),t&&(s.current=n(t,i))},[e,t])}function n(e,t){if("function"!=typeof e)return e.current=t,()=>{e.current=null};{let r=e(t);return"function"==typeof r?r:()=>e(null)}}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},95057,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var i={formatUrl:function(){return o},formatWithValidation:function(){return l},urlObjectKeys:function(){return u}};for(var s in i)Object.defineProperty(r,s,{enumerable:!0,get:i[s]});let n=e.r(90809)._(e.r(98183)),a=/https?|ftp|gopher|file/;function o(e){let{auth:t,hostname:r}=e,i=e.protocol||"",s=e.pathname||"",o=e.hash||"",u=e.query||"",l=!1;t=t?encodeURIComponent(t).replace(/%3A/i,":")+"@":"",e.host?l=t+e.host:r&&(l=t+(~r.indexOf(":")?`[${r}]`:r),e.port&&(l+=":"+e.port)),u&&"object"==typeof u&&(u=String(n.urlQueryToSearchParams(u)));let c=e.search||u&&`?${u}`||"";return i&&!i.endsWith(":")&&(i+=":"),e.slashes||(!i||a.test(i))&&!1!==l?(l="//"+(l||""),s&&"/"!==s[0]&&(s="/"+s)):l||(l=""),o&&"#"!==o[0]&&(o="#"+o),c&&"?"!==c[0]&&(c="?"+c),s=s.replace(/[?#]/g,encodeURIComponent),c=c.replace("#","%23"),`${i}${l}${s}${c}${o}`}let u=["auth","hash","host","hostname","href","path","pathname","port","protocol","query","search","slashes"];function l(e){return o(e)}},73668,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"isLocalURL",{enumerable:!0,get:function(){return n}});let i=e.r(18967),s=e.r(52817);function n(e){if(!(0,i.isAbsoluteUrl)(e))return!0;try{let t=(0,i.getLocationOrigin)(),r=new URL(e,t);return r.origin===t&&(0,s.hasBasePath)(r.pathname)}catch(e){return!1}}},84508,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"errorOnce",{enumerable:!0,get:function(){return i}});let i=e=>{}},22016,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var i={default:function(){return g},useLinkStatus:function(){return b}};for(var s in i)Object.defineProperty(r,s,{enumerable:!0,get:i[s]});let n=e.r(90809),a=e.r(43476),o=n._(e.r(71645)),u=e.r(95057),l=e.r(8372),c=e.r(18581),h=e.r(18967),d=e.r(5550);e.r(33525);let f=e.r(88540),p=e.r(91949),y=e.r(73668),m=e.r(9396);function g(t){var r,i;let s,n,g,[b,w]=(0,o.useOptimistic)(p.IDLE_LINK_STATUS),x=(0,o.useRef)(null),{href:C,as:O,children:S,prefetch:P=null,passHref:j,replace:M,shallow:k,scroll:_,onClick:E,onMouseEnter:q,onTouchStart:R,legacyBehavior:T=!1,onNavigate:A,transitionTypes:F,ref:D,unstable_dynamicOnHover:I,...U}=t;s=S,T&&("string"==typeof s||"number"==typeof s)&&(s=(0,a.jsx)("a",{children:s}));let Q=o.default.useContext(l.AppRouterContext),N=!1!==P,L=!1!==P?null===(i=P)||"auto"===i?m.FetchStrategy.PPR:m.FetchStrategy.Full:m.FetchStrategy.PPR,$="string"==typeof(r=O||C)?r:(0,u.formatUrl)(r);if(T){if(s?.$$typeof===Symbol.for("react.lazy"))throw Object.defineProperty(Error("`` received a direct child that is either a Server Component, or JSX that was loaded with React.lazy(). This is not supported. Either remove legacyBehavior, or make the direct child a Client Component that renders the Link's `` tag."),"__NEXT_ERROR_CODE",{value:"E863",enumerable:!1,configurable:!0});n=o.default.Children.only(s)}let z=T?n&&"object"==typeof n&&n.ref:D,K=o.default.useCallback(e=>(null!==Q&&(x.current=(0,p.mountLinkInstance)(e,$,Q,L,N,w)),()=>{x.current&&((0,p.unmountLinkForCurrentNavigation)(x.current),x.current=null),(0,p.unmountPrefetchableInstance)(e)}),[N,$,Q,L,w]),B={ref:(0,c.useMergedRef)(K,z),onClick(t){T||"function"!=typeof E||E(t),T&&n.props&&"function"==typeof n.props.onClick&&n.props.onClick(t),!Q||t.defaultPrevented||function(t,r,i,s,n,a,u){if("u">typeof window){let l,{nodeName:c}=t.currentTarget;if("A"===c.toUpperCase()&&((l=t.currentTarget.getAttribute("target"))&&"_self"!==l||t.metaKey||t.ctrlKey||t.shiftKey||t.altKey||t.nativeEvent&&2===t.nativeEvent.which)||t.currentTarget.hasAttribute("download"))return;if(!(0,y.isLocalURL)(r)){s&&(t.preventDefault(),location.replace(r));return}if(t.preventDefault(),a){let e=!1;if(a({preventDefault:()=>{e=!0}}),e)return}let{dispatchNavigateAction:h}=e.r(99781);o.default.startTransition(()=>{h(r,s?"replace":"push",!1===n?f.ScrollBehavior.NoScroll:f.ScrollBehavior.Default,i.current,u)})}}(t,$,x,M,_,A,F)},onMouseEnter(e){T||"function"!=typeof q||q(e),T&&n.props&&"function"==typeof n.props.onMouseEnter&&n.props.onMouseEnter(e),Q&&N&&(0,p.onNavigationIntent)(e.currentTarget,!0===I)},onTouchStart:function(e){T||"function"!=typeof R||R(e),T&&n.props&&"function"==typeof n.props.onTouchStart&&n.props.onTouchStart(e),Q&&N&&(0,p.onNavigationIntent)(e.currentTarget,!0===I)}};return(0,h.isAbsoluteUrl)($)?B.href=$:T&&!j&&("a"!==n.type||"href"in n.props)||(B.href=(0,d.addBasePath)($)),g=T?o.default.cloneElement(n,B):(0,a.jsx)("a",{...U,...B,children:s}),(0,a.jsx)(v.Provider,{value:b,children:g})}e.r(84508);let v=(0,o.createContext)(p.IDLE_LINK_STATUS),b=()=>(0,o.useContext)(v);("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},43527,e=>{"use strict";let t=(0,e.i(75254).default)("FileUp",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M12 12v6",key:"3ahymv"}],["path",{d:"m15 15-3-3-3 3",key:"15xj92"}]]);e.s(["FileUp",0,t],43527)},88143,(e,t,r)=>{"use strict";function i({widthInt:e,heightInt:t,blurWidth:r,blurHeight:s,blurDataURL:n,objectFit:a}){let o=r?40*r:e,u=s?40*s:t,l=o&&u?`viewBox='0 0 ${o} ${u}'`:"";return`%3Csvg xmlns='http://www.w3.org/2000/svg' ${l}%3E%3Cfilter id='b' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='20'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 100 -1' result='s'/%3E%3CfeFlood x='0' y='0' width='100%25' height='100%25'/%3E%3CfeComposite operator='out' in='s'/%3E%3CfeComposite in2='SourceGraphic'/%3E%3CfeGaussianBlur stdDeviation='20'/%3E%3C/filter%3E%3Cimage width='100%25' height='100%25' x='0' y='0' preserveAspectRatio='${l?"none":"contain"===a?"xMidYMid":"cover"===a?"xMidYMid slice":"none"}' style='filter: url(%23b);' href='${n}'/%3E%3C/svg%3E`}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"getImageBlurSvg",{enumerable:!0,get:function(){return i}})},87690,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var i={VALID_LOADERS:function(){return n},imageConfigDefault:function(){return a}};for(var s in i)Object.defineProperty(r,s,{enumerable:!0,get:i[s]});let n=["default","imgix","cloudinary","akamai","custom"],a={deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],path:"/_next/image",loader:"default",loaderFile:"",domains:[],disableStaticImages:!1,minimumCacheTTL:14400,formats:["image/webp"],maximumDiskCacheSize:void 0,maximumRedirects:3,maximumResponseBody:5e7,dangerouslyAllowLocalIP:!1,dangerouslyAllowSVG:!1,contentSecurityPolicy:"script-src 'none'; frame-src 'none'; sandbox;",contentDispositionType:"attachment",localPatterns:void 0,remotePatterns:[],qualities:[75],unoptimized:!1,customCacheHandler:!1}},8927,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"getImgProps",{enumerable:!0,get:function(){return l}}),e.r(33525);let i=e.r(43369),s=e.r(88143),n=e.r(87690),a=["-moz-initial","fill","none","scale-down",void 0];function o(e){return void 0!==e.default}function u(e){return void 0===e?e:"number"==typeof e?Number.isFinite(e)?e:NaN:"string"==typeof e&&/^[0-9]+$/.test(e)?parseInt(e,10):NaN}function l({src:e,sizes:t,unoptimized:r=!1,priority:c=!1,preload:h=!1,loading:d,className:f,quality:p,width:y,height:m,fill:g=!1,style:v,overrideSrc:b,onLoad:w,onLoadingComplete:x,placeholder:C="empty",blurDataURL:O,fetchPriority:S,decoding:P="async",layout:j,objectFit:M,objectPosition:k,lazyBoundary:_,lazyRoot:E,...q},R){var T;let A,F,D,{imgConf:I,showAltText:U,blurComplete:Q,defaultLoader:N}=R,L=I||n.imageConfigDefault;if("allSizes"in L)A=L;else{let e=[...L.deviceSizes,...L.imageSizes].sort((e,t)=>e-t),t=L.deviceSizes.sort((e,t)=>e-t),r=L.qualities?.sort((e,t)=>e-t);A={...L,allSizes:e,deviceSizes:t,qualities:r}}if(void 0===N)throw Object.defineProperty(Error("images.loaderFile detected but the file is missing default export.\nRead more: https://nextjs.org/docs/messages/invalid-images-config"),"__NEXT_ERROR_CODE",{value:"E163",enumerable:!1,configurable:!0});let $=q.loader||N;delete q.loader,delete q.srcSet;let z="__next_img_default"in $;if(z){if("custom"===A.loader)throw Object.defineProperty(Error(`Image with src "${e}" is missing "loader" prop. +Read more: https://nextjs.org/docs/messages/next-image-missing-loader`),"__NEXT_ERROR_CODE",{value:"E252",enumerable:!1,configurable:!0})}else{let e=$;$=t=>{let{config:r,...i}=t;return e(i)}}if(j){"fill"===j&&(g=!0);let e={intrinsic:{maxWidth:"100%",height:"auto"},responsive:{width:"100%",height:"auto"}}[j];e&&(v={...v,...e});let r={responsive:"100vw",fill:"100vw"}[j];r&&!t&&(t=r)}let K="",B=u(y),H=u(m);if((T=e)&&"object"==typeof T&&(o(T)||void 0!==T.src)){let t=o(e)?e.default:e;if(!t.src)throw Object.defineProperty(Error(`An object should only be passed to the image component src parameter if it comes from a static image import. It must include src. Received ${JSON.stringify(t)}`),"__NEXT_ERROR_CODE",{value:"E460",enumerable:!1,configurable:!0});if(!t.height||!t.width)throw Object.defineProperty(Error(`An object should only be passed to the image component src parameter if it comes from a static image import. It must include height and width. Received ${JSON.stringify(t)}`),"__NEXT_ERROR_CODE",{value:"E48",enumerable:!1,configurable:!0});if(F=t.blurWidth,D=t.blurHeight,O=O||t.blurDataURL,K=t.src,!g)if(B||H){if(B&&!H){let e=B/t.width;H=Math.round(t.height*e)}else if(!B&&H){let e=H/t.height;B=Math.round(t.width*e)}}else B=t.width,H=t.height}let G=!c&&!h&&("lazy"===d||void 0===d);(!(e="string"==typeof e?e:K)||e.startsWith("data:")||e.startsWith("blob:"))&&(r=!0,G=!1),A.unoptimized&&(r=!0),z&&!A.dangerouslyAllowSVG&&e.split("?",1)[0].endsWith(".svg")&&(r=!0);let V=u(p),W=Object.assign(g?{position:"absolute",height:"100%",width:"100%",left:0,top:0,right:0,bottom:0,objectFit:M,objectPosition:k}:{},U?{}:{color:"transparent"},v),X=Q||"empty"===C?null:"blur"===C?`url("data:image/svg+xml;charset=utf-8,${(0,s.getImageBlurSvg)({widthInt:B,heightInt:H,blurWidth:F,blurHeight:D,blurDataURL:O||"",objectFit:W.objectFit})}")`:`url("${C}")`,Z=a.includes(W.objectFit)?"fill"===W.objectFit?"100% 100%":"cover":W.objectFit,J=X?{backgroundSize:Z,backgroundPosition:W.objectPosition||"50% 50%",backgroundRepeat:"no-repeat",backgroundImage:X}:{},Y=function({config:e,src:t,unoptimized:r,width:s,quality:n,sizes:a,loader:o}){if(r){if(t.startsWith("/")&&!t.startsWith("//")){let e=(0,i.getDeploymentId)();if(e){let r=t.indexOf("?");if(-1!==r){let i=new URLSearchParams(t.slice(r+1));i.get("dpl")||(i.append("dpl",e),t=t.slice(0,r)+"?"+i.toString())}else t+=`?dpl=${e}`}}return{src:t,srcSet:void 0,sizes:void 0}}let{widths:u,kind:l}=function({deviceSizes:e,allSizes:t},r,i){if(i){let r=/(^|\s)(1?\d?\d)vw/g,s=[];for(let e;e=r.exec(i);)s.push(parseInt(e[2]));if(s.length){let r=.01*Math.min(...s);return{widths:t.filter(t=>t>=e[0]*r),kind:"w"}}return{widths:t,kind:"w"}}return"number"!=typeof r?{widths:e,kind:"w"}:{widths:[...new Set([r,2*r].map(e=>t.find(t=>t>=e)||t[t.length-1]))],kind:"x"}}(e,s,a),c=u.length-1;return{sizes:a||"w"!==l?a:"100vw",srcSet:u.map((r,i)=>`${o({config:e,src:t,quality:n,width:r})} ${"w"===l?r:i+1}${l}`).join(", "),src:o({config:e,src:t,quality:n,width:u[c]})}}({config:A,src:e,unoptimized:r,width:B,quality:V,sizes:t,loader:$}),ee=G?"lazy":d;return{props:{...q,loading:ee,fetchPriority:S,width:B,height:H,decoding:P,className:f,style:{...W,...J},sizes:Y.sizes,srcSet:Y.srcSet,src:b||Y.src},meta:{unoptimized:r,preload:h||c,placeholder:C,fill:g}}}},98879,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"default",{enumerable:!0,get:function(){return o}});let i=e.r(71645),s="u"{}:i.useLayoutEffect,a=s?()=>{}:i.useEffect;function o(e){let{headManager:t,reduceComponentsToState:r}=e;function o(){if(t&&t.mountedInstances){let e=i.Children.toArray(Array.from(t.mountedInstances).filter(Boolean));t.updateHead(r(e))}}return s&&(t?.mountedInstances?.add(e.children),o()),n(()=>(t?.mountedInstances?.add(e.children),()=>{t?.mountedInstances?.delete(e.children)})),n(()=>(t&&(t._pendingUpdate=o),()=>{t&&(t._pendingUpdate=o)})),a(()=>(t&&t._pendingUpdate&&(t._pendingUpdate(),t._pendingUpdate=null),()=>{t&&t._pendingUpdate&&(t._pendingUpdate(),t._pendingUpdate=null)})),null}},25633,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var i={default:function(){return y},defaultHead:function(){return h}};for(var s in i)Object.defineProperty(r,s,{enumerable:!0,get:i[s]});let n=e.r(55682),a=e.r(90809),o=e.r(43476),u=a._(e.r(71645)),l=n._(e.r(98879)),c=e.r(42732);function h(){return[(0,o.jsx)("meta",{charSet:"utf-8"},"charset"),(0,o.jsx)("meta",{name:"viewport",content:"width=device-width"},"viewport")]}function d(e,t){return"string"==typeof t||"number"==typeof t?e:t.type===u.default.Fragment?e.concat(u.default.Children.toArray(t.props.children).reduce((e,t)=>"string"==typeof t||"number"==typeof t?e:e.concat(t),[])):e.concat(t)}e.r(33525);let f=["name","httpEquiv","charSet","itemProp"];function p(e){let t,r,i,s;return e.reduce(d,[]).reverse().concat(h().reverse()).filter((t=new Set,r=new Set,i=new Set,s={},e=>{let n=!0,a=!1;if(e.key&&"number"!=typeof e.key&&e.key.indexOf("$")>0){a=!0;let r=e.key.slice(e.key.indexOf("$")+1);t.has(r)?n=!1:t.add(r)}switch(e.type){case"title":case"base":r.has(e.type)?n=!1:r.add(e.type);break;case"meta":for(let t=0,r=f.length;t{let r=e.key||t;return u.default.cloneElement(e,{key:r})})}let y=function({children:e}){let t=(0,u.useContext)(c.HeadManagerContext);return(0,o.jsx)(l.default,{reduceComponentsToState:p,headManager:t,children:e})};("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},18556,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"ImageConfigContext",{enumerable:!0,get:function(){return n}});let i=e.r(55682)._(e.r(71645)),s=e.r(87690),n=i.default.createContext(s.imageConfigDefault)},65856,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"RouterContext",{enumerable:!0,get:function(){return i}});let i=e.r(55682)._(e.r(71645)).default.createContext(null)},70965,(e,t,r)=>{"use strict";function i(e,t){let r=e||75;return t?.qualities?.length?t.qualities.reduce((e,t)=>Math.abs(t-r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"default",{enumerable:!0,get:function(){return a}});let i=e.r(70965),s=e.r(43369);function n({config:e,src:t,width:r,quality:a}){let o=(0,s.getDeploymentId)();if(t.startsWith("/")&&!t.startsWith("//")){let e=t.indexOf("?");if(-1!==e){let r=new URLSearchParams(t.slice(e+1)),i=r.get("dpl");if(i){o=i,r.delete("dpl");let s=r.toString();t=t.slice(0,e)+(s?"?"+s:"")}}}if(t.startsWith("/")&&t.includes("?")&&e.localPatterns?.length===1&&"**"===e.localPatterns[0].pathname&&""===e.localPatterns[0].search)throw Object.defineProperty(Error(`Image with src "${t}" is using a query string which is not configured in images.localPatterns. +Read more: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`),"__NEXT_ERROR_CODE",{value:"E871",enumerable:!1,configurable:!0});let u=(0,i.findClosestQuality)(a,e);return`${e.path}?url=${encodeURIComponent(t)}&w=${r}&q=${u}${t.startsWith("/")&&o?`&dpl=${o}`:""}`}n.__next_img_default=!0;let a=n},5500,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"Image",{enumerable:!0,get:function(){return w}});let i=e.r(55682),s=e.r(90809),n=e.r(43476),a=s._(e.r(71645)),o=i._(e.r(74080)),u=i._(e.r(25633)),l=e.r(8927),c=e.r(87690),h=e.r(18556);e.r(33525);let d=e.r(65856),f=i._(e.r(1948)),p=e.r(18581),y={deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],qualities:[75],path:"/_next/image",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!1};function m(e,t,r,i,s,n,a){let o=e?.src;e&&e["data-loaded-src"]!==o&&(e["data-loaded-src"]=o,("decode"in e?e.decode():Promise.resolve()).catch(()=>{}).then(()=>{if(e.parentElement&&e.isConnected){if("empty"!==t&&s(!0),r?.current){let t=new Event("load");Object.defineProperty(t,"target",{writable:!1,value:e});let i=!1,s=!1;r.current({...t,nativeEvent:t,currentTarget:e,target:e,isDefaultPrevented:()=>i,isPropagationStopped:()=>s,persist:()=>{},preventDefault:()=>{i=!0,t.preventDefault()},stopPropagation:()=>{s=!0,t.stopPropagation()}})}i?.current&&i.current(e)}}))}function g(e){return a.use?{fetchPriority:e}:{fetchpriority:e}}"u"{let M=(0,a.useCallback)(e=>{e&&(S&&(e.src=e.src),e.complete&&m(e,h,v,b,w,f,C))},[e,h,v,b,w,S,f,C]),k=(0,p.useMergedRef)(j,M);return(0,n.jsx)("img",{...P,...g(c),loading:d,width:s,height:i,decoding:o,"data-nimg":y?"fill":"1",className:u,style:l,sizes:r,srcSet:t,src:e,ref:k,onLoad:e=>{m(e.currentTarget,h,v,b,w,f,C)},onError:e=>{x(!0),"empty"!==h&&w(!0),S&&S(e)}})});function b({isAppRouter:e,imgAttributes:t}){let r={as:"image",imageSrcSet:t.srcSet,imageSizes:t.sizes,crossOrigin:t.crossOrigin,referrerPolicy:t.referrerPolicy,...g(t.fetchPriority)};return e&&o.default.preload?(o.default.preload(t.src,r),null):(0,n.jsx)(u.default,{children:(0,n.jsx)("link",{rel:"preload",href:t.srcSet?void 0:t.src,...r},"__nimg-"+t.src+t.srcSet+t.sizes)})}let w=(0,a.forwardRef)((e,t)=>{let r=(0,a.useContext)(d.RouterContext),i=(0,a.useContext)(h.ImageConfigContext),s=(0,a.useMemo)(()=>{let e=y||i||c.imageConfigDefault,t=[...e.deviceSizes,...e.imageSizes].sort((e,t)=>e-t),r=e.deviceSizes.sort((e,t)=>e-t),s=e.qualities?.sort((e,t)=>e-t);return{...e,allSizes:t,deviceSizes:r,qualities:s,localPatterns:"u"{p.current=o},[o]);let m=(0,a.useRef)(u);(0,a.useEffect)(()=>{m.current=u},[u]);let[g,w]=(0,a.useState)(!1),[x,C]=(0,a.useState)(!1),{props:O,meta:S}=(0,l.getImgProps)(e,{defaultLoader:f.default,imgConf:s,blurComplete:g,showAltText:x});return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(v,{...O,unoptimized:S.unoptimized,placeholder:S.placeholder,fill:S.fill,onLoadRef:p,onLoadingCompleteRef:m,setBlurComplete:w,setShowAltText:C,sizesInput:e.sizes,ref:t}),S.preload?(0,n.jsx)(b,{isAppRouter:!r,imgAttributes:O}):null]})});("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},94909,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var i={default:function(){return c},getImageProps:function(){return l}};for(var s in i)Object.defineProperty(r,s,{enumerable:!0,get:i[s]});let n=e.r(55682),a=e.r(8927),o=e.r(5500),u=n._(e.r(1948));function l(e){let{props:t}=(0,a.getImgProps)(e,{defaultLoader:u.default,imgConf:{deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],qualities:[75],path:"/_next/image",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!1}});for(let[e,r]of Object.entries(t))void 0===r&&delete t[e];return{props:t}}let c=o.Image},57688,(e,t,r)=>{t.exports=e.r(94909)},82649,e=>{"use strict";var t=e.i(43476),r=e.i(57688);e.s(["BrandLogo",0,function({compact:e=!1}){return(0,t.jsx)("div",{className:"flex items-center gap-3",children:(0,t.jsx)(r.default,{src:"/schubamed-logo.svg",alt:"SCHUBAMED Validation Suite",width:e?180:240,height:64,priority:!0})})}])},94827,20286,e=>{"use strict";var t=e.i(75254);let r=(0,t.default)("Gauge",[["path",{d:"m12 14 4-4",key:"9kzdfg"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0",key:"19p75a"}]]);e.s(["Gauge",0,r],94827);let i=(0,t.default)("Stethoscope",[["path",{d:"M11 2v2",key:"1539x4"}],["path",{d:"M5 2v2",key:"1yf1q8"}],["path",{d:"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1",key:"rb5t3r"}],["path",{d:"M8 15a6 6 0 0 0 12 0v-3",key:"x18d4x"}],["circle",{cx:"20",cy:"10",r:"2",key:"ts1r5v"}]]);e.s(["Stethoscope",0,i],20286)},48026,e=>{"use strict";var t=e.i(43476),r=e.i(75254);let i=(0,r.default)("Building2",[["path",{d:"M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18Z",key:"1b4qmf"}],["path",{d:"M6 12H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2",key:"i71pzd"}],["path",{d:"M18 9h2a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-2",key:"10jefs"}],["path",{d:"M10 6h4",key:"1itunk"}],["path",{d:"M10 10h4",key:"tcdvrf"}],["path",{d:"M10 14h4",key:"kelpxr"}],["path",{d:"M10 18h4",key:"1ulq68"}]]),s=(0,r.default)("ClipboardCheck",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"m9 14 2 2 4-4",key:"df797q"}]]),n=(0,r.default)("ClipboardPlus",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M9 14h6",key:"159ibu"}],["path",{d:"M12 17v-6",key:"1y8rbf"}]]),a=(0,r.default)("FileArchive",[["path",{d:"M10 12v-1",key:"v7bkov"}],["path",{d:"M10 18v-2",key:"1cjy8d"}],["path",{d:"M10 7V6",key:"dljcrl"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M15.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 .274 1.01",key:"gkbcor"}],["circle",{cx:"10",cy:"20",r:"2",key:"1xzdoj"}]]),o=(0,r.default)("FileCog",[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m3.2 12.9-.9-.4",key:"1i3dj5"}],["path",{d:"m3.2 15.1-.9.4",key:"1fvgj0"}],["path",{d:"M4.677 21.5a2 2 0 0 0 1.313.5H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2.5",key:"1yo3oz"}],["path",{d:"m4.9 11.2-.4-.9",key:"otmhb9"}],["path",{d:"m4.9 16.8-.4.9",key:"1b8z07"}],["path",{d:"m7.5 10.3-.4.9",key:"11k65u"}],["path",{d:"m7.5 17.7-.4-.9",key:"431x55"}],["path",{d:"m9.7 12.5-.9.4",key:"87sjan"}],["path",{d:"m9.7 15.5-.9-.4",key:"khqm91"}],["circle",{cx:"6",cy:"14",r:"3",key:"a1xfv6"}]]);var u=e.i(43527),l=e.i(94827);let c=(0,r.default)("LayoutDashboard",[["rect",{width:"7",height:"9",x:"3",y:"3",rx:"1",key:"10lvy0"}],["rect",{width:"7",height:"5",x:"14",y:"3",rx:"1",key:"16une8"}],["rect",{width:"7",height:"9",x:"14",y:"12",rx:"1",key:"1hutg5"}],["rect",{width:"7",height:"5",x:"3",y:"16",rx:"1",key:"ldoo1y"}]]),h=(0,r.default)("LogOut",[["path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4",key:"1uf3rs"}],["polyline",{points:"16 17 21 12 16 7",key:"1gabdz"}],["line",{x1:"21",x2:"9",y1:"12",y2:"12",key:"1uyos4"}]]),d=(0,r.default)("MapPin",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}]]),f=(0,r.default)("Shield",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}]]);var p=e.i(20286);let y=(0,r.default)("UserRound",[["circle",{cx:"12",cy:"8",r:"5",key:"1hypcn"}],["path",{d:"M20 21a8 8 0 0 0-16 0",key:"rfgkzh"}]]);var m=e.i(22016),g=e.i(18566),v=e.i(71645),b=e.i(28779),w=e.i(82649);let x="/validations/quick-start",C=["admin","pruefer","mitarbeiter"],O=[{href:"/dashboard",label:"Dashboard",icon:c},{href:"/customers",label:"Kunden",icon:i},{href:"/customers/import",label:"Kunden importieren",icon:u.FileUp,adminOnly:!0},{href:"/locations",label:"Standorte",icon:d},{href:"/contacts",label:"Ansprechpartner",icon:y},{href:"/devices",label:"Geraete",icon:p.Stethoscope},{href:"/equipment",label:"Pruefmittel",icon:l.Gauge},{href:"/validations",label:"Validierungen",icon:s},{href:"/documents",label:"Dokumente",icon:a},{href:"/settings/report-layout",label:"Berichtseinstellungen",icon:o,adminOnly:!0},{href:"/users",label:"Benutzer",icon:f,adminOnly:!0}];function S(e,t){return"/customers"===t?e===t:"/validations"===t?e===t||e.startsWith(`${t}/`)&&e!==x:e===t||e.startsWith(`${t}/`)}e.s(["AppShell",0,function({children:e}){var r;let i=(0,g.usePathname)(),s=(0,b.useAuth)(),a=!!(r=s.user?.role)&&C.includes(r),o=i===x;return(0,v.useEffect)(()=>{s.user?.must_change_password&&"/profile/security"!==i&&window.location.replace("/profile/security")},[s.user?.must_change_password,i]),(0,t.jsxs)("div",{className:"min-h-screen bg-background text-text",children:[(0,t.jsxs)("header",{className:"sticky top-0 z-40 border-b border-border bg-surface/95 px-4 py-4 shadow-soft backdrop-blur lg:hidden",children:[(0,t.jsx)("div",{className:"flex items-center justify-between gap-3",children:(0,t.jsx)(w.BrandLogo,{compact:!0})}),a?(0,t.jsxs)(m.default,{href:x,"aria-current":o?"page":void 0,className:`mt-4 flex min-h-12 w-full items-center justify-center gap-3 rounded-lg border px-4 text-sm font-bold shadow-soft transition hover:shadow-md focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${o?"border-primary-dark bg-primary-dark text-white":"border-primary bg-primary text-white hover:bg-primary-dark"}`,children:[(0,t.jsx)(n,{className:"h-5 w-5"}),(0,t.jsx)("span",{children:"Neue Validierung starten"})]}):null,(0,t.jsx)("nav",{className:"mt-4 flex gap-2 overflow-x-auto pb-1",children:O.map((e,r)=>{let n=e.icon;if("adminOnly"in e&&e.adminOnly&&s.user?.role!=="admin")return null;let a=S(i,e.href);return(0,t.jsxs)(m.default,{href:e.href,"aria-current":a?"page":void 0,className:`flex min-h-11 shrink-0 items-center gap-2 rounded-lg border px-3 text-sm font-medium transition hover:shadow-soft focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${a?"border-accent bg-accent/35 text-primary-dark":"border-border bg-white text-text-light hover:bg-background hover:text-text"}`,children:[(0,t.jsx)(n,{className:"h-4 w-4"}),(0,t.jsx)("span",{children:e.label})]},`${e.label}-mobile-${r}`)})})]}),(0,t.jsxs)("aside",{className:"fixed inset-y-0 left-0 z-30 hidden w-72 border-r border-border bg-surface px-5 py-6 lg:block",children:[(0,t.jsx)("div",{className:"mb-8",children:(0,t.jsx)(w.BrandLogo,{compact:!0})}),a?(0,t.jsxs)(m.default,{href:x,"aria-current":o?"page":void 0,className:`mb-6 flex min-h-12 w-full items-center justify-center gap-3 rounded-lg border px-4 text-sm font-bold shadow-soft transition hover:shadow-md focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${o?"border-primary-dark bg-primary-dark text-white":"border-primary bg-primary text-white hover:bg-primary-dark"}`,children:[(0,t.jsx)(n,{className:"h-5 w-5"}),(0,t.jsx)("span",{children:"Neue Validierung starten"})]}):null,(0,t.jsx)("nav",{className:"space-y-1 pb-20",children:O.map((e,r)=>{let n=e.icon;if("adminOnly"in e&&e.adminOnly&&s.user?.role!=="admin")return null;let a=S(i,e.href);return(0,t.jsxs)(m.default,{href:e.href,"aria-current":a?"page":void 0,className:`flex h-11 items-center gap-3 rounded-lg px-3 text-sm font-medium transition hover:shadow-soft active:scale-[0.98] ${a?"bg-accent/35 text-primary-dark":"text-text-light hover:bg-background hover:text-text"}`,children:[(0,t.jsx)(n,{className:"h-4 w-4"}),(0,t.jsx)("span",{children:e.label})]},`${e.label}-${r}`)})}),(0,t.jsxs)("button",{type:"button",onClick:s.logout,className:"btn btn-primary absolute bottom-6 left-5 right-5 h-11 text-sm",children:[(0,t.jsx)(h,{className:"h-4 w-4"}),"Logout"]})]}),(0,t.jsx)("main",{className:"lg:pl-72",children:(0,t.jsx)("div",{className:"mx-auto min-h-screen max-w-7xl px-4 py-5 sm:px-6 lg:px-10 lg:py-8",children:e})})]})}],48026)},24487,e=>{"use strict";var t=e.i(43476),r=e.i(19273),i=e.i(86491),s=e.i(40143),n=e.i(15823),a=class extends n.Subscribable{constructor(e={}){super(),this.config=e,this.#b=new Map}#b;build(e,t,s){let n=t.queryKey,a=t.queryHash??(0,r.hashQueryKeyByOptions)(n,t),o=this.get(a);return o||(o=new i.Query({client:e,queryKey:n,queryHash:a,options:e.defaultQueryOptions(t),state:s,defaultOptions:e.getQueryDefaults(n)}),this.add(o)),o}add(e){this.#b.has(e.queryHash)||(this.#b.set(e.queryHash,e),this.notify({type:"added",query:e}))}remove(e){let t=this.#b.get(e.queryHash);t&&(e.destroy(),t===e&&this.#b.delete(e.queryHash),this.notify({type:"removed",query:e}))}clear(){s.notifyManager.batch(()=>{this.getAll().forEach(e=>{this.remove(e)})})}get(e){return this.#b.get(e)}getAll(){return[...this.#b.values()]}find(e){let t={exact:!0,...e};return this.getAll().find(e=>(0,r.matchQuery)(t,e))}findAll(e={}){let t=this.getAll();return Object.keys(e).length>0?t.filter(t=>(0,r.matchQuery)(e,t)):t}notify(e){s.notifyManager.batch(()=>{this.listeners.forEach(t=>{t(e)})})}onFocus(){s.notifyManager.batch(()=>{this.getAll().forEach(e=>{e.onFocus()})})}onOnline(){s.notifyManager.batch(()=>{this.getAll().forEach(e=>{e.onOnline()})})}},o=e.i(14272),u=n,l=class extends u.Subscribable{constructor(e={}){super(),this.config=e,this.#w=new Set,this.#x=new Map,this.#C=0}#w;#x;#C;build(e,t,r){let i=new o.Mutation({client:e,mutationCache:this,mutationId:++this.#C,options:e.defaultMutationOptions(t),state:r});return this.add(i),i}add(e){this.#w.add(e);let t=c(e);if("string"==typeof t){let r=this.#x.get(t);r?r.push(e):this.#x.set(t,[e])}this.notify({type:"added",mutation:e})}remove(e){if(this.#w.delete(e)){let t=c(e);if("string"==typeof t){let r=this.#x.get(t);if(r)if(r.length>1){let t=r.indexOf(e);-1!==t&&r.splice(t,1)}else r[0]===e&&this.#x.delete(t)}}this.notify({type:"removed",mutation:e})}canRun(e){let t=c(e);if("string"!=typeof t)return!0;{let r=this.#x.get(t),i=r?.find(e=>"pending"===e.state.status);return!i||i===e}}runNext(e){let t=c(e);if("string"!=typeof t)return Promise.resolve();{let r=this.#x.get(t)?.find(t=>t!==e&&t.state.isPaused);return r?.continue()??Promise.resolve()}}clear(){s.notifyManager.batch(()=>{this.#w.forEach(e=>{this.notify({type:"removed",mutation:e})}),this.#w.clear(),this.#x.clear()})}getAll(){return Array.from(this.#w)}find(e){let t={exact:!0,...e};return this.getAll().find(e=>(0,r.matchMutation)(t,e))}findAll(e={}){return this.getAll().filter(t=>(0,r.matchMutation)(e,t))}notify(e){s.notifyManager.batch(()=>{this.listeners.forEach(t=>{t(e)})})}resumePausedMutations(){let e=this.getAll().filter(e=>e.state.isPaused);return s.notifyManager.batch(()=>Promise.all(e.map(e=>e.continue().catch(r.noop))))}};function c(e){return e.options.scope?.id}var h=e.i(75555),d=e.i(14448),f=class{#O;#v;#f;#S;#P;#j;#M;#k;constructor(e={}){this.#O=e.queryCache||new a,this.#v=e.mutationCache||new l,this.#f=e.defaultOptions||{},this.#S=new Map,this.#P=new Map,this.#j=0}mount(){this.#j++,1===this.#j&&(this.#M=h.focusManager.subscribe(async e=>{e&&(await this.resumePausedMutations(),this.#O.onFocus())}),this.#k=d.onlineManager.subscribe(async e=>{e&&(await this.resumePausedMutations(),this.#O.onOnline())}))}unmount(){this.#j--,0===this.#j&&(this.#M?.(),this.#M=void 0,this.#k?.(),this.#k=void 0)}isFetching(e){return this.#O.findAll({...e,fetchStatus:"fetching"}).length}isMutating(e){return this.#v.findAll({...e,status:"pending"}).length}getQueryData(e){let t=this.defaultQueryOptions({queryKey:e});return this.#O.get(t.queryHash)?.state.data}ensureQueryData(e){let t=this.defaultQueryOptions(e),i=this.#O.build(this,t),s=i.state.data;return void 0===s?this.fetchQuery(e):(e.revalidateIfStale&&i.isStaleByTime((0,r.resolveStaleTime)(t.staleTime,i))&&this.prefetchQuery(t),Promise.resolve(s))}getQueriesData(e){return this.#O.findAll(e).map(({queryKey:e,state:t})=>[e,t.data])}setQueryData(e,t,i){let s=this.defaultQueryOptions({queryKey:e}),n=this.#O.get(s.queryHash),a=n?.state.data,o=(0,r.functionalUpdate)(t,a);if(void 0!==o)return this.#O.build(this,s).setData(o,{...i,manual:!0})}setQueriesData(e,t,r){return s.notifyManager.batch(()=>this.#O.findAll(e).map(({queryKey:e})=>[e,this.setQueryData(e,t,r)]))}getQueryState(e){let t=this.defaultQueryOptions({queryKey:e});return this.#O.get(t.queryHash)?.state}removeQueries(e){let t=this.#O;s.notifyManager.batch(()=>{t.findAll(e).forEach(e=>{t.remove(e)})})}resetQueries(e,t){let r=this.#O;return s.notifyManager.batch(()=>(r.findAll(e).forEach(e=>{e.reset()}),this.refetchQueries({type:"active",...e},t)))}cancelQueries(e,t={}){let i={revert:!0,...t};return Promise.all(s.notifyManager.batch(()=>this.#O.findAll(e).map(e=>e.cancel(i)))).then(r.noop).catch(r.noop)}invalidateQueries(e,t={}){return s.notifyManager.batch(()=>(this.#O.findAll(e).forEach(e=>{e.invalidate()}),e?.refetchType==="none")?Promise.resolve():this.refetchQueries({...e,type:e?.refetchType??e?.type??"active"},t))}refetchQueries(e,t={}){let i={...t,cancelRefetch:t.cancelRefetch??!0};return Promise.all(s.notifyManager.batch(()=>this.#O.findAll(e).filter(e=>!e.isDisabled()&&!e.isStatic()).map(e=>{let t=e.fetch(void 0,i);return i.throwOnError||(t=t.catch(r.noop)),"paused"===e.state.fetchStatus?Promise.resolve():t}))).then(r.noop)}fetchQuery(e){let t=this.defaultQueryOptions(e);void 0===t.retry&&(t.retry=!1);let i=this.#O.build(this,t);return i.isStaleByTime((0,r.resolveStaleTime)(t.staleTime,i))?i.fetch(t):Promise.resolve(i.state.data)}prefetchQuery(e){return this.fetchQuery(e).then(r.noop).catch(r.noop)}fetchInfiniteQuery(e){return e._type="infinite",this.fetchQuery(e)}prefetchInfiniteQuery(e){return this.fetchInfiniteQuery(e).then(r.noop).catch(r.noop)}ensureInfiniteQueryData(e){return e._type="infinite",this.ensureQueryData(e)}resumePausedMutations(){return d.onlineManager.isOnline()?this.#v.resumePausedMutations():Promise.resolve()}getQueryCache(){return this.#O}getMutationCache(){return this.#v}getDefaultOptions(){return this.#f}setDefaultOptions(e){this.#f=e}setQueryDefaults(e,t){this.#S.set((0,r.hashKey)(e),{queryKey:e,defaultOptions:t})}getQueryDefaults(e){let t=[...this.#S.values()],i={};return t.forEach(t=>{(0,r.partialMatchKey)(e,t.queryKey)&&Object.assign(i,t.defaultOptions)}),i}setMutationDefaults(e,t){this.#P.set((0,r.hashKey)(e),{mutationKey:e,defaultOptions:t})}getMutationDefaults(e){let t=[...this.#P.values()],i={};return t.forEach(t=>{(0,r.partialMatchKey)(e,t.mutationKey)&&Object.assign(i,t.defaultOptions)}),i}defaultQueryOptions(e){if(e._defaulted)return e;let t={...this.#f.queries,...this.getQueryDefaults(e.queryKey),...e,_defaulted:!0};return t.queryHash||(t.queryHash=(0,r.hashQueryKeyByOptions)(t.queryKey,t)),void 0===t.refetchOnReconnect&&(t.refetchOnReconnect="always"!==t.networkMode),void 0===t.throwOnError&&(t.throwOnError=!!t.suspense),!t.networkMode&&t.persister&&(t.networkMode="offlineFirst"),t.queryFn===r.skipToken&&(t.enabled=!1),t}defaultMutationOptions(e){return e?._defaulted?e:{...this.#f.mutations,...e?.mutationKey&&this.getMutationDefaults(e.mutationKey),...e,_defaulted:!0}}clear(){this.#O.clear(),this.#v.clear()}},p=e.i(12598),y=e.i(71645);e.s(["QueryProvider",0,function({children:e}){let[r]=(0,y.useState)(()=>new f);return(0,t.jsx)(p.QueryClientProvider,{client:r,children:e})}],24487)}]); \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/static/chunks/2-nz3xcpe_pw_.js b/validation-suite/frontend/atlas/.next/static/chunks/0lz93ryxnzgoq.js similarity index 88% rename from validation-suite/frontend/atlas/.next/static/chunks/2-nz3xcpe_pw_.js rename to validation-suite/frontend/atlas/.next/static/chunks/0lz93ryxnzgoq.js index 2778df5a..7849d130 100644 --- a/validation-suite/frontend/atlas/.next/static/chunks/2-nz3xcpe_pw_.js +++ b/validation-suite/frontend/atlas/.next/static/chunks/0lz93ryxnzgoq.js @@ -1 +1 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,54858,e=>{"use strict";let t="/api/v1";async function s(e,t){let s=await e.text();if(!s)return t;try{let e=JSON.parse(s);return e.detail??e.message??s}catch{return s}}async function r(e,t){let s=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:e,password:t}),credentials:"include"});if(!s.ok){let e=Error(await s.text()||`HTTP ${s.status}`);throw e.status=s.status,e}return s.json()}async function i(e,s){let r=await fetch(`${t}${e}`,{cache:"no-store",credentials:"include"});if(!r.ok)throw Error(`API request failed: ${r.status}`);return r.json()}async function n(e,r,i,n){let a=await fetch(`${t}${e}`,{method:i,headers:{"Content-Type":"application/json"},body:JSON.stringify(n),credentials:"include"});if(!a.ok)throw Error(await s(a,`API request failed: ${a.status}`));return a.json()}async function a(e,r){let i=await fetch(`${t}${e}`,{method:"DELETE",credentials:"include"});if(!i.ok)throw Error(await s(i,`API request failed: ${i.status}`))}async function l(e,r,i){let n=await fetch(`${t}${e}`,{...i,headers:{"Content-Type":"application/json",...i?.headers??{}},credentials:"include"});if(!n.ok)throw Error(await s(n,`API request failed: ${n.status}`));return n.json()}e.s(["API_BASE",0,t,"apiDelete",0,a,"apiFetch",0,l,"apiGet",0,i,"apiSend",0,n,"login",0,r,"normalizeValidationPayload",0,function(e){return{...e,...Object.fromEntries(["contact_id","examiner_id"].map(t=>[t,e[t]||null]))}}])},66027,e=>{"use strict";let t;var s=e.i(75555),r=e.i(73911),i=e.i(40143),n=e.i(86491),a=e.i(15823),l=e.i(93803),o=e.i(19273),u=e.i(80166),c=class extends a.Subscribable{constructor(e,t){super(),this.options=t,this.#e=e,this.#t=null,this.#s=(0,l.pendingThenable)(),this.bindMethods(),this.setOptions(t)}#e;#r=void 0;#i=void 0;#n=void 0;#a;#l;#s;#t;#o;#u;#c;#h;#d;#p;#m=new Set;bindMethods(){this.refetch=this.refetch.bind(this)}onSubscribe(){1===this.listeners.size&&(this.#r.addObserver(this),h(this.#r,this.options)?this.#f():this.updateResult(),this.#y())}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return d(this.#r,this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return d(this.#r,this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,this.#b(),this.#x(),this.#r.removeObserver(this)}setOptions(e){let t=this.options,s=this.#r;if(this.options=this.#e.defaultQueryOptions(e),void 0!==this.options.enabled&&"boolean"!=typeof this.options.enabled&&"function"!=typeof this.options.enabled&&"boolean"!=typeof(0,o.resolveQueryBoolean)(this.options.enabled,this.#r))throw Error("Expected enabled to be a boolean or a callback that returns a boolean");this.#g(),this.#r.setOptions(this.options),t._defaulted&&!(0,o.shallowEqualObjects)(this.options,t)&&this.#e.getQueryCache().notify({type:"observerOptionsUpdated",query:this.#r,observer:this});let r=this.hasListeners();r&&p(this.#r,s,this.options,t)&&this.#f(),this.updateResult(),r&&(this.#r!==s||(0,o.resolveQueryBoolean)(this.options.enabled,this.#r)!==(0,o.resolveQueryBoolean)(t.enabled,this.#r)||(0,o.resolveStaleTime)(this.options.staleTime,this.#r)!==(0,o.resolveStaleTime)(t.staleTime,this.#r))&&this.#v();let i=this.#R();r&&(this.#r!==s||(0,o.resolveQueryBoolean)(this.options.enabled,this.#r)!==(0,o.resolveQueryBoolean)(t.enabled,this.#r)||i!==this.#p)&&this.#j(i)}getOptimisticResult(e){var t,s;let r=this.#e.getQueryCache().build(this.#e,e),i=this.createResult(r,e);return t=this,s=i,(0,o.shallowEqualObjects)(t.getCurrentResult(),s)||(this.#n=i,this.#l=this.options,this.#a=this.#r.state),i}getCurrentResult(){return this.#n}trackResult(e,t){return new Proxy(e,{get:(e,s)=>(this.trackProp(s),t?.(s),"promise"===s&&(this.trackProp("data"),this.options.experimental_prefetchInRender||"pending"!==this.#s.status||this.#s.reject(Error("experimental_prefetchInRender feature flag is not enabled"))),Reflect.get(e,s))})}trackProp(e){this.#m.add(e)}getCurrentQuery(){return this.#r}refetch({...e}={}){return this.fetch({...e})}fetchOptimistic(e){let t=this.#e.defaultQueryOptions(e),s=this.#e.getQueryCache().build(this.#e,t);return s.fetch().then(()=>this.createResult(s,t))}fetch(e){return this.#f({...e,cancelRefetch:e.cancelRefetch??!0}).then(()=>(this.updateResult(),this.#n))}#f(e){this.#g();let t=this.#r.fetch(this.options,e);return e?.throwOnError||(t=t.catch(o.noop)),t}#v(){this.#b();let e=(0,o.resolveStaleTime)(this.options.staleTime,this.#r);if(r.environmentManager.isServer()||this.#n.isStale||!(0,o.isValidTimeout)(e))return;let t=(0,o.timeUntilStale)(this.#n.dataUpdatedAt,e);this.#h=u.timeoutManager.setTimeout(()=>{this.#n.isStale||this.updateResult()},t+1)}#R(){return("function"==typeof this.options.refetchInterval?this.options.refetchInterval(this.#r):this.options.refetchInterval)??!1}#j(e){this.#x(),this.#p=e,!r.environmentManager.isServer()&&!1!==(0,o.resolveQueryBoolean)(this.options.enabled,this.#r)&&(0,o.isValidTimeout)(this.#p)&&0!==this.#p&&(this.#d=u.timeoutManager.setInterval(()=>{(this.options.refetchIntervalInBackground||s.focusManager.isFocused())&&this.#f()},this.#p))}#y(){this.#v(),this.#j(this.#R())}#b(){void 0!==this.#h&&(u.timeoutManager.clearTimeout(this.#h),this.#h=void 0)}#x(){void 0!==this.#d&&(u.timeoutManager.clearInterval(this.#d),this.#d=void 0)}createResult(e,t){let s,r=this.#r,i=this.options,a=this.#n,u=this.#a,c=this.#l,d=e!==r?e.state:this.#i,{state:f}=e,y={...f},b=!1;if(t._optimisticResults){let s=this.hasListeners(),a=!s&&h(e,t),l=s&&p(e,r,t,i);(a||l)&&(y={...y,...(0,n.fetchState)(f.data,e.options)}),"isRestoring"===t._optimisticResults&&(y.fetchStatus="idle")}let{error:x,errorUpdatedAt:g,status:v}=y;s=y.data;let R=!1;if(void 0!==t.placeholderData&&void 0===s&&"pending"===v){let e;a?.isPlaceholderData&&t.placeholderData===c?.placeholderData?(e=a.data,R=!0):e="function"==typeof t.placeholderData?t.placeholderData(this.#c?.state.data,this.#c):t.placeholderData,void 0!==e&&(v="success",s=(0,o.replaceData)(a?.data,e,t),b=!0)}if(t.select&&void 0!==s&&!R)if(a&&s===u?.data&&t.select===this.#o)s=this.#u;else try{this.#o=t.select,s=t.select(s),s=(0,o.replaceData)(a?.data,s,t),this.#u=s,this.#t=null}catch(e){this.#t=e}this.#t&&(x=this.#t,s=this.#u,g=Date.now(),v="error");let j="fetching"===y.fetchStatus,S="pending"===v,Q="error"===v,O=S&&j,w=void 0!==s,T={status:v,fetchStatus:y.fetchStatus,isPending:S,isSuccess:"success"===v,isError:Q,isInitialLoading:O,isLoading:O,data:s,dataUpdatedAt:y.dataUpdatedAt,error:x,errorUpdatedAt:g,failureCount:y.fetchFailureCount,failureReason:y.fetchFailureReason,errorUpdateCount:y.errorUpdateCount,isFetched:e.isFetched(),isFetchedAfterMount:y.dataUpdateCount>d.dataUpdateCount||y.errorUpdateCount>d.errorUpdateCount,isFetching:j,isRefetching:j&&!S,isLoadingError:Q&&!w,isPaused:"paused"===y.fetchStatus,isPlaceholderData:b,isRefetchError:Q&&w,isStale:m(e,t),refetch:this.refetch,promise:this.#s,isEnabled:!1!==(0,o.resolveQueryBoolean)(t.enabled,e)};if(this.options.experimental_prefetchInRender){let t=void 0!==T.data,s="error"===T.status&&!t,i=e=>{s?e.reject(T.error):t&&e.resolve(T.data)},n=()=>{i(this.#s=T.promise=(0,l.pendingThenable)())},a=this.#s;switch(a.status){case"pending":e.queryHash===r.queryHash&&i(a);break;case"fulfilled":(s||T.data!==a.value)&&n();break;case"rejected":s&&T.error===a.reason||n()}}return T}updateResult(){let e=this.#n,t=this.createResult(this.#r,this.options);if(this.#a=this.#r.state,this.#l=this.options,void 0!==this.#a.data&&(this.#c=this.#r),(0,o.shallowEqualObjects)(t,e))return;this.#n=t;let s=()=>{if(!e)return!0;let{notifyOnChangeProps:t}=this.options,s="function"==typeof t?t():t;if("all"===s||!s&&!this.#m.size)return!0;let r=new Set(s??this.#m);return this.options.throwOnError&&r.add("error"),Object.keys(this.#n).some(t=>this.#n[t]!==e[t]&&r.has(t))};this.#S({listeners:s()})}#g(){let e=this.#e.getQueryCache().build(this.#e,this.options);if(e===this.#r)return;let t=this.#r;this.#r=e,this.#i=e.state,this.hasListeners()&&(t?.removeObserver(this),e.addObserver(this))}onQueryUpdate(){this.updateResult(),this.hasListeners()&&this.#y()}#S(e){i.notifyManager.batch(()=>{e.listeners&&this.listeners.forEach(e=>{e(this.#n)}),this.#e.getQueryCache().notify({query:this.#r,type:"observerResultsUpdated"})})}};function h(e,t){return!1!==(0,o.resolveQueryBoolean)(t.enabled,e)&&void 0===e.state.data&&("error"!==e.state.status||!1!==(0,o.resolveQueryBoolean)(t.retryOnMount,e))||void 0!==e.state.data&&d(e,t,t.refetchOnMount)}function d(e,t,s){if(!1!==(0,o.resolveQueryBoolean)(t.enabled,e)&&"static"!==(0,o.resolveStaleTime)(t.staleTime,e)){let r="function"==typeof s?s(e):s;return"always"===r||!1!==r&&m(e,t)}return!1}function p(e,t,s,r){return(e!==t||!1===(0,o.resolveQueryBoolean)(r.enabled,e))&&(!s.suspense||"error"!==e.state.status)&&m(e,s)}function m(e,t){return!1!==(0,o.resolveQueryBoolean)(t.enabled,e)&&e.isStaleByTime((0,o.resolveStaleTime)(t.staleTime,e))}e.i(47167);var f=e.i(71645),y=e.i(12598);e.i(43476);var b=f.createContext((t=!1,{clearReset:()=>{t=!1},reset:()=>{t=!0},isReset:()=>t})),x=f.createContext(!1);x.Provider;var g=(e,t,s)=>t.fetchOptimistic(e).catch(()=>{s.clearReset()});e.s(["useQuery",0,function(e,t){return function(e,t,s){let n,a=f.useContext(x),l=f.useContext(b),u=(0,y.useQueryClient)(s),c=u.defaultQueryOptions(e);u.getDefaultOptions().queries?._experimental_beforeQuery?.(c);let h=u.getQueryCache().get(c.queryHash),d=!1!==e.subscribed;if(c._optimisticResults=a?"isRestoring":d?"optimistic":void 0,c.suspense){let e=e=>"static"===e?e:Math.max(e??1e3,1e3),t=c.staleTime;c.staleTime="function"==typeof t?(...s)=>e(t(...s)):e(t),"number"==typeof c.gcTime&&(c.gcTime=Math.max(c.gcTime,1e3))}n=h?.state.error&&"function"==typeof c.throwOnError?(0,o.shouldThrowError)(c.throwOnError,[h.state.error,h]):c.throwOnError,(c.suspense||c.experimental_prefetchInRender||n)&&!l.isReset()&&(c.retryOnMount=!1),f.useEffect(()=>{l.clearReset()},[l]);let p=!u.getQueryCache().get(c.queryHash),[m]=f.useState(()=>new t(u,c)),v=m.getOptimisticResult(c),R=!a&&d;if(f.useSyncExternalStore(f.useCallback(e=>{let t=R?m.subscribe(i.notifyManager.batchCalls(e)):o.noop;return m.updateResult(),t},[m,R]),()=>m.getCurrentResult(),()=>m.getCurrentResult()),f.useEffect(()=>{m.setOptions(c)},[c,m]),c?.suspense&&v.isPending)throw g(c,m,l);if((({result:e,errorResetBoundary:t,throwOnError:s,query:r,suspense:i})=>e.isError&&!t.isReset()&&!e.isFetching&&r&&(i&&void 0===e.data||(0,o.shouldThrowError)(s,[e.error,r])))({result:v,errorResetBoundary:l,throwOnError:c.throwOnError,query:h,suspense:c.suspense}))throw v.error;if(u.getDefaultOptions().queries?._experimental_afterQuery?.(c,v),c.experimental_prefetchInRender&&!r.environmentManager.isServer()&&v.isLoading&&v.isFetching&&!a){let e=p?g(c,m,l):h?.promise;e?.catch(o.noop).finally(()=>{m.updateResult()})}return c.notifyOnChangeProps?v:m.trackResult(v)}(e,c,t)}],66027)},54616,e=>{"use strict";var t=e.i(71645),s=e.i(14272),r=e.i(40143),i=e.i(15823),n=e.i(19273),a=class extends i.Subscribable{#e;#n=void 0;#Q;#O;constructor(e,t){super(),this.#e=e,this.setOptions(t),this.bindMethods(),this.#w()}bindMethods(){this.mutate=this.mutate.bind(this),this.reset=this.reset.bind(this)}setOptions(e){let t=this.options;this.options=this.#e.defaultMutationOptions(e),(0,n.shallowEqualObjects)(this.options,t)||this.#e.getMutationCache().notify({type:"observerOptionsUpdated",mutation:this.#Q,observer:this}),t?.mutationKey&&this.options.mutationKey&&(0,n.hashKey)(t.mutationKey)!==(0,n.hashKey)(this.options.mutationKey)?this.reset():this.#Q?.state.status==="pending"&&this.#Q.setOptions(this.options)}onUnsubscribe(){this.hasListeners()||this.#Q?.removeObserver(this)}onMutationUpdate(e){this.#w(),this.#S(e)}getCurrentResult(){return this.#n}reset(){this.#Q?.removeObserver(this),this.#Q=void 0,this.#w(),this.#S()}mutate(e,t){return this.#O=t,this.#Q?.removeObserver(this),this.#Q=this.#e.getMutationCache().build(this.#e,this.options),this.#Q.addObserver(this),this.#Q.execute(e)}#w(){let e=this.#Q?.state??(0,s.getDefaultState)();this.#n={...e,isPending:"pending"===e.status,isSuccess:"success"===e.status,isError:"error"===e.status,isIdle:"idle"===e.status,mutate:this.mutate,reset:this.reset}}#S(e){r.notifyManager.batch(()=>{if(this.#O&&this.hasListeners()){let t=this.#n.variables,s=this.#n.context,r={client:this.#e,meta:this.options.meta,mutationKey:this.options.mutationKey};if(e?.type==="success"){try{this.#O.onSuccess?.(e.data,t,s,r)}catch(e){Promise.reject(e)}try{this.#O.onSettled?.(e.data,null,t,s,r)}catch(e){Promise.reject(e)}}else if(e?.type==="error"){try{this.#O.onError?.(e.error,t,s,r)}catch(e){Promise.reject(e)}try{this.#O.onSettled?.(void 0,e.error,t,s,r)}catch(e){Promise.reject(e)}}}this.listeners.forEach(e=>{e(this.#n)})})}},l=e.i(12598);e.s(["useMutation",0,function(e,s){let i=(0,l.useQueryClient)(s),[o]=t.useState(()=>new a(i,e));t.useEffect(()=>{o.setOptions(e)},[o,e]);let u=t.useSyncExternalStore(t.useCallback(e=>o.subscribe(r.notifyManager.batchCalls(e)),[o]),()=>o.getCurrentResult(),()=>o.getCurrentResult()),c=t.useCallback((e,t)=>{o.mutate(e,t).catch(n.noop)},[o]);if(u.error&&(0,n.shouldThrowError)(o.options.throwOnError,[u.error]))throw u.error;return{...u,mutate:c,mutateAsync:u.mutate}}],54616)},37727,e=>{"use strict";let t=(0,e.i(75254).default)("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]);e.s(["X",0,t],37727)},55436,e=>{"use strict";let t=(0,e.i(75254).default)("Search",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);e.s(["Search",0,t],55436)},27612,e=>{"use strict";let t=(0,e.i(75254).default)("Trash2",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]]);e.s(["Trash2",0,t],27612)},92930,e=>{"use strict";let t=(0,e.i(75254).default)("Pen",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]]);e.s(["Edit2",0,t],92930)},55303,e=>{"use strict";var t=e.i(43476),s=e.i(94814),r=e.i(54616),i=e.i(66027),n=e.i(12598),a=e.i(92930),l=e.i(55436),o=e.i(27612),u=e.i(37727),c=e.i(71645),h=e.i(53145),d=e.i(28779),p=e.i(54858);function m(e){return null==e?"":String(e)}e.s(["CrudPage",0,function({title:e,subtitle:f,endpoint:y,columns:b,fields:x,schema:g,emptyValues:v}){let{token:R}=(0,d.useAuth)(),j=(0,n.useQueryClient)(),[S,Q]=(0,c.useState)(1),[O,w]=(0,c.useState)(""),[T,k]=(0,c.useState)(null),[E,C]=(0,c.useState)(!1),N=`${y}?page=${S}&page_size=10&search=${encodeURIComponent(O)}`,I=(0,h.useForm)({resolver:(0,s.zodResolver)(g),defaultValues:v}),M=(0,i.useQuery)({queryKey:[y,S,10,O,R],queryFn:()=>(0,p.apiGet)(N,R??""),enabled:!!R}),P=Math.max(1,Math.ceil((M.data?.total??0)/10)),_=()=>j.invalidateQueries({queryKey:[y]}),D=(0,r.useMutation)({mutationFn:e=>{let t=Object.fromEntries(Object.entries(e).map(([e,t])=>[e,""===t?null:t]));return(0,p.apiSend)(T?`${y}/${T.id}`:y,R??"",T?"PUT":"POST",t)},onSuccess:()=>{C(!1),k(null),I.reset(v),_()}}),q=(0,r.useMutation)({mutationFn:e=>(0,p.apiDelete)(`${y}/${e.id}`,R??""),onSuccess:_}),F=(0,c.useMemo)(()=>M.data?.items??[],[M.data]);return(0,t.jsxs)("div",{className:"space-y-6",children:[(0,t.jsxs)("header",{className:"flex flex-col justify-between gap-4 sm:flex-row sm:items-center",children:[(0,t.jsxs)("div",{children:[(0,t.jsx)("h1",{className:"text-3xl font-semibold text-text",children:e}),(0,t.jsx)("p",{className:"mt-2 text-text-light",children:f})]}),(0,t.jsx)("button",{onClick:function(){k(null),I.reset(v),C(!0)},className:"btn btn-primary h-12",children:"Neu"})]}),(0,t.jsxs)("div",{className:"flex items-center gap-3 rounded-lg border border-border bg-surface px-4 py-3 shadow-soft",children:[(0,t.jsx)(l.Search,{className:"h-5 w-5 text-primary"}),(0,t.jsx)("input",{value:O,onChange:e=>{Q(1),w(e.target.value)},placeholder:"Suchen",className:"h-9 flex-1 bg-transparent outline-none"})]}),(0,t.jsx)("section",{className:"overflow-hidden rounded-lg border border-border bg-surface shadow-soft",children:(0,t.jsx)("div",{className:"overflow-x-auto",children:(0,t.jsxs)("table",{className:"min-w-full text-left text-sm",children:[(0,t.jsx)("thead",{className:"bg-background text-xs uppercase text-text-light",children:(0,t.jsxs)("tr",{children:[b.map(e=>(0,t.jsx)("th",{className:"px-5 py-4",children:e.label},String(e.key))),(0,t.jsx)("th",{className:"px-5 py-4 text-right",children:"Aktionen"})]})}),(0,t.jsxs)("tbody",{className:"divide-y divide-border",children:[F.map(e=>(0,t.jsxs)("tr",{className:"hover:bg-accent/10",children:[b.map(s=>(0,t.jsx)("td",{className:"whitespace-nowrap px-5 py-4",children:m(e[s.key])},String(s.key))),(0,t.jsx)("td",{className:"px-5 py-4",children:(0,t.jsxs)("div",{className:"flex justify-end gap-2",children:[(0,t.jsx)("button",{"aria-label":"Bearbeiten",title:"Bearbeiten",onClick:()=>{k(e),I.reset(Object.fromEntries(Object.keys(v).map(t=>[t,m(e[t])]))),C(!0)},className:"icon-btn text-primary-dark",children:(0,t.jsx)(a.Edit2,{className:"h-4 w-4"})}),(0,t.jsx)("button",{"aria-label":"Loeschen",title:q.isPending?"Loeschen laeuft...":"Loeschen",disabled:q.isPending,onClick:()=>q.mutate(e),className:"icon-btn text-danger",children:q.isPending?(0,t.jsx)("span",{className:"spinner"}):(0,t.jsx)(o.Trash2,{className:"h-4 w-4"})})]})})]},e.id)),!M.isLoading&&0===F.length&&(0,t.jsx)("tr",{children:(0,t.jsx)("td",{colSpan:b.length+1,className:"px-5 py-10 text-center text-text-light",children:"Keine Datensaetze gefunden."})})]})]})})}),(0,t.jsxs)("footer",{className:"flex items-center justify-between text-sm text-text-light",children:[(0,t.jsxs)("span",{children:[M.data?.total??0," Datensaetze"]}),(0,t.jsxs)("div",{className:"flex items-center gap-3",children:[(0,t.jsx)("button",{disabled:S<=1,title:S<=1?"Erste Seite erreicht":void 0,onClick:()=>Q(e=>e-1),className:"btn btn-secondary",children:"Zurueck"}),(0,t.jsxs)("span",{children:["Seite ",S," von ",P]}),(0,t.jsx)("button",{disabled:S>=P,title:S>=P?"Letzte Seite erreicht":void 0,onClick:()=>Q(e=>e+1),className:"btn btn-secondary",children:"Weiter"})]})]}),E&&(0,t.jsx)("div",{className:"fixed inset-0 z-50 flex items-end bg-black/20 p-3 sm:items-center sm:justify-center",children:(0,t.jsxs)("form",{onSubmit:I.handleSubmit(e=>D.mutate(e)),className:"max-h-[92vh] w-full max-w-3xl overflow-y-auto rounded-lg bg-surface p-6 shadow-soft",children:[(0,t.jsxs)("div",{className:"mb-5 flex items-center justify-between",children:[(0,t.jsx)("h2",{className:"text-xl font-semibold",children:T?"Bearbeiten":"Neu"}),(0,t.jsx)("button",{type:"button",onClick:()=>C(!1),className:"icon-btn",children:(0,t.jsx)(u.X,{className:"h-4 w-4"})})]}),(0,t.jsx)("div",{className:"grid gap-4 sm:grid-cols-2",children:x.map(e=>(0,t.jsxs)("label",{className:"textarea"===e.type?"sm:col-span-2":"",children:[(0,t.jsx)("span",{className:"text-sm font-medium",children:e.label}),"select"===e.type?(0,t.jsxs)("select",{...I.register(e.name),className:"mt-2 h-11 w-full rounded-lg border border-border px-3",children:[(0,t.jsx)("option",{value:"",children:"Bitte waehlen"}),e.options?.map(e=>(0,t.jsx)("option",{value:e.value,children:e.label},e.value))]}):"textarea"===e.type?(0,t.jsx)("textarea",{...I.register(e.name),className:"mt-2 min-h-24 w-full rounded-lg border border-border px-3 py-2"}):(0,t.jsx)("input",{type:e.type??"text",...I.register(e.name),className:"mt-2 h-11 w-full rounded-lg border border-border px-3"}),I.formState.errors[e.name]&&(0,t.jsx)("span",{className:"mt-1 block text-xs text-danger",children:"Bitte gueltig ausfuellen."})]},e.name))}),D.isError&&(0,t.jsx)("p",{className:"mt-4 text-sm text-danger",children:"Speichern fehlgeschlagen. Bitte Eingaben pruefen."}),(0,t.jsxs)("div",{className:"mt-6 flex justify-end gap-3",children:[(0,t.jsx)("button",{type:"button",onClick:()=>C(!1),className:"btn btn-secondary",children:"Abbrechen"}),(0,t.jsxs)("button",{type:"submit",disabled:D.isPending,title:D.isPending?"Speichern laeuft...":void 0,className:"btn btn-primary",children:[D.isPending?(0,t.jsx)("span",{className:"spinner"}):null,D.isPending?"Speichern...":"Speichern"]})]})]})})]})}])},15495,e=>{"use strict";var t=e.i(43476),s=e.i(50270),r=e.i(55303);let i=s.z.object({customer_type:s.z.enum(["practice","clinic"]),name:s.z.string().min(2),street:s.z.string().optional().nullable(),postal_code:s.z.string().optional().nullable(),city:s.z.string().optional().nullable(),phone:s.z.string().optional().nullable(),email:s.z.union([s.z.string().email(),s.z.literal(""),s.z.null()]).optional(),hygiene_officer:s.z.string().optional().nullable(),quality_manager:s.z.string().optional().nullable(),notes:s.z.string().optional().nullable()});e.s(["default",0,function(){return(0,t.jsx)(r.CrudPage,{title:"Kunden",subtitle:"Praxen und Kliniken mit Kontakt- und Qualitaetsdaten.",endpoint:"/customers",columns:[{key:"name",label:"Name"},{key:"customer_type",label:"Typ"},{key:"city",label:"Ort"},{key:"phone",label:"Telefon"},{key:"email",label:"Mail"}],fields:[{name:"customer_type",label:"Typ",type:"select",options:[{label:"Praxis",value:"practice"},{label:"Klinik",value:"clinic"}]},{name:"name",label:"Name",required:!0},{name:"street",label:"Adresse"},{name:"postal_code",label:"PLZ"},{name:"city",label:"Ort"},{name:"phone",label:"Telefon"},{name:"email",label:"Mail",type:"email"},{name:"hygiene_officer",label:"Hygienebeauftragter"},{name:"quality_manager",label:"QM"},{name:"notes",label:"Bemerkungen",type:"textarea"}],schema:i,emptyValues:{customer_type:"practice",name:"",street:"",postal_code:"",city:"",phone:"",email:"",hygiene_officer:"",quality_manager:"",notes:""}})}])}]); \ No newline at end of file +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,54858,e=>{"use strict";let t="/api/v1";async function s(e,t){let s=await e.text();if(!s)return t;try{let e=JSON.parse(s);return e.detail??e.message??s}catch{return s}}async function r(e,t){let s=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:e,password:t}),credentials:"include"});if(!s.ok){let e=Error(await s.text()||`HTTP ${s.status}`);throw e.status=s.status,e}return s.json()}async function i(e,s){let r=await fetch(`${t}${e}`,{cache:"no-store",credentials:"include"});if(!r.ok)throw Error(`API request failed: ${r.status}`);return r.json()}async function n(e,r,i,n){let a=await fetch(`${t}${e}`,{method:i,headers:{"Content-Type":"application/json"},body:JSON.stringify(n),credentials:"include"});if(!a.ok)throw Error(await s(a,`API request failed: ${a.status}`));return a.json()}async function a(e,r){let i=await fetch(`${t}${e}`,{method:"DELETE",credentials:"include"});if(!i.ok)throw Error(await s(i,`API request failed: ${i.status}`))}async function l(e,r,i){let n=await fetch(`${t}${e}`,{...i,headers:{"Content-Type":"application/json",...i?.headers??{}},credentials:"include"});if(!n.ok)throw Error(await s(n,`API request failed: ${n.status}`));return n.json()}e.s(["API_BASE",0,t,"apiDelete",0,a,"apiFetch",0,l,"apiGet",0,i,"apiSend",0,n,"login",0,r,"normalizeValidationPayload",0,function(e){return{...e,...Object.fromEntries(["contact_id","examiner_id"].map(t=>[t,e[t]||null]))}}])},66027,e=>{"use strict";let t;var s=e.i(75555),r=e.i(73911),i=e.i(40143),n=e.i(86491),a=e.i(15823),l=e.i(93803),o=e.i(19273),u=e.i(80166),c=class extends a.Subscribable{constructor(e,t){super(),this.options=t,this.#e=e,this.#t=null,this.#s=(0,l.pendingThenable)(),this.bindMethods(),this.setOptions(t)}#e;#r=void 0;#i=void 0;#n=void 0;#a;#l;#s;#t;#o;#u;#c;#h;#d;#p;#m=new Set;bindMethods(){this.refetch=this.refetch.bind(this)}onSubscribe(){1===this.listeners.size&&(this.#r.addObserver(this),h(this.#r,this.options)?this.#f():this.updateResult(),this.#y())}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return d(this.#r,this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return d(this.#r,this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,this.#b(),this.#x(),this.#r.removeObserver(this)}setOptions(e){let t=this.options,s=this.#r;if(this.options=this.#e.defaultQueryOptions(e),void 0!==this.options.enabled&&"boolean"!=typeof this.options.enabled&&"function"!=typeof this.options.enabled&&"boolean"!=typeof(0,o.resolveQueryBoolean)(this.options.enabled,this.#r))throw Error("Expected enabled to be a boolean or a callback that returns a boolean");this.#g(),this.#r.setOptions(this.options),t._defaulted&&!(0,o.shallowEqualObjects)(this.options,t)&&this.#e.getQueryCache().notify({type:"observerOptionsUpdated",query:this.#r,observer:this});let r=this.hasListeners();r&&p(this.#r,s,this.options,t)&&this.#f(),this.updateResult(),r&&(this.#r!==s||(0,o.resolveQueryBoolean)(this.options.enabled,this.#r)!==(0,o.resolveQueryBoolean)(t.enabled,this.#r)||(0,o.resolveStaleTime)(this.options.staleTime,this.#r)!==(0,o.resolveStaleTime)(t.staleTime,this.#r))&&this.#v();let i=this.#R();r&&(this.#r!==s||(0,o.resolveQueryBoolean)(this.options.enabled,this.#r)!==(0,o.resolveQueryBoolean)(t.enabled,this.#r)||i!==this.#p)&&this.#j(i)}getOptimisticResult(e){var t,s;let r=this.#e.getQueryCache().build(this.#e,e),i=this.createResult(r,e);return t=this,s=i,(0,o.shallowEqualObjects)(t.getCurrentResult(),s)||(this.#n=i,this.#l=this.options,this.#a=this.#r.state),i}getCurrentResult(){return this.#n}trackResult(e,t){return new Proxy(e,{get:(e,s)=>(this.trackProp(s),t?.(s),"promise"===s&&(this.trackProp("data"),this.options.experimental_prefetchInRender||"pending"!==this.#s.status||this.#s.reject(Error("experimental_prefetchInRender feature flag is not enabled"))),Reflect.get(e,s))})}trackProp(e){this.#m.add(e)}getCurrentQuery(){return this.#r}refetch({...e}={}){return this.fetch({...e})}fetchOptimistic(e){let t=this.#e.defaultQueryOptions(e),s=this.#e.getQueryCache().build(this.#e,t);return s.fetch().then(()=>this.createResult(s,t))}fetch(e){return this.#f({...e,cancelRefetch:e.cancelRefetch??!0}).then(()=>(this.updateResult(),this.#n))}#f(e){this.#g();let t=this.#r.fetch(this.options,e);return e?.throwOnError||(t=t.catch(o.noop)),t}#v(){this.#b();let e=(0,o.resolveStaleTime)(this.options.staleTime,this.#r);if(r.environmentManager.isServer()||this.#n.isStale||!(0,o.isValidTimeout)(e))return;let t=(0,o.timeUntilStale)(this.#n.dataUpdatedAt,e);this.#h=u.timeoutManager.setTimeout(()=>{this.#n.isStale||this.updateResult()},t+1)}#R(){return("function"==typeof this.options.refetchInterval?this.options.refetchInterval(this.#r):this.options.refetchInterval)??!1}#j(e){this.#x(),this.#p=e,!r.environmentManager.isServer()&&!1!==(0,o.resolveQueryBoolean)(this.options.enabled,this.#r)&&(0,o.isValidTimeout)(this.#p)&&0!==this.#p&&(this.#d=u.timeoutManager.setInterval(()=>{(this.options.refetchIntervalInBackground||s.focusManager.isFocused())&&this.#f()},this.#p))}#y(){this.#v(),this.#j(this.#R())}#b(){void 0!==this.#h&&(u.timeoutManager.clearTimeout(this.#h),this.#h=void 0)}#x(){void 0!==this.#d&&(u.timeoutManager.clearInterval(this.#d),this.#d=void 0)}createResult(e,t){let s,r=this.#r,i=this.options,a=this.#n,u=this.#a,c=this.#l,d=e!==r?e.state:this.#i,{state:f}=e,y={...f},b=!1;if(t._optimisticResults){let s=this.hasListeners(),a=!s&&h(e,t),l=s&&p(e,r,t,i);(a||l)&&(y={...y,...(0,n.fetchState)(f.data,e.options)}),"isRestoring"===t._optimisticResults&&(y.fetchStatus="idle")}let{error:x,errorUpdatedAt:g,status:v}=y;s=y.data;let R=!1;if(void 0!==t.placeholderData&&void 0===s&&"pending"===v){let e;a?.isPlaceholderData&&t.placeholderData===c?.placeholderData?(e=a.data,R=!0):e="function"==typeof t.placeholderData?t.placeholderData(this.#c?.state.data,this.#c):t.placeholderData,void 0!==e&&(v="success",s=(0,o.replaceData)(a?.data,e,t),b=!0)}if(t.select&&void 0!==s&&!R)if(a&&s===u?.data&&t.select===this.#o)s=this.#u;else try{this.#o=t.select,s=t.select(s),s=(0,o.replaceData)(a?.data,s,t),this.#u=s,this.#t=null}catch(e){this.#t=e}this.#t&&(x=this.#t,s=this.#u,g=Date.now(),v="error");let j="fetching"===y.fetchStatus,S="pending"===v,Q="error"===v,O=S&&j,w=void 0!==s,T={status:v,fetchStatus:y.fetchStatus,isPending:S,isSuccess:"success"===v,isError:Q,isInitialLoading:O,isLoading:O,data:s,dataUpdatedAt:y.dataUpdatedAt,error:x,errorUpdatedAt:g,failureCount:y.fetchFailureCount,failureReason:y.fetchFailureReason,errorUpdateCount:y.errorUpdateCount,isFetched:e.isFetched(),isFetchedAfterMount:y.dataUpdateCount>d.dataUpdateCount||y.errorUpdateCount>d.errorUpdateCount,isFetching:j,isRefetching:j&&!S,isLoadingError:Q&&!w,isPaused:"paused"===y.fetchStatus,isPlaceholderData:b,isRefetchError:Q&&w,isStale:m(e,t),refetch:this.refetch,promise:this.#s,isEnabled:!1!==(0,o.resolveQueryBoolean)(t.enabled,e)};if(this.options.experimental_prefetchInRender){let t=void 0!==T.data,s="error"===T.status&&!t,i=e=>{s?e.reject(T.error):t&&e.resolve(T.data)},n=()=>{i(this.#s=T.promise=(0,l.pendingThenable)())},a=this.#s;switch(a.status){case"pending":e.queryHash===r.queryHash&&i(a);break;case"fulfilled":(s||T.data!==a.value)&&n();break;case"rejected":s&&T.error===a.reason||n()}}return T}updateResult(){let e=this.#n,t=this.createResult(this.#r,this.options);if(this.#a=this.#r.state,this.#l=this.options,void 0!==this.#a.data&&(this.#c=this.#r),(0,o.shallowEqualObjects)(t,e))return;this.#n=t;let s=()=>{if(!e)return!0;let{notifyOnChangeProps:t}=this.options,s="function"==typeof t?t():t;if("all"===s||!s&&!this.#m.size)return!0;let r=new Set(s??this.#m);return this.options.throwOnError&&r.add("error"),Object.keys(this.#n).some(t=>this.#n[t]!==e[t]&&r.has(t))};this.#S({listeners:s()})}#g(){let e=this.#e.getQueryCache().build(this.#e,this.options);if(e===this.#r)return;let t=this.#r;this.#r=e,this.#i=e.state,this.hasListeners()&&(t?.removeObserver(this),e.addObserver(this))}onQueryUpdate(){this.updateResult(),this.hasListeners()&&this.#y()}#S(e){i.notifyManager.batch(()=>{e.listeners&&this.listeners.forEach(e=>{e(this.#n)}),this.#e.getQueryCache().notify({query:this.#r,type:"observerResultsUpdated"})})}};function h(e,t){return!1!==(0,o.resolveQueryBoolean)(t.enabled,e)&&void 0===e.state.data&&("error"!==e.state.status||!1!==(0,o.resolveQueryBoolean)(t.retryOnMount,e))||void 0!==e.state.data&&d(e,t,t.refetchOnMount)}function d(e,t,s){if(!1!==(0,o.resolveQueryBoolean)(t.enabled,e)&&"static"!==(0,o.resolveStaleTime)(t.staleTime,e)){let r="function"==typeof s?s(e):s;return"always"===r||!1!==r&&m(e,t)}return!1}function p(e,t,s,r){return(e!==t||!1===(0,o.resolveQueryBoolean)(r.enabled,e))&&(!s.suspense||"error"!==e.state.status)&&m(e,s)}function m(e,t){return!1!==(0,o.resolveQueryBoolean)(t.enabled,e)&&e.isStaleByTime((0,o.resolveStaleTime)(t.staleTime,e))}e.i(47167);var f=e.i(71645),y=e.i(12598);e.i(43476);var b=f.createContext((t=!1,{clearReset:()=>{t=!1},reset:()=>{t=!0},isReset:()=>t})),x=f.createContext(!1);x.Provider;var g=(e,t,s)=>t.fetchOptimistic(e).catch(()=>{s.clearReset()});e.s(["useQuery",0,function(e,t){return function(e,t,s){let n,a=f.useContext(x),l=f.useContext(b),u=(0,y.useQueryClient)(s),c=u.defaultQueryOptions(e);u.getDefaultOptions().queries?._experimental_beforeQuery?.(c);let h=u.getQueryCache().get(c.queryHash),d=!1!==e.subscribed;if(c._optimisticResults=a?"isRestoring":d?"optimistic":void 0,c.suspense){let e=e=>"static"===e?e:Math.max(e??1e3,1e3),t=c.staleTime;c.staleTime="function"==typeof t?(...s)=>e(t(...s)):e(t),"number"==typeof c.gcTime&&(c.gcTime=Math.max(c.gcTime,1e3))}n=h?.state.error&&"function"==typeof c.throwOnError?(0,o.shouldThrowError)(c.throwOnError,[h.state.error,h]):c.throwOnError,(c.suspense||c.experimental_prefetchInRender||n)&&!l.isReset()&&(c.retryOnMount=!1),f.useEffect(()=>{l.clearReset()},[l]);let p=!u.getQueryCache().get(c.queryHash),[m]=f.useState(()=>new t(u,c)),v=m.getOptimisticResult(c),R=!a&&d;if(f.useSyncExternalStore(f.useCallback(e=>{let t=R?m.subscribe(i.notifyManager.batchCalls(e)):o.noop;return m.updateResult(),t},[m,R]),()=>m.getCurrentResult(),()=>m.getCurrentResult()),f.useEffect(()=>{m.setOptions(c)},[c,m]),c?.suspense&&v.isPending)throw g(c,m,l);if((({result:e,errorResetBoundary:t,throwOnError:s,query:r,suspense:i})=>e.isError&&!t.isReset()&&!e.isFetching&&r&&(i&&void 0===e.data||(0,o.shouldThrowError)(s,[e.error,r])))({result:v,errorResetBoundary:l,throwOnError:c.throwOnError,query:h,suspense:c.suspense}))throw v.error;if(u.getDefaultOptions().queries?._experimental_afterQuery?.(c,v),c.experimental_prefetchInRender&&!r.environmentManager.isServer()&&v.isLoading&&v.isFetching&&!a){let e=p?g(c,m,l):h?.promise;e?.catch(o.noop).finally(()=>{m.updateResult()})}return c.notifyOnChangeProps?v:m.trackResult(v)}(e,c,t)}],66027)},54616,e=>{"use strict";var t=e.i(71645),s=e.i(14272),r=e.i(40143),i=e.i(15823),n=e.i(19273),a=class extends i.Subscribable{#e;#n=void 0;#Q;#O;constructor(e,t){super(),this.#e=e,this.setOptions(t),this.bindMethods(),this.#w()}bindMethods(){this.mutate=this.mutate.bind(this),this.reset=this.reset.bind(this)}setOptions(e){let t=this.options;this.options=this.#e.defaultMutationOptions(e),(0,n.shallowEqualObjects)(this.options,t)||this.#e.getMutationCache().notify({type:"observerOptionsUpdated",mutation:this.#Q,observer:this}),t?.mutationKey&&this.options.mutationKey&&(0,n.hashKey)(t.mutationKey)!==(0,n.hashKey)(this.options.mutationKey)?this.reset():this.#Q?.state.status==="pending"&&this.#Q.setOptions(this.options)}onUnsubscribe(){this.hasListeners()||this.#Q?.removeObserver(this)}onMutationUpdate(e){this.#w(),this.#S(e)}getCurrentResult(){return this.#n}reset(){this.#Q?.removeObserver(this),this.#Q=void 0,this.#w(),this.#S()}mutate(e,t){return this.#O=t,this.#Q?.removeObserver(this),this.#Q=this.#e.getMutationCache().build(this.#e,this.options),this.#Q.addObserver(this),this.#Q.execute(e)}#w(){let e=this.#Q?.state??(0,s.getDefaultState)();this.#n={...e,isPending:"pending"===e.status,isSuccess:"success"===e.status,isError:"error"===e.status,isIdle:"idle"===e.status,mutate:this.mutate,reset:this.reset}}#S(e){r.notifyManager.batch(()=>{if(this.#O&&this.hasListeners()){let t=this.#n.variables,s=this.#n.context,r={client:this.#e,meta:this.options.meta,mutationKey:this.options.mutationKey};if(e?.type==="success"){try{this.#O.onSuccess?.(e.data,t,s,r)}catch(e){Promise.reject(e)}try{this.#O.onSettled?.(e.data,null,t,s,r)}catch(e){Promise.reject(e)}}else if(e?.type==="error"){try{this.#O.onError?.(e.error,t,s,r)}catch(e){Promise.reject(e)}try{this.#O.onSettled?.(void 0,e.error,t,s,r)}catch(e){Promise.reject(e)}}}this.listeners.forEach(e=>{e(this.#n)})})}},l=e.i(12598);e.s(["useMutation",0,function(e,s){let i=(0,l.useQueryClient)(s),[o]=t.useState(()=>new a(i,e));t.useEffect(()=>{o.setOptions(e)},[o,e]);let u=t.useSyncExternalStore(t.useCallback(e=>o.subscribe(r.notifyManager.batchCalls(e)),[o]),()=>o.getCurrentResult(),()=>o.getCurrentResult()),c=t.useCallback((e,t)=>{o.mutate(e,t).catch(n.noop)},[o]);if(u.error&&(0,n.shouldThrowError)(o.options.throwOnError,[u.error]))throw u.error;return{...u,mutate:c,mutateAsync:u.mutate}}],54616)},37727,e=>{"use strict";let t=(0,e.i(75254).default)("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]);e.s(["X",0,t],37727)},55436,e=>{"use strict";let t=(0,e.i(75254).default)("Search",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);e.s(["Search",0,t],55436)},27612,e=>{"use strict";let t=(0,e.i(75254).default)("Trash2",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]]);e.s(["Trash2",0,t],27612)},92930,e=>{"use strict";let t=(0,e.i(75254).default)("Pen",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]]);e.s(["Edit2",0,t],92930)},55303,e=>{"use strict";var t=e.i(43476),s=e.i(94814),r=e.i(54616),i=e.i(66027),n=e.i(12598),a=e.i(92930),l=e.i(55436),o=e.i(27612),u=e.i(37727),c=e.i(71645),h=e.i(53145),d=e.i(28779),p=e.i(54858);function m(e){return null==e?"":String(e)}e.s(["CrudPage",0,function({title:e,subtitle:f,endpoint:y,columns:b,fields:x,schema:g,emptyValues:v}){let{token:R}=(0,d.useAuth)(),j=(0,n.useQueryClient)(),[S,Q]=(0,c.useState)(1),[O,w]=(0,c.useState)(""),[T,k]=(0,c.useState)(null),[E,C]=(0,c.useState)(!1),N=`${y}?page=${S}&page_size=10&search=${encodeURIComponent(O)}`,I=(0,h.useForm)({resolver:(0,s.zodResolver)(g),defaultValues:v}),M=(0,i.useQuery)({queryKey:[y,S,10,O,R],queryFn:()=>(0,p.apiGet)(N,R??""),enabled:!!R}),P=Math.max(1,Math.ceil((M.data?.total??0)/10)),_=()=>j.invalidateQueries({queryKey:[y]}),z=(0,r.useMutation)({mutationFn:e=>{let t=Object.fromEntries(Object.entries(e).map(([e,t])=>[e,""===t?null:t]));return(0,p.apiSend)(T?`${y}/${T.id}`:y,R??"",T?"PUT":"POST",t)},onSuccess:()=>{C(!1),k(null),I.reset(v),_()}}),D=(0,r.useMutation)({mutationFn:e=>(0,p.apiDelete)(`${y}/${e.id}`,R??""),onSuccess:_}),q=(0,c.useMemo)(()=>M.data?.items??[],[M.data]);return(0,t.jsxs)("div",{className:"space-y-6",children:[(0,t.jsxs)("header",{className:"flex flex-col justify-between gap-4 sm:flex-row sm:items-center",children:[(0,t.jsxs)("div",{children:[(0,t.jsx)("h1",{className:"text-3xl font-semibold text-text",children:e}),(0,t.jsx)("p",{className:"mt-2 text-text-light",children:f})]}),(0,t.jsx)("button",{onClick:function(){k(null),I.reset(v),C(!0)},className:"btn btn-primary h-12",children:"Neu"})]}),(0,t.jsxs)("div",{className:"flex items-center gap-3 rounded-lg border border-border bg-surface px-4 py-3 shadow-soft",children:[(0,t.jsx)(l.Search,{className:"h-5 w-5 text-primary"}),(0,t.jsx)("input",{value:O,onChange:e=>{Q(1),w(e.target.value)},placeholder:"Suchen",className:"h-9 flex-1 bg-transparent outline-none"})]}),(0,t.jsx)("section",{className:"overflow-hidden rounded-lg border border-border bg-surface shadow-soft",children:(0,t.jsx)("div",{className:"overflow-x-auto",children:(0,t.jsxs)("table",{className:"min-w-full text-left text-sm",children:[(0,t.jsx)("thead",{className:"bg-background text-xs uppercase text-text-light",children:(0,t.jsxs)("tr",{children:[b.map(e=>(0,t.jsx)("th",{className:"px-5 py-4",children:e.label},String(e.key))),(0,t.jsx)("th",{className:"px-5 py-4 text-right",children:"Aktionen"})]})}),(0,t.jsxs)("tbody",{className:"divide-y divide-border",children:[q.map(e=>(0,t.jsxs)("tr",{className:"hover:bg-accent/10",children:[b.map(s=>(0,t.jsx)("td",{className:"whitespace-nowrap px-5 py-4",children:m(e[s.key])},String(s.key))),(0,t.jsx)("td",{className:"px-5 py-4",children:(0,t.jsxs)("div",{className:"flex justify-end gap-2",children:[(0,t.jsx)("button",{"aria-label":"Bearbeiten",title:"Bearbeiten",onClick:()=>{k(e),I.reset(Object.fromEntries(Object.keys(v).map(t=>[t,m(e[t])]))),C(!0)},className:"icon-btn text-primary-dark",children:(0,t.jsx)(a.Edit2,{className:"h-4 w-4"})}),(0,t.jsx)("button",{"aria-label":"Loeschen",title:D.isPending?"Loeschen laeuft...":"Loeschen",disabled:D.isPending,onClick:()=>D.mutate(e),className:"icon-btn text-danger",children:D.isPending?(0,t.jsx)("span",{className:"spinner"}):(0,t.jsx)(o.Trash2,{className:"h-4 w-4"})})]})})]},e.id)),!M.isLoading&&0===q.length&&(0,t.jsx)("tr",{children:(0,t.jsx)("td",{colSpan:b.length+1,className:"px-5 py-10 text-center text-text-light",children:"Keine Datensaetze gefunden."})})]})]})})}),(0,t.jsxs)("footer",{className:"flex items-center justify-between text-sm text-text-light",children:[(0,t.jsxs)("span",{children:[M.data?.total??0," Datensaetze"]}),(0,t.jsxs)("div",{className:"flex items-center gap-3",children:[(0,t.jsx)("button",{disabled:S<=1,title:S<=1?"Erste Seite erreicht":void 0,onClick:()=>Q(e=>e-1),className:"btn btn-secondary",children:"Zurueck"}),(0,t.jsxs)("span",{children:["Seite ",S," von ",P]}),(0,t.jsx)("button",{disabled:S>=P,title:S>=P?"Letzte Seite erreicht":void 0,onClick:()=>Q(e=>e+1),className:"btn btn-secondary",children:"Weiter"})]})]}),E&&(0,t.jsx)("div",{className:"fixed inset-0 z-50 flex items-end bg-black/20 p-3 sm:items-center sm:justify-center",children:(0,t.jsxs)("form",{onSubmit:I.handleSubmit(e=>z.mutate(e)),className:"max-h-[92vh] w-full max-w-3xl overflow-y-auto rounded-lg bg-surface p-6 shadow-soft",children:[(0,t.jsxs)("div",{className:"mb-5 flex items-center justify-between",children:[(0,t.jsx)("h2",{className:"text-xl font-semibold",children:T?"Bearbeiten":"Neu"}),(0,t.jsx)("button",{type:"button",onClick:()=>C(!1),className:"icon-btn",children:(0,t.jsx)(u.X,{className:"h-4 w-4"})})]}),(0,t.jsx)("div",{className:"grid gap-4 sm:grid-cols-2",children:x.map(e=>(0,t.jsxs)("label",{className:"textarea"===e.type?"sm:col-span-2":"",children:[(0,t.jsx)("span",{className:"text-sm font-medium",children:e.label}),"select"===e.type?(0,t.jsxs)("select",{...I.register(e.name),className:"mt-2 h-11 w-full rounded-lg border border-border px-3",children:[(0,t.jsx)("option",{value:"",children:"Bitte waehlen"}),e.options?.map(e=>(0,t.jsx)("option",{value:e.value,children:e.label},e.value))]}):"textarea"===e.type?(0,t.jsx)("textarea",{...I.register(e.name),className:"mt-2 min-h-24 w-full rounded-lg border border-border px-3 py-2"}):(0,t.jsx)("input",{type:e.type??"text",...I.register(e.name),className:"mt-2 h-11 w-full rounded-lg border border-border px-3"}),I.formState.errors[e.name]&&(0,t.jsx)("span",{className:"mt-1 block text-xs text-danger",children:"Bitte gueltig ausfuellen."})]},e.name))}),z.isError&&(0,t.jsx)("p",{className:"mt-4 text-sm text-danger",children:"Speichern fehlgeschlagen. Bitte Eingaben pruefen."}),(0,t.jsxs)("div",{className:"mt-6 flex justify-end gap-3",children:[(0,t.jsx)("button",{type:"button",onClick:()=>C(!1),className:"btn btn-secondary",children:"Abbrechen"}),(0,t.jsxs)("button",{type:"submit",disabled:z.isPending,title:z.isPending?"Speichern laeuft...":void 0,className:"btn btn-primary",children:[z.isPending?(0,t.jsx)("span",{className:"spinner"}):null,z.isPending?"Speichern...":"Speichern"]})]})]})})]})}])},15495,e=>{"use strict";var t=e.i(43476),s=e.i(50270),r=e.i(55303);let i=s.z.object({customer_type:s.z.enum(["practice","clinic"]),source_system:s.z.string().optional().nullable(),external_id:s.z.string().optional().nullable(),name:s.z.string().min(2),street:s.z.string().optional().nullable(),postal_code:s.z.string().optional().nullable(),city:s.z.string().optional().nullable(),phone:s.z.string().optional().nullable(),email:s.z.union([s.z.string().email(),s.z.literal(""),s.z.null()]).optional(),hygiene_officer:s.z.string().optional().nullable(),quality_manager:s.z.string().optional().nullable(),notes:s.z.string().optional().nullable()});e.s(["default",0,function(){return(0,t.jsx)(r.CrudPage,{title:"Kunden",subtitle:"Praxen und Kliniken mit Kontakt- und Qualitaetsdaten.",endpoint:"/customers",columns:[{key:"name",label:"Name"},{key:"external_id",label:"Kundennr."},{key:"customer_type",label:"Typ"},{key:"city",label:"Ort"},{key:"phone",label:"Telefon"},{key:"email",label:"Mail"}],fields:[{name:"customer_type",label:"Typ",type:"select",options:[{label:"Praxis",value:"practice"},{label:"Klinik",value:"clinic"}]},{name:"source_system",label:"Quellsystem"},{name:"external_id",label:"Kundennummer"},{name:"name",label:"Name",required:!0},{name:"street",label:"Adresse"},{name:"postal_code",label:"PLZ"},{name:"city",label:"Ort"},{name:"phone",label:"Telefon"},{name:"email",label:"Mail",type:"email"},{name:"hygiene_officer",label:"Hygienebeauftragter"},{name:"quality_manager",label:"QM"},{name:"notes",label:"Bemerkungen",type:"textarea"}],schema:i,emptyValues:{customer_type:"practice",source_system:"",external_id:"",name:"",street:"",postal_code:"",city:"",phone:"",email:"",hygiene_officer:"",quality_manager:"",notes:""}})}])}]); \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/static/chunks/0o13c7nb3wcya.js b/validation-suite/frontend/atlas/.next/static/chunks/0o13c7nb3wcya.js new file mode 100644 index 00000000..50dd98bb --- /dev/null +++ b/validation-suite/frontend/atlas/.next/static/chunks/0o13c7nb3wcya.js @@ -0,0 +1 @@ +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,67240,e=>{"use strict";let s=(0,e.i(75254).default)("RotateCcw",[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]]);e.s(["RotateCcw",0,s],67240)},95468,e=>{"use strict";let s=(0,e.i(75254).default)("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);e.s(["CheckCircle2",0,s],95468)},66531,e=>{"use strict";let s=(0,e.i(75254).default)("CloudUpload",[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"m8 17 4-4 4 4",key:"1quai1"}]]);e.s(["UploadCloud",0,s],66531)},78894,e=>{"use strict";let s=(0,e.i(75254).default)("TriangleAlert",[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);e.s(["AlertTriangle",0,s],78894)},92158,e=>{"use strict";var s=e.i(43476),t=e.i(78894),r=e.i(95468),a=e.i(43527),l=e.i(67240),n=e.i(66531),i=e.i(22016),c=e.i(71645),d=e.i(28779);let o={NEU_ANLEGEN:"Neu anlegen",BESTEHENDEN_AKTUALISIEREN:"Aktualisieren",UEBERSPRINGEN:"Überspringen",ERROR:"Fehler"},m=[{value:"all",label:"Alle"},{value:"NEU_ANLEGEN",label:"Neu"},{value:"BESTEHENDEN_AKTUALISIEREN",label:"Aktualisieren"},{value:"duplicates",label:"Mögliche Dubletten"},{value:"ERROR",label:"Fehler"},{value:"UEBERSPRINGEN",label:"Überspringen"}];async function u(e,s){try{return(await e.json()).detail??s}catch{return s}}function h({label:e,value:t}){return(0,s.jsxs)("div",{className:"rounded-lg border border-border bg-white p-3",children:[(0,s.jsx)("div",{className:"text-2xl font-semibold",children:t??0}),(0,s.jsx)("div",{className:"text-sm text-text-light",children:e})]})}e.s(["default",0,function(){let{user:e}=(0,d.useAuth)(),[x,p]=(0,c.useState)(null),[b,g]=(0,c.useState)(null),[j,N]=(0,c.useState)({}),[f,v]=(0,c.useState)({}),[y,w]=(0,c.useState)("all"),[k,S]=(0,c.useState)(!0),[E,C]=(0,c.useState)(null),[_,A]=(0,c.useState)(""),[R,U]=(0,c.useState)(""),z=(0,c.useMemo)(()=>{let e=b?.rows??[];return"all"===y?e:"duplicates"===y?e.filter(e=>e.matches&&Object.keys(e.matches).length>0&&"UEBERSPRINGEN"===e.action):e.filter(e=>(f[String(e.row_number)]??e.action)===y)},[y,b?.rows,f]);if(e?.role!=="admin")return(0,s.jsx)("div",{className:"rounded-lg border border-border bg-surface p-6 text-text-light",children:"Nur fuer Administratoren verfuegbar."});async function T(e){if(!x)return void U("Bitte zuerst eine Datei auswählen.");A("preview"),U(""),C(null);let s=new FormData;s.set("file",x),e&&s.set("mapping",JSON.stringify(e));let t=await fetch("/api/customer-imports/preview",{method:"POST",body:s,credentials:"include"});if(!t.ok){U(await u(t,"Importvorschau konnte nicht erzeugt werden.")),A("");return}let r=await t.json();g(r),N(r.mapping),v(Object.fromEntries(r.rows.map(e=>[String(e.row_number),e.action]))),A("")}async function I(){if(!x||!b)return;A("confirm"),U("");let e=new FormData;e.set("file",x),e.set("mapping",JSON.stringify(j)),e.set("row_actions",JSON.stringify(f)),e.set("ignore_empty_values",String(k));let s=await fetch("/api/customer-imports/confirm",{method:"POST",body:e,credentials:"include"});if(!s.ok){U(await u(s,"Kundenimport konnte nicht ausgeführt werden.")),A("");return}C(await s.json()),A("")}return(0,s.jsxs)("div",{className:"space-y-6 pb-10",children:[(0,s.jsxs)("header",{className:"flex flex-col gap-3 md:flex-row md:items-center md:justify-between",children:[(0,s.jsxs)("div",{children:[(0,s.jsx)("h1",{className:"text-3xl font-semibold text-text",children:"Kunden importieren"}),(0,s.jsx)("p",{className:"mt-2 text-text-light",children:"CSV- oder XLSX-Kundenstamm kontrolliert prüfen und übernehmen."})]}),(0,s.jsx)(i.default,{href:"/customers",className:"btn btn-secondary h-12",children:"Zur Kundenliste"})]}),R?(0,s.jsx)("div",{className:"rounded-lg border border-danger/40 bg-danger/10 p-4 text-sm text-danger",children:R}):null,(0,s.jsx)("section",{className:"rounded-lg border border-border bg-surface p-5 shadow-soft",children:(0,s.jsxs)("div",{className:"flex items-start gap-4",children:[(0,s.jsx)("div",{className:"rounded-lg bg-accent/20 p-3 text-primary",children:(0,s.jsx)(n.UploadCloud,{className:"h-6 w-6"})}),(0,s.jsxs)("div",{className:"flex-1",children:[(0,s.jsx)("h2",{className:"text-xl font-semibold",children:"1. Datei hochladen"}),(0,s.jsx)("p",{className:"mt-1 text-sm text-text-light",children:"Erlaubt sind UTF-8 CSV und XLSX bis 5 MB. Der Upload verändert noch keine Daten."}),(0,s.jsxs)("label",{className:"mt-4 flex min-h-32 cursor-pointer flex-col items-center justify-center rounded-lg border border-dashed border-primary/40 bg-background p-5 text-center transition hover:border-primary hover:bg-accent/10",children:[(0,s.jsx)(a.FileUp,{className:"h-7 w-7 text-primary"}),(0,s.jsx)("span",{className:"mt-2 font-semibold",children:x?x.name:"Datei auswählen oder hier ablegen"}),(0,s.jsx)("span",{className:"text-sm text-text-light",children:"CSV oder XLSX"}),(0,s.jsx)("input",{type:"file",accept:".csv,.xlsx,text/csv,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",className:"sr-only",onChange:e=>{p(e.target.files?.[0]??null),g(null),C(null)}})]}),(0,s.jsxs)("div",{className:"mt-4 flex flex-wrap gap-3",children:[(0,s.jsxs)("button",{type:"button",className:"btn btn-primary h-12",disabled:!x||"preview"===_,onClick:()=>T(),children:["preview"===_?(0,s.jsx)("span",{className:"spinner"}):null,"Vorschau vorbereiten"]}),(0,s.jsxs)("button",{type:"button",className:"btn btn-secondary h-12",onClick:function(){p(null),g(null),N({}),v({}),C(null),U("")},children:[(0,s.jsx)(l.RotateCcw,{className:"h-4 w-4"})," Zurücksetzen"]})]})]})]})}),b?(0,s.jsxs)(s.Fragment,{children:[(0,s.jsxs)("section",{className:"rounded-lg border border-border bg-surface p-5 shadow-soft",children:[(0,s.jsx)("h2",{className:"text-xl font-semibold",children:"2. Spalten zuordnen"}),(0,s.jsx)("p",{className:"mt-1 text-sm text-text-light",children:"Bitte automatische Zuordnung prüfen und bei Bedarf ändern."}),b.warnings.map(e=>(0,s.jsxs)("div",{className:"mt-3 flex items-center gap-2 rounded-lg border border-warning/40 bg-warning/10 p-3 text-sm text-[#7A5A00]",children:[(0,s.jsx)(t.AlertTriangle,{className:"h-4 w-4"})," ",e]},e)),(0,s.jsx)("div",{className:"mt-4 grid gap-3 md:grid-cols-2",children:b.columns.map(e=>(0,s.jsxs)("label",{className:"grid gap-2 rounded-lg border border-border p-3",children:[(0,s.jsx)("span",{className:"text-sm font-semibold",children:e}),(0,s.jsx)("select",{value:j[e]??"ignore",onChange:s=>N(t=>({...t,[e]:s.target.value})),className:"h-11 rounded-lg border border-border px-3",children:Object.entries(b.target_fields).map(([e,t])=>(0,s.jsx)("option",{value:e,children:t},e))})]},e))}),(0,s.jsxs)("button",{type:"button",className:"btn btn-secondary mt-4 h-12",disabled:"preview"===_,onClick:()=>T(j),children:["preview"===_?(0,s.jsx)("span",{className:"spinner"}):null,"Vorschau mit Zuordnung aktualisieren"]})]}),(0,s.jsxs)("section",{className:"rounded-lg border border-border bg-surface p-5 shadow-soft",children:[(0,s.jsx)("h2",{className:"text-xl font-semibold",children:"3. Importvorschau prüfen"}),(0,s.jsx)("div",{className:"mt-3 flex flex-wrap gap-2",children:m.map(e=>(0,s.jsx)("button",{type:"button",onClick:()=>w(e.value),className:`rounded-lg border px-3 py-2 text-sm font-semibold transition hover:shadow-soft ${y===e.value?"border-primary bg-primary text-white":"border-border bg-white text-text"}`,children:e.label},e.value))}),(0,s.jsx)("div",{className:"mt-4 overflow-x-auto",children:(0,s.jsxs)("table",{className:"min-w-full text-left text-sm",children:[(0,s.jsx)("thead",{className:"bg-background text-xs uppercase text-text-light",children:(0,s.jsxs)("tr",{children:[(0,s.jsx)("th",{className:"px-4 py-3",children:"Zeile"}),(0,s.jsx)("th",{className:"px-4 py-3",children:"Kunde"}),(0,s.jsx)("th",{className:"px-4 py-3",children:"Standort"}),(0,s.jsx)("th",{className:"px-4 py-3",children:"Ansprechpartner"}),(0,s.jsx)("th",{className:"px-4 py-3",children:"Hinweis"}),(0,s.jsx)("th",{className:"px-4 py-3",children:"Aktion"})]})}),(0,s.jsx)("tbody",{className:"divide-y divide-border",children:z.map(e=>{let t=f[String(e.row_number)]??e.action;return(0,s.jsxs)("tr",{className:"hover:bg-accent/10",children:[(0,s.jsx)("td",{className:"px-4 py-3",children:e.row_number}),(0,s.jsxs)("td",{className:"px-4 py-3",children:[(0,s.jsx)("strong",{children:e.recognized.customer.name||"nicht erkannt"}),(0,s.jsx)("br",{}),(0,s.jsx)("span",{className:"text-text-light",children:e.recognized.customer.external_id||e.recognized.customer.email})]}),(0,s.jsxs)("td",{className:"px-4 py-3",children:[e.recognized.location.name,(0,s.jsx)("br",{}),(0,s.jsxs)("span",{className:"text-text-light",children:[e.recognized.location.postal_code," ",e.recognized.location.city]})]}),(0,s.jsx)("td",{className:"px-4 py-3",children:e.recognized.contact.full_name||"nicht erfasst"}),(0,s.jsx)("td",{className:"px-4 py-3",children:e.errors.length?(0,s.jsx)("span",{className:"text-danger",children:e.errors.join(", ")}):e.message}),(0,s.jsx)("td",{className:"px-4 py-3",children:(0,s.jsx)("select",{value:t,disabled:e.allowed_actions.length<=1,onChange:s=>v(t=>({...t,[String(e.row_number)]:s.target.value})),className:"h-10 rounded-lg border border-border px-3",children:e.allowed_actions.map(e=>(0,s.jsx)("option",{value:e,children:o[e]},e))})})]},e.row_number)})})]})})]}),(0,s.jsxs)("section",{className:"rounded-lg border border-border bg-surface p-5 shadow-soft",children:[(0,s.jsx)("h2",{className:"text-xl font-semibold",children:"4. Import bestätigen"}),(0,s.jsxs)("div",{className:"mt-3 grid gap-3 sm:grid-cols-5",children:[(0,s.jsx)(h,{label:"Zeilen",value:b.summary.total}),(0,s.jsx)(h,{label:"Neu",value:b.summary.new}),(0,s.jsx)(h,{label:"Aktualisieren",value:b.summary.update}),(0,s.jsx)(h,{label:"Dubletten",value:b.summary.duplicates}),(0,s.jsx)(h,{label:"Fehler",value:b.summary.errors})]}),(0,s.jsxs)("label",{className:"mt-4 flex items-center gap-3 text-sm font-semibold",children:[(0,s.jsx)("input",{type:"checkbox",checked:k,onChange:e=>S(e.target.checked),className:"h-5 w-5"}),"Leere Importfelder ignorieren"]}),(0,s.jsxs)("button",{type:"button",className:"btn btn-primary mt-4 h-12",disabled:"confirm"===_||!b.rows.length,onClick:I,children:["confirm"===_?(0,s.jsx)("span",{className:"spinner"}):(0,s.jsx)(r.CheckCircle2,{className:"h-4 w-4"}),"confirm"===_?"Import läuft...":"Kunden jetzt importieren"]})]})]}):null,E?(0,s.jsxs)("section",{className:"rounded-lg border border-success/40 bg-success/10 p-5 shadow-soft",children:[(0,s.jsx)("h2",{className:"text-xl font-semibold text-success",children:"Import abgeschlossen"}),(0,s.jsxs)("div",{className:"mt-3 grid gap-3 sm:grid-cols-3",children:[(0,s.jsx)(h,{label:"Kunden neu",value:E.summary.created_customers}),(0,s.jsx)(h,{label:"Kunden aktualisiert",value:E.summary.updated_customers}),(0,s.jsx)(h,{label:"Fehler",value:E.summary.error_rows}),(0,s.jsx)(h,{label:"Standorte neu",value:E.summary.created_locations}),(0,s.jsx)(h,{label:"Ansprechpartner neu",value:E.summary.created_contacts}),(0,s.jsx)(h,{label:"Übersprungen",value:E.summary.skipped_rows})]})]}):null]})}])}]); \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/static/chunks/2975f5i-zcw63.js b/validation-suite/frontend/atlas/.next/static/chunks/2975f5i-zcw63.js deleted file mode 100644 index 34429df8..00000000 --- a/validation-suite/frontend/atlas/.next/static/chunks/2975f5i-zcw63.js +++ /dev/null @@ -1 +0,0 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,63209,e=>{"use strict";let t=(0,e.i(75254).default)("CircleAlert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);e.s(["AlertCircle",0,t],63209)},95468,e=>{"use strict";let t=(0,e.i(75254).default)("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);e.s(["CheckCircle2",0,t],95468)},92950,e=>{"use strict";var t=e.i(43476),r=e.i(63209),a=e.i(95468),n=e.i(75254);let s=(0,n.default)("CircleDashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]]),i=(0,n.default)("ShieldAlert",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]),l={OFFEN:{value:"OFFEN",label:"Noch nicht bewertet",badgeClass:"border-slate-300 bg-slate-100 text-slate-700",previewClass:"border-slate-300 bg-slate-50 text-slate-700",color:"#2E3B40",icon:s},BESTANDEN:{value:"BESTANDEN",label:"Bestanden",badgeClass:"border-success/35 bg-success/15 text-success",previewClass:"border-success/40 bg-success/10 text-success",color:"#245C36",icon:a.CheckCircle2},BESTANDEN_MIT_AUFLAGEN:{value:"BESTANDEN_MIT_AUFLAGEN",label:"Bestanden mit Auflagen",badgeClass:"border-warning/40 bg-warning/15 text-[#7A5A00]",previewClass:"border-warning/45 bg-warning/10 text-[#7A5A00]",color:"#7A5A00",icon:i},NICHT_BESTANDEN:{value:"NICHT_BESTANDEN",label:"Nicht bestanden",badgeClass:"border-danger/35 bg-danger/15 text-danger",previewClass:"border-danger/40 bg-danger/10 text-danger",color:"#7A1F26",icon:r.AlertCircle}},d={"":"OFFEN",offen:"OFFEN",OFFEN:"OFFEN",bestanden:"BESTANDEN",BESTANDEN:"BESTANDEN",mit_auflagen:"BESTANDEN_MIT_AUFLAGEN",bestanden_mit_auflagen:"BESTANDEN_MIT_AUFLAGEN","bestanden mit auflagen":"BESTANDEN_MIT_AUFLAGEN",BESTANDEN_MIT_AUFLAGEN:"BESTANDEN_MIT_AUFLAGEN",nicht_bestanden:"NICHT_BESTANDEN","nicht bestanden":"NICHT_BESTANDEN",NICHT_BESTANDEN:"NICHT_BESTANDEN"};function o(e){return d[String(e??"").trim()]??"OFFEN"}function c(e){return l[o(e)]}e.s(["ValidationResultBadge",0,function({value:e,className:r=""}){let a=c(e),n=a.icon;return(0,t.jsxs)("span",{className:`inline-flex items-center gap-1.5 rounded-full border px-3 py-1 text-xs font-semibold ${a.badgeClass} ${r}`,children:[(0,t.jsx)(n,{className:"h-3.5 w-3.5"}),a.label]})},"getValidationResultPresentation",0,c,"normalizeValidationResult",0,o,"validationResultValues",0,["OFFEN","BESTANDEN","BESTANDEN_MIT_AUFLAGEN","NICHT_BESTANDEN"]],92950)},7233,e=>{"use strict";let t=(0,e.i(75254).default)("Plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);e.s(["Plus",0,t],7233)},40160,e=>{"use strict";let t=(0,e.i(75254).default)("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);e.s(["Download",0,t],40160)},56909,e=>{"use strict";let t=(0,e.i(75254).default)("Save",[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]]);e.s(["Save",0,t],56909)},57344,e=>{"use strict";var t=e.i(43476),r=e.i(94814),a=e.i(54616),n=e.i(66027),s=e.i(12598),i=e.i(75254);let l=(0,i.default)("ChevronDown",[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]]);var d=e.i(40160);let o=(0,i.default)("FileText",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M10 9H8",key:"b1mrlr"}],["path",{d:"M16 13H8",key:"t4e002"}],["path",{d:"M16 17H8",key:"z1uh3a"}]]);var c=e.i(7233),u=e.i(56909);let m=(0,i.default)("ShieldCheck",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]),h=(0,i.default)("CloudUpload",[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"m8 17 4-4 4 4",key:"1quai1"}]]);var g=e.i(37727),p=e.i(71645),x=e.i(53145),b=e.i(50270);let f=(0,i.default)("Check",[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]]);function _({children:e,icon:r,state:a="normal",loadingText:n,successText:s="Gespeichert",disabled:i,disabledReason:l,variant:d="secondary",className:o="",...c}){let u=i||"loading"===a,m="success"===a?"btn-success":"error"===a?"btn-danger":`btn-${d}`;return(0,t.jsxs)("button",{...c,disabled:u,title:u?l:c.title,className:`btn ${m} ${o}`,children:["loading"===a?(0,t.jsx)("span",{className:"spinner"}):"success"===a?(0,t.jsx)(f,{className:"h-4 w-4"}):r,(0,t.jsx)("span",{children:"loading"===a?n??"Laedt...":"success"===a?s:e})]})}var j=e.i(28779),N=e.i(54858),v=e.i(92950);let y=["yes","no","na"],w=new Date().toISOString().slice(0,10),k=["Aufbereitungsraum","reiner Bereich","unreiner Bereich","Sterilisator","Beladung","Sensorposition","Chargenprotokoll","Indikator","Zertifikat","Kalibrierschein","Winlog-Auswertung"],E={report_number:{label:"Berichtsnummer",section:"Allgemeine Angaben"},validation_type:{label:"Validierungsart",section:"Allgemeine Angaben"},performed_on:{label:"Pruefdatum",section:"Allgemeine Angaben"},customer_id:{label:"Kunde",section:"Kunde und Standort"},location_id:{label:"Standort",section:"Kunde und Standort"},device_id:{label:"Geraet",section:"Geraet"},examiner_name:{label:"Pruefer",section:"Allgemeine Angaben"}},A=b.z.object({report_number:b.z.string().min(3),validation_type:b.z.string().min(1),project:b.z.string().optional(),performed_on:b.z.string().min(1),next_validation_on:b.z.string().optional().nullable(),revalidation_interval_months:b.z.coerce.number().int().min(1),next_validation_manually_overridden:b.z.boolean(),test_location:b.z.string().optional(),examiner_name:b.z.string().min(1),participants:b.z.string().optional(),status:b.z.string().min(1),result:b.z.string().min(1),customer_id:b.z.string().min(1),location_id:b.z.string().min(1),contact_id:b.z.string().optional().nullable(),examiner_id:b.z.string().optional().nullable(),operator_name:b.z.string().optional(),device_id:b.z.string().min(1),equipment_ids:b.z.array(b.z.string()),environment_conditions:b.z.record(b.z.unknown()),documentation_checklist:b.z.array(b.z.record(b.z.unknown())),performance_checklist:b.z.array(b.z.record(b.z.unknown())),programs:b.z.array(b.z.record(b.z.unknown())),loading_patterns:b.z.array(b.z.record(b.z.unknown())),measurement_data:b.z.array(b.z.record(b.z.unknown())),drying:b.z.record(b.z.unknown()),recommendations:b.z.array(b.z.record(b.z.unknown())),attachments:b.z.array(b.z.record(b.z.unknown()))});function z(e=""){return{report_number:e,validation_type:"Erstvalidierung",project:"",performed_on:w,next_validation_on:"",revalidation_interval_months:24,next_validation_manually_overridden:!1,test_location:"",examiner_name:"",participants:"",status:"ENTWURF",result:"OFFEN",customer_id:"",location_id:"",contact_id:"",examiner_id:"",operator_name:"",device_id:"",equipment_ids:[],environment_conditions:{room_temperature:"",humidity:"",test_time:"",checks:[{text:"Raumbedingungen stabil",value:"na",comment:""},{text:"Aufstellort frei zugaenglich",value:"na",comment:""},{text:"Medienversorgung verfuegbar",value:"na",comment:""}]},documentation_checklist:[],performance_checklist:[],programs:[{name:"Vakuumtest",selected:!1,custom:!1},{name:"Bowie-Dick / Leerkammerprofil",selected:!1,custom:!1},{name:"134 C hohl verpackt",selected:!1,custom:!1}],loading_patterns:[1,2,3].map(e=>({run:e,pattern:"",description:"",images:[]})),measurement_data:["Vakuumtest","Leerkammerprofil","Testlauf 1","Testlauf 2","Testlauf 3"].map(e=>({name:e,start_time:"",end_time:"",duration:"",leak_rate:"",min_temperature:"",max_temperature:"",temperature_band:"",equilibration_time:"",holding_time:"",pressure:"",result:"",imports:[]})),drying:{start_weight:"",end_weight:"",difference:"",rating:"",comment:""},recommendations:[],attachments:[]}}function S({title:e,children:r,defaultOpen:a=!1}){let[n,s]=(0,p.useState)(a);return(0,t.jsxs)("section",{className:"rounded-lg border border-border bg-surface shadow-soft",children:[(0,t.jsxs)("button",{type:"button",onClick:()=>s(e=>!e),className:"flex w-full items-center justify-between px-5 py-4 text-left text-lg font-semibold hover:bg-background",children:[e,(0,t.jsx)(l,{className:`h-5 w-5 transition ${n?"rotate-180":""}`})]}),n&&(0,t.jsx)("div",{className:"border-t border-border p-5",children:r})]})}function T({label:e,children:r}){return(0,t.jsxs)("label",{className:"block",children:[(0,t.jsx)("span",{className:"text-sm font-medium text-text",children:e}),(0,t.jsx)("div",{className:"mt-2",children:r})]})}let B="h-12 w-full rounded-lg border border-border bg-white px-4 outline-none focus:border-primary",F="min-h-24 w-full rounded-lg border border-border bg-white px-4 py-3 outline-none focus:border-primary";function $({validationId:e}){let{token:i}=(0,j.useAuth)(),l=(0,s.useQueryClient)(),[b,f]=(0,p.useState)(e??null),[y,q]=(0,p.useState)(""),[R,G]=(0,p.useState)(""),[I,U]=(0,p.useState)(null),[O,K]=(0,p.useState)("normal"),[L,H]=(0,p.useState)("normal"),[Q,W]=(0,p.useState)("normal"),[Z,J]=(0,p.useState)(null),X=(0,p.useRef)(null),Y=(0,n.useQuery)({queryKey:["next-report-number",i],queryFn:()=>(0,N.apiGet)("/validations/next-report-number",i??""),enabled:!!i}),ee=(0,n.useQuery)({queryKey:["customers-options",i],queryFn:()=>(0,N.apiGet)("/customers?page=1&page_size=100",i??""),enabled:!!i}),et=(0,n.useQuery)({queryKey:["locations-options",i],queryFn:()=>(0,N.apiGet)("/locations?page=1&page_size=100",i??""),enabled:!!i}),er=(0,n.useQuery)({queryKey:["contacts-options",i],queryFn:()=>(0,N.apiGet)("/contacts?page=1&page_size=100",i??""),enabled:!!i}),ea=(0,n.useQuery)({queryKey:["devices-options",i],queryFn:()=>(0,N.apiGet)("/devices?page=1&page_size=100",i??""),enabled:!!i}),en=(0,n.useQuery)({queryKey:["equipment-options",i],queryFn:()=>(0,N.apiGet)("/equipment?page=1&page_size=100",i??""),enabled:!!i}),es=(0,n.useQuery)({queryKey:["report-checklists",i],queryFn:()=>(0,N.apiGet)("/report-templates/default/checklists",i??""),enabled:!!i}),ei=(0,n.useQuery)({queryKey:["validation",e,i],queryFn:()=>(0,N.apiGet)(`/validations/${e}`,i??""),enabled:!!(i&&e)}),el=(0,x.useForm)({resolver:(0,r.zodResolver)(A),defaultValues:z()}),ed=(0,x.useWatch)({control:el.control}),eo=ea.data?.items.find(e=>e.id===el.watch("device_id")),ec=en.data?.items.filter(e=>el.watch("equipment_ids").includes(e.id))??[],eu=(0,v.getValidationResultPresentation)(el.watch("result")),em=(0,x.useFieldArray)({control:el.control,name:"recommendations"}),eh=(0,x.useFieldArray)({control:el.control,name:"attachments"});(0,p.useEffect)(()=>{Y.data?.report_number&&!el.getValues("report_number")&&el.setValue("report_number",Y.data.report_number)},[el,Y.data]),(0,p.useEffect)(()=>{if(!ei.data)return;let e=ei.data;el.reset({...z(),...e,result:(0,v.normalizeValidationResult)(e.result),project:e.project??"",test_location:e.test_location??"",examiner_name:e.examiner_name??"",participants:e.participants??"",operator_name:e.operator_name??"",performed_on:e.performed_on??"",next_validation_on:e.next_validation_on??"",contact_id:e.contact_id??"",examiner_id:"",location_id:e.location_id??"",device_id:e.device_id??""}),f(e.id)},[ei.data,el]),(0,p.useEffect)(()=>{if(!es.data||ei.data||el.getValues("documentation_checklist").length>0)return;let e=es.data.flatMap(e=>e.items.map(t=>({...t,template_key:e.checklist_key,template_title:e.title})));el.setValue("documentation_checklist",e)},[es.data,ei.data,el]);let eg=ei.data?.status==="FREIGEGEBEN"||ei.data?.status==="ABGESCHLOSSEN",ep=(0,a.useMutation)({mutationFn:e=>(0,N.apiSend)(b?`/validations/${b}`:"/validations",i??"",b?"PUT":"POST",(0,N.normalizeValidationPayload)(e)),onSuccess:e=>{f(e.id),q(new Date().toLocaleTimeString("de-DE",{hour:"2-digit",minute:"2-digit"})),G(""),K("success"),window.setTimeout(()=>K("normal"),1500),l.invalidateQueries({queryKey:["dashboard"]})},onError:e=>{K("error"),G(e instanceof Error?e.message:"Speichern fehlgeschlagen.")}});(0,p.useEffect)(()=>{if(!eg&&i&&ed.report_number&&ed.validation_type&&ed.customer_id&&ed.location_id&&ed.device_id&&ed.examiner_name&&ed.performed_on)return X.current&&clearTimeout(X.current),X.current=setTimeout(()=>{let e=el.getValues();ep.mutate(e)},2500),()=>{X.current&&clearTimeout(X.current)}},[el,ep,i,ed]);let ex=ee.data?.items??[],eb=ex.find(e=>e.id===el.watch("customer_id")),ef=(et.data?.items??[]).filter(e=>!el.watch("customer_id")||e.customer_id===el.watch("customer_id")),e_=(er.data?.items??[]).filter(e=>!el.watch("customer_id")||e.customer_id===el.watch("customer_id")),ej=(ea.data?.items??[]).filter(e=>!el.watch("customer_id")||e.customer_id===el.watch("customer_id")),eN=(0,p.useMemo)(()=>ec.filter(e=>e.calibration_due_on&&e.calibration_due_on!e[t])}function ey(){let e=ev()[0];return!!e&&(G(`${e[1].label} fehlt in ${e[1].section}.`),document.querySelector(`[name="${e[0]}"]`)?.scrollIntoView({behavior:"smooth",block:"center"}),!0)}async function ew(){if(eg)return void G("Diese Validierung ist schreibgeschuetzt.");if(ev().length){H("error"),ey();return}try{H("loading");let e=b?null:await ep.mutateAsync(el.getValues()),t=b??e?.id;if(!t||!i)return;let r=await fetch(`${N.API_BASE}/validations/${t}/review`,{method:"POST",headers:{Authorization:`Bearer ${i}`}}),a=await r.json();U(a),H("success"),window.setTimeout(()=>H("normal"),1500),G(a.errors.length?"Pruefung abgeschlossen: Fehler blockieren die Freigabe.":"Pruefung abgeschlossen: keine blockierenden Fehler.")}catch(e){H("error"),G(e instanceof Error?e.message:"Pruefung fehlgeschlagen.")}}async function ek(e,t){if(e&&0!==e.length){if(!b||!i)return void G("Bitte den Entwurf speichern, bevor Bilder oder Anlagen hochgeladen werden.");try{for(let[r,a]of(J(t),Array.from(e).entries())){let e=eh.fields.length+r+1,n=new FormData;n.append("category",t),n.append("description",""),n.append("order",String(e)),n.append("file",a);let s=await fetch(`${N.API_BASE}/validations/${b}/attachments`,{method:"POST",headers:{Authorization:`Bearer ${i}`},body:n});if(!s.ok){let e=await s.json().catch(()=>null);throw Error(e?.detail??"Upload fehlgeschlagen.")}let l=await s.json();eh.append(l)}l.invalidateQueries({queryKey:["validation",b,i]}),G("Upload abgeschlossen.")}catch(e){G(e instanceof Error?e.message:"Upload fehlgeschlagen.")}finally{J(null)}}}async function eE(){if(b&&i)try{W("loading");let e=await fetch(`${N.API_BASE}/validations/${b}/report.pdf`,{headers:{Authorization:`Bearer ${i}`}});if(!e.ok){let t=await e.json().catch(()=>null);throw Error(t?.detail??"PDF konnte nicht erzeugt werden.")}let t=await e.blob(),r=URL.createObjectURL(t),a=document.createElement("a");a.href=r,a.download=`${el.getValues("report_number")}.pdf`,a.click(),URL.revokeObjectURL(r),W("success"),window.setTimeout(()=>W("normal"),1500)}catch(e){W("error"),G(e instanceof Error?e.message:"PDF-Download fehlgeschlagen.")}}return(0,t.jsxs)("form",{onSubmit:el.handleSubmit(function(e){if(eg)return void G("Diese Validierung ist schreibgeschuetzt.");if(ev(e).length){K("error"),ey();return}K("loading"),ep.mutate(e)}),className:"space-y-5 pb-28",children:[(0,t.jsxs)("header",{children:[(0,t.jsx)("h1",{className:"text-3xl font-semibold text-text",children:"Validierungsbericht"}),(0,t.jsx)("p",{className:"mt-2 text-text-light",children:eg?"Schreibgeschuetzte freigegebene oder abgeschlossene Validierung.":"Eine responsive Seite fuer Erfassung, Pruefung und Berichtserstellung."})]}),(0,t.jsx)(S,{title:"1. Allgemeine Angaben",defaultOpen:!0,children:(0,t.jsxs)("div",{className:"grid gap-4 md:grid-cols-2",children:[(0,t.jsx)(T,{label:"Berichtsnummer *",children:(0,t.jsx)("input",{className:B,...el.register("report_number")})}),(0,t.jsx)(T,{label:"Validierungsart *",children:(0,t.jsxs)("select",{className:B,...el.register("validation_type"),children:[(0,t.jsx)("option",{children:"Erstvalidierung"}),(0,t.jsx)("option",{children:"Revalidierung"}),(0,t.jsx)("option",{children:"Leistungsbeurteilung"}),(0,t.jsx)("option",{children:"Sonderpruefung"})]})}),(0,t.jsx)(T,{label:"Projekt",children:(0,t.jsx)("input",{className:B,...el.register("project")})}),(0,t.jsx)(T,{label:"Pruefdatum *",children:(0,t.jsx)("input",{type:"date",className:B,...el.register("performed_on")})}),(0,t.jsx)(T,{label:"Revalidierungsintervall Monate",children:(0,t.jsx)("input",{type:"number",className:B,...el.register("revalidation_interval_months")})}),(0,t.jsx)(T,{label:"Naechste Validierung",children:(0,t.jsx)("input",{type:"date",className:B,...el.register("next_validation_on"),onChange:e=>{el.setValue("next_validation_manually_overridden",!0),el.setValue("next_validation_on",e.target.value)}})}),(0,t.jsx)(T,{label:"Pruefungsort",children:(0,t.jsx)("input",{className:B,...el.register("test_location")})}),(0,t.jsx)(T,{label:"Pruefer *",children:(0,t.jsx)("input",{className:B,...el.register("examiner_name")})}),(0,t.jsx)(T,{label:"Mitwirkende Personen",children:(0,t.jsx)("textarea",{className:F,...el.register("participants")})}),(0,t.jsx)(T,{label:"Status",children:(0,t.jsxs)("select",{className:B,...el.register("status"),children:[(0,t.jsx)("option",{value:"ENTWURF",children:"Entwurf"}),(0,t.jsx)("option",{value:"BEREIT_ZUR_PRUEFUNG",children:"Bereit zur Pruefung"}),(0,t.jsx)("option",{value:"IN_PRUEFUNG",children:"In Pruefung"}),(0,t.jsx)("option",{value:"FREIGEGEBEN",children:"Freigegeben"}),(0,t.jsx)("option",{value:"ABGESCHLOSSEN",children:"Abgeschlossen"}),(0,t.jsx)("option",{value:"STORNIERT",children:"Storniert"})]})}),(0,t.jsxs)(T,{label:"Gesamtergebnis",children:[(0,t.jsx)("select",{className:B,...el.register("result"),children:v.validationResultValues.map(e=>(0,t.jsx)("option",{value:e,children:(0,v.getValidationResultPresentation)(e).label},e))}),(0,t.jsx)("div",{className:`mt-3 flex min-h-12 items-center justify-center rounded-lg border px-4 text-sm font-semibold ${eu.previewClass}`,children:eu.label})]})]})}),(0,t.jsx)(S,{title:"2. Kunde und Standort",children:(0,t.jsxs)("div",{className:"grid gap-4 md:grid-cols-2",children:[(0,t.jsx)(T,{label:"Kunde *",children:(0,t.jsxs)("select",{className:B,...el.register("customer_id"),children:[(0,t.jsx)("option",{value:"",children:"Bitte waehlen"}),ex.map(e=>(0,t.jsx)("option",{value:e.id,children:e.name},e.id))]})}),(0,t.jsx)(T,{label:"Standort *",children:(0,t.jsxs)("select",{className:B,...el.register("location_id"),children:[(0,t.jsx)("option",{value:"",children:"Bitte waehlen"}),ef.map(e=>(0,t.jsx)("option",{value:e.id,children:e.name},e.id))]})}),(0,t.jsx)(T,{label:"Ansprechpartner",children:(0,t.jsxs)("select",{className:B,...el.register("contact_id"),children:[(0,t.jsx)("option",{value:"",children:"Bitte waehlen"}),e_.map(e=>(0,t.jsx)("option",{value:e.id,children:e.full_name},e.id))]})}),(0,t.jsx)(T,{label:"Betreiber",children:(0,t.jsx)("input",{className:B,...el.register("operator_name")})}),(0,t.jsx)(T,{label:"QM-/Hygienebeauftragter",children:(0,t.jsx)("input",{className:B,value:[eb?.quality_manager,eb?.hygiene_officer].filter(Boolean).join(" / "),readOnly:!0})})]})}),(0,t.jsxs)(S,{title:"3. Geraet",children:[(0,t.jsx)(T,{label:"Geraet *",children:(0,t.jsxs)("select",{className:B,...el.register("device_id"),children:[(0,t.jsx)("option",{value:"",children:"Bitte waehlen"}),ej.map(e=>(0,t.jsxs)("option",{value:e.id,children:[e.manufacturer," ",e.model," - ",e.serial_number]},e.id))]})}),(0,t.jsx)("div",{className:"mt-4 grid gap-4 md:grid-cols-3",children:[["Hersteller",eo?.manufacturer],["Modell",eo?.model],["Seriennummer",eo?.serial_number],["Baujahr",eo?.year_built],["Inbetriebnahme",eo?.commissioned_on],["Kammervolumen",eo?.chamber_volume_liters],["Dampferzeugung",eo?.steam_generation],["Wasseraufbereitung",eo?.water_treatment],["Dokumentation",eo?.documentation],["Lieferant",eo?.supplier]].map(([e,r])=>(0,t.jsxs)("div",{className:"rounded-lg border border-border bg-background p-4",children:[(0,t.jsx)("p",{className:"text-xs text-text-light",children:e}),(0,t.jsx)("p",{className:"mt-1 font-medium",children:String(r??"-")})]},e))})]}),(0,t.jsxs)(S,{title:"4. Pruefmittel",children:[(0,t.jsx)(x.Controller,{control:el.control,name:"equipment_ids",render:({field:e})=>(0,t.jsx)("div",{className:"grid gap-3 md:grid-cols-2",children:(en.data?.items??[]).map(r=>{let a=!!(r.calibration_due_on&&r.calibration_due_one.onChange(t.target.checked?[...e.value,r.id]:e.value.filter(e=>e!==r.id))}),(0,t.jsxs)("span",{children:[(0,t.jsx)("strong",{children:r.kind}),(0,t.jsx)("br",{}),r.serial_number," · ",r.calibrated_on??"-"," · ",r.status,a&&(0,t.jsx)("span",{className:"ml-2 text-danger",children:"Kalibrierung abgelaufen"})]})]},r.id)})})}),eN.length>0&&(0,t.jsx)("p",{className:"mt-4 rounded-lg border border-danger/30 bg-danger/5 p-4 text-danger",children:"Mindestens ein ausgewaehltes Pruefmittel hat eine abgelaufene Kalibrierung."})]}),(0,t.jsxs)(S,{title:"5. Umgebungsbedingungen",children:[(0,t.jsxs)("div",{className:"grid gap-4 md:grid-cols-3",children:[(0,t.jsx)(T,{label:"Raumtemperatur",children:(0,t.jsx)("input",{className:B,...el.register("environment_conditions.room_temperature")})}),(0,t.jsx)(T,{label:"relative Luftfeuchtigkeit",children:(0,t.jsx)("input",{className:B,...el.register("environment_conditions.humidity")})}),(0,t.jsx)(T,{label:"Pruefzeit",children:(0,t.jsx)("input",{className:B,...el.register("environment_conditions.test_time")})})]}),[0,1,2].map(e=>(0,t.jsx)(C,{form:el,path:`environment_conditions.checks.${e}`},e))]}),(0,t.jsxs)(S,{title:"6. Dokumentations- und Leistungschecklisten",children:[el.watch("documentation_checklist").map((e,r)=>(0,t.jsx)(C,{form:el,path:`documentation_checklist.${r}`},`${String(e.template_key??"check")}-${r}`)),el.watch("performance_checklist").map((e,r)=>(0,t.jsx)(C,{form:el,path:`performance_checklist.${r}`},`performance-${r}`))]}),(0,t.jsxs)(S,{title:"7. Programme",children:[[0,1,2].map(e=>(0,t.jsx)(M,{form:el,index:e},e)),(0,t.jsx)(_,{type:"button",icon:(0,t.jsx)(c.Plus,{className:"h-4 w-4"}),onClick:()=>el.setValue("programs",[...el.getValues("programs"),{name:"",selected:!0,custom:!0}]),className:"mt-4",children:"Eigenes Programm"})]}),(0,t.jsx)(S,{title:"8. Beladungsmuster",children:[0,1,2].map(e=>(0,t.jsx)(D,{form:el,index:e},e))}),(0,t.jsx)(S,{title:"9. Messdaten",children:[0,1,2,3,4].map(e=>(0,t.jsx)(V,{form:el,index:e},e))}),(0,t.jsx)(S,{title:"10. Trocknung",children:(0,t.jsxs)("div",{className:"grid gap-4 md:grid-cols-2",children:[["start_weight","end_weight","difference","rating"].map(e=>(0,t.jsx)(T,{label:e,children:(0,t.jsx)("input",{className:B,...el.register(`drying.${e}`)})},e)),(0,t.jsx)(T,{label:"Bemerkung",children:(0,t.jsx)("textarea",{className:F,...el.register("drying.comment")})})]})}),(0,t.jsxs)(S,{title:"11. Empfehlungen und Auflagen",children:[em.fields.map((e,r)=>(0,t.jsxs)("div",{className:"mb-3 grid gap-3 rounded-lg border border-border p-4 md:grid-cols-4",children:[(0,t.jsx)("input",{className:B,placeholder:"Nummer",...el.register(`recommendations.${r}.number`)}),(0,t.jsx)("input",{className:B,placeholder:"Text",...el.register(`recommendations.${r}.text`)}),(0,t.jsx)("input",{type:"date",className:B,...el.register(`recommendations.${r}.deadline`)}),(0,t.jsx)("input",{className:B,placeholder:"Status",...el.register(`recommendations.${r}.status`)})]},e.id)),(0,t.jsx)(_,{type:"button",icon:(0,t.jsx)(c.Plus,{className:"h-4 w-4"}),onClick:()=>em.append({number:em.fields.length+1,text:"",deadline:"",status:"offen"}),children:"Zeile hinzufuegen"})]}),(0,t.jsxs)(S,{title:"12. Bilder und Anlagen",children:[(0,t.jsx)("div",{className:"grid gap-3 md:grid-cols-2",children:k.map(e=>(0,t.jsxs)("label",{className:"rounded-lg border border-dashed border-primary/40 p-4 transition hover:border-primary hover:bg-background",children:[(0,t.jsx)(h,{className:"mb-2 h-5 w-5 text-primary"}),e,Z===e&&(0,t.jsx)("span",{className:"ml-2 text-sm text-text-light",children:"Upload..."}),(0,t.jsx)("input",{type:"file",multiple:!0,className:"mt-3 block w-full text-sm",onChange:t=>ek(t.target.files,e)})]},e))}),(0,t.jsx)("div",{className:"mt-5 grid gap-3 md:grid-cols-2",children:eh.fields.map((e,r)=>{let a=String(el.watch(`attachments.${r}.url`)??""),n=a&&/\.(png|jpe?g|webp|svg)$/i.test(a)?`${N.API_BASE.replace("/api/v1","")}${a}`:"";return(0,t.jsxs)("div",{className:"rounded-lg border border-border p-4",children:[n&&(0,t.jsx)("img",{src:n,alt:String(el.watch(`attachments.${r}.filename`)??""),className:"mb-3 max-h-56 w-full rounded-lg border border-border object-contain"}),(0,t.jsxs)("div",{className:"flex justify-between gap-3",children:[(0,t.jsx)("strong",{children:String(el.watch(`attachments.${r}.filename`)??"")}),(0,t.jsx)("button",{type:"button",onClick:()=>eh.remove(r),children:(0,t.jsx)(g.X,{className:"h-4 w-4 text-danger"})})]}),(0,t.jsx)("input",{className:`${B} mt-3`,placeholder:"Beschreibung",...el.register(`attachments.${r}.description`)}),(0,t.jsx)("input",{className:`${B} mt-3`,placeholder:"Reihenfolge",...el.register(`attachments.${r}.order`)})]},e.id)})})]}),I&&(0,t.jsxs)("section",{className:"rounded-lg border border-border bg-surface p-5 shadow-soft",children:[(0,t.jsx)("h2",{className:"text-xl font-semibold",children:"Pruefergebnis"}),(0,t.jsxs)("div",{className:"mt-4 grid gap-4 md:grid-cols-3",children:[(0,t.jsx)(P,{title:"Fehler",items:I.errors,tone:"danger"}),(0,t.jsx)(P,{title:"Warnungen",items:I.warnings,tone:"warning"}),(0,t.jsxs)("div",{children:[(0,t.jsx)("h3",{className:"font-semibold text-success",children:"Vollstaendige Bereiche"}),I.complete_sections.map(e=>(0,t.jsx)("p",{className:"mt-2 text-sm",children:e},e))]})]})]}),ep.isError&&R&&(0,t.jsx)("div",{className:"fixed right-4 top-4 z-50 max-w-md rounded-lg border border-danger/30 bg-white p-4 text-sm text-danger shadow-soft",children:R}),(0,t.jsx)("fieldset",{disabled:eg,className:eg?"pointer-events-none contents opacity-80":"contents"}),(0,t.jsx)("div",{className:"fixed inset-x-0 bottom-0 z-40 border-t border-border bg-surface/95 px-4 py-3 shadow-soft backdrop-blur",children:(0,t.jsxs)("div",{className:"mx-auto flex max-w-7xl flex-wrap items-center justify-between gap-3",children:[(0,t.jsxs)("div",{className:"text-sm text-text-light",children:[(0,t.jsx)("p",{children:y?`Automatisch gespeichert um ${y}`:"Autosave startet nach Ausfuellen der Pflichtfelder."}),ev().length>0&&(0,t.jsxs)("p",{className:"text-danger",children:["Fehlt: ",ev().map(([,e])=>e.label).join(", ")]}),R&&(0,t.jsx)("p",{className:"text-primary-dark",children:R})]}),(0,t.jsxs)("div",{className:"flex flex-wrap gap-2",children:[(0,t.jsx)(_,{type:"submit",disabled:eg,disabledReason:"Freigegebene und abgeschlossene Validierungen sind schreibgeschuetzt",icon:(0,t.jsx)(u.Save,{className:"h-4 w-4"}),state:O,loadingText:"Speichern...",successText:"Gespeichert",children:"Entwurf speichern"}),(0,t.jsx)(_,{type:"button",disabled:eg,disabledReason:"Freigegebene und abgeschlossene Validierungen sind schreibgeschuetzt",icon:(0,t.jsx)(m,{className:"h-4 w-4"}),state:L,loadingText:"Pruefung laeuft...",successText:"Geprueft",onClick:ew,children:"Bericht pruefen"}),(0,t.jsx)(_,{type:"button",variant:"primary",icon:(0,t.jsx)(o,{className:"h-4 w-4"}),onClick:()=>b?window.location.assign(`/validations/${b}/preview`):ey(),children:"HTML-Vorschau"}),(0,t.jsx)(_,{type:"button",icon:(0,t.jsx)(d.Download,{className:"h-4 w-4"}),state:Q,loadingText:"PDF wird erzeugt...",successText:"PDF erzeugt",onClick:()=>b?eE():ey(),children:"PDF herunterladen"})]})]})})]})}function C({form:e,path:r}){return(0,t.jsxs)("div",{className:"mt-3 grid gap-3 rounded-lg border border-border p-4 md:grid-cols-[1fr_180px_1fr]",children:[(0,t.jsx)("input",{className:B,readOnly:!0,...e.register(`${r}.text`)}),(0,t.jsx)("select",{className:B,...e.register(`${r}.value`),children:y.map(e=>(0,t.jsx)("option",{value:e,children:"yes"===e?"Ja":"no"===e?"Nein":"Nicht zutreffend"},e))}),(0,t.jsx)("input",{className:B,placeholder:"Kommentar",...e.register(`${r}.comment`)})]})}function P({title:e,items:r,tone:a}){return(0,t.jsxs)("div",{children:[(0,t.jsx)("h3",{className:`font-semibold ${"danger"===a?"text-danger":"text-warning"}`,children:e}),0===r.length?(0,t.jsx)("p",{className:"mt-2 text-sm text-text-light",children:"Keine Eintraege."}):r.map(e=>(0,t.jsxs)("p",{className:"mt-2 text-sm",children:[e.section,": ",e.message]},`${e.field}-${e.message}`))]})}function M({form:e,index:r}){return(0,t.jsxs)("div",{className:"mb-3 grid gap-3 rounded-lg border border-border p-4 md:grid-cols-[80px_1fr]",children:[(0,t.jsx)("input",{type:"checkbox",className:"h-6 w-6",...e.register(`programs.${r}.selected`)}),(0,t.jsx)("input",{className:B,...e.register(`programs.${r}.name`)})]})}function D({form:e,index:r}){return(0,t.jsxs)("div",{className:"mb-4 rounded-lg border border-border p-4",children:[(0,t.jsxs)("h3",{className:"font-semibold",children:["Testlauf ",r+1]}),(0,t.jsxs)("div",{className:"mt-3 grid gap-3 md:grid-cols-2",children:[(0,t.jsx)("input",{className:B,placeholder:"Beladungsmuster",...e.register(`loading_patterns.${r}.pattern`)}),(0,t.jsx)("input",{className:B,placeholder:"Beschreibung",...e.register(`loading_patterns.${r}.description`)}),(0,t.jsx)("input",{type:"file",multiple:!0,className:"rounded-lg border border-border p-3 md:col-span-2"})]})]})}function V({form:e,index:r}){return(0,t.jsxs)("div",{className:"mb-4 rounded-lg border border-border p-4",children:[(0,t.jsx)("h3",{className:"font-semibold",children:String(e.watch(`measurement_data.${r}.name`)??"")}),(0,t.jsxs)("div",{className:"mt-3 grid gap-3 md:grid-cols-3",children:[["start_time","end_time","duration","leak_rate","min_temperature","max_temperature","temperature_band","equilibration_time","holding_time","pressure","result"].map(a=>(0,t.jsx)("input",{className:B,placeholder:a,...e.register(`measurement_data.${r}.${a}`)},a)),(0,t.jsx)("input",{type:"file",multiple:!0,accept:".csv,.pdf",className:"rounded-lg border border-border p-3 md:col-span-3"})]})]})}e.s(["ValidationEditor",0,$,"default",0,$],57344)}]); \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/static/chunks/2toi33zq_ydim.js b/validation-suite/frontend/atlas/.next/static/chunks/2c7prz40q05zp.js similarity index 51% rename from validation-suite/frontend/atlas/.next/static/chunks/2toi33zq_ydim.js rename to validation-suite/frontend/atlas/.next/static/chunks/2c7prz40q05zp.js index e9d9aded..fca0d6f7 100644 --- a/validation-suite/frontend/atlas/.next/static/chunks/2toi33zq_ydim.js +++ b/validation-suite/frontend/atlas/.next/static/chunks/2c7prz40q05zp.js @@ -1 +1 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,54858,e=>{"use strict";let t="/api/v1";async function r(e,t){let r=await e.text();if(!r)return t;try{let e=JSON.parse(r);return e.detail??e.message??r}catch{return r}}async function s(e,t){let r=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:e,password:t}),credentials:"include"});if(!r.ok){let e=Error(await r.text()||`HTTP ${r.status}`);throw e.status=r.status,e}return r.json()}async function a(e,r){let s=await fetch(`${t}${e}`,{cache:"no-store",credentials:"include"});if(!s.ok)throw Error(`API request failed: ${s.status}`);return s.json()}async function i(e,s,a,i){let n=await fetch(`${t}${e}`,{method:a,headers:{"Content-Type":"application/json"},body:JSON.stringify(i),credentials:"include"});if(!n.ok)throw Error(await r(n,`API request failed: ${n.status}`));return n.json()}async function n(e,s){let a=await fetch(`${t}${e}`,{method:"DELETE",credentials:"include"});if(!a.ok)throw Error(await r(a,`API request failed: ${a.status}`))}async function l(e,s,a){let i=await fetch(`${t}${e}`,{...a,headers:{"Content-Type":"application/json",...a?.headers??{}},credentials:"include"});if(!i.ok)throw Error(await r(i,`API request failed: ${i.status}`));return i.json()}e.s(["API_BASE",0,t,"apiDelete",0,n,"apiFetch",0,l,"apiGet",0,a,"apiSend",0,i,"login",0,s,"normalizeValidationPayload",0,function(e){return{...e,...Object.fromEntries(["contact_id","examiner_id"].map(t=>[t,e[t]||null]))}}])},66027,e=>{"use strict";let t;var r=e.i(75555),s=e.i(73911),a=e.i(40143),i=e.i(86491),n=e.i(15823),l=e.i(93803),o=e.i(19273),u=e.i(80166),c=class extends n.Subscribable{constructor(e,t){super(),this.options=t,this.#e=e,this.#t=null,this.#r=(0,l.pendingThenable)(),this.bindMethods(),this.setOptions(t)}#e;#s=void 0;#a=void 0;#i=void 0;#n;#l;#r;#t;#o;#u;#c;#d;#h;#p;#f=new Set;bindMethods(){this.refetch=this.refetch.bind(this)}onSubscribe(){1===this.listeners.size&&(this.#s.addObserver(this),d(this.#s,this.options)?this.#y():this.updateResult(),this.#m())}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return h(this.#s,this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return h(this.#s,this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,this.#b(),this.#x(),this.#s.removeObserver(this)}setOptions(e){let t=this.options,r=this.#s;if(this.options=this.#e.defaultQueryOptions(e),void 0!==this.options.enabled&&"boolean"!=typeof this.options.enabled&&"function"!=typeof this.options.enabled&&"boolean"!=typeof(0,o.resolveQueryBoolean)(this.options.enabled,this.#s))throw Error("Expected enabled to be a boolean or a callback that returns a boolean");this.#g(),this.#s.setOptions(this.options),t._defaulted&&!(0,o.shallowEqualObjects)(this.options,t)&&this.#e.getQueryCache().notify({type:"observerOptionsUpdated",query:this.#s,observer:this});let s=this.hasListeners();s&&p(this.#s,r,this.options,t)&&this.#y(),this.updateResult(),s&&(this.#s!==r||(0,o.resolveQueryBoolean)(this.options.enabled,this.#s)!==(0,o.resolveQueryBoolean)(t.enabled,this.#s)||(0,o.resolveStaleTime)(this.options.staleTime,this.#s)!==(0,o.resolveStaleTime)(t.staleTime,this.#s))&&this.#v();let a=this.#N();s&&(this.#s!==r||(0,o.resolveQueryBoolean)(this.options.enabled,this.#s)!==(0,o.resolveQueryBoolean)(t.enabled,this.#s)||a!==this.#p)&&this.#E(a)}getOptimisticResult(e){var t,r;let s=this.#e.getQueryCache().build(this.#e,e),a=this.createResult(s,e);return t=this,r=a,(0,o.shallowEqualObjects)(t.getCurrentResult(),r)||(this.#i=a,this.#l=this.options,this.#n=this.#s.state),a}getCurrentResult(){return this.#i}trackResult(e,t){return new Proxy(e,{get:(e,r)=>(this.trackProp(r),t?.(r),"promise"===r&&(this.trackProp("data"),this.options.experimental_prefetchInRender||"pending"!==this.#r.status||this.#r.reject(Error("experimental_prefetchInRender feature flag is not enabled"))),Reflect.get(e,r))})}trackProp(e){this.#f.add(e)}getCurrentQuery(){return this.#s}refetch({...e}={}){return this.fetch({...e})}fetchOptimistic(e){let t=this.#e.defaultQueryOptions(e),r=this.#e.getQueryCache().build(this.#e,t);return r.fetch().then(()=>this.createResult(r,t))}fetch(e){return this.#y({...e,cancelRefetch:e.cancelRefetch??!0}).then(()=>(this.updateResult(),this.#i))}#y(e){this.#g();let t=this.#s.fetch(this.options,e);return e?.throwOnError||(t=t.catch(o.noop)),t}#v(){this.#b();let e=(0,o.resolveStaleTime)(this.options.staleTime,this.#s);if(s.environmentManager.isServer()||this.#i.isStale||!(0,o.isValidTimeout)(e))return;let t=(0,o.timeUntilStale)(this.#i.dataUpdatedAt,e);this.#d=u.timeoutManager.setTimeout(()=>{this.#i.isStale||this.updateResult()},t+1)}#N(){return("function"==typeof this.options.refetchInterval?this.options.refetchInterval(this.#s):this.options.refetchInterval)??!1}#E(e){this.#x(),this.#p=e,!s.environmentManager.isServer()&&!1!==(0,o.resolveQueryBoolean)(this.options.enabled,this.#s)&&(0,o.isValidTimeout)(this.#p)&&0!==this.#p&&(this.#h=u.timeoutManager.setInterval(()=>{(this.options.refetchIntervalInBackground||r.focusManager.isFocused())&&this.#y()},this.#p))}#m(){this.#v(),this.#E(this.#N())}#b(){void 0!==this.#d&&(u.timeoutManager.clearTimeout(this.#d),this.#d=void 0)}#x(){void 0!==this.#h&&(u.timeoutManager.clearInterval(this.#h),this.#h=void 0)}createResult(e,t){let r,s=this.#s,a=this.options,n=this.#i,u=this.#n,c=this.#l,h=e!==s?e.state:this.#a,{state:y}=e,m={...y},b=!1;if(t._optimisticResults){let r=this.hasListeners(),n=!r&&d(e,t),l=r&&p(e,s,t,a);(n||l)&&(m={...m,...(0,i.fetchState)(y.data,e.options)}),"isRestoring"===t._optimisticResults&&(m.fetchStatus="idle")}let{error:x,errorUpdatedAt:g,status:v}=m;r=m.data;let N=!1;if(void 0!==t.placeholderData&&void 0===r&&"pending"===v){let e;n?.isPlaceholderData&&t.placeholderData===c?.placeholderData?(e=n.data,N=!0):e="function"==typeof t.placeholderData?t.placeholderData(this.#c?.state.data,this.#c):t.placeholderData,void 0!==e&&(v="success",r=(0,o.replaceData)(n?.data,e,t),b=!0)}if(t.select&&void 0!==r&&!N)if(n&&r===u?.data&&t.select===this.#o)r=this.#u;else try{this.#o=t.select,r=t.select(r),r=(0,o.replaceData)(n?.data,r,t),this.#u=r,this.#t=null}catch(e){this.#t=e}this.#t&&(x=this.#t,r=this.#u,g=Date.now(),v="error");let E="fetching"===m.fetchStatus,R="pending"===v,T="error"===v,k=R&&E,w=void 0!==r,S={status:v,fetchStatus:m.fetchStatus,isPending:R,isSuccess:"success"===v,isError:T,isInitialLoading:k,isLoading:k,data:r,dataUpdatedAt:m.dataUpdatedAt,error:x,errorUpdatedAt:g,failureCount:m.fetchFailureCount,failureReason:m.fetchFailureReason,errorUpdateCount:m.errorUpdateCount,isFetched:e.isFetched(),isFetchedAfterMount:m.dataUpdateCount>h.dataUpdateCount||m.errorUpdateCount>h.errorUpdateCount,isFetching:E,isRefetching:E&&!R,isLoadingError:T&&!w,isPaused:"paused"===m.fetchStatus,isPlaceholderData:b,isRefetchError:T&&w,isStale:f(e,t),refetch:this.refetch,promise:this.#r,isEnabled:!1!==(0,o.resolveQueryBoolean)(t.enabled,e)};if(this.options.experimental_prefetchInRender){let t=void 0!==S.data,r="error"===S.status&&!t,a=e=>{r?e.reject(S.error):t&&e.resolve(S.data)},i=()=>{a(this.#r=S.promise=(0,l.pendingThenable)())},n=this.#r;switch(n.status){case"pending":e.queryHash===s.queryHash&&a(n);break;case"fulfilled":(r||S.data!==n.value)&&i();break;case"rejected":r&&S.error===n.reason||i()}}return S}updateResult(){let e=this.#i,t=this.createResult(this.#s,this.options);if(this.#n=this.#s.state,this.#l=this.options,void 0!==this.#n.data&&(this.#c=this.#s),(0,o.shallowEqualObjects)(t,e))return;this.#i=t;let r=()=>{if(!e)return!0;let{notifyOnChangeProps:t}=this.options,r="function"==typeof t?t():t;if("all"===r||!r&&!this.#f.size)return!0;let s=new Set(r??this.#f);return this.options.throwOnError&&s.add("error"),Object.keys(this.#i).some(t=>this.#i[t]!==e[t]&&s.has(t))};this.#R({listeners:r()})}#g(){let e=this.#e.getQueryCache().build(this.#e,this.options);if(e===this.#s)return;let t=this.#s;this.#s=e,this.#a=e.state,this.hasListeners()&&(t?.removeObserver(this),e.addObserver(this))}onQueryUpdate(){this.updateResult(),this.hasListeners()&&this.#m()}#R(e){a.notifyManager.batch(()=>{e.listeners&&this.listeners.forEach(e=>{e(this.#i)}),this.#e.getQueryCache().notify({query:this.#s,type:"observerResultsUpdated"})})}};function d(e,t){return!1!==(0,o.resolveQueryBoolean)(t.enabled,e)&&void 0===e.state.data&&("error"!==e.state.status||!1!==(0,o.resolveQueryBoolean)(t.retryOnMount,e))||void 0!==e.state.data&&h(e,t,t.refetchOnMount)}function h(e,t,r){if(!1!==(0,o.resolveQueryBoolean)(t.enabled,e)&&"static"!==(0,o.resolveStaleTime)(t.staleTime,e)){let s="function"==typeof r?r(e):r;return"always"===s||!1!==s&&f(e,t)}return!1}function p(e,t,r,s){return(e!==t||!1===(0,o.resolveQueryBoolean)(s.enabled,e))&&(!r.suspense||"error"!==e.state.status)&&f(e,r)}function f(e,t){return!1!==(0,o.resolveQueryBoolean)(t.enabled,e)&&e.isStaleByTime((0,o.resolveStaleTime)(t.staleTime,e))}e.i(47167);var y=e.i(71645),m=e.i(12598);e.i(43476);var b=y.createContext((t=!1,{clearReset:()=>{t=!1},reset:()=>{t=!0},isReset:()=>t})),x=y.createContext(!1);x.Provider;var g=(e,t,r)=>t.fetchOptimistic(e).catch(()=>{r.clearReset()});e.s(["useQuery",0,function(e,t){return function(e,t,r){let i,n=y.useContext(x),l=y.useContext(b),u=(0,m.useQueryClient)(r),c=u.defaultQueryOptions(e);u.getDefaultOptions().queries?._experimental_beforeQuery?.(c);let d=u.getQueryCache().get(c.queryHash),h=!1!==e.subscribed;if(c._optimisticResults=n?"isRestoring":h?"optimistic":void 0,c.suspense){let e=e=>"static"===e?e:Math.max(e??1e3,1e3),t=c.staleTime;c.staleTime="function"==typeof t?(...r)=>e(t(...r)):e(t),"number"==typeof c.gcTime&&(c.gcTime=Math.max(c.gcTime,1e3))}i=d?.state.error&&"function"==typeof c.throwOnError?(0,o.shouldThrowError)(c.throwOnError,[d.state.error,d]):c.throwOnError,(c.suspense||c.experimental_prefetchInRender||i)&&!l.isReset()&&(c.retryOnMount=!1),y.useEffect(()=>{l.clearReset()},[l]);let p=!u.getQueryCache().get(c.queryHash),[f]=y.useState(()=>new t(u,c)),v=f.getOptimisticResult(c),N=!n&&h;if(y.useSyncExternalStore(y.useCallback(e=>{let t=N?f.subscribe(a.notifyManager.batchCalls(e)):o.noop;return f.updateResult(),t},[f,N]),()=>f.getCurrentResult(),()=>f.getCurrentResult()),y.useEffect(()=>{f.setOptions(c)},[c,f]),c?.suspense&&v.isPending)throw g(c,f,l);if((({result:e,errorResetBoundary:t,throwOnError:r,query:s,suspense:a})=>e.isError&&!t.isReset()&&!e.isFetching&&s&&(a&&void 0===e.data||(0,o.shouldThrowError)(r,[e.error,s])))({result:v,errorResetBoundary:l,throwOnError:c.throwOnError,query:d,suspense:c.suspense}))throw v.error;if(u.getDefaultOptions().queries?._experimental_afterQuery?.(c,v),c.experimental_prefetchInRender&&!s.environmentManager.isServer()&&v.isLoading&&v.isFetching&&!n){let e=p?g(c,f,l):d?.promise;e?.catch(o.noop).finally(()=>{f.updateResult()})}return c.notifyOnChangeProps?v:f.trackResult(v)}(e,c,t)}],66027)},95468,e=>{"use strict";let t=(0,e.i(75254).default)("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);e.s(["CheckCircle2",0,t],95468)},63209,e=>{"use strict";let t=(0,e.i(75254).default)("CircleAlert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);e.s(["AlertCircle",0,t],63209)},92950,e=>{"use strict";var t=e.i(43476),r=e.i(63209),s=e.i(95468),a=e.i(75254);let i=(0,a.default)("CircleDashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]]),n=(0,a.default)("ShieldAlert",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]),l={OFFEN:{value:"OFFEN",label:"Noch nicht bewertet",badgeClass:"border-slate-300 bg-slate-100 text-slate-700",previewClass:"border-slate-300 bg-slate-50 text-slate-700",color:"#2E3B40",icon:i},BESTANDEN:{value:"BESTANDEN",label:"Bestanden",badgeClass:"border-success/35 bg-success/15 text-success",previewClass:"border-success/40 bg-success/10 text-success",color:"#245C36",icon:s.CheckCircle2},BESTANDEN_MIT_AUFLAGEN:{value:"BESTANDEN_MIT_AUFLAGEN",label:"Bestanden mit Auflagen",badgeClass:"border-warning/40 bg-warning/15 text-[#7A5A00]",previewClass:"border-warning/45 bg-warning/10 text-[#7A5A00]",color:"#7A5A00",icon:n},NICHT_BESTANDEN:{value:"NICHT_BESTANDEN",label:"Nicht bestanden",badgeClass:"border-danger/35 bg-danger/15 text-danger",previewClass:"border-danger/40 bg-danger/10 text-danger",color:"#7A1F26",icon:r.AlertCircle}},o={"":"OFFEN",offen:"OFFEN",OFFEN:"OFFEN",bestanden:"BESTANDEN",BESTANDEN:"BESTANDEN",mit_auflagen:"BESTANDEN_MIT_AUFLAGEN",bestanden_mit_auflagen:"BESTANDEN_MIT_AUFLAGEN","bestanden mit auflagen":"BESTANDEN_MIT_AUFLAGEN",BESTANDEN_MIT_AUFLAGEN:"BESTANDEN_MIT_AUFLAGEN",nicht_bestanden:"NICHT_BESTANDEN","nicht bestanden":"NICHT_BESTANDEN",NICHT_BESTANDEN:"NICHT_BESTANDEN"};function u(e){return o[String(e??"").trim()]??"OFFEN"}function c(e){return l[u(e)]}e.s(["ValidationResultBadge",0,function({value:e,className:r=""}){let s=c(e),a=s.icon;return(0,t.jsxs)("span",{className:`inline-flex items-center gap-1.5 rounded-full border px-3 py-1 text-xs font-semibold ${s.badgeClass} ${r}`,children:[(0,t.jsx)(a,{className:"h-3.5 w-3.5"}),s.label]})},"getValidationResultPresentation",0,c,"normalizeValidationResult",0,u,"validationResultValues",0,["OFFEN","BESTANDEN","BESTANDEN_MIT_AUFLAGEN","NICHT_BESTANDEN"]],92950)},7233,e=>{"use strict";let t=(0,e.i(75254).default)("Plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);e.s(["Plus",0,t],7233)},45388,e=>{"use strict";var t=e.i(43476),r=e.i(66027),s=e.i(75254);let a=(0,s.default)("TriangleAlert",[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);var i=e.i(95468);let n=(0,s.default)("ClipboardList",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M12 11h4",key:"1jrz19"}],["path",{d:"M12 16h4",key:"n85exb"}],["path",{d:"M8 11h.01",key:"1dfujw"}],["path",{d:"M8 16h.01",key:"18s6g9"}]]),l=(0,s.default)("Clock",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 16 14",key:"68esgv"}]]),o=(0,s.default)("FilePenLine",[["path",{d:"m18 5-2.414-2.414A2 2 0 0 0 14.172 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2",key:"142zxg"}],["path",{d:"M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"2t3380"}],["path",{d:"M8 18h1",key:"13wk12"}]]);var u=e.i(94827),c=e.i(7233),d=e.i(20286);let h=(0,s.default)("TestTubeDiagonal",[["path",{d:"M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3",key:"1ub6xw"}],["path",{d:"m16 2 6 6",key:"1gw87d"}],["path",{d:"M12 16H4",key:"1cjfip"}]]),p=(0,s.default)("Users",[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87",key:"kshegd"}],["path",{d:"M16 3.13a4 4 0 0 1 0 7.75",key:"1da9ce"}]]);var f=e.i(22016),y=e.i(28779),m=e.i(54858),b=e.i(82649),x=e.i(92950);let g=[{label:"Neue Validierung starten",value:"Schnellstart",href:"/validations/quick-start",icon:c.Plus},{label:"Validierungen",key:"validations",href:"/validations",icon:n},{label:"Kunden",key:"customers",href:"/customers",icon:p},{label:"Geraete",key:"devices",href:"/devices",icon:d.Stethoscope},{label:"Pruefmittel",key:"equipment",href:"/equipment",icon:h}],v=[{label:"Entwuerfe",key:"validation_drafts",href:"/validations?status=ENTWURF",icon:o},{label:"Bereit zur Pruefung",key:"validation_ready",href:"/validations?status=BEREIT_ZUR_PRUEFUNG",icon:n},{label:"In Pruefung",key:"validation_in_review",href:"/validations?status=IN_PRUEFUNG",icon:l},{label:"Freigegeben",key:"validation_approved",href:"/validations?status=FREIGEGEBEN",icon:i.CheckCircle2},{label:"Ueberfaellige Revalidierungen",key:"validation_overdue",href:"/validations?overdue_only=true",icon:a}];e.s(["default",0,function(){let{token:e}=(0,y.useAuth)(),s=(0,r.useQuery)({queryKey:["dashboard",e],queryFn:()=>(0,m.apiGet)("/dashboard",e??""),enabled:!!e});return(0,t.jsxs)("div",{className:"space-y-8",children:[(0,t.jsxs)("header",{className:"rounded-lg border border-border bg-surface p-6 shadow-soft",children:[(0,t.jsxs)("div",{className:"flex flex-col justify-between gap-4 md:flex-row md:items-center",children:[(0,t.jsx)(b.BrandLogo,{}),(0,t.jsxs)("div",{className:"text-sm text-text-light",children:[(0,t.jsx)("p",{children:"Benutzer: angemeldet"}),(0,t.jsx)("p",{children:"Speicherstatus: synchronisiert"})]})]}),(0,t.jsx)("h1",{className:"mt-6 text-3xl font-semibold text-text",children:"Dashboard"}),(0,t.jsx)("p",{className:"mt-2 text-text-light",children:"Validierungsworkflow und faellige Revalidierungen."})]}),(0,t.jsx)("section",{className:"grid gap-4 sm:grid-cols-2 xl:grid-cols-5",children:g.map(e=>{let r=e.icon,a="key"in e?s.data?.[e.key]??0:e.value;return(0,t.jsxs)(f.default,{href:e.href,className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:-translate-y-0.5 hover:border-primary/40 hover:shadow-lg",children:[(0,t.jsxs)("div",{className:"flex items-center justify-between",children:[(0,t.jsx)("p",{className:"text-sm text-text-light",children:e.label}),(0,t.jsx)(r,{className:"h-5 w-5 text-primary"})]}),(0,t.jsx)("p",{className:"mt-6 text-4xl font-semibold text-text",children:a})]},e.label)})}),(0,t.jsx)("section",{className:"grid gap-4 sm:grid-cols-2 xl:grid-cols-5",children:v.map(e=>{let r=e.icon;return(0,t.jsxs)(f.default,{href:e.href,className:"rounded-lg border border-border bg-surface p-5 shadow-soft transition hover:border-primary/40 hover:bg-background",children:[(0,t.jsxs)("div",{className:"flex items-center justify-between",children:[(0,t.jsx)("p",{className:"text-sm text-text-light",children:e.label}),(0,t.jsx)(r,{className:"h-5 w-5 text-primary"})]}),(0,t.jsx)("p",{className:"mt-4 text-3xl font-semibold text-text",children:s.data?.[e.key]??0})]},e.key)})}),(0,t.jsxs)("section",{className:"grid gap-4 xl:grid-cols-4",children:[(0,t.jsxs)(f.default,{href:"/validations?sort_by=updated_at&sort_order=desc",className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:border-primary/40 hover:bg-background",children:[(0,t.jsx)("h2",{className:"text-xl font-semibold",children:"Zuletzt bearbeitet"}),(0,t.jsx)("p",{className:"mt-3 text-sm leading-6 text-text-light",children:"Aktuelle Validierungen nach Bearbeitungsdatum oeffnen."})]}),(0,t.jsxs)(f.default,{href:"/validations?overdue_only=true",className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:border-danger/40 hover:bg-background",children:[(0,t.jsxs)("div",{className:"flex items-center justify-between",children:[(0,t.jsx)("h2",{className:"text-xl font-semibold",children:"Ueberfaellige Revalidierungen"}),(0,t.jsx)(a,{className:"h-5 w-5 text-danger"})]}),(0,t.jsx)("p",{className:"mt-4 text-3xl font-semibold text-text",children:s.data?.validation_overdue??0})]}),(0,t.jsxs)(f.default,{href:"/equipment",className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:border-primary/40 hover:bg-background",children:[(0,t.jsxs)("div",{className:"flex items-center justify-between",children:[(0,t.jsx)("h2",{className:"text-xl font-semibold",children:"Kalibrierstatus"}),(0,t.jsx)(u.Gauge,{className:"h-5 w-5 text-primary"})]}),(0,t.jsxs)("p",{className:"mt-4 text-sm text-text-light",children:["Gruen ",s.data?.equipment_green??0," · Gelb ",s.data?.equipment_yellow??0," · Rot ",s.data?.equipment_red??0]})]}),(0,t.jsxs)(f.default,{href:"/validations?status=ABGESCHLOSSEN",className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:border-primary/40 hover:bg-background",children:[(0,t.jsx)("h2",{className:"text-xl font-semibold",children:"Letzte Berichte"}),(0,t.jsx)("p",{className:"mt-4 text-3xl font-semibold text-text",children:s.data?.validation_completed??0}),(0,t.jsxs)("div",{className:"mt-4 flex flex-wrap gap-2",children:[(0,t.jsx)(x.ValidationResultBadge,{value:"BESTANDEN",className:"text-[11px]"}),(0,t.jsx)("span",{className:"text-sm font-semibold text-text",children:s.data?.validation_result_passed??0}),(0,t.jsx)(x.ValidationResultBadge,{value:"BESTANDEN_MIT_AUFLAGEN",className:"text-[11px]"}),(0,t.jsx)("span",{className:"text-sm font-semibold text-text",children:s.data?.validation_result_conditional??0}),(0,t.jsx)(x.ValidationResultBadge,{value:"NICHT_BESTANDEN",className:"text-[11px]"}),(0,t.jsx)("span",{className:"text-sm font-semibold text-text",children:s.data?.validation_result_failed??0}),(0,t.jsx)(x.ValidationResultBadge,{value:"OFFEN",className:"text-[11px]"}),(0,t.jsx)("span",{className:"text-sm font-semibold text-text",children:s.data?.validation_result_open??0})]})]})]})]})}],45388)}]); \ No newline at end of file +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,54858,e=>{"use strict";let t="/api/v1";async function r(e,t){let r=await e.text();if(!r)return t;try{let e=JSON.parse(r);return e.detail??e.message??r}catch{return r}}async function s(e,t){let r=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:e,password:t}),credentials:"include"});if(!r.ok){let e=Error(await r.text()||`HTTP ${r.status}`);throw e.status=r.status,e}return r.json()}async function a(e,r){let s=await fetch(`${t}${e}`,{cache:"no-store",credentials:"include"});if(!s.ok)throw Error(`API request failed: ${s.status}`);return s.json()}async function i(e,s,a,i){let n=await fetch(`${t}${e}`,{method:a,headers:{"Content-Type":"application/json"},body:JSON.stringify(i),credentials:"include"});if(!n.ok)throw Error(await r(n,`API request failed: ${n.status}`));return n.json()}async function n(e,s){let a=await fetch(`${t}${e}`,{method:"DELETE",credentials:"include"});if(!a.ok)throw Error(await r(a,`API request failed: ${a.status}`))}async function l(e,s,a){let i=await fetch(`${t}${e}`,{...a,headers:{"Content-Type":"application/json",...a?.headers??{}},credentials:"include"});if(!i.ok)throw Error(await r(i,`API request failed: ${i.status}`));return i.json()}e.s(["API_BASE",0,t,"apiDelete",0,n,"apiFetch",0,l,"apiGet",0,a,"apiSend",0,i,"login",0,s,"normalizeValidationPayload",0,function(e){return{...e,...Object.fromEntries(["contact_id","examiner_id"].map(t=>[t,e[t]||null]))}}])},66027,e=>{"use strict";let t;var r=e.i(75555),s=e.i(73911),a=e.i(40143),i=e.i(86491),n=e.i(15823),l=e.i(93803),o=e.i(19273),u=e.i(80166),c=class extends n.Subscribable{constructor(e,t){super(),this.options=t,this.#e=e,this.#t=null,this.#r=(0,l.pendingThenable)(),this.bindMethods(),this.setOptions(t)}#e;#s=void 0;#a=void 0;#i=void 0;#n;#l;#r;#t;#o;#u;#c;#d;#h;#p;#f=new Set;bindMethods(){this.refetch=this.refetch.bind(this)}onSubscribe(){1===this.listeners.size&&(this.#s.addObserver(this),d(this.#s,this.options)?this.#y():this.updateResult(),this.#m())}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return h(this.#s,this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return h(this.#s,this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,this.#b(),this.#x(),this.#s.removeObserver(this)}setOptions(e){let t=this.options,r=this.#s;if(this.options=this.#e.defaultQueryOptions(e),void 0!==this.options.enabled&&"boolean"!=typeof this.options.enabled&&"function"!=typeof this.options.enabled&&"boolean"!=typeof(0,o.resolveQueryBoolean)(this.options.enabled,this.#s))throw Error("Expected enabled to be a boolean or a callback that returns a boolean");this.#g(),this.#s.setOptions(this.options),t._defaulted&&!(0,o.shallowEqualObjects)(this.options,t)&&this.#e.getQueryCache().notify({type:"observerOptionsUpdated",query:this.#s,observer:this});let s=this.hasListeners();s&&p(this.#s,r,this.options,t)&&this.#y(),this.updateResult(),s&&(this.#s!==r||(0,o.resolveQueryBoolean)(this.options.enabled,this.#s)!==(0,o.resolveQueryBoolean)(t.enabled,this.#s)||(0,o.resolveStaleTime)(this.options.staleTime,this.#s)!==(0,o.resolveStaleTime)(t.staleTime,this.#s))&&this.#v();let a=this.#N();s&&(this.#s!==r||(0,o.resolveQueryBoolean)(this.options.enabled,this.#s)!==(0,o.resolveQueryBoolean)(t.enabled,this.#s)||a!==this.#p)&&this.#E(a)}getOptimisticResult(e){var t,r;let s=this.#e.getQueryCache().build(this.#e,e),a=this.createResult(s,e);return t=this,r=a,(0,o.shallowEqualObjects)(t.getCurrentResult(),r)||(this.#i=a,this.#l=this.options,this.#n=this.#s.state),a}getCurrentResult(){return this.#i}trackResult(e,t){return new Proxy(e,{get:(e,r)=>(this.trackProp(r),t?.(r),"promise"===r&&(this.trackProp("data"),this.options.experimental_prefetchInRender||"pending"!==this.#r.status||this.#r.reject(Error("experimental_prefetchInRender feature flag is not enabled"))),Reflect.get(e,r))})}trackProp(e){this.#f.add(e)}getCurrentQuery(){return this.#s}refetch({...e}={}){return this.fetch({...e})}fetchOptimistic(e){let t=this.#e.defaultQueryOptions(e),r=this.#e.getQueryCache().build(this.#e,t);return r.fetch().then(()=>this.createResult(r,t))}fetch(e){return this.#y({...e,cancelRefetch:e.cancelRefetch??!0}).then(()=>(this.updateResult(),this.#i))}#y(e){this.#g();let t=this.#s.fetch(this.options,e);return e?.throwOnError||(t=t.catch(o.noop)),t}#v(){this.#b();let e=(0,o.resolveStaleTime)(this.options.staleTime,this.#s);if(s.environmentManager.isServer()||this.#i.isStale||!(0,o.isValidTimeout)(e))return;let t=(0,o.timeUntilStale)(this.#i.dataUpdatedAt,e);this.#d=u.timeoutManager.setTimeout(()=>{this.#i.isStale||this.updateResult()},t+1)}#N(){return("function"==typeof this.options.refetchInterval?this.options.refetchInterval(this.#s):this.options.refetchInterval)??!1}#E(e){this.#x(),this.#p=e,!s.environmentManager.isServer()&&!1!==(0,o.resolveQueryBoolean)(this.options.enabled,this.#s)&&(0,o.isValidTimeout)(this.#p)&&0!==this.#p&&(this.#h=u.timeoutManager.setInterval(()=>{(this.options.refetchIntervalInBackground||r.focusManager.isFocused())&&this.#y()},this.#p))}#m(){this.#v(),this.#E(this.#N())}#b(){void 0!==this.#d&&(u.timeoutManager.clearTimeout(this.#d),this.#d=void 0)}#x(){void 0!==this.#h&&(u.timeoutManager.clearInterval(this.#h),this.#h=void 0)}createResult(e,t){let r,s=this.#s,a=this.options,n=this.#i,u=this.#n,c=this.#l,h=e!==s?e.state:this.#a,{state:y}=e,m={...y},b=!1;if(t._optimisticResults){let r=this.hasListeners(),n=!r&&d(e,t),l=r&&p(e,s,t,a);(n||l)&&(m={...m,...(0,i.fetchState)(y.data,e.options)}),"isRestoring"===t._optimisticResults&&(m.fetchStatus="idle")}let{error:x,errorUpdatedAt:g,status:v}=m;r=m.data;let N=!1;if(void 0!==t.placeholderData&&void 0===r&&"pending"===v){let e;n?.isPlaceholderData&&t.placeholderData===c?.placeholderData?(e=n.data,N=!0):e="function"==typeof t.placeholderData?t.placeholderData(this.#c?.state.data,this.#c):t.placeholderData,void 0!==e&&(v="success",r=(0,o.replaceData)(n?.data,e,t),b=!0)}if(t.select&&void 0!==r&&!N)if(n&&r===u?.data&&t.select===this.#o)r=this.#u;else try{this.#o=t.select,r=t.select(r),r=(0,o.replaceData)(n?.data,r,t),this.#u=r,this.#t=null}catch(e){this.#t=e}this.#t&&(x=this.#t,r=this.#u,g=Date.now(),v="error");let E="fetching"===m.fetchStatus,R="pending"===v,T="error"===v,k=R&&E,w=void 0!==r,S={status:v,fetchStatus:m.fetchStatus,isPending:R,isSuccess:"success"===v,isError:T,isInitialLoading:k,isLoading:k,data:r,dataUpdatedAt:m.dataUpdatedAt,error:x,errorUpdatedAt:g,failureCount:m.fetchFailureCount,failureReason:m.fetchFailureReason,errorUpdateCount:m.errorUpdateCount,isFetched:e.isFetched(),isFetchedAfterMount:m.dataUpdateCount>h.dataUpdateCount||m.errorUpdateCount>h.errorUpdateCount,isFetching:E,isRefetching:E&&!R,isLoadingError:T&&!w,isPaused:"paused"===m.fetchStatus,isPlaceholderData:b,isRefetchError:T&&w,isStale:f(e,t),refetch:this.refetch,promise:this.#r,isEnabled:!1!==(0,o.resolveQueryBoolean)(t.enabled,e)};if(this.options.experimental_prefetchInRender){let t=void 0!==S.data,r="error"===S.status&&!t,a=e=>{r?e.reject(S.error):t&&e.resolve(S.data)},i=()=>{a(this.#r=S.promise=(0,l.pendingThenable)())},n=this.#r;switch(n.status){case"pending":e.queryHash===s.queryHash&&a(n);break;case"fulfilled":(r||S.data!==n.value)&&i();break;case"rejected":r&&S.error===n.reason||i()}}return S}updateResult(){let e=this.#i,t=this.createResult(this.#s,this.options);if(this.#n=this.#s.state,this.#l=this.options,void 0!==this.#n.data&&(this.#c=this.#s),(0,o.shallowEqualObjects)(t,e))return;this.#i=t;let r=()=>{if(!e)return!0;let{notifyOnChangeProps:t}=this.options,r="function"==typeof t?t():t;if("all"===r||!r&&!this.#f.size)return!0;let s=new Set(r??this.#f);return this.options.throwOnError&&s.add("error"),Object.keys(this.#i).some(t=>this.#i[t]!==e[t]&&s.has(t))};this.#R({listeners:r()})}#g(){let e=this.#e.getQueryCache().build(this.#e,this.options);if(e===this.#s)return;let t=this.#s;this.#s=e,this.#a=e.state,this.hasListeners()&&(t?.removeObserver(this),e.addObserver(this))}onQueryUpdate(){this.updateResult(),this.hasListeners()&&this.#m()}#R(e){a.notifyManager.batch(()=>{e.listeners&&this.listeners.forEach(e=>{e(this.#i)}),this.#e.getQueryCache().notify({query:this.#s,type:"observerResultsUpdated"})})}};function d(e,t){return!1!==(0,o.resolveQueryBoolean)(t.enabled,e)&&void 0===e.state.data&&("error"!==e.state.status||!1!==(0,o.resolveQueryBoolean)(t.retryOnMount,e))||void 0!==e.state.data&&h(e,t,t.refetchOnMount)}function h(e,t,r){if(!1!==(0,o.resolveQueryBoolean)(t.enabled,e)&&"static"!==(0,o.resolveStaleTime)(t.staleTime,e)){let s="function"==typeof r?r(e):r;return"always"===s||!1!==s&&f(e,t)}return!1}function p(e,t,r,s){return(e!==t||!1===(0,o.resolveQueryBoolean)(s.enabled,e))&&(!r.suspense||"error"!==e.state.status)&&f(e,r)}function f(e,t){return!1!==(0,o.resolveQueryBoolean)(t.enabled,e)&&e.isStaleByTime((0,o.resolveStaleTime)(t.staleTime,e))}e.i(47167);var y=e.i(71645),m=e.i(12598);e.i(43476);var b=y.createContext((t=!1,{clearReset:()=>{t=!1},reset:()=>{t=!0},isReset:()=>t})),x=y.createContext(!1);x.Provider;var g=(e,t,r)=>t.fetchOptimistic(e).catch(()=>{r.clearReset()});e.s(["useQuery",0,function(e,t){return function(e,t,r){let i,n=y.useContext(x),l=y.useContext(b),u=(0,m.useQueryClient)(r),c=u.defaultQueryOptions(e);u.getDefaultOptions().queries?._experimental_beforeQuery?.(c);let d=u.getQueryCache().get(c.queryHash),h=!1!==e.subscribed;if(c._optimisticResults=n?"isRestoring":h?"optimistic":void 0,c.suspense){let e=e=>"static"===e?e:Math.max(e??1e3,1e3),t=c.staleTime;c.staleTime="function"==typeof t?(...r)=>e(t(...r)):e(t),"number"==typeof c.gcTime&&(c.gcTime=Math.max(c.gcTime,1e3))}i=d?.state.error&&"function"==typeof c.throwOnError?(0,o.shouldThrowError)(c.throwOnError,[d.state.error,d]):c.throwOnError,(c.suspense||c.experimental_prefetchInRender||i)&&!l.isReset()&&(c.retryOnMount=!1),y.useEffect(()=>{l.clearReset()},[l]);let p=!u.getQueryCache().get(c.queryHash),[f]=y.useState(()=>new t(u,c)),v=f.getOptimisticResult(c),N=!n&&h;if(y.useSyncExternalStore(y.useCallback(e=>{let t=N?f.subscribe(a.notifyManager.batchCalls(e)):o.noop;return f.updateResult(),t},[f,N]),()=>f.getCurrentResult(),()=>f.getCurrentResult()),y.useEffect(()=>{f.setOptions(c)},[c,f]),c?.suspense&&v.isPending)throw g(c,f,l);if((({result:e,errorResetBoundary:t,throwOnError:r,query:s,suspense:a})=>e.isError&&!t.isReset()&&!e.isFetching&&s&&(a&&void 0===e.data||(0,o.shouldThrowError)(r,[e.error,s])))({result:v,errorResetBoundary:l,throwOnError:c.throwOnError,query:d,suspense:c.suspense}))throw v.error;if(u.getDefaultOptions().queries?._experimental_afterQuery?.(c,v),c.experimental_prefetchInRender&&!s.environmentManager.isServer()&&v.isLoading&&v.isFetching&&!n){let e=p?g(c,f,l):d?.promise;e?.catch(o.noop).finally(()=>{f.updateResult()})}return c.notifyOnChangeProps?v:f.trackResult(v)}(e,c,t)}],66027)},95468,e=>{"use strict";let t=(0,e.i(75254).default)("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);e.s(["CheckCircle2",0,t],95468)},92950,e=>{"use strict";var t=e.i(43476),r=e.i(75254);let s=(0,r.default)("CircleAlert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);var a=e.i(95468);let i=(0,r.default)("CircleDashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]]),n=(0,r.default)("ShieldAlert",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]),l={OFFEN:{value:"OFFEN",label:"Noch nicht bewertet",badgeClass:"border-slate-300 bg-slate-100 text-slate-700",previewClass:"border-slate-300 bg-slate-50 text-slate-700",color:"#2E3B40",icon:i},BESTANDEN:{value:"BESTANDEN",label:"Bestanden",badgeClass:"border-success/35 bg-success/15 text-success",previewClass:"border-success/40 bg-success/10 text-success",color:"#245C36",icon:a.CheckCircle2},BESTANDEN_MIT_AUFLAGEN:{value:"BESTANDEN_MIT_AUFLAGEN",label:"Bestanden mit Auflagen",badgeClass:"border-warning/40 bg-warning/15 text-[#7A5A00]",previewClass:"border-warning/45 bg-warning/10 text-[#7A5A00]",color:"#7A5A00",icon:n},NICHT_BESTANDEN:{value:"NICHT_BESTANDEN",label:"Nicht bestanden",badgeClass:"border-danger/35 bg-danger/15 text-danger",previewClass:"border-danger/40 bg-danger/10 text-danger",color:"#7A1F26",icon:s}},o={"":"OFFEN",offen:"OFFEN",OFFEN:"OFFEN",bestanden:"BESTANDEN",BESTANDEN:"BESTANDEN",mit_auflagen:"BESTANDEN_MIT_AUFLAGEN",bestanden_mit_auflagen:"BESTANDEN_MIT_AUFLAGEN","bestanden mit auflagen":"BESTANDEN_MIT_AUFLAGEN",BESTANDEN_MIT_AUFLAGEN:"BESTANDEN_MIT_AUFLAGEN",nicht_bestanden:"NICHT_BESTANDEN","nicht bestanden":"NICHT_BESTANDEN",NICHT_BESTANDEN:"NICHT_BESTANDEN"};function u(e){return o[String(e??"").trim()]??"OFFEN"}function c(e){return l[u(e)]}e.s(["ValidationResultBadge",0,function({value:e,className:r=""}){let s=c(e),a=s.icon;return(0,t.jsxs)("span",{className:`inline-flex items-center gap-1.5 rounded-full border px-3 py-1 text-xs font-semibold ${s.badgeClass} ${r}`,children:[(0,t.jsx)(a,{className:"h-3.5 w-3.5"}),s.label]})},"getValidationResultPresentation",0,c,"normalizeValidationResult",0,u,"validationResultValues",0,["OFFEN","BESTANDEN","BESTANDEN_MIT_AUFLAGEN","NICHT_BESTANDEN"]],92950)},7233,e=>{"use strict";let t=(0,e.i(75254).default)("Plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);e.s(["Plus",0,t],7233)},78894,e=>{"use strict";let t=(0,e.i(75254).default)("TriangleAlert",[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);e.s(["AlertTriangle",0,t],78894)},45388,e=>{"use strict";var t=e.i(43476),r=e.i(66027),s=e.i(78894),a=e.i(95468),i=e.i(75254);let n=(0,i.default)("ClipboardList",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M12 11h4",key:"1jrz19"}],["path",{d:"M12 16h4",key:"n85exb"}],["path",{d:"M8 11h.01",key:"1dfujw"}],["path",{d:"M8 16h.01",key:"18s6g9"}]]),l=(0,i.default)("Clock",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 16 14",key:"68esgv"}]]),o=(0,i.default)("FilePenLine",[["path",{d:"m18 5-2.414-2.414A2 2 0 0 0 14.172 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2",key:"142zxg"}],["path",{d:"M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"2t3380"}],["path",{d:"M8 18h1",key:"13wk12"}]]);var u=e.i(94827),c=e.i(7233),d=e.i(20286);let h=(0,i.default)("TestTubeDiagonal",[["path",{d:"M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3",key:"1ub6xw"}],["path",{d:"m16 2 6 6",key:"1gw87d"}],["path",{d:"M12 16H4",key:"1cjfip"}]]),p=(0,i.default)("Users",[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87",key:"kshegd"}],["path",{d:"M16 3.13a4 4 0 0 1 0 7.75",key:"1da9ce"}]]);var f=e.i(22016),y=e.i(28779),m=e.i(54858),b=e.i(82649),x=e.i(92950);let g=[{label:"Neue Validierung starten",value:"Schnellstart",href:"/validations/quick-start",icon:c.Plus},{label:"Validierungen",key:"validations",href:"/validations",icon:n},{label:"Kunden",key:"customers",href:"/customers",icon:p},{label:"Geraete",key:"devices",href:"/devices",icon:d.Stethoscope},{label:"Pruefmittel",key:"equipment",href:"/equipment",icon:h}],v=[{label:"Entwuerfe",key:"validation_drafts",href:"/validations?status=ENTWURF",icon:o},{label:"Bereit zur Pruefung",key:"validation_ready",href:"/validations?status=BEREIT_ZUR_PRUEFUNG",icon:n},{label:"In Pruefung",key:"validation_in_review",href:"/validations?status=IN_PRUEFUNG",icon:l},{label:"Freigegeben",key:"validation_approved",href:"/validations?status=FREIGEGEBEN",icon:a.CheckCircle2},{label:"Ueberfaellige Revalidierungen",key:"validation_overdue",href:"/validations?overdue_only=true",icon:s.AlertTriangle}];e.s(["default",0,function(){let{token:e}=(0,y.useAuth)(),a=(0,r.useQuery)({queryKey:["dashboard",e],queryFn:()=>(0,m.apiGet)("/dashboard",e??""),enabled:!!e});return(0,t.jsxs)("div",{className:"space-y-8",children:[(0,t.jsxs)("header",{className:"rounded-lg border border-border bg-surface p-6 shadow-soft",children:[(0,t.jsxs)("div",{className:"flex flex-col justify-between gap-4 md:flex-row md:items-center",children:[(0,t.jsx)(b.BrandLogo,{}),(0,t.jsxs)("div",{className:"text-sm text-text-light",children:[(0,t.jsx)("p",{children:"Benutzer: angemeldet"}),(0,t.jsx)("p",{children:"Speicherstatus: synchronisiert"})]})]}),(0,t.jsx)("h1",{className:"mt-6 text-3xl font-semibold text-text",children:"Dashboard"}),(0,t.jsx)("p",{className:"mt-2 text-text-light",children:"Validierungsworkflow und faellige Revalidierungen."})]}),(0,t.jsx)("section",{className:"grid gap-4 sm:grid-cols-2 xl:grid-cols-5",children:g.map(e=>{let r=e.icon,s="key"in e?a.data?.[e.key]??0:e.value;return(0,t.jsxs)(f.default,{href:e.href,className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:-translate-y-0.5 hover:border-primary/40 hover:shadow-lg",children:[(0,t.jsxs)("div",{className:"flex items-center justify-between",children:[(0,t.jsx)("p",{className:"text-sm text-text-light",children:e.label}),(0,t.jsx)(r,{className:"h-5 w-5 text-primary"})]}),(0,t.jsx)("p",{className:"mt-6 text-4xl font-semibold text-text",children:s})]},e.label)})}),(0,t.jsx)("section",{className:"grid gap-4 sm:grid-cols-2 xl:grid-cols-5",children:v.map(e=>{let r=e.icon;return(0,t.jsxs)(f.default,{href:e.href,className:"rounded-lg border border-border bg-surface p-5 shadow-soft transition hover:border-primary/40 hover:bg-background",children:[(0,t.jsxs)("div",{className:"flex items-center justify-between",children:[(0,t.jsx)("p",{className:"text-sm text-text-light",children:e.label}),(0,t.jsx)(r,{className:"h-5 w-5 text-primary"})]}),(0,t.jsx)("p",{className:"mt-4 text-3xl font-semibold text-text",children:a.data?.[e.key]??0})]},e.key)})}),(0,t.jsxs)("section",{className:"grid gap-4 xl:grid-cols-4",children:[(0,t.jsxs)(f.default,{href:"/validations?sort_by=updated_at&sort_order=desc",className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:border-primary/40 hover:bg-background",children:[(0,t.jsx)("h2",{className:"text-xl font-semibold",children:"Zuletzt bearbeitet"}),(0,t.jsx)("p",{className:"mt-3 text-sm leading-6 text-text-light",children:"Aktuelle Validierungen nach Bearbeitungsdatum oeffnen."})]}),(0,t.jsxs)(f.default,{href:"/validations?overdue_only=true",className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:border-danger/40 hover:bg-background",children:[(0,t.jsxs)("div",{className:"flex items-center justify-between",children:[(0,t.jsx)("h2",{className:"text-xl font-semibold",children:"Ueberfaellige Revalidierungen"}),(0,t.jsx)(s.AlertTriangle,{className:"h-5 w-5 text-danger"})]}),(0,t.jsx)("p",{className:"mt-4 text-3xl font-semibold text-text",children:a.data?.validation_overdue??0})]}),(0,t.jsxs)(f.default,{href:"/equipment",className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:border-primary/40 hover:bg-background",children:[(0,t.jsxs)("div",{className:"flex items-center justify-between",children:[(0,t.jsx)("h2",{className:"text-xl font-semibold",children:"Kalibrierstatus"}),(0,t.jsx)(u.Gauge,{className:"h-5 w-5 text-primary"})]}),(0,t.jsxs)("p",{className:"mt-4 text-sm text-text-light",children:["Gruen ",a.data?.equipment_green??0," · Gelb ",a.data?.equipment_yellow??0," · Rot ",a.data?.equipment_red??0]})]}),(0,t.jsxs)(f.default,{href:"/validations?status=ABGESCHLOSSEN",className:"rounded-lg border border-border bg-surface p-6 shadow-soft transition hover:border-primary/40 hover:bg-background",children:[(0,t.jsx)("h2",{className:"text-xl font-semibold",children:"Letzte Berichte"}),(0,t.jsx)("p",{className:"mt-4 text-3xl font-semibold text-text",children:a.data?.validation_completed??0}),(0,t.jsxs)("div",{className:"mt-4 flex flex-wrap gap-2",children:[(0,t.jsx)(x.ValidationResultBadge,{value:"BESTANDEN",className:"text-[11px]"}),(0,t.jsx)("span",{className:"text-sm font-semibold text-text",children:a.data?.validation_result_passed??0}),(0,t.jsx)(x.ValidationResultBadge,{value:"BESTANDEN_MIT_AUFLAGEN",className:"text-[11px]"}),(0,t.jsx)("span",{className:"text-sm font-semibold text-text",children:a.data?.validation_result_conditional??0}),(0,t.jsx)(x.ValidationResultBadge,{value:"NICHT_BESTANDEN",className:"text-[11px]"}),(0,t.jsx)("span",{className:"text-sm font-semibold text-text",children:a.data?.validation_result_failed??0}),(0,t.jsx)(x.ValidationResultBadge,{value:"OFFEN",className:"text-[11px]"}),(0,t.jsx)("span",{className:"text-sm font-semibold text-text",children:a.data?.validation_result_open??0})]})]})]})]})}],45388)}]); \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/static/chunks/33g7vuk7-89na.css b/validation-suite/frontend/atlas/.next/static/chunks/33g7vuk7-89na.css deleted file mode 100644 index ecbe65ff..00000000 --- a/validation-suite/frontend/atlas/.next/static/chunks/33g7vuk7-89na.css +++ /dev/null @@ -1 +0,0 @@ -*,:before,:after,::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border:0 solid #e5e7eb}:before,:after{--tw-content:""}html,:host{-webkit-text-size-adjust:100%;tab-size:4;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent;font-family:Inter,ui-sans-serif,system-ui;line-height:1.5}body{line-height:inherit;margin:0}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-feature-settings:normal;font-variation-settings:normal;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-feature-settings:inherit;font-variation-settings:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:#0000;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{margin:0;padding:0;list-style:none}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder{opacity:1;color:#9ca3af}textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.pointer-events-none{pointer-events:none}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-0{inset:0}.inset-x-0{left:0;right:0}.inset-y-0{top:0;bottom:0}.bottom-0{bottom:0}.bottom-4{bottom:1rem}.bottom-6{bottom:1.5rem}.left-0{left:0}.left-5{left:1.25rem}.right-0{right:0}.right-4{right:1rem}.right-5{right:1.25rem}.top-0{top:0}.top-4{top:1rem}.z-20{z-index:20}.z-30{z-index:30}.z-40{z-index:40}.z-50{z-index:50}.mx-auto{margin-left:auto;margin-right:auto}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.ml-2{margin-left:.5rem}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.block{display:block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.contents{display:contents}.hidden{display:none}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-3{height:.75rem}.h-3\.5{height:.875rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-9{height:2.25rem}.h-\[520px\]{height:520px}.h-\[78vh\]{height:78vh}.h-full{height:100%}.max-h-56{max-height:14rem}.max-h-\[92vh\]{max-height:92vh}.min-h-11{min-height:2.75rem}.min-h-12{min-height:3rem}.min-h-24{min-height:6rem}.min-h-80{min-height:20rem}.min-h-screen{min-height:100vh}.w-10{width:2.5rem}.w-3{width:.75rem}.w-3\.5{width:.875rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-72{width:18rem}.w-full{width:100%}.min-w-64{min-width:16rem}.min-w-full{min-width:100%}.max-w-3xl{max-width:48rem}.max-w-7xl{max-width:80rem}.max-w-lg{max-width:32rem}.max-w-md{max-width:28rem}.max-w-xl{max-width:36rem}.flex-1{flex:1}.shrink-0{flex-shrink:0}.border-collapse{border-collapse:collapse}.rotate-180{--tw-rotate:180deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:1s linear infinite spin}.cursor-pointer{cursor:pointer}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-5{gap:1.25rem}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem * var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.25rem * var(--tw-space-y-reverse))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.5rem * var(--tw-space-y-reverse))}.space-y-8>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(2rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(2rem * var(--tw-space-y-reverse))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px * var(--tw-divide-y-reverse))}.divide-border>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(230 234 234/var(--tw-divide-opacity,1))}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.whitespace-nowrap{white-space:nowrap}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.border{border-width:1px}.border-b{border-bottom-width:1px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-dashed{border-style:dashed}.border-accent{--tw-border-opacity:1;border-color:rgb(167 199 199/var(--tw-border-opacity,1))}.border-accent\/40{border-color:#a7c7c766}.border-border{--tw-border-opacity:1;border-color:rgb(230 234 234/var(--tw-border-opacity,1))}.border-danger\/30{border-color:#c95c544d}.border-danger\/35{border-color:#c95c5459}.border-danger\/40{border-color:#c95c5466}.border-primary{--tw-border-opacity:1;border-color:rgb(108 138 150/var(--tw-border-opacity,1))}.border-primary-dark{--tw-border-opacity:1;border-color:rgb(79 106 116/var(--tw-border-opacity,1))}.border-primary\/20{border-color:#6c8a9633}.border-primary\/40{border-color:#6c8a9666}.border-slate-300{--tw-border-opacity:1;border-color:rgb(203 213 225/var(--tw-border-opacity,1))}.border-success\/30{border-color:#66a26b4d}.border-success\/35{border-color:#66a26b59}.border-success\/40{border-color:#66a26b66}.border-warning\/40{border-color:#d6a53a66}.border-warning\/45{border-color:#d6a53a73}.bg-accent\/10{background-color:#a7c7c71a}.bg-accent\/25{background-color:#a7c7c740}.bg-accent\/35{background-color:#a7c7c759}.bg-background{--tw-bg-opacity:1;background-color:rgb(247 248 248/var(--tw-bg-opacity,1))}.bg-black\/20{background-color:#0003}.bg-border{--tw-bg-opacity:1;background-color:rgb(230 234 234/var(--tw-bg-opacity,1))}.bg-danger\/10{background-color:#c95c541a}.bg-danger\/15{background-color:#c95c5426}.bg-danger\/5{background-color:#c95c540d}.bg-primary{--tw-bg-opacity:1;background-color:rgb(108 138 150/var(--tw-bg-opacity,1))}.bg-primary-dark{--tw-bg-opacity:1;background-color:rgb(79 106 116/var(--tw-bg-opacity,1))}.bg-primary-dark\/15{background-color:#4f6a7426}.bg-primary\/10{background-color:#6c8a961a}.bg-primary\/5{background-color:#6c8a960d}.bg-slate-100{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity,1))}.bg-slate-50{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity,1))}.bg-success\/10{background-color:#66a26b1a}.bg-success\/15{background-color:#66a26b26}.bg-surface{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.bg-surface\/95{background-color:#fffffff2}.bg-transparent{background-color:#0000}.bg-warning\/10{background-color:#d6a53a1a}.bg-warning\/15{background-color:#d6a53a26}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.object-contain{-o-object-fit:contain;object-fit:contain}.p-3{padding:.75rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.pb-1{padding-bottom:.25rem}.pb-20{padding-bottom:5rem}.pb-24{padding-bottom:6rem}.pb-28{padding-bottom:7rem}.pt-7{padding-top:1.75rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-\[11px\]{font-size:11px}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.leading-6{line-height:1.5rem}.tracking-wide{letter-spacing:.025em}.text-\[\#7A5A00\]{--tw-text-opacity:1;color:rgb(122 90 0/var(--tw-text-opacity,1))}.text-danger{--tw-text-opacity:1;color:rgb(201 92 84/var(--tw-text-opacity,1))}.text-primary{--tw-text-opacity:1;color:rgb(108 138 150/var(--tw-text-opacity,1))}.text-primary-dark{--tw-text-opacity:1;color:rgb(79 106 116/var(--tw-text-opacity,1))}.text-slate-700{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity,1))}.text-success{--tw-text-opacity:1;color:rgb(102 162 107/var(--tw-text-opacity,1))}.text-text{--tw-text-opacity:1;color:rgb(46 59 64/var(--tw-text-opacity,1))}.text-text-light{--tw-text-opacity:1;color:rgb(107 124 133/var(--tw-text-opacity,1))}.text-warning{--tw-text-opacity:1;color:rgb(214 165 58/var(--tw-text-opacity,1))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.opacity-80{opacity:.8}.shadow{--tw-shadow:0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000), var(--tw-ring-shadow,0 0 #0000), var(--tw-shadow)}.shadow-soft{--tw-shadow:0 14px 40px #2e3b4014;--tw-shadow-colored:0 14px 40px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000), var(--tw-ring-shadow,0 0 #0000), var(--tw-shadow)}.outline-none{outline-offset:2px;outline:2px solid #0000}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.backdrop-blur{--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter,backdrop-filter;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1)}:root{color:#2e3b40;background:#f7f8f8}*{box-sizing:border-box}body{background:#f7f8f8;min-height:100vh;margin:0;font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif}button,input,select,textarea{font:inherit}button,a{transition:background-color .18s,border-color .18s,box-shadow .18s,color .18s,opacity .18s,transform .18s}button{cursor:pointer}button:hover:not(:disabled){transform:translateY(-1px);box-shadow:0 12px 28px #2e3b401f}button:hover:not(:disabled) svg,a:hover svg,label:hover svg{transform:scale(1.08)}button:active:not(:disabled),a:active{transform:scale(.98)}button:disabled,[aria-disabled=true]{cursor:not-allowed;opacity:.45}a:hover{text-underline-offset:4px;text-decoration:underline}svg{transition:transform .18s,color .18s}input,select,textarea{transition:border-color .18s,box-shadow .18s,background-color .18s}input:focus,select:focus,textarea:focus{border-color:#6c8a96;outline:none;box-shadow:0 0 0 3px #6c8a962e}tbody tr{transition:background-color .18s}tbody tr:hover{background:#a7c7c724}.btn{border:1px solid #e6eaea;border-radius:8px;justify-content:center;align-items:center;gap:8px;min-height:44px;padding:10px 16px;font-weight:700;display:inline-flex}.btn-secondary{color:#2e3b40;background:#fff}.btn-secondary:hover:not(:disabled){background:#f7f8f8;border-color:#a7c7c7}.btn-secondary:active:not(:disabled){background:#e6eaea}.btn-primary{color:#fff;background:#6c8a96;border-color:#6c8a96}.btn-primary:hover:not(:disabled){background:#4f6a74}.btn-primary:active:not(:disabled){background:#415b64}.btn-danger{color:#c95c54;background:#fff;border-color:#c95c5459}.btn-danger:hover:not(:disabled){background:#c95c5414;border-color:#c95c54}.btn-success{color:#427646;background:#66a26b1f;border-color:#66a26b59}.icon-btn{background:#fff;border:1px solid #e6eaea;border-radius:8px;justify-content:center;align-items:center;width:38px;height:38px;display:inline-flex}.icon-btn:hover:not(:disabled){background:#f7f8f8;border-color:#a7c7c7}.spinner{border:2px solid;border-right-color:#0000;border-radius:999px;width:16px;height:16px;animation:.8s linear infinite spin}.focus-within\:border-primary:focus-within{--tw-border-opacity:1;border-color:rgb(108 138 150/var(--tw-border-opacity,1))}.focus-within\:ring-2:focus-within{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow,0 0 #0000)}.focus-within\:ring-primary\/15:focus-within{--tw-ring-color:#6c8a9626}.hover\:-translate-y-0\.5:hover{--tw-translate-y:-.125rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hover\:border-danger\/40:hover{border-color:#c95c5466}.hover\:border-primary:hover{--tw-border-opacity:1;border-color:rgb(108 138 150/var(--tw-border-opacity,1))}.hover\:border-primary\/40:hover{border-color:#6c8a9666}.hover\:bg-accent\/10:hover{background-color:#a7c7c71a}.hover\:bg-background:hover{--tw-bg-opacity:1;background-color:rgb(247 248 248/var(--tw-bg-opacity,1))}.hover\:bg-background\/70:hover{background-color:#f7f8f8b3}.hover\:bg-primary-dark:hover{--tw-bg-opacity:1;background-color:rgb(79 106 116/var(--tw-bg-opacity,1))}.hover\:bg-white:hover{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.hover\:text-primary-dark:hover{--tw-text-opacity:1;color:rgb(79 106 116/var(--tw-text-opacity,1))}.hover\:text-text:hover{--tw-text-opacity:1;color:rgb(46 59 64/var(--tw-text-opacity,1))}.hover\:shadow-lg:hover{--tw-shadow:0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000), var(--tw-ring-shadow,0 0 #0000), var(--tw-shadow)}.hover\:shadow-md:hover{--tw-shadow:0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000), var(--tw-ring-shadow,0 0 #0000), var(--tw-shadow)}.hover\:shadow-soft:hover{--tw-shadow:0 14px 40px #2e3b4014;--tw-shadow-colored:0 14px 40px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000), var(--tw-ring-shadow,0 0 #0000), var(--tw-shadow)}.focus\:border-primary:focus{--tw-border-opacity:1;border-color:rgb(108 138 150/var(--tw-border-opacity,1))}.focus-visible\:outline:focus-visible{outline-style:solid}.focus-visible\:outline-2:focus-visible{outline-width:2px}.focus-visible\:outline-offset-2:focus-visible{outline-offset:2px}.focus-visible\:outline-primary:focus-visible{outline-color:#6c8a96}.active\:scale-\[0\.98\]:active{--tw-scale-x:.98;--tw-scale-y:.98;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:bg-border\/30:disabled{background-color:#e6eaea4d}.disabled\:text-text-light:disabled{--tw-text-opacity:1;color:rgb(107 124 133/var(--tw-text-opacity,1))}.disabled\:opacity-60:disabled{opacity:.6}@media (min-width:640px){.sm\:col-span-2{grid-column:span 2/span 2}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:flex-row{flex-direction:row}.sm\:items-center{align-items:center}.sm\:justify-end{justify-content:flex-end}.sm\:justify-center{justify-content:center}.sm\:justify-between{justify-content:space-between}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}}@media (min-width:768px){.md\:col-span-2{grid-column:span 2/span 2}.md\:col-span-3{grid-column:span 3/span 3}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.md\:grid-cols-\[1fr_180px_1fr\]{grid-template-columns:1fr 180px 1fr}.md\:grid-cols-\[80px_1fr\]{grid-template-columns:80px 1fr}.md\:flex-row{flex-direction:row}.md\:items-center{align-items:center}.md\:justify-between{justify-content:space-between}}@media (min-width:1024px){.lg\:left-72{left:18rem}.lg\:col-span-2{grid-column:span 2/span 2}.lg\:block{display:block}.lg\:hidden{display:none}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:px-10{padding-left:2.5rem;padding-right:2.5rem}.lg\:py-8{padding-top:2rem;padding-bottom:2rem}.lg\:pl-72{padding-left:18rem}}@media (min-width:1280px){.xl\:sticky{position:sticky}.xl\:top-6{top:1.5rem}.xl\:h-\[calc\(100\%-8rem\)\]{height:calc(100% - 8rem)}.xl\:h-\[calc\(100vh-3rem\)\]{height:calc(100vh - 3rem)}.xl\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.xl\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.xl\:grid-cols-\[1\.1fr_1fr\]{grid-template-columns:1.1fr 1fr}.xl\:grid-cols-\[minmax\(0\,1fr\)_minmax\(360px\,520px\)\]{grid-template-columns:minmax(0,1fr) minmax(360px,520px)}.xl\:flex-col{flex-direction:column}.xl\:items-stretch{align-items:stretch}} diff --git a/validation-suite/frontend/atlas/.next/static/chunks/413udcsynwnhe.js b/validation-suite/frontend/atlas/.next/static/chunks/3cjefmw3itjkw.js similarity index 96% rename from validation-suite/frontend/atlas/.next/static/chunks/413udcsynwnhe.js rename to validation-suite/frontend/atlas/.next/static/chunks/3cjefmw3itjkw.js index 6558e191..01296ef8 100644 --- a/validation-suite/frontend/atlas/.next/static/chunks/413udcsynwnhe.js +++ b/validation-suite/frontend/atlas/.next/static/chunks/3cjefmw3itjkw.js @@ -1 +1 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,66027,e=>{"use strict";let t;var s=e.i(75555),r=e.i(73911),i=e.i(40143),n=e.i(86491),a=e.i(15823),o=e.i(93803),l=e.i(19273),u=e.i(80166),c=class extends a.Subscribable{constructor(e,t){super(),this.options=t,this.#e=e,this.#t=null,this.#s=(0,o.pendingThenable)(),this.bindMethods(),this.setOptions(t)}#e;#r=void 0;#i=void 0;#n=void 0;#a;#o;#s;#t;#l;#u;#c;#h;#d;#p;#b=new Set;bindMethods(){this.refetch=this.refetch.bind(this)}onSubscribe(){1===this.listeners.size&&(this.#r.addObserver(this),h(this.#r,this.options)?this.#m():this.updateResult(),this.#f())}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return d(this.#r,this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return d(this.#r,this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,this.#g(),this.#v(),this.#r.removeObserver(this)}setOptions(e){let t=this.options,s=this.#r;if(this.options=this.#e.defaultQueryOptions(e),void 0!==this.options.enabled&&"boolean"!=typeof this.options.enabled&&"function"!=typeof this.options.enabled&&"boolean"!=typeof(0,l.resolveQueryBoolean)(this.options.enabled,this.#r))throw Error("Expected enabled to be a boolean or a callback that returns a boolean");this.#y(),this.#r.setOptions(this.options),t._defaulted&&!(0,l.shallowEqualObjects)(this.options,t)&&this.#e.getQueryCache().notify({type:"observerOptionsUpdated",query:this.#r,observer:this});let r=this.hasListeners();r&&p(this.#r,s,this.options,t)&&this.#m(),this.updateResult(),r&&(this.#r!==s||(0,l.resolveQueryBoolean)(this.options.enabled,this.#r)!==(0,l.resolveQueryBoolean)(t.enabled,this.#r)||(0,l.resolveStaleTime)(this.options.staleTime,this.#r)!==(0,l.resolveStaleTime)(t.staleTime,this.#r))&&this.#x();let i=this.#_();r&&(this.#r!==s||(0,l.resolveQueryBoolean)(this.options.enabled,this.#r)!==(0,l.resolveQueryBoolean)(t.enabled,this.#r)||i!==this.#p)&&this.#R(i)}getOptimisticResult(e){var t,s;let r=this.#e.getQueryCache().build(this.#e,e),i=this.createResult(r,e);return t=this,s=i,(0,l.shallowEqualObjects)(t.getCurrentResult(),s)||(this.#n=i,this.#o=this.options,this.#a=this.#r.state),i}getCurrentResult(){return this.#n}trackResult(e,t){return new Proxy(e,{get:(e,s)=>(this.trackProp(s),t?.(s),"promise"===s&&(this.trackProp("data"),this.options.experimental_prefetchInRender||"pending"!==this.#s.status||this.#s.reject(Error("experimental_prefetchInRender feature flag is not enabled"))),Reflect.get(e,s))})}trackProp(e){this.#b.add(e)}getCurrentQuery(){return this.#r}refetch({...e}={}){return this.fetch({...e})}fetchOptimistic(e){let t=this.#e.defaultQueryOptions(e),s=this.#e.getQueryCache().build(this.#e,t);return s.fetch().then(()=>this.createResult(s,t))}fetch(e){return this.#m({...e,cancelRefetch:e.cancelRefetch??!0}).then(()=>(this.updateResult(),this.#n))}#m(e){this.#y();let t=this.#r.fetch(this.options,e);return e?.throwOnError||(t=t.catch(l.noop)),t}#x(){this.#g();let e=(0,l.resolveStaleTime)(this.options.staleTime,this.#r);if(r.environmentManager.isServer()||this.#n.isStale||!(0,l.isValidTimeout)(e))return;let t=(0,l.timeUntilStale)(this.#n.dataUpdatedAt,e);this.#h=u.timeoutManager.setTimeout(()=>{this.#n.isStale||this.updateResult()},t+1)}#_(){return("function"==typeof this.options.refetchInterval?this.options.refetchInterval(this.#r):this.options.refetchInterval)??!1}#R(e){this.#v(),this.#p=e,!r.environmentManager.isServer()&&!1!==(0,l.resolveQueryBoolean)(this.options.enabled,this.#r)&&(0,l.isValidTimeout)(this.#p)&&0!==this.#p&&(this.#d=u.timeoutManager.setInterval(()=>{(this.options.refetchIntervalInBackground||s.focusManager.isFocused())&&this.#m()},this.#p))}#f(){this.#x(),this.#R(this.#_())}#g(){void 0!==this.#h&&(u.timeoutManager.clearTimeout(this.#h),this.#h=void 0)}#v(){void 0!==this.#d&&(u.timeoutManager.clearInterval(this.#d),this.#d=void 0)}createResult(e,t){let s,r=this.#r,i=this.options,a=this.#n,u=this.#a,c=this.#o,d=e!==r?e.state:this.#i,{state:m}=e,f={...m},g=!1;if(t._optimisticResults){let s=this.hasListeners(),a=!s&&h(e,t),o=s&&p(e,r,t,i);(a||o)&&(f={...f,...(0,n.fetchState)(m.data,e.options)}),"isRestoring"===t._optimisticResults&&(f.fetchStatus="idle")}let{error:v,errorUpdatedAt:y,status:x}=f;s=f.data;let _=!1;if(void 0!==t.placeholderData&&void 0===s&&"pending"===x){let e;a?.isPlaceholderData&&t.placeholderData===c?.placeholderData?(e=a.data,_=!0):e="function"==typeof t.placeholderData?t.placeholderData(this.#c?.state.data,this.#c):t.placeholderData,void 0!==e&&(x="success",s=(0,l.replaceData)(a?.data,e,t),g=!0)}if(t.select&&void 0!==s&&!_)if(a&&s===u?.data&&t.select===this.#l)s=this.#u;else try{this.#l=t.select,s=t.select(s),s=(0,l.replaceData)(a?.data,s,t),this.#u=s,this.#t=null}catch(e){this.#t=e}this.#t&&(v=this.#t,s=this.#u,y=Date.now(),x="error");let R="fetching"===f.fetchStatus,w="pending"===x,S="error"===x,j=w&&R,k=void 0!==s,C={status:x,fetchStatus:f.fetchStatus,isPending:w,isSuccess:"success"===x,isError:S,isInitialLoading:j,isLoading:j,data:s,dataUpdatedAt:f.dataUpdatedAt,error:v,errorUpdatedAt:y,failureCount:f.fetchFailureCount,failureReason:f.fetchFailureReason,errorUpdateCount:f.errorUpdateCount,isFetched:e.isFetched(),isFetchedAfterMount:f.dataUpdateCount>d.dataUpdateCount||f.errorUpdateCount>d.errorUpdateCount,isFetching:R,isRefetching:R&&!w,isLoadingError:S&&!k,isPaused:"paused"===f.fetchStatus,isPlaceholderData:g,isRefetchError:S&&k,isStale:b(e,t),refetch:this.refetch,promise:this.#s,isEnabled:!1!==(0,l.resolveQueryBoolean)(t.enabled,e)};if(this.options.experimental_prefetchInRender){let t=void 0!==C.data,s="error"===C.status&&!t,i=e=>{s?e.reject(C.error):t&&e.resolve(C.data)},n=()=>{i(this.#s=C.promise=(0,o.pendingThenable)())},a=this.#s;switch(a.status){case"pending":e.queryHash===r.queryHash&&i(a);break;case"fulfilled":(s||C.data!==a.value)&&n();break;case"rejected":s&&C.error===a.reason||n()}}return C}updateResult(){let e=this.#n,t=this.createResult(this.#r,this.options);if(this.#a=this.#r.state,this.#o=this.options,void 0!==this.#a.data&&(this.#c=this.#r),(0,l.shallowEqualObjects)(t,e))return;this.#n=t;let s=()=>{if(!e)return!0;let{notifyOnChangeProps:t}=this.options,s="function"==typeof t?t():t;if("all"===s||!s&&!this.#b.size)return!0;let r=new Set(s??this.#b);return this.options.throwOnError&&r.add("error"),Object.keys(this.#n).some(t=>this.#n[t]!==e[t]&&r.has(t))};this.#w({listeners:s()})}#y(){let e=this.#e.getQueryCache().build(this.#e,this.options);if(e===this.#r)return;let t=this.#r;this.#r=e,this.#i=e.state,this.hasListeners()&&(t?.removeObserver(this),e.addObserver(this))}onQueryUpdate(){this.updateResult(),this.hasListeners()&&this.#f()}#w(e){i.notifyManager.batch(()=>{e.listeners&&this.listeners.forEach(e=>{e(this.#n)}),this.#e.getQueryCache().notify({query:this.#r,type:"observerResultsUpdated"})})}};function h(e,t){return!1!==(0,l.resolveQueryBoolean)(t.enabled,e)&&void 0===e.state.data&&("error"!==e.state.status||!1!==(0,l.resolveQueryBoolean)(t.retryOnMount,e))||void 0!==e.state.data&&d(e,t,t.refetchOnMount)}function d(e,t,s){if(!1!==(0,l.resolveQueryBoolean)(t.enabled,e)&&"static"!==(0,l.resolveStaleTime)(t.staleTime,e)){let r="function"==typeof s?s(e):s;return"always"===r||!1!==r&&b(e,t)}return!1}function p(e,t,s,r){return(e!==t||!1===(0,l.resolveQueryBoolean)(r.enabled,e))&&(!s.suspense||"error"!==e.state.status)&&b(e,s)}function b(e,t){return!1!==(0,l.resolveQueryBoolean)(t.enabled,e)&&e.isStaleByTime((0,l.resolveStaleTime)(t.staleTime,e))}e.i(47167);var m=e.i(71645),f=e.i(12598);e.i(43476);var g=m.createContext((t=!1,{clearReset:()=>{t=!1},reset:()=>{t=!0},isReset:()=>t})),v=m.createContext(!1);v.Provider;var y=(e,t,s)=>t.fetchOptimistic(e).catch(()=>{s.clearReset()});e.s(["useQuery",0,function(e,t){return function(e,t,s){let n,a=m.useContext(v),o=m.useContext(g),u=(0,f.useQueryClient)(s),c=u.defaultQueryOptions(e);u.getDefaultOptions().queries?._experimental_beforeQuery?.(c);let h=u.getQueryCache().get(c.queryHash),d=!1!==e.subscribed;if(c._optimisticResults=a?"isRestoring":d?"optimistic":void 0,c.suspense){let e=e=>"static"===e?e:Math.max(e??1e3,1e3),t=c.staleTime;c.staleTime="function"==typeof t?(...s)=>e(t(...s)):e(t),"number"==typeof c.gcTime&&(c.gcTime=Math.max(c.gcTime,1e3))}n=h?.state.error&&"function"==typeof c.throwOnError?(0,l.shouldThrowError)(c.throwOnError,[h.state.error,h]):c.throwOnError,(c.suspense||c.experimental_prefetchInRender||n)&&!o.isReset()&&(c.retryOnMount=!1),m.useEffect(()=>{o.clearReset()},[o]);let p=!u.getQueryCache().get(c.queryHash),[b]=m.useState(()=>new t(u,c)),x=b.getOptimisticResult(c),_=!a&&d;if(m.useSyncExternalStore(m.useCallback(e=>{let t=_?b.subscribe(i.notifyManager.batchCalls(e)):l.noop;return b.updateResult(),t},[b,_]),()=>b.getCurrentResult(),()=>b.getCurrentResult()),m.useEffect(()=>{b.setOptions(c)},[c,b]),c?.suspense&&x.isPending)throw y(c,b,o);if((({result:e,errorResetBoundary:t,throwOnError:s,query:r,suspense:i})=>e.isError&&!t.isReset()&&!e.isFetching&&r&&(i&&void 0===e.data||(0,l.shouldThrowError)(s,[e.error,r])))({result:x,errorResetBoundary:o,throwOnError:c.throwOnError,query:h,suspense:c.suspense}))throw x.error;if(u.getDefaultOptions().queries?._experimental_afterQuery?.(c,x),c.experimental_prefetchInRender&&!r.environmentManager.isServer()&&x.isLoading&&x.isFetching&&!a){let e=p?y(c,b,o):h?.promise;e?.catch(l.noop).finally(()=>{b.updateResult()})}return c.notifyOnChangeProps?x:b.trackResult(x)}(e,c,t)}],66027)},54616,e=>{"use strict";var t=e.i(71645),s=e.i(14272),r=e.i(40143),i=e.i(15823),n=e.i(19273),a=class extends i.Subscribable{#e;#n=void 0;#S;#j;constructor(e,t){super(),this.#e=e,this.setOptions(t),this.bindMethods(),this.#k()}bindMethods(){this.mutate=this.mutate.bind(this),this.reset=this.reset.bind(this)}setOptions(e){let t=this.options;this.options=this.#e.defaultMutationOptions(e),(0,n.shallowEqualObjects)(this.options,t)||this.#e.getMutationCache().notify({type:"observerOptionsUpdated",mutation:this.#S,observer:this}),t?.mutationKey&&this.options.mutationKey&&(0,n.hashKey)(t.mutationKey)!==(0,n.hashKey)(this.options.mutationKey)?this.reset():this.#S?.state.status==="pending"&&this.#S.setOptions(this.options)}onUnsubscribe(){this.hasListeners()||this.#S?.removeObserver(this)}onMutationUpdate(e){this.#k(),this.#w(e)}getCurrentResult(){return this.#n}reset(){this.#S?.removeObserver(this),this.#S=void 0,this.#k(),this.#w()}mutate(e,t){return this.#j=t,this.#S?.removeObserver(this),this.#S=this.#e.getMutationCache().build(this.#e,this.options),this.#S.addObserver(this),this.#S.execute(e)}#k(){let e=this.#S?.state??(0,s.getDefaultState)();this.#n={...e,isPending:"pending"===e.status,isSuccess:"success"===e.status,isError:"error"===e.status,isIdle:"idle"===e.status,mutate:this.mutate,reset:this.reset}}#w(e){r.notifyManager.batch(()=>{if(this.#j&&this.hasListeners()){let t=this.#n.variables,s=this.#n.context,r={client:this.#e,meta:this.options.meta,mutationKey:this.options.mutationKey};if(e?.type==="success"){try{this.#j.onSuccess?.(e.data,t,s,r)}catch(e){Promise.reject(e)}try{this.#j.onSettled?.(e.data,null,t,s,r)}catch(e){Promise.reject(e)}}else if(e?.type==="error"){try{this.#j.onError?.(e.error,t,s,r)}catch(e){Promise.reject(e)}try{this.#j.onSettled?.(void 0,e.error,t,s,r)}catch(e){Promise.reject(e)}}}this.listeners.forEach(e=>{e(this.#n)})})}},o=e.i(12598);e.s(["useMutation",0,function(e,s){let i=(0,o.useQueryClient)(s),[l]=t.useState(()=>new a(i,e));t.useEffect(()=>{l.setOptions(e)},[l,e]);let u=t.useSyncExternalStore(t.useCallback(e=>l.subscribe(r.notifyManager.batchCalls(e)),[l]),()=>l.getCurrentResult(),()=>l.getCurrentResult()),c=t.useCallback((e,t)=>{l.mutate(e,t).catch(n.noop)},[l]);if(u.error&&(0,n.shouldThrowError)(l.options.throwOnError,[u.error]))throw u.error;return{...u,mutate:c,mutateAsync:u.mutate}}],54616)},40160,e=>{"use strict";let t=(0,e.i(75254).default)("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);e.s(["Download",0,t],40160)},56909,e=>{"use strict";let t=(0,e.i(75254).default)("Save",[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]]);e.s(["Save",0,t],56909)},67240,e=>{"use strict";let t=(0,e.i(75254).default)("RotateCcw",[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]]);e.s(["RotateCcw",0,t],67240)},95241,e=>{"use strict";var t=e.i(43476),s=e.i(54616),r=e.i(66027),i=e.i(12598),n=e.i(40160),a=e.i(67240),o=e.i(56909),l=e.i(71645),u=e.i(28779);let c={layout_profile:"STANDARD",show_cover_result_text:!0,signature_mode:"TECHNICAL_ONLY",image_size:"MEDIUM",page_break_before_main_chapters:!0,page_margin:"STANDARD",section_spacing:"STANDARD",table_layout:"STANDARD",table_font_size:"STANDARD",image_position:"SIDE_BY_SIDE",max_images_per_page:2,show_image_captions:!0,show_header:!0,show_footer:!0,logo_size:"MEDIUM",compact_cover:!1};async function h(e,t){try{return(await e.json()).detail??t}catch{return t}}async function d(){let e=await fetch("/api/report-settings",{credentials:"include",cache:"no-store"});if(!e.ok)throw Error(await h(e,"Berichtseinstellungen konnten nicht geladen werden."));return await e.json()}async function p(e){let t=await fetch("/api/report-settings",{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(e),credentials:"include",cache:"no-store"});if(!t.ok)throw Error(await h(t,"Berichtseinstellungen konnten nicht gespeichert werden."));return await t.json()}async function b(e){let t=await fetch("/api/report-settings/preview",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e),credentials:"include",cache:"no-store"});if(!t.ok)throw Error(await h(t,"PDF-Vorschau konnte nicht erzeugt werden."));return URL.createObjectURL(await t.blob())}function m(e){return e?{layout_profile:e.layout_profile,show_cover_result_text:e.show_cover_result_text,signature_mode:e.signature_mode,image_size:e.image_size,page_break_before_main_chapters:e.page_break_before_main_chapters,page_margin:e.page_margin,section_spacing:e.section_spacing,table_layout:e.table_layout,table_font_size:e.table_font_size,image_position:e.image_position,max_images_per_page:e.max_images_per_page,show_image_captions:e.show_image_captions,show_header:e.show_header,show_footer:e.show_footer,logo_size:e.logo_size,compact_cover:e.compact_cover}:c}function f({title:e,description:s,children:r}){return(0,t.jsxs)("section",{className:"rounded-lg border border-border bg-surface p-5 shadow-soft",children:[(0,t.jsx)("h2",{className:"text-xl font-semibold text-text",children:e}),(0,t.jsx)("p",{className:"mt-1 text-sm text-text-light",children:s}),(0,t.jsx)("div",{className:"mt-5 space-y-5",children:r})]})}function g({label:e,value:s,options:r,onChange:i}){return(0,t.jsxs)("div",{children:[(0,t.jsx)("p",{className:"mb-2 text-sm font-semibold text-text",children:e}),(0,t.jsx)("div",{className:"grid gap-2 sm:grid-cols-2",children:r.map(e=>(0,t.jsx)("button",{type:"button","aria-pressed":s===e.value,className:`min-h-12 rounded-lg border px-4 text-sm font-semibold transition hover:shadow-soft focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${s===e.value?"border-primary bg-primary text-white":"border-border bg-white text-text hover:bg-background"}`,onClick:()=>i(e.value),children:e.label},e.value))})]})}function v({label:e,value:s,options:r,onChange:i}){return(0,t.jsxs)("div",{children:[(0,t.jsx)("p",{className:"mb-2 text-sm font-semibold text-text",children:e}),(0,t.jsx)("div",{className:"grid gap-2",children:r.map(e=>(0,t.jsxs)("button",{type:"button","aria-pressed":s===e.value,className:`flex min-h-12 items-center justify-between rounded-lg border px-4 text-left text-sm font-semibold transition hover:shadow-soft focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${s===e.value?"border-primary bg-accent/25 text-primary-dark":"border-border bg-white text-text hover:bg-background"}`,onClick:()=>i(e.value),children:[(0,t.jsx)("span",{children:e.label}),(0,t.jsx)("span",{className:`h-3 w-3 rounded-full border ${s===e.value?"border-primary bg-primary":"border-border"}`})]},e.value))})]})}function y({label:e,checked:s,onChange:r}){return(0,t.jsxs)("button",{type:"button","aria-pressed":s,className:"flex min-h-12 w-full items-center justify-between rounded-lg border border-border bg-white px-4 text-left text-sm font-semibold transition hover:bg-background hover:shadow-soft focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98]",onClick:()=>r(!s),children:[(0,t.jsx)("span",{children:e}),(0,t.jsx)("span",{className:`rounded-full px-3 py-1 text-xs ${s?"bg-success/15 text-success":"bg-slate-100 text-text-light"}`,children:s?"Ein":"Aus"})]})}e.s(["default",0,function(){let{user:e}=(0,u.useAuth)(),h=(0,i.useQueryClient)(),[x,_]=(0,l.useState)(c),[R,w]=(0,l.useState)(""),[S,j]=(0,l.useState)(""),[k,C]=(0,l.useState)(""),O=(0,r.useQuery)({queryKey:["report-settings"],queryFn:d,enabled:e?.role==="admin"}),T=(0,l.useMemo)(()=>m(O.data),[O.data]),Q=JSON.stringify(x)!==JSON.stringify(T);(0,l.useEffect)(()=>{O.data&&_(m(O.data))},[O.data]),(0,l.useEffect)(()=>()=>{R&&URL.revokeObjectURL(R)},[R]);let N=(0,s.useMutation)({mutationFn:p,onSuccess:async e=>{j("Berichtseinstellungen gespeichert"),C(""),_(m(e)),await h.invalidateQueries({queryKey:["report-settings"]})},onError:e=>{C(e.message),j("")}}),D=(0,s.useMutation)({mutationFn:b,onSuccess:e=>{w(t=>(t&&URL.revokeObjectURL(t),e)),j("Vorschau aktualisiert"),C("")},onError:e=>{C(e.message),j("")}});return e?.role!=="admin"?(0,t.jsx)("div",{className:"rounded-lg border border-border bg-surface p-6 text-text-light",children:"Nur fuer Administratoren verfuegbar."}):(0,t.jsxs)("div",{className:"space-y-6 pb-24",children:[(0,t.jsxs)("header",{children:[(0,t.jsx)("h1",{className:"text-3xl font-semibold text-text",children:"Berichtseinstellungen"}),(0,t.jsx)("p",{className:"mt-2 max-w-3xl text-text-light",children:"Grundlegende Orion-Berichtsdarstellung mit sicheren Auswahloptionen und PDF-Vorschau."})]}),O.isLoading?(0,t.jsxs)("div",{className:"flex items-center gap-3 rounded-lg border border-border bg-surface p-5 text-sm text-text-light",children:[(0,t.jsx)("span",{className:"spinner"}),"Berichtseinstellungen werden geladen..."]}):O.isError?(0,t.jsx)("div",{className:"rounded-lg border border-danger/40 bg-danger/10 p-5 text-sm text-danger",children:"Berichtseinstellungen konnten nicht geladen werden."}):(0,t.jsxs)("div",{className:"grid gap-5 xl:grid-cols-[minmax(0,1fr)_minmax(360px,520px)]",children:[(0,t.jsxs)("div",{className:"grid gap-5 lg:grid-cols-2 xl:grid-cols-1",children:[(0,t.jsxs)(f,{title:"Seitenlayout",description:"Steuert Seitenränder und Abstände im Bericht.",children:[(0,t.jsx)(g,{label:"Seitenränder",value:x.page_margin,options:[{value:"NARROW",label:"Schmal"},{value:"STANDARD",label:"Standard"},{value:"WIDE",label:"Breit"}],onChange:e=>_(t=>({...t,page_margin:e}))}),(0,t.jsx)(g,{label:"Abschnittsabstände",value:x.section_spacing,options:[{value:"COMPACT",label:"Kompakt"},{value:"STANDARD",label:"Standard"}],onChange:e=>_(t=>({...t,section_spacing:e}))}),(0,t.jsx)(g,{label:"Layoutprofil",value:x.layout_profile,options:[{value:"COMPACT",label:"Kompakt"},{value:"STANDARD",label:"Standard"}],onChange:e=>_(t=>({...t,layout_profile:e}))})]}),(0,t.jsxs)(f,{title:"Deckblatt",description:"Sichtbarkeit und kompaktere Darstellung auf der Titelseite.",children:[(0,t.jsx)(y,{label:"Ergebnistext auf Deckblatt",checked:x.show_cover_result_text,onChange:e=>_(t=>({...t,show_cover_result_text:e}))}),(0,t.jsx)(y,{label:"Deckblatt kompakt",checked:x.compact_cover,onChange:e=>_(t=>({...t,compact_cover:e}))}),(0,t.jsx)(v,{label:"Unterschriften",value:x.signature_mode,options:[{value:"TECHNICAL_ONLY",label:"Nur technische Validierung"},{value:"TECHNICAL_AND_CLIENT",label:"Technische Validierung + Auftraggeber"}],onChange:e=>_(t=>({...t,signature_mode:e}))})]}),(0,t.jsxs)(f,{title:"Tabellen",description:"Dichte und Schrift der Berichtstabellen.",children:[(0,t.jsx)(g,{label:"Tabellenlayout",value:x.table_layout,options:[{value:"COMPACT",label:"Kompakt"},{value:"STANDARD",label:"Standard"}],onChange:e=>_(t=>({...t,table_layout:e}))}),(0,t.jsx)(g,{label:"Tabellenschrift",value:x.table_font_size,options:[{value:"SMALL",label:"Klein"},{value:"STANDARD",label:"Standard"}],onChange:e=>_(t=>({...t,table_font_size:e}))})]}),(0,t.jsxs)(f,{title:"Bilder",description:"Größe, Anordnung und Beschriftungen von Bildern.",children:[(0,t.jsx)(g,{label:"Standard-Bildgröße",value:x.image_size,options:[{value:"SMALL",label:"Klein"},{value:"MEDIUM",label:"Mittel"},{value:"LARGE",label:"Groß"}],onChange:e=>_(t=>({...t,image_size:e}))}),(0,t.jsx)(v,{label:"Bildposition",value:x.image_position,options:[{value:"STACKED",label:"Untereinander"},{value:"SIDE_BY_SIDE",label:"Nebeneinander wenn möglich"}],onChange:e=>_(t=>({...t,image_position:e}))}),(0,t.jsx)(g,{label:"Maximale Bilder pro Seite",value:String(x.max_images_per_page),options:[{value:"1",label:"1"},{value:"2",label:"2"},{value:"4",label:"4"}],onChange:e=>_(t=>({...t,max_images_per_page:Number(e)}))}),(0,t.jsx)(y,{label:"Bildbeschriftungen",checked:x.show_image_captions,onChange:e=>_(t=>({...t,show_image_captions:e}))})]}),(0,t.jsxs)(f,{title:"Kopf- und Fußzeile",description:"Sichtbarkeit und Logo-Größe im Berichtskopf.",children:[(0,t.jsx)(y,{label:"Kopfzeile anzeigen",checked:x.show_header,onChange:e=>_(t=>({...t,show_header:e}))}),(0,t.jsx)(y,{label:"Fußzeile anzeigen",checked:x.show_footer,onChange:e=>_(t=>({...t,show_footer:e}))}),(0,t.jsx)(g,{label:"Firmenlogo",value:x.logo_size,options:[{value:"SMALL",label:"Klein"},{value:"MEDIUM",label:"Mittel"},{value:"LARGE",label:"Groß"}],onChange:e=>_(t=>({...t,logo_size:e}))})]}),(0,t.jsx)(f,{title:"Kapitel",description:"Legt fest, ob Hauptkapitel auf neuen Seiten beginnen.",children:(0,t.jsx)(y,{label:"Neue Seite vor Hauptkapiteln",checked:x.page_break_before_main_chapters,onChange:e=>_(t=>({...t,page_break_before_main_chapters:e}))})})]}),(0,t.jsxs)("aside",{className:"rounded-lg border border-border bg-surface p-4 shadow-soft xl:sticky xl:top-6 xl:h-[calc(100vh-3rem)]",children:[(0,t.jsxs)("div",{className:"flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between xl:flex-col xl:items-stretch",children:[(0,t.jsxs)("div",{children:[(0,t.jsx)("h2",{className:"text-xl font-semibold text-text",children:"Live-Vorschau"}),(0,t.jsx)("p",{className:"mt-1 text-sm text-text-light",children:"PDF-Vorschau mit aktuellen, noch nicht gespeicherten Einstellungen."})]}),(0,t.jsxs)("button",{type:"button",className:"btn btn-secondary h-12",disabled:D.isPending||O.isLoading,onClick:()=>D.mutate(x),children:[D.isPending?(0,t.jsx)("span",{className:"spinner"}):(0,t.jsx)(n.Download,{className:"h-4 w-4"}),D.isPending?"PDF wird erzeugt...":"Vorschau aktualisieren"]})]}),(0,t.jsx)("div",{className:"mt-4 h-[520px] overflow-hidden rounded-lg border border-border bg-background xl:h-[calc(100%-8rem)]",children:R?(0,t.jsx)("iframe",{title:"Orion PDF-Vorschau",src:R,className:"h-full w-full"}):(0,t.jsx)("div",{className:"flex h-full items-center justify-center p-6 text-center text-sm text-text-light",children:"Erzeuge eine Vorschau, um die Auswirkungen der Einstellungen direkt zu prüfen."})}),(0,t.jsx)("p",{className:"mt-3 text-xs text-text-light",children:"Falls der Browser keine eingebetteten PDFs anzeigt, öffnet er die Datei über seine Standard-PDF-Funktion."})]})]}),(S||k||Q)&&(0,t.jsx)("div",{className:`rounded-lg border p-4 text-sm ${k?"border-danger/40 bg-danger/10 text-danger":"border-accent/40 bg-accent/10 text-primary-dark"}`,children:k||S||"Ungespeicherte Änderungen"}),(0,t.jsx)("div",{className:"fixed bottom-0 left-0 right-0 z-30 border-t border-border bg-surface/95 px-4 py-3 shadow-soft backdrop-blur lg:left-72",children:(0,t.jsxs)("div",{className:"mx-auto flex max-w-7xl flex-col gap-3 sm:flex-row sm:items-center sm:justify-end",children:[(0,t.jsxs)("button",{type:"button",className:"btn btn-secondary h-12",disabled:!Q||N.isPending,onClick:()=>{_(T),C(""),j("Änderungen verworfen")},children:[(0,t.jsx)(a.RotateCcw,{className:"h-4 w-4"}),"Zurücksetzen"]}),(0,t.jsxs)("button",{type:"button",className:"btn btn-secondary h-12",disabled:D.isPending||O.isLoading,onClick:()=>D.mutate(x),children:[D.isPending?(0,t.jsx)("span",{className:"spinner"}):(0,t.jsx)(n.Download,{className:"h-4 w-4"}),D.isPending?"PDF wird erzeugt...":"Vorschau aktualisieren"]}),(0,t.jsxs)("button",{type:"button",className:"btn btn-primary h-12",disabled:!Q||N.isPending||O.isLoading,onClick:()=>N.mutate(x),children:[N.isPending?(0,t.jsx)("span",{className:"spinner"}):(0,t.jsx)(o.Save,{className:"h-4 w-4"}),N.isPending?"Speichern...":"Änderungen speichern"]})]})})]})}])}]); \ No newline at end of file +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,66027,e=>{"use strict";let t;var s=e.i(75555),r=e.i(73911),i=e.i(40143),n=e.i(86491),a=e.i(15823),o=e.i(93803),l=e.i(19273),u=e.i(80166),c=class extends a.Subscribable{constructor(e,t){super(),this.options=t,this.#e=e,this.#t=null,this.#s=(0,o.pendingThenable)(),this.bindMethods(),this.setOptions(t)}#e;#r=void 0;#i=void 0;#n=void 0;#a;#o;#s;#t;#l;#u;#c;#h;#d;#p;#b=new Set;bindMethods(){this.refetch=this.refetch.bind(this)}onSubscribe(){1===this.listeners.size&&(this.#r.addObserver(this),h(this.#r,this.options)?this.#m():this.updateResult(),this.#f())}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return d(this.#r,this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return d(this.#r,this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,this.#g(),this.#v(),this.#r.removeObserver(this)}setOptions(e){let t=this.options,s=this.#r;if(this.options=this.#e.defaultQueryOptions(e),void 0!==this.options.enabled&&"boolean"!=typeof this.options.enabled&&"function"!=typeof this.options.enabled&&"boolean"!=typeof(0,l.resolveQueryBoolean)(this.options.enabled,this.#r))throw Error("Expected enabled to be a boolean or a callback that returns a boolean");this.#y(),this.#r.setOptions(this.options),t._defaulted&&!(0,l.shallowEqualObjects)(this.options,t)&&this.#e.getQueryCache().notify({type:"observerOptionsUpdated",query:this.#r,observer:this});let r=this.hasListeners();r&&p(this.#r,s,this.options,t)&&this.#m(),this.updateResult(),r&&(this.#r!==s||(0,l.resolveQueryBoolean)(this.options.enabled,this.#r)!==(0,l.resolveQueryBoolean)(t.enabled,this.#r)||(0,l.resolveStaleTime)(this.options.staleTime,this.#r)!==(0,l.resolveStaleTime)(t.staleTime,this.#r))&&this.#x();let i=this.#_();r&&(this.#r!==s||(0,l.resolveQueryBoolean)(this.options.enabled,this.#r)!==(0,l.resolveQueryBoolean)(t.enabled,this.#r)||i!==this.#p)&&this.#R(i)}getOptimisticResult(e){var t,s;let r=this.#e.getQueryCache().build(this.#e,e),i=this.createResult(r,e);return t=this,s=i,(0,l.shallowEqualObjects)(t.getCurrentResult(),s)||(this.#n=i,this.#o=this.options,this.#a=this.#r.state),i}getCurrentResult(){return this.#n}trackResult(e,t){return new Proxy(e,{get:(e,s)=>(this.trackProp(s),t?.(s),"promise"===s&&(this.trackProp("data"),this.options.experimental_prefetchInRender||"pending"!==this.#s.status||this.#s.reject(Error("experimental_prefetchInRender feature flag is not enabled"))),Reflect.get(e,s))})}trackProp(e){this.#b.add(e)}getCurrentQuery(){return this.#r}refetch({...e}={}){return this.fetch({...e})}fetchOptimistic(e){let t=this.#e.defaultQueryOptions(e),s=this.#e.getQueryCache().build(this.#e,t);return s.fetch().then(()=>this.createResult(s,t))}fetch(e){return this.#m({...e,cancelRefetch:e.cancelRefetch??!0}).then(()=>(this.updateResult(),this.#n))}#m(e){this.#y();let t=this.#r.fetch(this.options,e);return e?.throwOnError||(t=t.catch(l.noop)),t}#x(){this.#g();let e=(0,l.resolveStaleTime)(this.options.staleTime,this.#r);if(r.environmentManager.isServer()||this.#n.isStale||!(0,l.isValidTimeout)(e))return;let t=(0,l.timeUntilStale)(this.#n.dataUpdatedAt,e);this.#h=u.timeoutManager.setTimeout(()=>{this.#n.isStale||this.updateResult()},t+1)}#_(){return("function"==typeof this.options.refetchInterval?this.options.refetchInterval(this.#r):this.options.refetchInterval)??!1}#R(e){this.#v(),this.#p=e,!r.environmentManager.isServer()&&!1!==(0,l.resolveQueryBoolean)(this.options.enabled,this.#r)&&(0,l.isValidTimeout)(this.#p)&&0!==this.#p&&(this.#d=u.timeoutManager.setInterval(()=>{(this.options.refetchIntervalInBackground||s.focusManager.isFocused())&&this.#m()},this.#p))}#f(){this.#x(),this.#R(this.#_())}#g(){void 0!==this.#h&&(u.timeoutManager.clearTimeout(this.#h),this.#h=void 0)}#v(){void 0!==this.#d&&(u.timeoutManager.clearInterval(this.#d),this.#d=void 0)}createResult(e,t){let s,r=this.#r,i=this.options,a=this.#n,u=this.#a,c=this.#o,d=e!==r?e.state:this.#i,{state:m}=e,f={...m},g=!1;if(t._optimisticResults){let s=this.hasListeners(),a=!s&&h(e,t),o=s&&p(e,r,t,i);(a||o)&&(f={...f,...(0,n.fetchState)(m.data,e.options)}),"isRestoring"===t._optimisticResults&&(f.fetchStatus="idle")}let{error:v,errorUpdatedAt:y,status:x}=f;s=f.data;let _=!1;if(void 0!==t.placeholderData&&void 0===s&&"pending"===x){let e;a?.isPlaceholderData&&t.placeholderData===c?.placeholderData?(e=a.data,_=!0):e="function"==typeof t.placeholderData?t.placeholderData(this.#c?.state.data,this.#c):t.placeholderData,void 0!==e&&(x="success",s=(0,l.replaceData)(a?.data,e,t),g=!0)}if(t.select&&void 0!==s&&!_)if(a&&s===u?.data&&t.select===this.#l)s=this.#u;else try{this.#l=t.select,s=t.select(s),s=(0,l.replaceData)(a?.data,s,t),this.#u=s,this.#t=null}catch(e){this.#t=e}this.#t&&(v=this.#t,s=this.#u,y=Date.now(),x="error");let R="fetching"===f.fetchStatus,w="pending"===x,S="error"===x,j=w&&R,k=void 0!==s,C={status:x,fetchStatus:f.fetchStatus,isPending:w,isSuccess:"success"===x,isError:S,isInitialLoading:j,isLoading:j,data:s,dataUpdatedAt:f.dataUpdatedAt,error:v,errorUpdatedAt:y,failureCount:f.fetchFailureCount,failureReason:f.fetchFailureReason,errorUpdateCount:f.errorUpdateCount,isFetched:e.isFetched(),isFetchedAfterMount:f.dataUpdateCount>d.dataUpdateCount||f.errorUpdateCount>d.errorUpdateCount,isFetching:R,isRefetching:R&&!w,isLoadingError:S&&!k,isPaused:"paused"===f.fetchStatus,isPlaceholderData:g,isRefetchError:S&&k,isStale:b(e,t),refetch:this.refetch,promise:this.#s,isEnabled:!1!==(0,l.resolveQueryBoolean)(t.enabled,e)};if(this.options.experimental_prefetchInRender){let t=void 0!==C.data,s="error"===C.status&&!t,i=e=>{s?e.reject(C.error):t&&e.resolve(C.data)},n=()=>{i(this.#s=C.promise=(0,o.pendingThenable)())},a=this.#s;switch(a.status){case"pending":e.queryHash===r.queryHash&&i(a);break;case"fulfilled":(s||C.data!==a.value)&&n();break;case"rejected":s&&C.error===a.reason||n()}}return C}updateResult(){let e=this.#n,t=this.createResult(this.#r,this.options);if(this.#a=this.#r.state,this.#o=this.options,void 0!==this.#a.data&&(this.#c=this.#r),(0,l.shallowEqualObjects)(t,e))return;this.#n=t;let s=()=>{if(!e)return!0;let{notifyOnChangeProps:t}=this.options,s="function"==typeof t?t():t;if("all"===s||!s&&!this.#b.size)return!0;let r=new Set(s??this.#b);return this.options.throwOnError&&r.add("error"),Object.keys(this.#n).some(t=>this.#n[t]!==e[t]&&r.has(t))};this.#w({listeners:s()})}#y(){let e=this.#e.getQueryCache().build(this.#e,this.options);if(e===this.#r)return;let t=this.#r;this.#r=e,this.#i=e.state,this.hasListeners()&&(t?.removeObserver(this),e.addObserver(this))}onQueryUpdate(){this.updateResult(),this.hasListeners()&&this.#f()}#w(e){i.notifyManager.batch(()=>{e.listeners&&this.listeners.forEach(e=>{e(this.#n)}),this.#e.getQueryCache().notify({query:this.#r,type:"observerResultsUpdated"})})}};function h(e,t){return!1!==(0,l.resolveQueryBoolean)(t.enabled,e)&&void 0===e.state.data&&("error"!==e.state.status||!1!==(0,l.resolveQueryBoolean)(t.retryOnMount,e))||void 0!==e.state.data&&d(e,t,t.refetchOnMount)}function d(e,t,s){if(!1!==(0,l.resolveQueryBoolean)(t.enabled,e)&&"static"!==(0,l.resolveStaleTime)(t.staleTime,e)){let r="function"==typeof s?s(e):s;return"always"===r||!1!==r&&b(e,t)}return!1}function p(e,t,s,r){return(e!==t||!1===(0,l.resolveQueryBoolean)(r.enabled,e))&&(!s.suspense||"error"!==e.state.status)&&b(e,s)}function b(e,t){return!1!==(0,l.resolveQueryBoolean)(t.enabled,e)&&e.isStaleByTime((0,l.resolveStaleTime)(t.staleTime,e))}e.i(47167);var m=e.i(71645),f=e.i(12598);e.i(43476);var g=m.createContext((t=!1,{clearReset:()=>{t=!1},reset:()=>{t=!0},isReset:()=>t})),v=m.createContext(!1);v.Provider;var y=(e,t,s)=>t.fetchOptimistic(e).catch(()=>{s.clearReset()});e.s(["useQuery",0,function(e,t){return function(e,t,s){let n,a=m.useContext(v),o=m.useContext(g),u=(0,f.useQueryClient)(s),c=u.defaultQueryOptions(e);u.getDefaultOptions().queries?._experimental_beforeQuery?.(c);let h=u.getQueryCache().get(c.queryHash),d=!1!==e.subscribed;if(c._optimisticResults=a?"isRestoring":d?"optimistic":void 0,c.suspense){let e=e=>"static"===e?e:Math.max(e??1e3,1e3),t=c.staleTime;c.staleTime="function"==typeof t?(...s)=>e(t(...s)):e(t),"number"==typeof c.gcTime&&(c.gcTime=Math.max(c.gcTime,1e3))}n=h?.state.error&&"function"==typeof c.throwOnError?(0,l.shouldThrowError)(c.throwOnError,[h.state.error,h]):c.throwOnError,(c.suspense||c.experimental_prefetchInRender||n)&&!o.isReset()&&(c.retryOnMount=!1),m.useEffect(()=>{o.clearReset()},[o]);let p=!u.getQueryCache().get(c.queryHash),[b]=m.useState(()=>new t(u,c)),x=b.getOptimisticResult(c),_=!a&&d;if(m.useSyncExternalStore(m.useCallback(e=>{let t=_?b.subscribe(i.notifyManager.batchCalls(e)):l.noop;return b.updateResult(),t},[b,_]),()=>b.getCurrentResult(),()=>b.getCurrentResult()),m.useEffect(()=>{b.setOptions(c)},[c,b]),c?.suspense&&x.isPending)throw y(c,b,o);if((({result:e,errorResetBoundary:t,throwOnError:s,query:r,suspense:i})=>e.isError&&!t.isReset()&&!e.isFetching&&r&&(i&&void 0===e.data||(0,l.shouldThrowError)(s,[e.error,r])))({result:x,errorResetBoundary:o,throwOnError:c.throwOnError,query:h,suspense:c.suspense}))throw x.error;if(u.getDefaultOptions().queries?._experimental_afterQuery?.(c,x),c.experimental_prefetchInRender&&!r.environmentManager.isServer()&&x.isLoading&&x.isFetching&&!a){let e=p?y(c,b,o):h?.promise;e?.catch(l.noop).finally(()=>{b.updateResult()})}return c.notifyOnChangeProps?x:b.trackResult(x)}(e,c,t)}],66027)},54616,e=>{"use strict";var t=e.i(71645),s=e.i(14272),r=e.i(40143),i=e.i(15823),n=e.i(19273),a=class extends i.Subscribable{#e;#n=void 0;#S;#j;constructor(e,t){super(),this.#e=e,this.setOptions(t),this.bindMethods(),this.#k()}bindMethods(){this.mutate=this.mutate.bind(this),this.reset=this.reset.bind(this)}setOptions(e){let t=this.options;this.options=this.#e.defaultMutationOptions(e),(0,n.shallowEqualObjects)(this.options,t)||this.#e.getMutationCache().notify({type:"observerOptionsUpdated",mutation:this.#S,observer:this}),t?.mutationKey&&this.options.mutationKey&&(0,n.hashKey)(t.mutationKey)!==(0,n.hashKey)(this.options.mutationKey)?this.reset():this.#S?.state.status==="pending"&&this.#S.setOptions(this.options)}onUnsubscribe(){this.hasListeners()||this.#S?.removeObserver(this)}onMutationUpdate(e){this.#k(),this.#w(e)}getCurrentResult(){return this.#n}reset(){this.#S?.removeObserver(this),this.#S=void 0,this.#k(),this.#w()}mutate(e,t){return this.#j=t,this.#S?.removeObserver(this),this.#S=this.#e.getMutationCache().build(this.#e,this.options),this.#S.addObserver(this),this.#S.execute(e)}#k(){let e=this.#S?.state??(0,s.getDefaultState)();this.#n={...e,isPending:"pending"===e.status,isSuccess:"success"===e.status,isError:"error"===e.status,isIdle:"idle"===e.status,mutate:this.mutate,reset:this.reset}}#w(e){r.notifyManager.batch(()=>{if(this.#j&&this.hasListeners()){let t=this.#n.variables,s=this.#n.context,r={client:this.#e,meta:this.options.meta,mutationKey:this.options.mutationKey};if(e?.type==="success"){try{this.#j.onSuccess?.(e.data,t,s,r)}catch(e){Promise.reject(e)}try{this.#j.onSettled?.(e.data,null,t,s,r)}catch(e){Promise.reject(e)}}else if(e?.type==="error"){try{this.#j.onError?.(e.error,t,s,r)}catch(e){Promise.reject(e)}try{this.#j.onSettled?.(void 0,e.error,t,s,r)}catch(e){Promise.reject(e)}}}this.listeners.forEach(e=>{e(this.#n)})})}},o=e.i(12598);e.s(["useMutation",0,function(e,s){let i=(0,o.useQueryClient)(s),[l]=t.useState(()=>new a(i,e));t.useEffect(()=>{l.setOptions(e)},[l,e]);let u=t.useSyncExternalStore(t.useCallback(e=>l.subscribe(r.notifyManager.batchCalls(e)),[l]),()=>l.getCurrentResult(),()=>l.getCurrentResult()),c=t.useCallback((e,t)=>{l.mutate(e,t).catch(n.noop)},[l]);if(u.error&&(0,n.shouldThrowError)(l.options.throwOnError,[u.error]))throw u.error;return{...u,mutate:c,mutateAsync:u.mutate}}],54616)},67240,e=>{"use strict";let t=(0,e.i(75254).default)("RotateCcw",[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]]);e.s(["RotateCcw",0,t],67240)},40160,e=>{"use strict";let t=(0,e.i(75254).default)("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);e.s(["Download",0,t],40160)},56909,e=>{"use strict";let t=(0,e.i(75254).default)("Save",[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]]);e.s(["Save",0,t],56909)},95241,e=>{"use strict";var t=e.i(43476),s=e.i(54616),r=e.i(66027),i=e.i(12598),n=e.i(40160),a=e.i(67240),o=e.i(56909),l=e.i(71645),u=e.i(28779);let c={layout_profile:"STANDARD",show_cover_result_text:!0,signature_mode:"TECHNICAL_ONLY",image_size:"MEDIUM",page_break_before_main_chapters:!0,page_margin:"STANDARD",section_spacing:"STANDARD",table_layout:"STANDARD",table_font_size:"STANDARD",image_position:"SIDE_BY_SIDE",max_images_per_page:2,show_image_captions:!0,show_header:!0,show_footer:!0,logo_size:"MEDIUM",compact_cover:!1};async function h(e,t){try{return(await e.json()).detail??t}catch{return t}}async function d(){let e=await fetch("/api/report-settings",{credentials:"include",cache:"no-store"});if(!e.ok)throw Error(await h(e,"Berichtseinstellungen konnten nicht geladen werden."));return await e.json()}async function p(e){let t=await fetch("/api/report-settings",{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(e),credentials:"include",cache:"no-store"});if(!t.ok)throw Error(await h(t,"Berichtseinstellungen konnten nicht gespeichert werden."));return await t.json()}async function b(e){let t=await fetch("/api/report-settings/preview",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e),credentials:"include",cache:"no-store"});if(!t.ok)throw Error(await h(t,"PDF-Vorschau konnte nicht erzeugt werden."));return URL.createObjectURL(await t.blob())}function m(e){return e?{layout_profile:e.layout_profile,show_cover_result_text:e.show_cover_result_text,signature_mode:e.signature_mode,image_size:e.image_size,page_break_before_main_chapters:e.page_break_before_main_chapters,page_margin:e.page_margin,section_spacing:e.section_spacing,table_layout:e.table_layout,table_font_size:e.table_font_size,image_position:e.image_position,max_images_per_page:e.max_images_per_page,show_image_captions:e.show_image_captions,show_header:e.show_header,show_footer:e.show_footer,logo_size:e.logo_size,compact_cover:e.compact_cover}:c}function f({title:e,description:s,children:r}){return(0,t.jsxs)("section",{className:"rounded-lg border border-border bg-surface p-5 shadow-soft",children:[(0,t.jsx)("h2",{className:"text-xl font-semibold text-text",children:e}),(0,t.jsx)("p",{className:"mt-1 text-sm text-text-light",children:s}),(0,t.jsx)("div",{className:"mt-5 space-y-5",children:r})]})}function g({label:e,value:s,options:r,onChange:i}){return(0,t.jsxs)("div",{children:[(0,t.jsx)("p",{className:"mb-2 text-sm font-semibold text-text",children:e}),(0,t.jsx)("div",{className:"grid gap-2 sm:grid-cols-2",children:r.map(e=>(0,t.jsx)("button",{type:"button","aria-pressed":s===e.value,className:`min-h-12 rounded-lg border px-4 text-sm font-semibold transition hover:shadow-soft focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${s===e.value?"border-primary bg-primary text-white":"border-border bg-white text-text hover:bg-background"}`,onClick:()=>i(e.value),children:e.label},e.value))})]})}function v({label:e,value:s,options:r,onChange:i}){return(0,t.jsxs)("div",{children:[(0,t.jsx)("p",{className:"mb-2 text-sm font-semibold text-text",children:e}),(0,t.jsx)("div",{className:"grid gap-2",children:r.map(e=>(0,t.jsxs)("button",{type:"button","aria-pressed":s===e.value,className:`flex min-h-12 items-center justify-between rounded-lg border px-4 text-left text-sm font-semibold transition hover:shadow-soft focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98] ${s===e.value?"border-primary bg-accent/25 text-primary-dark":"border-border bg-white text-text hover:bg-background"}`,onClick:()=>i(e.value),children:[(0,t.jsx)("span",{children:e.label}),(0,t.jsx)("span",{className:`h-3 w-3 rounded-full border ${s===e.value?"border-primary bg-primary":"border-border"}`})]},e.value))})]})}function y({label:e,checked:s,onChange:r}){return(0,t.jsxs)("button",{type:"button","aria-pressed":s,className:"flex min-h-12 w-full items-center justify-between rounded-lg border border-border bg-white px-4 text-left text-sm font-semibold transition hover:bg-background hover:shadow-soft focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[0.98]",onClick:()=>r(!s),children:[(0,t.jsx)("span",{children:e}),(0,t.jsx)("span",{className:`rounded-full px-3 py-1 text-xs ${s?"bg-success/15 text-success":"bg-slate-100 text-text-light"}`,children:s?"Ein":"Aus"})]})}e.s(["default",0,function(){let{user:e}=(0,u.useAuth)(),h=(0,i.useQueryClient)(),[x,_]=(0,l.useState)(c),[R,w]=(0,l.useState)(""),[S,j]=(0,l.useState)(""),[k,C]=(0,l.useState)(""),O=(0,r.useQuery)({queryKey:["report-settings"],queryFn:d,enabled:e?.role==="admin"}),T=(0,l.useMemo)(()=>m(O.data),[O.data]),Q=JSON.stringify(x)!==JSON.stringify(T);(0,l.useEffect)(()=>{O.data&&_(m(O.data))},[O.data]),(0,l.useEffect)(()=>()=>{R&&URL.revokeObjectURL(R)},[R]);let N=(0,s.useMutation)({mutationFn:p,onSuccess:async e=>{j("Berichtseinstellungen gespeichert"),C(""),_(m(e)),await h.invalidateQueries({queryKey:["report-settings"]})},onError:e=>{C(e.message),j("")}}),D=(0,s.useMutation)({mutationFn:b,onSuccess:e=>{w(t=>(t&&URL.revokeObjectURL(t),e)),j("Vorschau aktualisiert"),C("")},onError:e=>{C(e.message),j("")}});return e?.role!=="admin"?(0,t.jsx)("div",{className:"rounded-lg border border-border bg-surface p-6 text-text-light",children:"Nur fuer Administratoren verfuegbar."}):(0,t.jsxs)("div",{className:"space-y-6 pb-24",children:[(0,t.jsxs)("header",{children:[(0,t.jsx)("h1",{className:"text-3xl font-semibold text-text",children:"Berichtseinstellungen"}),(0,t.jsx)("p",{className:"mt-2 max-w-3xl text-text-light",children:"Grundlegende Orion-Berichtsdarstellung mit sicheren Auswahloptionen und PDF-Vorschau."})]}),O.isLoading?(0,t.jsxs)("div",{className:"flex items-center gap-3 rounded-lg border border-border bg-surface p-5 text-sm text-text-light",children:[(0,t.jsx)("span",{className:"spinner"}),"Berichtseinstellungen werden geladen..."]}):O.isError?(0,t.jsx)("div",{className:"rounded-lg border border-danger/40 bg-danger/10 p-5 text-sm text-danger",children:"Berichtseinstellungen konnten nicht geladen werden."}):(0,t.jsxs)("div",{className:"grid gap-5 xl:grid-cols-[minmax(0,1fr)_minmax(360px,520px)]",children:[(0,t.jsxs)("div",{className:"grid gap-5 lg:grid-cols-2 xl:grid-cols-1",children:[(0,t.jsxs)(f,{title:"Seitenlayout",description:"Steuert Seitenränder und Abstände im Bericht.",children:[(0,t.jsx)(g,{label:"Seitenränder",value:x.page_margin,options:[{value:"NARROW",label:"Schmal"},{value:"STANDARD",label:"Standard"},{value:"WIDE",label:"Breit"}],onChange:e=>_(t=>({...t,page_margin:e}))}),(0,t.jsx)(g,{label:"Abschnittsabstände",value:x.section_spacing,options:[{value:"COMPACT",label:"Kompakt"},{value:"STANDARD",label:"Standard"}],onChange:e=>_(t=>({...t,section_spacing:e}))}),(0,t.jsx)(g,{label:"Layoutprofil",value:x.layout_profile,options:[{value:"COMPACT",label:"Kompakt"},{value:"STANDARD",label:"Standard"}],onChange:e=>_(t=>({...t,layout_profile:e}))})]}),(0,t.jsxs)(f,{title:"Deckblatt",description:"Sichtbarkeit und kompaktere Darstellung auf der Titelseite.",children:[(0,t.jsx)(y,{label:"Ergebnistext auf Deckblatt",checked:x.show_cover_result_text,onChange:e=>_(t=>({...t,show_cover_result_text:e}))}),(0,t.jsx)(y,{label:"Deckblatt kompakt",checked:x.compact_cover,onChange:e=>_(t=>({...t,compact_cover:e}))}),(0,t.jsx)(v,{label:"Unterschriften",value:x.signature_mode,options:[{value:"TECHNICAL_ONLY",label:"Nur technische Validierung"},{value:"TECHNICAL_AND_CLIENT",label:"Technische Validierung + Auftraggeber"}],onChange:e=>_(t=>({...t,signature_mode:e}))})]}),(0,t.jsxs)(f,{title:"Tabellen",description:"Dichte und Schrift der Berichtstabellen.",children:[(0,t.jsx)(g,{label:"Tabellenlayout",value:x.table_layout,options:[{value:"COMPACT",label:"Kompakt"},{value:"STANDARD",label:"Standard"}],onChange:e=>_(t=>({...t,table_layout:e}))}),(0,t.jsx)(g,{label:"Tabellenschrift",value:x.table_font_size,options:[{value:"SMALL",label:"Klein"},{value:"STANDARD",label:"Standard"}],onChange:e=>_(t=>({...t,table_font_size:e}))})]}),(0,t.jsxs)(f,{title:"Bilder",description:"Größe, Anordnung und Beschriftungen von Bildern.",children:[(0,t.jsx)(g,{label:"Standard-Bildgröße",value:x.image_size,options:[{value:"SMALL",label:"Klein"},{value:"MEDIUM",label:"Mittel"},{value:"LARGE",label:"Groß"}],onChange:e=>_(t=>({...t,image_size:e}))}),(0,t.jsx)(v,{label:"Bildposition",value:x.image_position,options:[{value:"STACKED",label:"Untereinander"},{value:"SIDE_BY_SIDE",label:"Nebeneinander wenn möglich"}],onChange:e=>_(t=>({...t,image_position:e}))}),(0,t.jsx)(g,{label:"Maximale Bilder pro Seite",value:String(x.max_images_per_page),options:[{value:"1",label:"1"},{value:"2",label:"2"},{value:"4",label:"4"}],onChange:e=>_(t=>({...t,max_images_per_page:Number(e)}))}),(0,t.jsx)(y,{label:"Bildbeschriftungen",checked:x.show_image_captions,onChange:e=>_(t=>({...t,show_image_captions:e}))})]}),(0,t.jsxs)(f,{title:"Kopf- und Fußzeile",description:"Sichtbarkeit und Logo-Größe im Berichtskopf.",children:[(0,t.jsx)(y,{label:"Kopfzeile anzeigen",checked:x.show_header,onChange:e=>_(t=>({...t,show_header:e}))}),(0,t.jsx)(y,{label:"Fußzeile anzeigen",checked:x.show_footer,onChange:e=>_(t=>({...t,show_footer:e}))}),(0,t.jsx)(g,{label:"Firmenlogo",value:x.logo_size,options:[{value:"SMALL",label:"Klein"},{value:"MEDIUM",label:"Mittel"},{value:"LARGE",label:"Groß"}],onChange:e=>_(t=>({...t,logo_size:e}))})]}),(0,t.jsx)(f,{title:"Kapitel",description:"Legt fest, ob Hauptkapitel auf neuen Seiten beginnen.",children:(0,t.jsx)(y,{label:"Neue Seite vor Hauptkapiteln",checked:x.page_break_before_main_chapters,onChange:e=>_(t=>({...t,page_break_before_main_chapters:e}))})})]}),(0,t.jsxs)("aside",{className:"rounded-lg border border-border bg-surface p-4 shadow-soft xl:sticky xl:top-6 xl:h-[calc(100vh-3rem)]",children:[(0,t.jsxs)("div",{className:"flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between xl:flex-col xl:items-stretch",children:[(0,t.jsxs)("div",{children:[(0,t.jsx)("h2",{className:"text-xl font-semibold text-text",children:"Live-Vorschau"}),(0,t.jsx)("p",{className:"mt-1 text-sm text-text-light",children:"PDF-Vorschau mit aktuellen, noch nicht gespeicherten Einstellungen."})]}),(0,t.jsxs)("button",{type:"button",className:"btn btn-secondary h-12",disabled:D.isPending||O.isLoading,onClick:()=>D.mutate(x),children:[D.isPending?(0,t.jsx)("span",{className:"spinner"}):(0,t.jsx)(n.Download,{className:"h-4 w-4"}),D.isPending?"PDF wird erzeugt...":"Vorschau aktualisieren"]})]}),(0,t.jsx)("div",{className:"mt-4 h-[520px] overflow-hidden rounded-lg border border-border bg-background xl:h-[calc(100%-8rem)]",children:R?(0,t.jsx)("iframe",{title:"Orion PDF-Vorschau",src:R,className:"h-full w-full"}):(0,t.jsx)("div",{className:"flex h-full items-center justify-center p-6 text-center text-sm text-text-light",children:"Erzeuge eine Vorschau, um die Auswirkungen der Einstellungen direkt zu prüfen."})}),(0,t.jsx)("p",{className:"mt-3 text-xs text-text-light",children:"Falls der Browser keine eingebetteten PDFs anzeigt, öffnet er die Datei über seine Standard-PDF-Funktion."})]})]}),(S||k||Q)&&(0,t.jsx)("div",{className:`rounded-lg border p-4 text-sm ${k?"border-danger/40 bg-danger/10 text-danger":"border-accent/40 bg-accent/10 text-primary-dark"}`,children:k||S||"Ungespeicherte Änderungen"}),(0,t.jsx)("div",{className:"fixed bottom-0 left-0 right-0 z-30 border-t border-border bg-surface/95 px-4 py-3 shadow-soft backdrop-blur lg:left-72",children:(0,t.jsxs)("div",{className:"mx-auto flex max-w-7xl flex-col gap-3 sm:flex-row sm:items-center sm:justify-end",children:[(0,t.jsxs)("button",{type:"button",className:"btn btn-secondary h-12",disabled:!Q||N.isPending,onClick:()=>{_(T),C(""),j("Änderungen verworfen")},children:[(0,t.jsx)(a.RotateCcw,{className:"h-4 w-4"}),"Zurücksetzen"]}),(0,t.jsxs)("button",{type:"button",className:"btn btn-secondary h-12",disabled:D.isPending||O.isLoading,onClick:()=>D.mutate(x),children:[D.isPending?(0,t.jsx)("span",{className:"spinner"}):(0,t.jsx)(n.Download,{className:"h-4 w-4"}),D.isPending?"PDF wird erzeugt...":"Vorschau aktualisieren"]}),(0,t.jsxs)("button",{type:"button",className:"btn btn-primary h-12",disabled:!Q||N.isPending||O.isLoading,onClick:()=>N.mutate(x),children:[N.isPending?(0,t.jsx)("span",{className:"spinner"}):(0,t.jsx)(o.Save,{className:"h-4 w-4"}),N.isPending?"Speichern...":"Änderungen speichern"]})]})})]})}])}]); \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/static/chunks/3yh08fx1c3mlz.css b/validation-suite/frontend/atlas/.next/static/chunks/3yh08fx1c3mlz.css new file mode 100644 index 00000000..8f6b3aa4 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/static/chunks/3yh08fx1c3mlz.css @@ -0,0 +1 @@ +*,:before,:after,::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border:0 solid #e5e7eb}:before,:after{--tw-content:""}html,:host{-webkit-text-size-adjust:100%;tab-size:4;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent;font-family:Inter,ui-sans-serif,system-ui;line-height:1.5}body{line-height:inherit;margin:0}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-feature-settings:normal;font-variation-settings:normal;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-feature-settings:inherit;font-variation-settings:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:#0000;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{margin:0;padding:0;list-style:none}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder{opacity:1;color:#9ca3af}textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.sr-only{clip:rect(0, 0, 0, 0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.pointer-events-none{pointer-events:none}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-0{inset:0}.inset-x-0{left:0;right:0}.inset-y-0{top:0;bottom:0}.bottom-0{bottom:0}.bottom-4{bottom:1rem}.bottom-6{bottom:1.5rem}.left-0{left:0}.left-5{left:1.25rem}.right-0{right:0}.right-4{right:1rem}.right-5{right:1.25rem}.top-0{top:0}.top-4{top:1rem}.z-20{z-index:20}.z-30{z-index:30}.z-40{z-index:40}.z-50{z-index:50}.mx-auto{margin-left:auto;margin-right:auto}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.ml-2{margin-left:.5rem}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.block{display:block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.contents{display:contents}.hidden{display:none}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-3{height:.75rem}.h-3\.5{height:.875rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-9{height:2.25rem}.h-\[520px\]{height:520px}.h-\[78vh\]{height:78vh}.h-full{height:100%}.max-h-56{max-height:14rem}.max-h-\[92vh\]{max-height:92vh}.min-h-11{min-height:2.75rem}.min-h-12{min-height:3rem}.min-h-24{min-height:6rem}.min-h-32{min-height:8rem}.min-h-80{min-height:20rem}.min-h-screen{min-height:100vh}.w-10{width:2.5rem}.w-3{width:.75rem}.w-3\.5{width:.875rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-7{width:1.75rem}.w-72{width:18rem}.w-full{width:100%}.min-w-64{min-width:16rem}.min-w-full{min-width:100%}.max-w-3xl{max-width:48rem}.max-w-7xl{max-width:80rem}.max-w-lg{max-width:32rem}.max-w-md{max-width:28rem}.max-w-xl{max-width:36rem}.flex-1{flex:1}.shrink-0{flex-shrink:0}.border-collapse{border-collapse:collapse}.rotate-180{--tw-rotate:180deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:1s linear infinite spin}.cursor-pointer{cursor:pointer}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-5{gap:1.25rem}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem * var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.25rem * var(--tw-space-y-reverse))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.5rem * var(--tw-space-y-reverse))}.space-y-8>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(2rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(2rem * var(--tw-space-y-reverse))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px * var(--tw-divide-y-reverse))}.divide-border>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(230 234 234/var(--tw-divide-opacity,1))}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.whitespace-nowrap{white-space:nowrap}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.border{border-width:1px}.border-b{border-bottom-width:1px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-dashed{border-style:dashed}.border-accent{--tw-border-opacity:1;border-color:rgb(167 199 199/var(--tw-border-opacity,1))}.border-accent\/40{border-color:#a7c7c766}.border-border{--tw-border-opacity:1;border-color:rgb(230 234 234/var(--tw-border-opacity,1))}.border-danger\/30{border-color:#c95c544d}.border-danger\/35{border-color:#c95c5459}.border-danger\/40{border-color:#c95c5466}.border-primary{--tw-border-opacity:1;border-color:rgb(108 138 150/var(--tw-border-opacity,1))}.border-primary-dark{--tw-border-opacity:1;border-color:rgb(79 106 116/var(--tw-border-opacity,1))}.border-primary\/20{border-color:#6c8a9633}.border-primary\/40{border-color:#6c8a9666}.border-slate-300{--tw-border-opacity:1;border-color:rgb(203 213 225/var(--tw-border-opacity,1))}.border-success\/30{border-color:#66a26b4d}.border-success\/35{border-color:#66a26b59}.border-success\/40{border-color:#66a26b66}.border-warning\/40{border-color:#d6a53a66}.border-warning\/45{border-color:#d6a53a73}.bg-accent\/10{background-color:#a7c7c71a}.bg-accent\/20{background-color:#a7c7c733}.bg-accent\/25{background-color:#a7c7c740}.bg-accent\/35{background-color:#a7c7c759}.bg-background{--tw-bg-opacity:1;background-color:rgb(247 248 248/var(--tw-bg-opacity,1))}.bg-black\/20{background-color:#0003}.bg-border{--tw-bg-opacity:1;background-color:rgb(230 234 234/var(--tw-bg-opacity,1))}.bg-danger\/10{background-color:#c95c541a}.bg-danger\/15{background-color:#c95c5426}.bg-danger\/5{background-color:#c95c540d}.bg-primary{--tw-bg-opacity:1;background-color:rgb(108 138 150/var(--tw-bg-opacity,1))}.bg-primary-dark{--tw-bg-opacity:1;background-color:rgb(79 106 116/var(--tw-bg-opacity,1))}.bg-primary-dark\/15{background-color:#4f6a7426}.bg-primary\/10{background-color:#6c8a961a}.bg-primary\/5{background-color:#6c8a960d}.bg-slate-100{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity,1))}.bg-slate-50{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity,1))}.bg-success\/10{background-color:#66a26b1a}.bg-success\/15{background-color:#66a26b26}.bg-surface{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.bg-surface\/95{background-color:#fffffff2}.bg-transparent{background-color:#0000}.bg-warning\/10{background-color:#d6a53a1a}.bg-warning\/15{background-color:#d6a53a26}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.object-contain{-o-object-fit:contain;object-fit:contain}.p-3{padding:.75rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.pb-1{padding-bottom:.25rem}.pb-10{padding-bottom:2.5rem}.pb-20{padding-bottom:5rem}.pb-24{padding-bottom:6rem}.pb-28{padding-bottom:7rem}.pt-7{padding-top:1.75rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-\[11px\]{font-size:11px}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.leading-6{line-height:1.5rem}.tracking-wide{letter-spacing:.025em}.text-\[\#7A5A00\]{--tw-text-opacity:1;color:rgb(122 90 0/var(--tw-text-opacity,1))}.text-danger{--tw-text-opacity:1;color:rgb(201 92 84/var(--tw-text-opacity,1))}.text-primary{--tw-text-opacity:1;color:rgb(108 138 150/var(--tw-text-opacity,1))}.text-primary-dark{--tw-text-opacity:1;color:rgb(79 106 116/var(--tw-text-opacity,1))}.text-slate-700{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity,1))}.text-success{--tw-text-opacity:1;color:rgb(102 162 107/var(--tw-text-opacity,1))}.text-text{--tw-text-opacity:1;color:rgb(46 59 64/var(--tw-text-opacity,1))}.text-text-light{--tw-text-opacity:1;color:rgb(107 124 133/var(--tw-text-opacity,1))}.text-warning{--tw-text-opacity:1;color:rgb(214 165 58/var(--tw-text-opacity,1))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.opacity-80{opacity:.8}.shadow{--tw-shadow:0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000), var(--tw-ring-shadow,0 0 #0000), var(--tw-shadow)}.shadow-soft{--tw-shadow:0 14px 40px #2e3b4014;--tw-shadow-colored:0 14px 40px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000), var(--tw-ring-shadow,0 0 #0000), var(--tw-shadow)}.outline-none{outline-offset:2px;outline:2px solid #0000}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.backdrop-blur{--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter,backdrop-filter;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1)}:root{color:#2e3b40;background:#f7f8f8}*{box-sizing:border-box}body{background:#f7f8f8;min-height:100vh;margin:0;font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif}button,input,select,textarea{font:inherit}button,a{transition:background-color .18s,border-color .18s,box-shadow .18s,color .18s,opacity .18s,transform .18s}button{cursor:pointer}button:hover:not(:disabled){transform:translateY(-1px);box-shadow:0 12px 28px #2e3b401f}button:hover:not(:disabled) svg,a:hover svg,label:hover svg{transform:scale(1.08)}button:active:not(:disabled),a:active{transform:scale(.98)}button:disabled,[aria-disabled=true]{cursor:not-allowed;opacity:.45}a:hover{text-underline-offset:4px;text-decoration:underline}svg{transition:transform .18s,color .18s}input,select,textarea{transition:border-color .18s,box-shadow .18s,background-color .18s}input:focus,select:focus,textarea:focus{border-color:#6c8a96;outline:none;box-shadow:0 0 0 3px #6c8a962e}tbody tr{transition:background-color .18s}tbody tr:hover{background:#a7c7c724}.btn{border:1px solid #e6eaea;border-radius:8px;justify-content:center;align-items:center;gap:8px;min-height:44px;padding:10px 16px;font-weight:700;display:inline-flex}.btn-secondary{color:#2e3b40;background:#fff}.btn-secondary:hover:not(:disabled){background:#f7f8f8;border-color:#a7c7c7}.btn-secondary:active:not(:disabled){background:#e6eaea}.btn-primary{color:#fff;background:#6c8a96;border-color:#6c8a96}.btn-primary:hover:not(:disabled){background:#4f6a74}.btn-primary:active:not(:disabled){background:#415b64}.btn-danger{color:#c95c54;background:#fff;border-color:#c95c5459}.btn-danger:hover:not(:disabled){background:#c95c5414;border-color:#c95c54}.btn-success{color:#427646;background:#66a26b1f;border-color:#66a26b59}.icon-btn{background:#fff;border:1px solid #e6eaea;border-radius:8px;justify-content:center;align-items:center;width:38px;height:38px;display:inline-flex}.icon-btn:hover:not(:disabled){background:#f7f8f8;border-color:#a7c7c7}.spinner{border:2px solid;border-right-color:#0000;border-radius:999px;width:16px;height:16px;animation:.8s linear infinite spin}.focus-within\:border-primary:focus-within{--tw-border-opacity:1;border-color:rgb(108 138 150/var(--tw-border-opacity,1))}.focus-within\:ring-2:focus-within{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow,0 0 #0000)}.focus-within\:ring-primary\/15:focus-within{--tw-ring-color:#6c8a9626}.hover\:-translate-y-0\.5:hover{--tw-translate-y:-.125rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hover\:border-danger\/40:hover{border-color:#c95c5466}.hover\:border-primary:hover{--tw-border-opacity:1;border-color:rgb(108 138 150/var(--tw-border-opacity,1))}.hover\:border-primary\/40:hover{border-color:#6c8a9666}.hover\:bg-accent\/10:hover{background-color:#a7c7c71a}.hover\:bg-background:hover{--tw-bg-opacity:1;background-color:rgb(247 248 248/var(--tw-bg-opacity,1))}.hover\:bg-background\/70:hover{background-color:#f7f8f8b3}.hover\:bg-primary-dark:hover{--tw-bg-opacity:1;background-color:rgb(79 106 116/var(--tw-bg-opacity,1))}.hover\:bg-white:hover{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.hover\:text-primary-dark:hover{--tw-text-opacity:1;color:rgb(79 106 116/var(--tw-text-opacity,1))}.hover\:text-text:hover{--tw-text-opacity:1;color:rgb(46 59 64/var(--tw-text-opacity,1))}.hover\:shadow-lg:hover{--tw-shadow:0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000), var(--tw-ring-shadow,0 0 #0000), var(--tw-shadow)}.hover\:shadow-md:hover{--tw-shadow:0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000), var(--tw-ring-shadow,0 0 #0000), var(--tw-shadow)}.hover\:shadow-soft:hover{--tw-shadow:0 14px 40px #2e3b4014;--tw-shadow-colored:0 14px 40px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000), var(--tw-ring-shadow,0 0 #0000), var(--tw-shadow)}.focus\:border-primary:focus{--tw-border-opacity:1;border-color:rgb(108 138 150/var(--tw-border-opacity,1))}.focus-visible\:outline:focus-visible{outline-style:solid}.focus-visible\:outline-2:focus-visible{outline-width:2px}.focus-visible\:outline-offset-2:focus-visible{outline-offset:2px}.focus-visible\:outline-primary:focus-visible{outline-color:#6c8a96}.active\:scale-\[0\.98\]:active{--tw-scale-x:.98;--tw-scale-y:.98;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:bg-border\/30:disabled{background-color:#e6eaea4d}.disabled\:text-text-light:disabled{--tw-text-opacity:1;color:rgb(107 124 133/var(--tw-text-opacity,1))}.disabled\:opacity-60:disabled{opacity:.6}@media (min-width:640px){.sm\:col-span-2{grid-column:span 2/span 2}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.sm\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.sm\:flex-row{flex-direction:row}.sm\:items-center{align-items:center}.sm\:justify-end{justify-content:flex-end}.sm\:justify-center{justify-content:center}.sm\:justify-between{justify-content:space-between}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}}@media (min-width:768px){.md\:col-span-2{grid-column:span 2/span 2}.md\:col-span-3{grid-column:span 3/span 3}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.md\:grid-cols-\[1fr_180px_1fr\]{grid-template-columns:1fr 180px 1fr}.md\:grid-cols-\[80px_1fr\]{grid-template-columns:80px 1fr}.md\:flex-row{flex-direction:row}.md\:items-center{align-items:center}.md\:justify-between{justify-content:space-between}}@media (min-width:1024px){.lg\:left-72{left:18rem}.lg\:col-span-2{grid-column:span 2/span 2}.lg\:block{display:block}.lg\:hidden{display:none}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:px-10{padding-left:2.5rem;padding-right:2.5rem}.lg\:py-8{padding-top:2rem;padding-bottom:2rem}.lg\:pl-72{padding-left:18rem}}@media (min-width:1280px){.xl\:sticky{position:sticky}.xl\:top-6{top:1.5rem}.xl\:h-\[calc\(100\%-8rem\)\]{height:calc(100% - 8rem)}.xl\:h-\[calc\(100vh-3rem\)\]{height:calc(100vh - 3rem)}.xl\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.xl\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.xl\:grid-cols-\[1\.1fr_1fr\]{grid-template-columns:1.1fr 1fr}.xl\:grid-cols-\[minmax\(0\,1fr\)_minmax\(360px\,520px\)\]{grid-template-columns:minmax(0,1fr) minmax(360px,520px)}.xl\:flex-col{flex-direction:column}.xl\:items-stretch{align-items:stretch}} diff --git a/validation-suite/frontend/atlas/.next/static/chunks/0ti1a2yw9pft4.js b/validation-suite/frontend/atlas/.next/static/chunks/41jx6c5jfr1py.js similarity index 74% rename from validation-suite/frontend/atlas/.next/static/chunks/0ti1a2yw9pft4.js rename to validation-suite/frontend/atlas/.next/static/chunks/41jx6c5jfr1py.js index 3a5d8ee8..aed76870 100644 --- a/validation-suite/frontend/atlas/.next/static/chunks/0ti1a2yw9pft4.js +++ b/validation-suite/frontend/atlas/.next/static/chunks/41jx6c5jfr1py.js @@ -1 +1 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,54858,e=>{"use strict";let t="/api/v1";async function r(e,t){let r=await e.text();if(!r)return t;try{let e=JSON.parse(r);return e.detail??e.message??r}catch{return r}}async function s(e,t){let r=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:e,password:t}),credentials:"include"});if(!r.ok){let e=Error(await r.text()||`HTTP ${r.status}`);throw e.status=r.status,e}return r.json()}async function i(e,r){let s=await fetch(`${t}${e}`,{cache:"no-store",credentials:"include"});if(!s.ok)throw Error(`API request failed: ${s.status}`);return s.json()}async function n(e,s,i,n){let a=await fetch(`${t}${e}`,{method:i,headers:{"Content-Type":"application/json"},body:JSON.stringify(n),credentials:"include"});if(!a.ok)throw Error(await r(a,`API request failed: ${a.status}`));return a.json()}async function a(e,s){let i=await fetch(`${t}${e}`,{method:"DELETE",credentials:"include"});if(!i.ok)throw Error(await r(i,`API request failed: ${i.status}`))}async function u(e,s,i){let n=await fetch(`${t}${e}`,{...i,headers:{"Content-Type":"application/json",...i?.headers??{}},credentials:"include"});if(!n.ok)throw Error(await r(n,`API request failed: ${n.status}`));return n.json()}e.s(["API_BASE",0,t,"apiDelete",0,a,"apiFetch",0,u,"apiGet",0,i,"apiSend",0,n,"login",0,s,"normalizeValidationPayload",0,function(e){return{...e,...Object.fromEntries(["contact_id","examiner_id"].map(t=>[t,e[t]||null]))}}])},66027,e=>{"use strict";let t;var r=e.i(75555),s=e.i(73911),i=e.i(40143),n=e.i(86491),a=e.i(15823),u=e.i(93803),o=e.i(19273),l=e.i(80166),c=class extends a.Subscribable{constructor(e,t){super(),this.options=t,this.#e=e,this.#t=null,this.#r=(0,u.pendingThenable)(),this.bindMethods(),this.setOptions(t)}#e;#s=void 0;#i=void 0;#n=void 0;#a;#u;#r;#t;#o;#l;#c;#h;#d;#p;#y=new Set;bindMethods(){this.refetch=this.refetch.bind(this)}onSubscribe(){1===this.listeners.size&&(this.#s.addObserver(this),h(this.#s,this.options)?this.#f():this.updateResult(),this.#b())}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return d(this.#s,this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return d(this.#s,this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,this.#m(),this.#v(),this.#s.removeObserver(this)}setOptions(e){let t=this.options,r=this.#s;if(this.options=this.#e.defaultQueryOptions(e),void 0!==this.options.enabled&&"boolean"!=typeof this.options.enabled&&"function"!=typeof this.options.enabled&&"boolean"!=typeof(0,o.resolveQueryBoolean)(this.options.enabled,this.#s))throw Error("Expected enabled to be a boolean or a callback that returns a boolean");this.#g(),this.#s.setOptions(this.options),t._defaulted&&!(0,o.shallowEqualObjects)(this.options,t)&&this.#e.getQueryCache().notify({type:"observerOptionsUpdated",query:this.#s,observer:this});let s=this.hasListeners();s&&p(this.#s,r,this.options,t)&&this.#f(),this.updateResult(),s&&(this.#s!==r||(0,o.resolveQueryBoolean)(this.options.enabled,this.#s)!==(0,o.resolveQueryBoolean)(t.enabled,this.#s)||(0,o.resolveStaleTime)(this.options.staleTime,this.#s)!==(0,o.resolveStaleTime)(t.staleTime,this.#s))&&this.#E();let i=this.#R();s&&(this.#s!==r||(0,o.resolveQueryBoolean)(this.options.enabled,this.#s)!==(0,o.resolveQueryBoolean)(t.enabled,this.#s)||i!==this.#p)&&this.#T(i)}getOptimisticResult(e){var t,r;let s=this.#e.getQueryCache().build(this.#e,e),i=this.createResult(s,e);return t=this,r=i,(0,o.shallowEqualObjects)(t.getCurrentResult(),r)||(this.#n=i,this.#u=this.options,this.#a=this.#s.state),i}getCurrentResult(){return this.#n}trackResult(e,t){return new Proxy(e,{get:(e,r)=>(this.trackProp(r),t?.(r),"promise"===r&&(this.trackProp("data"),this.options.experimental_prefetchInRender||"pending"!==this.#r.status||this.#r.reject(Error("experimental_prefetchInRender feature flag is not enabled"))),Reflect.get(e,r))})}trackProp(e){this.#y.add(e)}getCurrentQuery(){return this.#s}refetch({...e}={}){return this.fetch({...e})}fetchOptimistic(e){let t=this.#e.defaultQueryOptions(e),r=this.#e.getQueryCache().build(this.#e,t);return r.fetch().then(()=>this.createResult(r,t))}fetch(e){return this.#f({...e,cancelRefetch:e.cancelRefetch??!0}).then(()=>(this.updateResult(),this.#n))}#f(e){this.#g();let t=this.#s.fetch(this.options,e);return e?.throwOnError||(t=t.catch(o.noop)),t}#E(){this.#m();let e=(0,o.resolveStaleTime)(this.options.staleTime,this.#s);if(s.environmentManager.isServer()||this.#n.isStale||!(0,o.isValidTimeout)(e))return;let t=(0,o.timeUntilStale)(this.#n.dataUpdatedAt,e);this.#h=l.timeoutManager.setTimeout(()=>{this.#n.isStale||this.updateResult()},t+1)}#R(){return("function"==typeof this.options.refetchInterval?this.options.refetchInterval(this.#s):this.options.refetchInterval)??!1}#T(e){this.#v(),this.#p=e,!s.environmentManager.isServer()&&!1!==(0,o.resolveQueryBoolean)(this.options.enabled,this.#s)&&(0,o.isValidTimeout)(this.#p)&&0!==this.#p&&(this.#d=l.timeoutManager.setInterval(()=>{(this.options.refetchIntervalInBackground||r.focusManager.isFocused())&&this.#f()},this.#p))}#b(){this.#E(),this.#T(this.#R())}#m(){void 0!==this.#h&&(l.timeoutManager.clearTimeout(this.#h),this.#h=void 0)}#v(){void 0!==this.#d&&(l.timeoutManager.clearInterval(this.#d),this.#d=void 0)}createResult(e,t){let r,s=this.#s,i=this.options,a=this.#n,l=this.#a,c=this.#u,d=e!==s?e.state:this.#i,{state:f}=e,b={...f},m=!1;if(t._optimisticResults){let r=this.hasListeners(),a=!r&&h(e,t),u=r&&p(e,s,t,i);(a||u)&&(b={...b,...(0,n.fetchState)(f.data,e.options)}),"isRestoring"===t._optimisticResults&&(b.fetchStatus="idle")}let{error:v,errorUpdatedAt:g,status:E}=b;r=b.data;let R=!1;if(void 0!==t.placeholderData&&void 0===r&&"pending"===E){let e;a?.isPlaceholderData&&t.placeholderData===c?.placeholderData?(e=a.data,R=!0):e="function"==typeof t.placeholderData?t.placeholderData(this.#c?.state.data,this.#c):t.placeholderData,void 0!==e&&(E="success",r=(0,o.replaceData)(a?.data,e,t),m=!0)}if(t.select&&void 0!==r&&!R)if(a&&r===l?.data&&t.select===this.#o)r=this.#l;else try{this.#o=t.select,r=t.select(r),r=(0,o.replaceData)(a?.data,r,t),this.#l=r,this.#t=null}catch(e){this.#t=e}this.#t&&(v=this.#t,r=this.#l,g=Date.now(),E="error");let T="fetching"===b.fetchStatus,S="pending"===E,O="error"===E,C=S&&T,N=void 0!==r,Q={status:E,fetchStatus:b.fetchStatus,isPending:S,isSuccess:"success"===E,isError:O,isInitialLoading:C,isLoading:C,data:r,dataUpdatedAt:b.dataUpdatedAt,error:v,errorUpdatedAt:g,failureCount:b.fetchFailureCount,failureReason:b.fetchFailureReason,errorUpdateCount:b.errorUpdateCount,isFetched:e.isFetched(),isFetchedAfterMount:b.dataUpdateCount>d.dataUpdateCount||b.errorUpdateCount>d.errorUpdateCount,isFetching:T,isRefetching:T&&!S,isLoadingError:O&&!N,isPaused:"paused"===b.fetchStatus,isPlaceholderData:m,isRefetchError:O&&N,isStale:y(e,t),refetch:this.refetch,promise:this.#r,isEnabled:!1!==(0,o.resolveQueryBoolean)(t.enabled,e)};if(this.options.experimental_prefetchInRender){let t=void 0!==Q.data,r="error"===Q.status&&!t,i=e=>{r?e.reject(Q.error):t&&e.resolve(Q.data)},n=()=>{i(this.#r=Q.promise=(0,u.pendingThenable)())},a=this.#r;switch(a.status){case"pending":e.queryHash===s.queryHash&&i(a);break;case"fulfilled":(r||Q.data!==a.value)&&n();break;case"rejected":r&&Q.error===a.reason||n()}}return Q}updateResult(){let e=this.#n,t=this.createResult(this.#s,this.options);if(this.#a=this.#s.state,this.#u=this.options,void 0!==this.#a.data&&(this.#c=this.#s),(0,o.shallowEqualObjects)(t,e))return;this.#n=t;let r=()=>{if(!e)return!0;let{notifyOnChangeProps:t}=this.options,r="function"==typeof t?t():t;if("all"===r||!r&&!this.#y.size)return!0;let s=new Set(r??this.#y);return this.options.throwOnError&&s.add("error"),Object.keys(this.#n).some(t=>this.#n[t]!==e[t]&&s.has(t))};this.#S({listeners:r()})}#g(){let e=this.#e.getQueryCache().build(this.#e,this.options);if(e===this.#s)return;let t=this.#s;this.#s=e,this.#i=e.state,this.hasListeners()&&(t?.removeObserver(this),e.addObserver(this))}onQueryUpdate(){this.updateResult(),this.hasListeners()&&this.#b()}#S(e){i.notifyManager.batch(()=>{e.listeners&&this.listeners.forEach(e=>{e(this.#n)}),this.#e.getQueryCache().notify({query:this.#s,type:"observerResultsUpdated"})})}};function h(e,t){return!1!==(0,o.resolveQueryBoolean)(t.enabled,e)&&void 0===e.state.data&&("error"!==e.state.status||!1!==(0,o.resolveQueryBoolean)(t.retryOnMount,e))||void 0!==e.state.data&&d(e,t,t.refetchOnMount)}function d(e,t,r){if(!1!==(0,o.resolveQueryBoolean)(t.enabled,e)&&"static"!==(0,o.resolveStaleTime)(t.staleTime,e)){let s="function"==typeof r?r(e):r;return"always"===s||!1!==s&&y(e,t)}return!1}function p(e,t,r,s){return(e!==t||!1===(0,o.resolveQueryBoolean)(s.enabled,e))&&(!r.suspense||"error"!==e.state.status)&&y(e,r)}function y(e,t){return!1!==(0,o.resolveQueryBoolean)(t.enabled,e)&&e.isStaleByTime((0,o.resolveStaleTime)(t.staleTime,e))}e.i(47167);var f=e.i(71645),b=e.i(12598);e.i(43476);var m=f.createContext((t=!1,{clearReset:()=>{t=!1},reset:()=>{t=!0},isReset:()=>t})),v=f.createContext(!1);v.Provider;var g=(e,t,r)=>t.fetchOptimistic(e).catch(()=>{r.clearReset()});e.s(["useQuery",0,function(e,t){return function(e,t,r){let n,a=f.useContext(v),u=f.useContext(m),l=(0,b.useQueryClient)(r),c=l.defaultQueryOptions(e);l.getDefaultOptions().queries?._experimental_beforeQuery?.(c);let h=l.getQueryCache().get(c.queryHash),d=!1!==e.subscribed;if(c._optimisticResults=a?"isRestoring":d?"optimistic":void 0,c.suspense){let e=e=>"static"===e?e:Math.max(e??1e3,1e3),t=c.staleTime;c.staleTime="function"==typeof t?(...r)=>e(t(...r)):e(t),"number"==typeof c.gcTime&&(c.gcTime=Math.max(c.gcTime,1e3))}n=h?.state.error&&"function"==typeof c.throwOnError?(0,o.shouldThrowError)(c.throwOnError,[h.state.error,h]):c.throwOnError,(c.suspense||c.experimental_prefetchInRender||n)&&!u.isReset()&&(c.retryOnMount=!1),f.useEffect(()=>{u.clearReset()},[u]);let p=!l.getQueryCache().get(c.queryHash),[y]=f.useState(()=>new t(l,c)),E=y.getOptimisticResult(c),R=!a&&d;if(f.useSyncExternalStore(f.useCallback(e=>{let t=R?y.subscribe(i.notifyManager.batchCalls(e)):o.noop;return y.updateResult(),t},[y,R]),()=>y.getCurrentResult(),()=>y.getCurrentResult()),f.useEffect(()=>{y.setOptions(c)},[c,y]),c?.suspense&&E.isPending)throw g(c,y,u);if((({result:e,errorResetBoundary:t,throwOnError:r,query:s,suspense:i})=>e.isError&&!t.isReset()&&!e.isFetching&&s&&(i&&void 0===e.data||(0,o.shouldThrowError)(r,[e.error,s])))({result:E,errorResetBoundary:u,throwOnError:c.throwOnError,query:h,suspense:c.suspense}))throw E.error;if(l.getDefaultOptions().queries?._experimental_afterQuery?.(c,E),c.experimental_prefetchInRender&&!s.environmentManager.isServer()&&E.isLoading&&E.isFetching&&!a){let e=p?g(c,y,u):h?.promise;e?.catch(o.noop).finally(()=>{y.updateResult()})}return c.notifyOnChangeProps?E:y.trackResult(E)}(e,c,t)}],66027)},54616,e=>{"use strict";var t=e.i(71645),r=e.i(14272),s=e.i(40143),i=e.i(15823),n=e.i(19273),a=class extends i.Subscribable{#e;#n=void 0;#O;#C;constructor(e,t){super(),this.#e=e,this.setOptions(t),this.bindMethods(),this.#N()}bindMethods(){this.mutate=this.mutate.bind(this),this.reset=this.reset.bind(this)}setOptions(e){let t=this.options;this.options=this.#e.defaultMutationOptions(e),(0,n.shallowEqualObjects)(this.options,t)||this.#e.getMutationCache().notify({type:"observerOptionsUpdated",mutation:this.#O,observer:this}),t?.mutationKey&&this.options.mutationKey&&(0,n.hashKey)(t.mutationKey)!==(0,n.hashKey)(this.options.mutationKey)?this.reset():this.#O?.state.status==="pending"&&this.#O.setOptions(this.options)}onUnsubscribe(){this.hasListeners()||this.#O?.removeObserver(this)}onMutationUpdate(e){this.#N(),this.#S(e)}getCurrentResult(){return this.#n}reset(){this.#O?.removeObserver(this),this.#O=void 0,this.#N(),this.#S()}mutate(e,t){return this.#C=t,this.#O?.removeObserver(this),this.#O=this.#e.getMutationCache().build(this.#e,this.options),this.#O.addObserver(this),this.#O.execute(e)}#N(){let e=this.#O?.state??(0,r.getDefaultState)();this.#n={...e,isPending:"pending"===e.status,isSuccess:"success"===e.status,isError:"error"===e.status,isIdle:"idle"===e.status,mutate:this.mutate,reset:this.reset}}#S(e){s.notifyManager.batch(()=>{if(this.#C&&this.hasListeners()){let t=this.#n.variables,r=this.#n.context,s={client:this.#e,meta:this.options.meta,mutationKey:this.options.mutationKey};if(e?.type==="success"){try{this.#C.onSuccess?.(e.data,t,r,s)}catch(e){Promise.reject(e)}try{this.#C.onSettled?.(e.data,null,t,r,s)}catch(e){Promise.reject(e)}}else if(e?.type==="error"){try{this.#C.onError?.(e.error,t,r,s)}catch(e){Promise.reject(e)}try{this.#C.onSettled?.(void 0,e.error,t,r,s)}catch(e){Promise.reject(e)}}}this.listeners.forEach(e=>{e(this.#n)})})}},u=e.i(12598);e.s(["useMutation",0,function(e,r){let i=(0,u.useQueryClient)(r),[o]=t.useState(()=>new a(i,e));t.useEffect(()=>{o.setOptions(e)},[o,e]);let l=t.useSyncExternalStore(t.useCallback(e=>o.subscribe(s.notifyManager.batchCalls(e)),[o]),()=>o.getCurrentResult(),()=>o.getCurrentResult()),c=t.useCallback((e,t)=>{o.mutate(e,t).catch(n.noop)},[o]);if(l.error&&(0,n.shouldThrowError)(o.options.throwOnError,[l.error]))throw l.error;return{...l,mutate:c,mutateAsync:l.mutate}}],54616)},55436,e=>{"use strict";let t=(0,e.i(75254).default)("Search",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);e.s(["Search",0,t],55436)},27612,e=>{"use strict";let t=(0,e.i(75254).default)("Trash2",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]]);e.s(["Trash2",0,t],27612)},92930,e=>{"use strict";let t=(0,e.i(75254).default)("Pen",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]]);e.s(["Edit2",0,t],92930)},40160,e=>{"use strict";let t=(0,e.i(75254).default)("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);e.s(["Download",0,t],40160)},63209,e=>{"use strict";let t=(0,e.i(75254).default)("CircleAlert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);e.s(["AlertCircle",0,t],63209)},95468,e=>{"use strict";let t=(0,e.i(75254).default)("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);e.s(["CheckCircle2",0,t],95468)},92950,e=>{"use strict";var t=e.i(43476),r=e.i(63209),s=e.i(95468),i=e.i(75254);let n=(0,i.default)("CircleDashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]]),a=(0,i.default)("ShieldAlert",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]),u={OFFEN:{value:"OFFEN",label:"Noch nicht bewertet",badgeClass:"border-slate-300 bg-slate-100 text-slate-700",previewClass:"border-slate-300 bg-slate-50 text-slate-700",color:"#2E3B40",icon:n},BESTANDEN:{value:"BESTANDEN",label:"Bestanden",badgeClass:"border-success/35 bg-success/15 text-success",previewClass:"border-success/40 bg-success/10 text-success",color:"#245C36",icon:s.CheckCircle2},BESTANDEN_MIT_AUFLAGEN:{value:"BESTANDEN_MIT_AUFLAGEN",label:"Bestanden mit Auflagen",badgeClass:"border-warning/40 bg-warning/15 text-[#7A5A00]",previewClass:"border-warning/45 bg-warning/10 text-[#7A5A00]",color:"#7A5A00",icon:a},NICHT_BESTANDEN:{value:"NICHT_BESTANDEN",label:"Nicht bestanden",badgeClass:"border-danger/35 bg-danger/15 text-danger",previewClass:"border-danger/40 bg-danger/10 text-danger",color:"#7A1F26",icon:r.AlertCircle}},o={"":"OFFEN",offen:"OFFEN",OFFEN:"OFFEN",bestanden:"BESTANDEN",BESTANDEN:"BESTANDEN",mit_auflagen:"BESTANDEN_MIT_AUFLAGEN",bestanden_mit_auflagen:"BESTANDEN_MIT_AUFLAGEN","bestanden mit auflagen":"BESTANDEN_MIT_AUFLAGEN",BESTANDEN_MIT_AUFLAGEN:"BESTANDEN_MIT_AUFLAGEN",nicht_bestanden:"NICHT_BESTANDEN","nicht bestanden":"NICHT_BESTANDEN",NICHT_BESTANDEN:"NICHT_BESTANDEN"};function l(e){return o[String(e??"").trim()]??"OFFEN"}function c(e){return u[l(e)]}e.s(["ValidationResultBadge",0,function({value:e,className:r=""}){let s=c(e),i=s.icon;return(0,t.jsxs)("span",{className:`inline-flex items-center gap-1.5 rounded-full border px-3 py-1 text-xs font-semibold ${s.badgeClass} ${r}`,children:[(0,t.jsx)(i,{className:"h-3.5 w-3.5"}),s.label]})},"getValidationResultPresentation",0,c,"normalizeValidationResult",0,l,"validationResultValues",0,["OFFEN","BESTANDEN","BESTANDEN_MIT_AUFLAGEN","NICHT_BESTANDEN"]],92950)},74886,e=>{"use strict";let t=(0,e.i(75254).default)("Copy",[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);e.s(["Copy",0,t],74886)}]); \ No newline at end of file +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,54858,e=>{"use strict";let t="/api/v1";async function r(e,t){let r=await e.text();if(!r)return t;try{let e=JSON.parse(r);return e.detail??e.message??r}catch{return r}}async function s(e,t){let r=await fetch("/api/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:e,password:t}),credentials:"include"});if(!r.ok){let e=Error(await r.text()||`HTTP ${r.status}`);throw e.status=r.status,e}return r.json()}async function i(e,r){let s=await fetch(`${t}${e}`,{cache:"no-store",credentials:"include"});if(!s.ok)throw Error(`API request failed: ${s.status}`);return s.json()}async function n(e,s,i,n){let a=await fetch(`${t}${e}`,{method:i,headers:{"Content-Type":"application/json"},body:JSON.stringify(n),credentials:"include"});if(!a.ok)throw Error(await r(a,`API request failed: ${a.status}`));return a.json()}async function a(e,s){let i=await fetch(`${t}${e}`,{method:"DELETE",credentials:"include"});if(!i.ok)throw Error(await r(i,`API request failed: ${i.status}`))}async function u(e,s,i){let n=await fetch(`${t}${e}`,{...i,headers:{"Content-Type":"application/json",...i?.headers??{}},credentials:"include"});if(!n.ok)throw Error(await r(n,`API request failed: ${n.status}`));return n.json()}e.s(["API_BASE",0,t,"apiDelete",0,a,"apiFetch",0,u,"apiGet",0,i,"apiSend",0,n,"login",0,s,"normalizeValidationPayload",0,function(e){return{...e,...Object.fromEntries(["contact_id","examiner_id"].map(t=>[t,e[t]||null]))}}])},66027,e=>{"use strict";let t;var r=e.i(75555),s=e.i(73911),i=e.i(40143),n=e.i(86491),a=e.i(15823),u=e.i(93803),o=e.i(19273),l=e.i(80166),c=class extends a.Subscribable{constructor(e,t){super(),this.options=t,this.#e=e,this.#t=null,this.#r=(0,u.pendingThenable)(),this.bindMethods(),this.setOptions(t)}#e;#s=void 0;#i=void 0;#n=void 0;#a;#u;#r;#t;#o;#l;#c;#h;#d;#p;#y=new Set;bindMethods(){this.refetch=this.refetch.bind(this)}onSubscribe(){1===this.listeners.size&&(this.#s.addObserver(this),h(this.#s,this.options)?this.#f():this.updateResult(),this.#b())}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return d(this.#s,this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return d(this.#s,this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,this.#m(),this.#v(),this.#s.removeObserver(this)}setOptions(e){let t=this.options,r=this.#s;if(this.options=this.#e.defaultQueryOptions(e),void 0!==this.options.enabled&&"boolean"!=typeof this.options.enabled&&"function"!=typeof this.options.enabled&&"boolean"!=typeof(0,o.resolveQueryBoolean)(this.options.enabled,this.#s))throw Error("Expected enabled to be a boolean or a callback that returns a boolean");this.#g(),this.#s.setOptions(this.options),t._defaulted&&!(0,o.shallowEqualObjects)(this.options,t)&&this.#e.getQueryCache().notify({type:"observerOptionsUpdated",query:this.#s,observer:this});let s=this.hasListeners();s&&p(this.#s,r,this.options,t)&&this.#f(),this.updateResult(),s&&(this.#s!==r||(0,o.resolveQueryBoolean)(this.options.enabled,this.#s)!==(0,o.resolveQueryBoolean)(t.enabled,this.#s)||(0,o.resolveStaleTime)(this.options.staleTime,this.#s)!==(0,o.resolveStaleTime)(t.staleTime,this.#s))&&this.#E();let i=this.#R();s&&(this.#s!==r||(0,o.resolveQueryBoolean)(this.options.enabled,this.#s)!==(0,o.resolveQueryBoolean)(t.enabled,this.#s)||i!==this.#p)&&this.#T(i)}getOptimisticResult(e){var t,r;let s=this.#e.getQueryCache().build(this.#e,e),i=this.createResult(s,e);return t=this,r=i,(0,o.shallowEqualObjects)(t.getCurrentResult(),r)||(this.#n=i,this.#u=this.options,this.#a=this.#s.state),i}getCurrentResult(){return this.#n}trackResult(e,t){return new Proxy(e,{get:(e,r)=>(this.trackProp(r),t?.(r),"promise"===r&&(this.trackProp("data"),this.options.experimental_prefetchInRender||"pending"!==this.#r.status||this.#r.reject(Error("experimental_prefetchInRender feature flag is not enabled"))),Reflect.get(e,r))})}trackProp(e){this.#y.add(e)}getCurrentQuery(){return this.#s}refetch({...e}={}){return this.fetch({...e})}fetchOptimistic(e){let t=this.#e.defaultQueryOptions(e),r=this.#e.getQueryCache().build(this.#e,t);return r.fetch().then(()=>this.createResult(r,t))}fetch(e){return this.#f({...e,cancelRefetch:e.cancelRefetch??!0}).then(()=>(this.updateResult(),this.#n))}#f(e){this.#g();let t=this.#s.fetch(this.options,e);return e?.throwOnError||(t=t.catch(o.noop)),t}#E(){this.#m();let e=(0,o.resolveStaleTime)(this.options.staleTime,this.#s);if(s.environmentManager.isServer()||this.#n.isStale||!(0,o.isValidTimeout)(e))return;let t=(0,o.timeUntilStale)(this.#n.dataUpdatedAt,e);this.#h=l.timeoutManager.setTimeout(()=>{this.#n.isStale||this.updateResult()},t+1)}#R(){return("function"==typeof this.options.refetchInterval?this.options.refetchInterval(this.#s):this.options.refetchInterval)??!1}#T(e){this.#v(),this.#p=e,!s.environmentManager.isServer()&&!1!==(0,o.resolveQueryBoolean)(this.options.enabled,this.#s)&&(0,o.isValidTimeout)(this.#p)&&0!==this.#p&&(this.#d=l.timeoutManager.setInterval(()=>{(this.options.refetchIntervalInBackground||r.focusManager.isFocused())&&this.#f()},this.#p))}#b(){this.#E(),this.#T(this.#R())}#m(){void 0!==this.#h&&(l.timeoutManager.clearTimeout(this.#h),this.#h=void 0)}#v(){void 0!==this.#d&&(l.timeoutManager.clearInterval(this.#d),this.#d=void 0)}createResult(e,t){let r,s=this.#s,i=this.options,a=this.#n,l=this.#a,c=this.#u,d=e!==s?e.state:this.#i,{state:f}=e,b={...f},m=!1;if(t._optimisticResults){let r=this.hasListeners(),a=!r&&h(e,t),u=r&&p(e,s,t,i);(a||u)&&(b={...b,...(0,n.fetchState)(f.data,e.options)}),"isRestoring"===t._optimisticResults&&(b.fetchStatus="idle")}let{error:v,errorUpdatedAt:g,status:E}=b;r=b.data;let R=!1;if(void 0!==t.placeholderData&&void 0===r&&"pending"===E){let e;a?.isPlaceholderData&&t.placeholderData===c?.placeholderData?(e=a.data,R=!0):e="function"==typeof t.placeholderData?t.placeholderData(this.#c?.state.data,this.#c):t.placeholderData,void 0!==e&&(E="success",r=(0,o.replaceData)(a?.data,e,t),m=!0)}if(t.select&&void 0!==r&&!R)if(a&&r===l?.data&&t.select===this.#o)r=this.#l;else try{this.#o=t.select,r=t.select(r),r=(0,o.replaceData)(a?.data,r,t),this.#l=r,this.#t=null}catch(e){this.#t=e}this.#t&&(v=this.#t,r=this.#l,g=Date.now(),E="error");let T="fetching"===b.fetchStatus,S="pending"===E,O="error"===E,N=S&&T,Q=void 0!==r,C={status:E,fetchStatus:b.fetchStatus,isPending:S,isSuccess:"success"===E,isError:O,isInitialLoading:N,isLoading:N,data:r,dataUpdatedAt:b.dataUpdatedAt,error:v,errorUpdatedAt:g,failureCount:b.fetchFailureCount,failureReason:b.fetchFailureReason,errorUpdateCount:b.errorUpdateCount,isFetched:e.isFetched(),isFetchedAfterMount:b.dataUpdateCount>d.dataUpdateCount||b.errorUpdateCount>d.errorUpdateCount,isFetching:T,isRefetching:T&&!S,isLoadingError:O&&!Q,isPaused:"paused"===b.fetchStatus,isPlaceholderData:m,isRefetchError:O&&Q,isStale:y(e,t),refetch:this.refetch,promise:this.#r,isEnabled:!1!==(0,o.resolveQueryBoolean)(t.enabled,e)};if(this.options.experimental_prefetchInRender){let t=void 0!==C.data,r="error"===C.status&&!t,i=e=>{r?e.reject(C.error):t&&e.resolve(C.data)},n=()=>{i(this.#r=C.promise=(0,u.pendingThenable)())},a=this.#r;switch(a.status){case"pending":e.queryHash===s.queryHash&&i(a);break;case"fulfilled":(r||C.data!==a.value)&&n();break;case"rejected":r&&C.error===a.reason||n()}}return C}updateResult(){let e=this.#n,t=this.createResult(this.#s,this.options);if(this.#a=this.#s.state,this.#u=this.options,void 0!==this.#a.data&&(this.#c=this.#s),(0,o.shallowEqualObjects)(t,e))return;this.#n=t;let r=()=>{if(!e)return!0;let{notifyOnChangeProps:t}=this.options,r="function"==typeof t?t():t;if("all"===r||!r&&!this.#y.size)return!0;let s=new Set(r??this.#y);return this.options.throwOnError&&s.add("error"),Object.keys(this.#n).some(t=>this.#n[t]!==e[t]&&s.has(t))};this.#S({listeners:r()})}#g(){let e=this.#e.getQueryCache().build(this.#e,this.options);if(e===this.#s)return;let t=this.#s;this.#s=e,this.#i=e.state,this.hasListeners()&&(t?.removeObserver(this),e.addObserver(this))}onQueryUpdate(){this.updateResult(),this.hasListeners()&&this.#b()}#S(e){i.notifyManager.batch(()=>{e.listeners&&this.listeners.forEach(e=>{e(this.#n)}),this.#e.getQueryCache().notify({query:this.#s,type:"observerResultsUpdated"})})}};function h(e,t){return!1!==(0,o.resolveQueryBoolean)(t.enabled,e)&&void 0===e.state.data&&("error"!==e.state.status||!1!==(0,o.resolveQueryBoolean)(t.retryOnMount,e))||void 0!==e.state.data&&d(e,t,t.refetchOnMount)}function d(e,t,r){if(!1!==(0,o.resolveQueryBoolean)(t.enabled,e)&&"static"!==(0,o.resolveStaleTime)(t.staleTime,e)){let s="function"==typeof r?r(e):r;return"always"===s||!1!==s&&y(e,t)}return!1}function p(e,t,r,s){return(e!==t||!1===(0,o.resolveQueryBoolean)(s.enabled,e))&&(!r.suspense||"error"!==e.state.status)&&y(e,r)}function y(e,t){return!1!==(0,o.resolveQueryBoolean)(t.enabled,e)&&e.isStaleByTime((0,o.resolveStaleTime)(t.staleTime,e))}e.i(47167);var f=e.i(71645),b=e.i(12598);e.i(43476);var m=f.createContext((t=!1,{clearReset:()=>{t=!1},reset:()=>{t=!0},isReset:()=>t})),v=f.createContext(!1);v.Provider;var g=(e,t,r)=>t.fetchOptimistic(e).catch(()=>{r.clearReset()});e.s(["useQuery",0,function(e,t){return function(e,t,r){let n,a=f.useContext(v),u=f.useContext(m),l=(0,b.useQueryClient)(r),c=l.defaultQueryOptions(e);l.getDefaultOptions().queries?._experimental_beforeQuery?.(c);let h=l.getQueryCache().get(c.queryHash),d=!1!==e.subscribed;if(c._optimisticResults=a?"isRestoring":d?"optimistic":void 0,c.suspense){let e=e=>"static"===e?e:Math.max(e??1e3,1e3),t=c.staleTime;c.staleTime="function"==typeof t?(...r)=>e(t(...r)):e(t),"number"==typeof c.gcTime&&(c.gcTime=Math.max(c.gcTime,1e3))}n=h?.state.error&&"function"==typeof c.throwOnError?(0,o.shouldThrowError)(c.throwOnError,[h.state.error,h]):c.throwOnError,(c.suspense||c.experimental_prefetchInRender||n)&&!u.isReset()&&(c.retryOnMount=!1),f.useEffect(()=>{u.clearReset()},[u]);let p=!l.getQueryCache().get(c.queryHash),[y]=f.useState(()=>new t(l,c)),E=y.getOptimisticResult(c),R=!a&&d;if(f.useSyncExternalStore(f.useCallback(e=>{let t=R?y.subscribe(i.notifyManager.batchCalls(e)):o.noop;return y.updateResult(),t},[y,R]),()=>y.getCurrentResult(),()=>y.getCurrentResult()),f.useEffect(()=>{y.setOptions(c)},[c,y]),c?.suspense&&E.isPending)throw g(c,y,u);if((({result:e,errorResetBoundary:t,throwOnError:r,query:s,suspense:i})=>e.isError&&!t.isReset()&&!e.isFetching&&s&&(i&&void 0===e.data||(0,o.shouldThrowError)(r,[e.error,s])))({result:E,errorResetBoundary:u,throwOnError:c.throwOnError,query:h,suspense:c.suspense}))throw E.error;if(l.getDefaultOptions().queries?._experimental_afterQuery?.(c,E),c.experimental_prefetchInRender&&!s.environmentManager.isServer()&&E.isLoading&&E.isFetching&&!a){let e=p?g(c,y,u):h?.promise;e?.catch(o.noop).finally(()=>{y.updateResult()})}return c.notifyOnChangeProps?E:y.trackResult(E)}(e,c,t)}],66027)},54616,e=>{"use strict";var t=e.i(71645),r=e.i(14272),s=e.i(40143),i=e.i(15823),n=e.i(19273),a=class extends i.Subscribable{#e;#n=void 0;#O;#N;constructor(e,t){super(),this.#e=e,this.setOptions(t),this.bindMethods(),this.#Q()}bindMethods(){this.mutate=this.mutate.bind(this),this.reset=this.reset.bind(this)}setOptions(e){let t=this.options;this.options=this.#e.defaultMutationOptions(e),(0,n.shallowEqualObjects)(this.options,t)||this.#e.getMutationCache().notify({type:"observerOptionsUpdated",mutation:this.#O,observer:this}),t?.mutationKey&&this.options.mutationKey&&(0,n.hashKey)(t.mutationKey)!==(0,n.hashKey)(this.options.mutationKey)?this.reset():this.#O?.state.status==="pending"&&this.#O.setOptions(this.options)}onUnsubscribe(){this.hasListeners()||this.#O?.removeObserver(this)}onMutationUpdate(e){this.#Q(),this.#S(e)}getCurrentResult(){return this.#n}reset(){this.#O?.removeObserver(this),this.#O=void 0,this.#Q(),this.#S()}mutate(e,t){return this.#N=t,this.#O?.removeObserver(this),this.#O=this.#e.getMutationCache().build(this.#e,this.options),this.#O.addObserver(this),this.#O.execute(e)}#Q(){let e=this.#O?.state??(0,r.getDefaultState)();this.#n={...e,isPending:"pending"===e.status,isSuccess:"success"===e.status,isError:"error"===e.status,isIdle:"idle"===e.status,mutate:this.mutate,reset:this.reset}}#S(e){s.notifyManager.batch(()=>{if(this.#N&&this.hasListeners()){let t=this.#n.variables,r=this.#n.context,s={client:this.#e,meta:this.options.meta,mutationKey:this.options.mutationKey};if(e?.type==="success"){try{this.#N.onSuccess?.(e.data,t,r,s)}catch(e){Promise.reject(e)}try{this.#N.onSettled?.(e.data,null,t,r,s)}catch(e){Promise.reject(e)}}else if(e?.type==="error"){try{this.#N.onError?.(e.error,t,r,s)}catch(e){Promise.reject(e)}try{this.#N.onSettled?.(void 0,e.error,t,r,s)}catch(e){Promise.reject(e)}}}this.listeners.forEach(e=>{e(this.#n)})})}},u=e.i(12598);e.s(["useMutation",0,function(e,r){let i=(0,u.useQueryClient)(r),[o]=t.useState(()=>new a(i,e));t.useEffect(()=>{o.setOptions(e)},[o,e]);let l=t.useSyncExternalStore(t.useCallback(e=>o.subscribe(s.notifyManager.batchCalls(e)),[o]),()=>o.getCurrentResult(),()=>o.getCurrentResult()),c=t.useCallback((e,t)=>{o.mutate(e,t).catch(n.noop)},[o]);if(l.error&&(0,n.shouldThrowError)(o.options.throwOnError,[l.error]))throw l.error;return{...l,mutate:c,mutateAsync:l.mutate}}],54616)},55436,e=>{"use strict";let t=(0,e.i(75254).default)("Search",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);e.s(["Search",0,t],55436)},27612,e=>{"use strict";let t=(0,e.i(75254).default)("Trash2",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]]);e.s(["Trash2",0,t],27612)},92930,e=>{"use strict";let t=(0,e.i(75254).default)("Pen",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]]);e.s(["Edit2",0,t],92930)},40160,e=>{"use strict";let t=(0,e.i(75254).default)("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);e.s(["Download",0,t],40160)},95468,e=>{"use strict";let t=(0,e.i(75254).default)("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);e.s(["CheckCircle2",0,t],95468)},92950,e=>{"use strict";var t=e.i(43476),r=e.i(75254);let s=(0,r.default)("CircleAlert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);var i=e.i(95468);let n=(0,r.default)("CircleDashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]]),a=(0,r.default)("ShieldAlert",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]),u={OFFEN:{value:"OFFEN",label:"Noch nicht bewertet",badgeClass:"border-slate-300 bg-slate-100 text-slate-700",previewClass:"border-slate-300 bg-slate-50 text-slate-700",color:"#2E3B40",icon:n},BESTANDEN:{value:"BESTANDEN",label:"Bestanden",badgeClass:"border-success/35 bg-success/15 text-success",previewClass:"border-success/40 bg-success/10 text-success",color:"#245C36",icon:i.CheckCircle2},BESTANDEN_MIT_AUFLAGEN:{value:"BESTANDEN_MIT_AUFLAGEN",label:"Bestanden mit Auflagen",badgeClass:"border-warning/40 bg-warning/15 text-[#7A5A00]",previewClass:"border-warning/45 bg-warning/10 text-[#7A5A00]",color:"#7A5A00",icon:a},NICHT_BESTANDEN:{value:"NICHT_BESTANDEN",label:"Nicht bestanden",badgeClass:"border-danger/35 bg-danger/15 text-danger",previewClass:"border-danger/40 bg-danger/10 text-danger",color:"#7A1F26",icon:s}},o={"":"OFFEN",offen:"OFFEN",OFFEN:"OFFEN",bestanden:"BESTANDEN",BESTANDEN:"BESTANDEN",mit_auflagen:"BESTANDEN_MIT_AUFLAGEN",bestanden_mit_auflagen:"BESTANDEN_MIT_AUFLAGEN","bestanden mit auflagen":"BESTANDEN_MIT_AUFLAGEN",BESTANDEN_MIT_AUFLAGEN:"BESTANDEN_MIT_AUFLAGEN",nicht_bestanden:"NICHT_BESTANDEN","nicht bestanden":"NICHT_BESTANDEN",NICHT_BESTANDEN:"NICHT_BESTANDEN"};function l(e){return o[String(e??"").trim()]??"OFFEN"}function c(e){return u[l(e)]}e.s(["ValidationResultBadge",0,function({value:e,className:r=""}){let s=c(e),i=s.icon;return(0,t.jsxs)("span",{className:`inline-flex items-center gap-1.5 rounded-full border px-3 py-1 text-xs font-semibold ${s.badgeClass} ${r}`,children:[(0,t.jsx)(i,{className:"h-3.5 w-3.5"}),s.label]})},"getValidationResultPresentation",0,c,"normalizeValidationResult",0,l,"validationResultValues",0,["OFFEN","BESTANDEN","BESTANDEN_MIT_AUFLAGEN","NICHT_BESTANDEN"]],92950)},74886,e=>{"use strict";let t=(0,e.i(75254).default)("Copy",[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);e.s(["Copy",0,t],74886)}]); \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/static/chunks/43zs1l-r-4ddz.js b/validation-suite/frontend/atlas/.next/static/chunks/43zs1l-r-4ddz.js new file mode 100644 index 00000000..84974058 --- /dev/null +++ b/validation-suite/frontend/atlas/.next/static/chunks/43zs1l-r-4ddz.js @@ -0,0 +1 @@ +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,95468,e=>{"use strict";let t=(0,e.i(75254).default)("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);e.s(["CheckCircle2",0,t],95468)},92950,e=>{"use strict";var t=e.i(43476),r=e.i(75254);let a=(0,r.default)("CircleAlert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);var n=e.i(95468);let s=(0,r.default)("CircleDashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]]),i=(0,r.default)("ShieldAlert",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]),l={OFFEN:{value:"OFFEN",label:"Noch nicht bewertet",badgeClass:"border-slate-300 bg-slate-100 text-slate-700",previewClass:"border-slate-300 bg-slate-50 text-slate-700",color:"#2E3B40",icon:s},BESTANDEN:{value:"BESTANDEN",label:"Bestanden",badgeClass:"border-success/35 bg-success/15 text-success",previewClass:"border-success/40 bg-success/10 text-success",color:"#245C36",icon:n.CheckCircle2},BESTANDEN_MIT_AUFLAGEN:{value:"BESTANDEN_MIT_AUFLAGEN",label:"Bestanden mit Auflagen",badgeClass:"border-warning/40 bg-warning/15 text-[#7A5A00]",previewClass:"border-warning/45 bg-warning/10 text-[#7A5A00]",color:"#7A5A00",icon:i},NICHT_BESTANDEN:{value:"NICHT_BESTANDEN",label:"Nicht bestanden",badgeClass:"border-danger/35 bg-danger/15 text-danger",previewClass:"border-danger/40 bg-danger/10 text-danger",color:"#7A1F26",icon:a}},d={"":"OFFEN",offen:"OFFEN",OFFEN:"OFFEN",bestanden:"BESTANDEN",BESTANDEN:"BESTANDEN",mit_auflagen:"BESTANDEN_MIT_AUFLAGEN",bestanden_mit_auflagen:"BESTANDEN_MIT_AUFLAGEN","bestanden mit auflagen":"BESTANDEN_MIT_AUFLAGEN",BESTANDEN_MIT_AUFLAGEN:"BESTANDEN_MIT_AUFLAGEN",nicht_bestanden:"NICHT_BESTANDEN","nicht bestanden":"NICHT_BESTANDEN",NICHT_BESTANDEN:"NICHT_BESTANDEN"};function o(e){return d[String(e??"").trim()]??"OFFEN"}function c(e){return l[o(e)]}e.s(["ValidationResultBadge",0,function({value:e,className:r=""}){let a=c(e),n=a.icon;return(0,t.jsxs)("span",{className:`inline-flex items-center gap-1.5 rounded-full border px-3 py-1 text-xs font-semibold ${a.badgeClass} ${r}`,children:[(0,t.jsx)(n,{className:"h-3.5 w-3.5"}),a.label]})},"getValidationResultPresentation",0,c,"normalizeValidationResult",0,o,"validationResultValues",0,["OFFEN","BESTANDEN","BESTANDEN_MIT_AUFLAGEN","NICHT_BESTANDEN"]],92950)},7233,e=>{"use strict";let t=(0,e.i(75254).default)("Plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);e.s(["Plus",0,t],7233)},40160,e=>{"use strict";let t=(0,e.i(75254).default)("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);e.s(["Download",0,t],40160)},56909,e=>{"use strict";let t=(0,e.i(75254).default)("Save",[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]]);e.s(["Save",0,t],56909)},66531,e=>{"use strict";let t=(0,e.i(75254).default)("CloudUpload",[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"m8 17 4-4 4 4",key:"1quai1"}]]);e.s(["UploadCloud",0,t],66531)},57344,e=>{"use strict";var t=e.i(43476),r=e.i(94814),a=e.i(54616),n=e.i(66027),s=e.i(12598),i=e.i(75254);let l=(0,i.default)("ChevronDown",[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]]);var d=e.i(40160);let o=(0,i.default)("FileText",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M10 9H8",key:"b1mrlr"}],["path",{d:"M16 13H8",key:"t4e002"}],["path",{d:"M16 17H8",key:"z1uh3a"}]]);var c=e.i(7233),u=e.i(56909);let m=(0,i.default)("ShieldCheck",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);var h=e.i(66531),g=e.i(37727),p=e.i(71645),x=e.i(53145),b=e.i(50270);let f=(0,i.default)("Check",[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]]);function _({children:e,icon:r,state:a="normal",loadingText:n,successText:s="Gespeichert",disabled:i,disabledReason:l,variant:d="secondary",className:o="",...c}){let u=i||"loading"===a,m="success"===a?"btn-success":"error"===a?"btn-danger":`btn-${d}`;return(0,t.jsxs)("button",{...c,disabled:u,title:u?l:c.title,className:`btn ${m} ${o}`,children:["loading"===a?(0,t.jsx)("span",{className:"spinner"}):"success"===a?(0,t.jsx)(f,{className:"h-4 w-4"}):r,(0,t.jsx)("span",{children:"loading"===a?n??"Laedt...":"success"===a?s:e})]})}var j=e.i(28779),N=e.i(54858),v=e.i(92950);let y=["yes","no","na"],w=new Date().toISOString().slice(0,10),k=["Aufbereitungsraum","reiner Bereich","unreiner Bereich","Sterilisator","Beladung","Sensorposition","Chargenprotokoll","Indikator","Zertifikat","Kalibrierschein","Winlog-Auswertung"],E={report_number:{label:"Berichtsnummer",section:"Allgemeine Angaben"},validation_type:{label:"Validierungsart",section:"Allgemeine Angaben"},performed_on:{label:"Pruefdatum",section:"Allgemeine Angaben"},customer_id:{label:"Kunde",section:"Kunde und Standort"},location_id:{label:"Standort",section:"Kunde und Standort"},device_id:{label:"Geraet",section:"Geraet"},examiner_name:{label:"Pruefer",section:"Allgemeine Angaben"}},A=b.z.object({report_number:b.z.string().min(3),validation_type:b.z.string().min(1),project:b.z.string().optional(),performed_on:b.z.string().min(1),next_validation_on:b.z.string().optional().nullable(),revalidation_interval_months:b.z.coerce.number().int().min(1),next_validation_manually_overridden:b.z.boolean(),test_location:b.z.string().optional(),examiner_name:b.z.string().min(1),participants:b.z.string().optional(),status:b.z.string().min(1),result:b.z.string().min(1),customer_id:b.z.string().min(1),location_id:b.z.string().min(1),contact_id:b.z.string().optional().nullable(),examiner_id:b.z.string().optional().nullable(),operator_name:b.z.string().optional(),device_id:b.z.string().min(1),equipment_ids:b.z.array(b.z.string()),environment_conditions:b.z.record(b.z.unknown()),documentation_checklist:b.z.array(b.z.record(b.z.unknown())),performance_checklist:b.z.array(b.z.record(b.z.unknown())),programs:b.z.array(b.z.record(b.z.unknown())),loading_patterns:b.z.array(b.z.record(b.z.unknown())),measurement_data:b.z.array(b.z.record(b.z.unknown())),drying:b.z.record(b.z.unknown()),recommendations:b.z.array(b.z.record(b.z.unknown())),attachments:b.z.array(b.z.record(b.z.unknown()))});function z(e=""){return{report_number:e,validation_type:"Erstvalidierung",project:"",performed_on:w,next_validation_on:"",revalidation_interval_months:24,next_validation_manually_overridden:!1,test_location:"",examiner_name:"",participants:"",status:"ENTWURF",result:"OFFEN",customer_id:"",location_id:"",contact_id:"",examiner_id:"",operator_name:"",device_id:"",equipment_ids:[],environment_conditions:{room_temperature:"",humidity:"",test_time:"",checks:[{text:"Raumbedingungen stabil",value:"na",comment:""},{text:"Aufstellort frei zugaenglich",value:"na",comment:""},{text:"Medienversorgung verfuegbar",value:"na",comment:""}]},documentation_checklist:[],performance_checklist:[],programs:[{name:"Vakuumtest",selected:!1,custom:!1},{name:"Bowie-Dick / Leerkammerprofil",selected:!1,custom:!1},{name:"134 C hohl verpackt",selected:!1,custom:!1}],loading_patterns:[1,2,3].map(e=>({run:e,pattern:"",description:"",images:[]})),measurement_data:["Vakuumtest","Leerkammerprofil","Testlauf 1","Testlauf 2","Testlauf 3"].map(e=>({name:e,start_time:"",end_time:"",duration:"",leak_rate:"",min_temperature:"",max_temperature:"",temperature_band:"",equilibration_time:"",holding_time:"",pressure:"",result:"",imports:[]})),drying:{start_weight:"",end_weight:"",difference:"",rating:"",comment:""},recommendations:[],attachments:[]}}function S({title:e,children:r,defaultOpen:a=!1}){let[n,s]=(0,p.useState)(a);return(0,t.jsxs)("section",{className:"rounded-lg border border-border bg-surface shadow-soft",children:[(0,t.jsxs)("button",{type:"button",onClick:()=>s(e=>!e),className:"flex w-full items-center justify-between px-5 py-4 text-left text-lg font-semibold hover:bg-background",children:[e,(0,t.jsx)(l,{className:`h-5 w-5 transition ${n?"rotate-180":""}`})]}),n&&(0,t.jsx)("div",{className:"border-t border-border p-5",children:r})]})}function T({label:e,children:r}){return(0,t.jsxs)("label",{className:"block",children:[(0,t.jsx)("span",{className:"text-sm font-medium text-text",children:e}),(0,t.jsx)("div",{className:"mt-2",children:r})]})}let B="h-12 w-full rounded-lg border border-border bg-white px-4 outline-none focus:border-primary",F="min-h-24 w-full rounded-lg border border-border bg-white px-4 py-3 outline-none focus:border-primary";function $({validationId:e}){let{token:i}=(0,j.useAuth)(),l=(0,s.useQueryClient)(),[b,f]=(0,p.useState)(e??null),[y,q]=(0,p.useState)(""),[R,G]=(0,p.useState)(""),[U,I]=(0,p.useState)(null),[O,K]=(0,p.useState)("normal"),[L,H]=(0,p.useState)("normal"),[Q,W]=(0,p.useState)("normal"),[Z,J]=(0,p.useState)(null),X=(0,p.useRef)(null),Y=(0,n.useQuery)({queryKey:["next-report-number",i],queryFn:()=>(0,N.apiGet)("/validations/next-report-number",i??""),enabled:!!i}),ee=(0,n.useQuery)({queryKey:["customers-options",i],queryFn:()=>(0,N.apiGet)("/customers?page=1&page_size=100",i??""),enabled:!!i}),et=(0,n.useQuery)({queryKey:["locations-options",i],queryFn:()=>(0,N.apiGet)("/locations?page=1&page_size=100",i??""),enabled:!!i}),er=(0,n.useQuery)({queryKey:["contacts-options",i],queryFn:()=>(0,N.apiGet)("/contacts?page=1&page_size=100",i??""),enabled:!!i}),ea=(0,n.useQuery)({queryKey:["devices-options",i],queryFn:()=>(0,N.apiGet)("/devices?page=1&page_size=100",i??""),enabled:!!i}),en=(0,n.useQuery)({queryKey:["equipment-options",i],queryFn:()=>(0,N.apiGet)("/equipment?page=1&page_size=100",i??""),enabled:!!i}),es=(0,n.useQuery)({queryKey:["report-checklists",i],queryFn:()=>(0,N.apiGet)("/report-templates/default/checklists",i??""),enabled:!!i}),ei=(0,n.useQuery)({queryKey:["validation",e,i],queryFn:()=>(0,N.apiGet)(`/validations/${e}`,i??""),enabled:!!(i&&e)}),el=(0,x.useForm)({resolver:(0,r.zodResolver)(A),defaultValues:z()}),ed=(0,x.useWatch)({control:el.control}),eo=ea.data?.items.find(e=>e.id===el.watch("device_id")),ec=en.data?.items.filter(e=>el.watch("equipment_ids").includes(e.id))??[],eu=(0,v.getValidationResultPresentation)(el.watch("result")),em=(0,x.useFieldArray)({control:el.control,name:"recommendations"}),eh=(0,x.useFieldArray)({control:el.control,name:"attachments"});(0,p.useEffect)(()=>{Y.data?.report_number&&!el.getValues("report_number")&&el.setValue("report_number",Y.data.report_number)},[el,Y.data]),(0,p.useEffect)(()=>{if(!ei.data)return;let e=ei.data;el.reset({...z(),...e,result:(0,v.normalizeValidationResult)(e.result),project:e.project??"",test_location:e.test_location??"",examiner_name:e.examiner_name??"",participants:e.participants??"",operator_name:e.operator_name??"",performed_on:e.performed_on??"",next_validation_on:e.next_validation_on??"",contact_id:e.contact_id??"",examiner_id:"",location_id:e.location_id??"",device_id:e.device_id??""}),f(e.id)},[ei.data,el]),(0,p.useEffect)(()=>{if(!es.data||ei.data||el.getValues("documentation_checklist").length>0)return;let e=es.data.flatMap(e=>e.items.map(t=>({...t,template_key:e.checklist_key,template_title:e.title})));el.setValue("documentation_checklist",e)},[es.data,ei.data,el]);let eg=ei.data?.status==="FREIGEGEBEN"||ei.data?.status==="ABGESCHLOSSEN",ep=(0,a.useMutation)({mutationFn:e=>(0,N.apiSend)(b?`/validations/${b}`:"/validations",i??"",b?"PUT":"POST",(0,N.normalizeValidationPayload)(e)),onSuccess:e=>{f(e.id),q(new Date().toLocaleTimeString("de-DE",{hour:"2-digit",minute:"2-digit"})),G(""),K("success"),window.setTimeout(()=>K("normal"),1500),l.invalidateQueries({queryKey:["dashboard"]})},onError:e=>{K("error"),G(e instanceof Error?e.message:"Speichern fehlgeschlagen.")}});(0,p.useEffect)(()=>{if(!eg&&i&&ed.report_number&&ed.validation_type&&ed.customer_id&&ed.location_id&&ed.device_id&&ed.examiner_name&&ed.performed_on)return X.current&&clearTimeout(X.current),X.current=setTimeout(()=>{let e=el.getValues();ep.mutate(e)},2500),()=>{X.current&&clearTimeout(X.current)}},[el,ep,i,ed]);let ex=ee.data?.items??[],eb=ex.find(e=>e.id===el.watch("customer_id")),ef=(et.data?.items??[]).filter(e=>!el.watch("customer_id")||e.customer_id===el.watch("customer_id")),e_=(er.data?.items??[]).filter(e=>!el.watch("customer_id")||e.customer_id===el.watch("customer_id")),ej=(ea.data?.items??[]).filter(e=>!el.watch("customer_id")||e.customer_id===el.watch("customer_id")),eN=(0,p.useMemo)(()=>ec.filter(e=>e.calibration_due_on&&e.calibration_due_on!e[t])}function ey(){let e=ev()[0];return!!e&&(G(`${e[1].label} fehlt in ${e[1].section}.`),document.querySelector(`[name="${e[0]}"]`)?.scrollIntoView({behavior:"smooth",block:"center"}),!0)}async function ew(){if(eg)return void G("Diese Validierung ist schreibgeschuetzt.");if(ev().length){H("error"),ey();return}try{H("loading");let e=b?null:await ep.mutateAsync(el.getValues()),t=b??e?.id;if(!t||!i)return;let r=await fetch(`${N.API_BASE}/validations/${t}/review`,{method:"POST",headers:{Authorization:`Bearer ${i}`}}),a=await r.json();I(a),H("success"),window.setTimeout(()=>H("normal"),1500),G(a.errors.length?"Pruefung abgeschlossen: Fehler blockieren die Freigabe.":"Pruefung abgeschlossen: keine blockierenden Fehler.")}catch(e){H("error"),G(e instanceof Error?e.message:"Pruefung fehlgeschlagen.")}}async function ek(e,t){if(e&&0!==e.length){if(!b||!i)return void G("Bitte den Entwurf speichern, bevor Bilder oder Anlagen hochgeladen werden.");try{for(let[r,a]of(J(t),Array.from(e).entries())){let e=eh.fields.length+r+1,n=new FormData;n.append("category",t),n.append("description",""),n.append("order",String(e)),n.append("file",a);let s=await fetch(`${N.API_BASE}/validations/${b}/attachments`,{method:"POST",headers:{Authorization:`Bearer ${i}`},body:n});if(!s.ok){let e=await s.json().catch(()=>null);throw Error(e?.detail??"Upload fehlgeschlagen.")}let l=await s.json();eh.append(l)}l.invalidateQueries({queryKey:["validation",b,i]}),G("Upload abgeschlossen.")}catch(e){G(e instanceof Error?e.message:"Upload fehlgeschlagen.")}finally{J(null)}}}async function eE(){if(b&&i)try{W("loading");let e=await fetch(`${N.API_BASE}/validations/${b}/report.pdf`,{headers:{Authorization:`Bearer ${i}`}});if(!e.ok){let t=await e.json().catch(()=>null);throw Error(t?.detail??"PDF konnte nicht erzeugt werden.")}let t=await e.blob(),r=URL.createObjectURL(t),a=document.createElement("a");a.href=r,a.download=`${el.getValues("report_number")}.pdf`,a.click(),URL.revokeObjectURL(r),W("success"),window.setTimeout(()=>W("normal"),1500)}catch(e){W("error"),G(e instanceof Error?e.message:"PDF-Download fehlgeschlagen.")}}return(0,t.jsxs)("form",{onSubmit:el.handleSubmit(function(e){if(eg)return void G("Diese Validierung ist schreibgeschuetzt.");if(ev(e).length){K("error"),ey();return}K("loading"),ep.mutate(e)}),className:"space-y-5 pb-28",children:[(0,t.jsxs)("header",{children:[(0,t.jsx)("h1",{className:"text-3xl font-semibold text-text",children:"Validierungsbericht"}),(0,t.jsx)("p",{className:"mt-2 text-text-light",children:eg?"Schreibgeschuetzte freigegebene oder abgeschlossene Validierung.":"Eine responsive Seite fuer Erfassung, Pruefung und Berichtserstellung."})]}),(0,t.jsx)(S,{title:"1. Allgemeine Angaben",defaultOpen:!0,children:(0,t.jsxs)("div",{className:"grid gap-4 md:grid-cols-2",children:[(0,t.jsx)(T,{label:"Berichtsnummer *",children:(0,t.jsx)("input",{className:B,...el.register("report_number")})}),(0,t.jsx)(T,{label:"Validierungsart *",children:(0,t.jsxs)("select",{className:B,...el.register("validation_type"),children:[(0,t.jsx)("option",{children:"Erstvalidierung"}),(0,t.jsx)("option",{children:"Revalidierung"}),(0,t.jsx)("option",{children:"Leistungsbeurteilung"}),(0,t.jsx)("option",{children:"Sonderpruefung"})]})}),(0,t.jsx)(T,{label:"Projekt",children:(0,t.jsx)("input",{className:B,...el.register("project")})}),(0,t.jsx)(T,{label:"Pruefdatum *",children:(0,t.jsx)("input",{type:"date",className:B,...el.register("performed_on")})}),(0,t.jsx)(T,{label:"Revalidierungsintervall Monate",children:(0,t.jsx)("input",{type:"number",className:B,...el.register("revalidation_interval_months")})}),(0,t.jsx)(T,{label:"Naechste Validierung",children:(0,t.jsx)("input",{type:"date",className:B,...el.register("next_validation_on"),onChange:e=>{el.setValue("next_validation_manually_overridden",!0),el.setValue("next_validation_on",e.target.value)}})}),(0,t.jsx)(T,{label:"Pruefungsort",children:(0,t.jsx)("input",{className:B,...el.register("test_location")})}),(0,t.jsx)(T,{label:"Pruefer *",children:(0,t.jsx)("input",{className:B,...el.register("examiner_name")})}),(0,t.jsx)(T,{label:"Mitwirkende Personen",children:(0,t.jsx)("textarea",{className:F,...el.register("participants")})}),(0,t.jsx)(T,{label:"Status",children:(0,t.jsxs)("select",{className:B,...el.register("status"),children:[(0,t.jsx)("option",{value:"ENTWURF",children:"Entwurf"}),(0,t.jsx)("option",{value:"BEREIT_ZUR_PRUEFUNG",children:"Bereit zur Pruefung"}),(0,t.jsx)("option",{value:"IN_PRUEFUNG",children:"In Pruefung"}),(0,t.jsx)("option",{value:"FREIGEGEBEN",children:"Freigegeben"}),(0,t.jsx)("option",{value:"ABGESCHLOSSEN",children:"Abgeschlossen"}),(0,t.jsx)("option",{value:"STORNIERT",children:"Storniert"})]})}),(0,t.jsxs)(T,{label:"Gesamtergebnis",children:[(0,t.jsx)("select",{className:B,...el.register("result"),children:v.validationResultValues.map(e=>(0,t.jsx)("option",{value:e,children:(0,v.getValidationResultPresentation)(e).label},e))}),(0,t.jsx)("div",{className:`mt-3 flex min-h-12 items-center justify-center rounded-lg border px-4 text-sm font-semibold ${eu.previewClass}`,children:eu.label})]})]})}),(0,t.jsx)(S,{title:"2. Kunde und Standort",children:(0,t.jsxs)("div",{className:"grid gap-4 md:grid-cols-2",children:[(0,t.jsx)(T,{label:"Kunde *",children:(0,t.jsxs)("select",{className:B,...el.register("customer_id"),children:[(0,t.jsx)("option",{value:"",children:"Bitte waehlen"}),ex.map(e=>(0,t.jsx)("option",{value:e.id,children:e.name},e.id))]})}),(0,t.jsx)(T,{label:"Standort *",children:(0,t.jsxs)("select",{className:B,...el.register("location_id"),children:[(0,t.jsx)("option",{value:"",children:"Bitte waehlen"}),ef.map(e=>(0,t.jsx)("option",{value:e.id,children:e.name},e.id))]})}),(0,t.jsx)(T,{label:"Ansprechpartner",children:(0,t.jsxs)("select",{className:B,...el.register("contact_id"),children:[(0,t.jsx)("option",{value:"",children:"Bitte waehlen"}),e_.map(e=>(0,t.jsx)("option",{value:e.id,children:e.full_name},e.id))]})}),(0,t.jsx)(T,{label:"Betreiber",children:(0,t.jsx)("input",{className:B,...el.register("operator_name")})}),(0,t.jsx)(T,{label:"QM-/Hygienebeauftragter",children:(0,t.jsx)("input",{className:B,value:[eb?.quality_manager,eb?.hygiene_officer].filter(Boolean).join(" / "),readOnly:!0})})]})}),(0,t.jsxs)(S,{title:"3. Geraet",children:[(0,t.jsx)(T,{label:"Geraet *",children:(0,t.jsxs)("select",{className:B,...el.register("device_id"),children:[(0,t.jsx)("option",{value:"",children:"Bitte waehlen"}),ej.map(e=>(0,t.jsxs)("option",{value:e.id,children:[e.manufacturer," ",e.model," - ",e.serial_number]},e.id))]})}),(0,t.jsx)("div",{className:"mt-4 grid gap-4 md:grid-cols-3",children:[["Hersteller",eo?.manufacturer],["Modell",eo?.model],["Seriennummer",eo?.serial_number],["Baujahr",eo?.year_built],["Inbetriebnahme",eo?.commissioned_on],["Kammervolumen",eo?.chamber_volume_liters],["Dampferzeugung",eo?.steam_generation],["Wasseraufbereitung",eo?.water_treatment],["Dokumentation",eo?.documentation],["Lieferant",eo?.supplier]].map(([e,r])=>(0,t.jsxs)("div",{className:"rounded-lg border border-border bg-background p-4",children:[(0,t.jsx)("p",{className:"text-xs text-text-light",children:e}),(0,t.jsx)("p",{className:"mt-1 font-medium",children:String(r??"-")})]},e))})]}),(0,t.jsxs)(S,{title:"4. Pruefmittel",children:[(0,t.jsx)(x.Controller,{control:el.control,name:"equipment_ids",render:({field:e})=>(0,t.jsx)("div",{className:"grid gap-3 md:grid-cols-2",children:(en.data?.items??[]).map(r=>{let a=!!(r.calibration_due_on&&r.calibration_due_one.onChange(t.target.checked?[...e.value,r.id]:e.value.filter(e=>e!==r.id))}),(0,t.jsxs)("span",{children:[(0,t.jsx)("strong",{children:r.kind}),(0,t.jsx)("br",{}),r.serial_number," · ",r.calibrated_on??"-"," · ",r.status,a&&(0,t.jsx)("span",{className:"ml-2 text-danger",children:"Kalibrierung abgelaufen"})]})]},r.id)})})}),eN.length>0&&(0,t.jsx)("p",{className:"mt-4 rounded-lg border border-danger/30 bg-danger/5 p-4 text-danger",children:"Mindestens ein ausgewaehltes Pruefmittel hat eine abgelaufene Kalibrierung."})]}),(0,t.jsxs)(S,{title:"5. Umgebungsbedingungen",children:[(0,t.jsxs)("div",{className:"grid gap-4 md:grid-cols-3",children:[(0,t.jsx)(T,{label:"Raumtemperatur",children:(0,t.jsx)("input",{className:B,...el.register("environment_conditions.room_temperature")})}),(0,t.jsx)(T,{label:"relative Luftfeuchtigkeit",children:(0,t.jsx)("input",{className:B,...el.register("environment_conditions.humidity")})}),(0,t.jsx)(T,{label:"Pruefzeit",children:(0,t.jsx)("input",{className:B,...el.register("environment_conditions.test_time")})})]}),[0,1,2].map(e=>(0,t.jsx)(C,{form:el,path:`environment_conditions.checks.${e}`},e))]}),(0,t.jsxs)(S,{title:"6. Dokumentations- und Leistungschecklisten",children:[el.watch("documentation_checklist").map((e,r)=>(0,t.jsx)(C,{form:el,path:`documentation_checklist.${r}`},`${String(e.template_key??"check")}-${r}`)),el.watch("performance_checklist").map((e,r)=>(0,t.jsx)(C,{form:el,path:`performance_checklist.${r}`},`performance-${r}`))]}),(0,t.jsxs)(S,{title:"7. Programme",children:[[0,1,2].map(e=>(0,t.jsx)(M,{form:el,index:e},e)),(0,t.jsx)(_,{type:"button",icon:(0,t.jsx)(c.Plus,{className:"h-4 w-4"}),onClick:()=>el.setValue("programs",[...el.getValues("programs"),{name:"",selected:!0,custom:!0}]),className:"mt-4",children:"Eigenes Programm"})]}),(0,t.jsx)(S,{title:"8. Beladungsmuster",children:[0,1,2].map(e=>(0,t.jsx)(D,{form:el,index:e},e))}),(0,t.jsx)(S,{title:"9. Messdaten",children:[0,1,2,3,4].map(e=>(0,t.jsx)(V,{form:el,index:e},e))}),(0,t.jsx)(S,{title:"10. Trocknung",children:(0,t.jsxs)("div",{className:"grid gap-4 md:grid-cols-2",children:[["start_weight","end_weight","difference","rating"].map(e=>(0,t.jsx)(T,{label:e,children:(0,t.jsx)("input",{className:B,...el.register(`drying.${e}`)})},e)),(0,t.jsx)(T,{label:"Bemerkung",children:(0,t.jsx)("textarea",{className:F,...el.register("drying.comment")})})]})}),(0,t.jsxs)(S,{title:"11. Empfehlungen und Auflagen",children:[em.fields.map((e,r)=>(0,t.jsxs)("div",{className:"mb-3 grid gap-3 rounded-lg border border-border p-4 md:grid-cols-4",children:[(0,t.jsx)("input",{className:B,placeholder:"Nummer",...el.register(`recommendations.${r}.number`)}),(0,t.jsx)("input",{className:B,placeholder:"Text",...el.register(`recommendations.${r}.text`)}),(0,t.jsx)("input",{type:"date",className:B,...el.register(`recommendations.${r}.deadline`)}),(0,t.jsx)("input",{className:B,placeholder:"Status",...el.register(`recommendations.${r}.status`)})]},e.id)),(0,t.jsx)(_,{type:"button",icon:(0,t.jsx)(c.Plus,{className:"h-4 w-4"}),onClick:()=>em.append({number:em.fields.length+1,text:"",deadline:"",status:"offen"}),children:"Zeile hinzufuegen"})]}),(0,t.jsxs)(S,{title:"12. Bilder und Anlagen",children:[(0,t.jsx)("div",{className:"grid gap-3 md:grid-cols-2",children:k.map(e=>(0,t.jsxs)("label",{className:"rounded-lg border border-dashed border-primary/40 p-4 transition hover:border-primary hover:bg-background",children:[(0,t.jsx)(h.UploadCloud,{className:"mb-2 h-5 w-5 text-primary"}),e,Z===e&&(0,t.jsx)("span",{className:"ml-2 text-sm text-text-light",children:"Upload..."}),(0,t.jsx)("input",{type:"file",multiple:!0,className:"mt-3 block w-full text-sm",onChange:t=>ek(t.target.files,e)})]},e))}),(0,t.jsx)("div",{className:"mt-5 grid gap-3 md:grid-cols-2",children:eh.fields.map((e,r)=>{let a=String(el.watch(`attachments.${r}.url`)??""),n=a&&/\.(png|jpe?g|webp|svg)$/i.test(a)?`${N.API_BASE.replace("/api/v1","")}${a}`:"";return(0,t.jsxs)("div",{className:"rounded-lg border border-border p-4",children:[n&&(0,t.jsx)("img",{src:n,alt:String(el.watch(`attachments.${r}.filename`)??""),className:"mb-3 max-h-56 w-full rounded-lg border border-border object-contain"}),(0,t.jsxs)("div",{className:"flex justify-between gap-3",children:[(0,t.jsx)("strong",{children:String(el.watch(`attachments.${r}.filename`)??"")}),(0,t.jsx)("button",{type:"button",onClick:()=>eh.remove(r),children:(0,t.jsx)(g.X,{className:"h-4 w-4 text-danger"})})]}),(0,t.jsx)("input",{className:`${B} mt-3`,placeholder:"Beschreibung",...el.register(`attachments.${r}.description`)}),(0,t.jsx)("input",{className:`${B} mt-3`,placeholder:"Reihenfolge",...el.register(`attachments.${r}.order`)})]},e.id)})})]}),U&&(0,t.jsxs)("section",{className:"rounded-lg border border-border bg-surface p-5 shadow-soft",children:[(0,t.jsx)("h2",{className:"text-xl font-semibold",children:"Pruefergebnis"}),(0,t.jsxs)("div",{className:"mt-4 grid gap-4 md:grid-cols-3",children:[(0,t.jsx)(P,{title:"Fehler",items:U.errors,tone:"danger"}),(0,t.jsx)(P,{title:"Warnungen",items:U.warnings,tone:"warning"}),(0,t.jsxs)("div",{children:[(0,t.jsx)("h3",{className:"font-semibold text-success",children:"Vollstaendige Bereiche"}),U.complete_sections.map(e=>(0,t.jsx)("p",{className:"mt-2 text-sm",children:e},e))]})]})]}),ep.isError&&R&&(0,t.jsx)("div",{className:"fixed right-4 top-4 z-50 max-w-md rounded-lg border border-danger/30 bg-white p-4 text-sm text-danger shadow-soft",children:R}),(0,t.jsx)("fieldset",{disabled:eg,className:eg?"pointer-events-none contents opacity-80":"contents"}),(0,t.jsx)("div",{className:"fixed inset-x-0 bottom-0 z-40 border-t border-border bg-surface/95 px-4 py-3 shadow-soft backdrop-blur",children:(0,t.jsxs)("div",{className:"mx-auto flex max-w-7xl flex-wrap items-center justify-between gap-3",children:[(0,t.jsxs)("div",{className:"text-sm text-text-light",children:[(0,t.jsx)("p",{children:y?`Automatisch gespeichert um ${y}`:"Autosave startet nach Ausfuellen der Pflichtfelder."}),ev().length>0&&(0,t.jsxs)("p",{className:"text-danger",children:["Fehlt: ",ev().map(([,e])=>e.label).join(", ")]}),R&&(0,t.jsx)("p",{className:"text-primary-dark",children:R})]}),(0,t.jsxs)("div",{className:"flex flex-wrap gap-2",children:[(0,t.jsx)(_,{type:"submit",disabled:eg,disabledReason:"Freigegebene und abgeschlossene Validierungen sind schreibgeschuetzt",icon:(0,t.jsx)(u.Save,{className:"h-4 w-4"}),state:O,loadingText:"Speichern...",successText:"Gespeichert",children:"Entwurf speichern"}),(0,t.jsx)(_,{type:"button",disabled:eg,disabledReason:"Freigegebene und abgeschlossene Validierungen sind schreibgeschuetzt",icon:(0,t.jsx)(m,{className:"h-4 w-4"}),state:L,loadingText:"Pruefung laeuft...",successText:"Geprueft",onClick:ew,children:"Bericht pruefen"}),(0,t.jsx)(_,{type:"button",variant:"primary",icon:(0,t.jsx)(o,{className:"h-4 w-4"}),onClick:()=>b?window.location.assign(`/validations/${b}/preview`):ey(),children:"HTML-Vorschau"}),(0,t.jsx)(_,{type:"button",icon:(0,t.jsx)(d.Download,{className:"h-4 w-4"}),state:Q,loadingText:"PDF wird erzeugt...",successText:"PDF erzeugt",onClick:()=>b?eE():ey(),children:"PDF herunterladen"})]})]})})]})}function C({form:e,path:r}){return(0,t.jsxs)("div",{className:"mt-3 grid gap-3 rounded-lg border border-border p-4 md:grid-cols-[1fr_180px_1fr]",children:[(0,t.jsx)("input",{className:B,readOnly:!0,...e.register(`${r}.text`)}),(0,t.jsx)("select",{className:B,...e.register(`${r}.value`),children:y.map(e=>(0,t.jsx)("option",{value:e,children:"yes"===e?"Ja":"no"===e?"Nein":"Nicht zutreffend"},e))}),(0,t.jsx)("input",{className:B,placeholder:"Kommentar",...e.register(`${r}.comment`)})]})}function P({title:e,items:r,tone:a}){return(0,t.jsxs)("div",{children:[(0,t.jsx)("h3",{className:`font-semibold ${"danger"===a?"text-danger":"text-warning"}`,children:e}),0===r.length?(0,t.jsx)("p",{className:"mt-2 text-sm text-text-light",children:"Keine Eintraege."}):r.map(e=>(0,t.jsxs)("p",{className:"mt-2 text-sm",children:[e.section,": ",e.message]},`${e.field}-${e.message}`))]})}function M({form:e,index:r}){return(0,t.jsxs)("div",{className:"mb-3 grid gap-3 rounded-lg border border-border p-4 md:grid-cols-[80px_1fr]",children:[(0,t.jsx)("input",{type:"checkbox",className:"h-6 w-6",...e.register(`programs.${r}.selected`)}),(0,t.jsx)("input",{className:B,...e.register(`programs.${r}.name`)})]})}function D({form:e,index:r}){return(0,t.jsxs)("div",{className:"mb-4 rounded-lg border border-border p-4",children:[(0,t.jsxs)("h3",{className:"font-semibold",children:["Testlauf ",r+1]}),(0,t.jsxs)("div",{className:"mt-3 grid gap-3 md:grid-cols-2",children:[(0,t.jsx)("input",{className:B,placeholder:"Beladungsmuster",...e.register(`loading_patterns.${r}.pattern`)}),(0,t.jsx)("input",{className:B,placeholder:"Beschreibung",...e.register(`loading_patterns.${r}.description`)}),(0,t.jsx)("input",{type:"file",multiple:!0,className:"rounded-lg border border-border p-3 md:col-span-2"})]})]})}function V({form:e,index:r}){return(0,t.jsxs)("div",{className:"mb-4 rounded-lg border border-border p-4",children:[(0,t.jsx)("h3",{className:"font-semibold",children:String(e.watch(`measurement_data.${r}.name`)??"")}),(0,t.jsxs)("div",{className:"mt-3 grid gap-3 md:grid-cols-3",children:[["start_time","end_time","duration","leak_rate","min_temperature","max_temperature","temperature_band","equilibration_time","holding_time","pressure","result"].map(a=>(0,t.jsx)("input",{className:B,placeholder:a,...e.register(`measurement_data.${r}.${a}`)},a)),(0,t.jsx)("input",{type:"file",multiple:!0,accept:".csv,.pdf",className:"rounded-lg border border-border p-3 md:col-span-3"})]})]})}e.s(["ValidationEditor",0,$,"default",0,$],57344)}]); \ No newline at end of file diff --git a/validation-suite/frontend/atlas/.next/trace b/validation-suite/frontend/atlas/.next/trace index 919950e3..df4f98dc 100644 --- a/validation-suite/frontend/atlas/.next/trace +++ b/validation-suite/frontend/atlas/.next/trace @@ -1 +1 @@ -[{"name":"generate-buildid","duration":156,"timestamp":3356103719887,"id":4,"parentId":1,"tags":{},"startTime":1783859529387,"traceId":"493a90649c439484"},{"name":"load-custom-routes","duration":206,"timestamp":3356103720101,"id":5,"parentId":1,"tags":{},"startTime":1783859529388,"traceId":"493a90649c439484"},{"name":"create-dist-dir","duration":94,"timestamp":3356103720319,"id":6,"parentId":1,"tags":{},"startTime":1783859529388,"traceId":"493a90649c439484"},{"name":"clean","duration":197016,"timestamp":3356103721475,"id":7,"parentId":1,"tags":{},"startTime":1783859529389,"traceId":"493a90649c439484"},{"name":"discover-routes","duration":4559,"timestamp":3356103924348,"id":8,"parentId":1,"tags":{},"startTime":1783859529592,"traceId":"493a90649c439484"},{"name":"create-root-mapping","duration":36,"timestamp":3356103928930,"id":9,"parentId":1,"tags":{},"startTime":1783859529597,"traceId":"493a90649c439484"},{"name":"generate-route-types","duration":8738,"timestamp":3356103929880,"id":10,"parentId":1,"tags":{},"startTime":1783859529597,"traceId":"493a90649c439484"},{"name":"public-dir-conflict-check","duration":65,"timestamp":3356103938656,"id":11,"parentId":1,"tags":{},"startTime":1783859529606,"traceId":"493a90649c439484"},{"name":"generate-routes-manifest","duration":1078,"timestamp":3356103938757,"id":12,"parentId":1,"tags":{},"startTime":1783859529606,"traceId":"493a90649c439484"},{"name":"run-turbopack","duration":2171728,"timestamp":3356103942910,"id":14,"parentId":1,"tags":{},"startTime":1783859529610,"traceId":"493a90649c439484"},{"name":"turbopack-build-events","duration":43,"timestamp":3356104086867,"id":15,"parentId":1,"tags":{},"startTime":1783859529754,"traceId":"493a90649c439484"},{"name":"run-typescript","duration":1646712,"timestamp":3356106134005,"id":16,"parentId":1,"tags":{},"startTime":1783859531802,"traceId":"493a90649c439484"},{"name":"generate-required-server-files","duration":834,"timestamp":3356107781005,"id":18,"parentId":1,"tags":{},"startTime":1783859533449,"traceId":"493a90649c439484"},{"name":"check-static-error-page","duration":5785,"timestamp":3356107792493,"id":20,"parentId":19,"tags":{},"startTime":1783859533460,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":178650,"timestamp":3356107801447,"id":48,"parentId":22,"tags":{},"startTime":1783859533469,"traceId":"493a90649c439484"},{"name":"check-page","duration":185393,"timestamp":3356107794772,"id":22,"parentId":19,"tags":{"page":"/_global-error"},"startTime":1783859533462,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":223214,"timestamp":3356107806056,"id":56,"parentId":38,"tags":{},"startTime":1783859533474,"traceId":"493a90649c439484"},{"name":"check-page","duration":231716,"timestamp":3356107797582,"id":38,"parentId":19,"tags":{"page":"/login"},"startTime":1783859533465,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":230550,"timestamp":3356107801977,"id":49,"parentId":39,"tags":{},"startTime":1783859533470,"traceId":"493a90649c439484"},{"name":"check-page","duration":234888,"timestamp":3356107797671,"id":39,"parentId":19,"tags":{"page":"/api/login"},"startTime":1783859533465,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":230495,"timestamp":3356107802118,"id":51,"parentId":41,"tags":{},"startTime":1783859533470,"traceId":"493a90649c439484"},{"name":"check-page","duration":234815,"timestamp":3356107797807,"id":41,"parentId":19,"tags":{"page":"/api/me"},"startTime":1783859533465,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":230320,"timestamp":3356107802357,"id":55,"parentId":45,"tags":{},"startTime":1783859533470,"traceId":"493a90649c439484"},{"name":"check-page","duration":234659,"timestamp":3356107798040,"id":45,"parentId":19,"tags":{"page":"/icon.svg"},"startTime":1783859533466,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":230006,"timestamp":3356107806084,"id":57,"parentId":46,"tags":{},"startTime":1783859533474,"traceId":"493a90649c439484"},{"name":"check-page","duration":237933,"timestamp":3356107798200,"id":46,"parentId":19,"tags":{"page":"/"},"startTime":1783859533466,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":235010,"timestamp":3356107801258,"id":47,"parentId":21,"tags":{},"startTime":1783859533469,"traceId":"493a90649c439484"},{"name":"check-page","duration":242634,"timestamp":3356107793656,"id":21,"parentId":19,"tags":{"page":"/_not-found"},"startTime":1783859533461,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":243370,"timestamp":3356107806101,"id":62,"parentId":27,"tags":{},"startTime":1783859533474,"traceId":"493a90649c439484"},{"name":"check-page","duration":252905,"timestamp":3356107796597,"id":27,"parentId":19,"tags":{"page":"/documents"},"startTime":1783859533464,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":243474,"timestamp":3356107806100,"id":61,"parentId":26,"tags":{},"startTime":1783859533474,"traceId":"493a90649c439484"},{"name":"check-page","duration":253057,"timestamp":3356107796538,"id":26,"parentId":19,"tags":{"page":"/devices"},"startTime":1783859533464,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":248880,"timestamp":3356107806105,"id":64,"parentId":29,"tags":{},"startTime":1783859533474,"traceId":"493a90649c439484"},{"name":"check-page","duration":258294,"timestamp":3356107796713,"id":29,"parentId":19,"tags":{"page":"/locations"},"startTime":1783859533464,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":254043,"timestamp":3356107802067,"id":50,"parentId":40,"tags":{},"startTime":1783859533470,"traceId":"493a90649c439484"},{"name":"check-page","duration":258420,"timestamp":3356107797733,"id":40,"parentId":19,"tags":{"page":"/api/logout"},"startTime":1783859533465,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":254048,"timestamp":3356107802166,"id":52,"parentId":42,"tags":{},"startTime":1783859533470,"traceId":"493a90649c439484"},{"name":"check-page","duration":258364,"timestamp":3356107797860,"id":42,"parentId":19,"tags":{"page":"/api/report-settings/preview"},"startTime":1783859533465,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":254042,"timestamp":3356107802226,"id":53,"parentId":43,"tags":{},"startTime":1783859533470,"traceId":"493a90649c439484"},{"name":"check-page","duration":258370,"timestamp":3356107797913,"id":43,"parentId":19,"tags":{"page":"/api/report-settings"},"startTime":1783859533465,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":254099,"timestamp":3356107806103,"id":63,"parentId":28,"tags":{},"startTime":1783859533474,"traceId":"493a90649c439484"},{"name":"check-page","duration":263578,"timestamp":3356107796651,"id":28,"parentId":19,"tags":{"page":"/equipment"},"startTime":1783859533464,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":254185,"timestamp":3356107806106,"id":65,"parentId":30,"tags":{},"startTime":1783859533474,"traceId":"493a90649c439484"},{"name":"check-page","duration":263510,"timestamp":3356107796789,"id":30,"parentId":19,"tags":{"page":"/profile/security"},"startTime":1783859533464,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":262571,"timestamp":3356107806115,"id":70,"parentId":35,"tags":{},"startTime":1783859533474,"traceId":"493a90649c439484"},{"name":"check-page","duration":271422,"timestamp":3356107797301,"id":35,"parentId":19,"tags":{"page":"/validations/new"},"startTime":1783859533465,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":262692,"timestamp":3356107806096,"id":59,"parentId":24,"tags":{},"startTime":1783859533474,"traceId":"493a90649c439484"},{"name":"check-page","duration":272412,"timestamp":3356107796401,"id":24,"parentId":19,"tags":{"page":"/customers"},"startTime":1783859533464,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":262739,"timestamp":3356107806112,"id":69,"parentId":34,"tags":{},"startTime":1783859533474,"traceId":"493a90649c439484"},{"name":"check-page","duration":271645,"timestamp":3356107797218,"id":34,"parentId":19,"tags":{"page":"/validations/[id]/preview"},"startTime":1783859533465,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":264880,"timestamp":3356107806098,"id":60,"parentId":25,"tags":{},"startTime":1783859533474,"traceId":"493a90649c439484"},{"name":"check-page","duration":274553,"timestamp":3356107796467,"id":25,"parentId":19,"tags":{"page":"/dashboard"},"startTime":1783859533464,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":271921,"timestamp":3356107802275,"id":54,"parentId":44,"tags":{},"startTime":1783859533470,"traceId":"493a90649c439484"},{"name":"check-page","duration":276265,"timestamp":3356107797968,"id":44,"parentId":19,"tags":{"page":"/api/v1/[...path]"},"startTime":1783859533466,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":268178,"timestamp":3356107806116,"id":71,"parentId":36,"tags":{},"startTime":1783859533474,"traceId":"493a90649c439484"},{"name":"check-page","duration":276937,"timestamp":3356107797367,"id":36,"parentId":19,"tags":{"page":"/validations"},"startTime":1783859533465,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":271484,"timestamp":3356107806118,"id":72,"parentId":37,"tags":{},"startTime":1783859533474,"traceId":"493a90649c439484"},{"name":"check-page","duration":280162,"timestamp":3356107797473,"id":37,"parentId":19,"tags":{"page":"/validations/quick-start"},"startTime":1783859533465,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":271581,"timestamp":3356107806093,"id":58,"parentId":23,"tags":{},"startTime":1783859533474,"traceId":"493a90649c439484"},{"name":"check-page","duration":281470,"timestamp":3356107796212,"id":23,"parentId":19,"tags":{"page":"/contacts"},"startTime":1783859533464,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":278838,"timestamp":3356107806111,"id":68,"parentId":33,"tags":{},"startTime":1783859533474,"traceId":"493a90649c439484"},{"name":"check-page","duration":287867,"timestamp":3356107797105,"id":33,"parentId":19,"tags":{"page":"/validations/[id]/edit"},"startTime":1783859533465,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":281666,"timestamp":3356107806108,"id":66,"parentId":31,"tags":{},"startTime":1783859533474,"traceId":"493a90649c439484"},{"name":"check-page","duration":290938,"timestamp":3356107796860,"id":31,"parentId":19,"tags":{"page":"/settings/report-layout"},"startTime":1783859533464,"traceId":"493a90649c439484"},{"name":"is-page-static","duration":283262,"timestamp":3356107806110,"id":67,"parentId":32,"tags":{},"startTime":1783859533474,"traceId":"493a90649c439484"},{"name":"check-page","duration":292407,"timestamp":3356107797007,"id":32,"parentId":19,"tags":{"page":"/users"},"startTime":1783859533465,"traceId":"493a90649c439484"},{"name":"static-check","duration":297478,"timestamp":3356107791961,"id":19,"parentId":1,"tags":{},"startTime":1783859533460,"traceId":"493a90649c439484"},{"name":"write-routes-manifest","duration":281,"timestamp":3356108096376,"id":74,"parentId":1,"tags":{},"startTime":1783859533764,"traceId":"493a90649c439484"},{"name":"load-dotenv","duration":13,"timestamp":3356108100835,"id":77,"parentId":76,"tags":{},"startTime":1783859533768,"traceId":"493a90649c439484"},{"name":"run-export-path-map","duration":178,"timestamp":3356108101658,"id":78,"parentId":76,"tags":{},"startTime":1783859533769,"traceId":"493a90649c439484"},{"name":"next-export","duration":178593,"timestamp":3356108100451,"id":76,"parentId":1,"tags":{},"startTime":1783859533768,"traceId":"493a90649c439484"},{"name":"move-exported-app-not-found-","duration":296,"timestamp":3356108279795,"id":79,"parentId":75,"tags":{},"startTime":1783859533947,"traceId":"493a90649c439484"},{"name":"move-exported-app-global-error-","duration":254,"timestamp":3356108280117,"id":80,"parentId":75,"tags":{},"startTime":1783859533948,"traceId":"493a90649c439484"},{"name":"static-generation","duration":183256,"timestamp":3356108097727,"id":75,"parentId":1,"tags":{},"startTime":1783859533765,"traceId":"493a90649c439484"},{"name":"write-routes-manifest","duration":220,"timestamp":3356108281045,"id":81,"parentId":1,"tags":{},"startTime":1783859533949,"traceId":"493a90649c439484"},{"name":"write-standalone-directory","duration":142210,"timestamp":3356108290603,"id":83,"parentId":1,"tags":{},"startTime":1783859533958,"traceId":"493a90649c439484"},{"name":"output-standalone","duration":142290,"timestamp":3356108290538,"id":82,"parentId":1,"tags":{},"startTime":1783859533958,"traceId":"493a90649c439484"},{"name":"print-tree-view","duration":1295,"timestamp":3356108432907,"id":84,"parentId":1,"tags":{},"startTime":1783859534100,"traceId":"493a90649c439484"},{"name":"write-route-bundle-stats","duration":4579,"timestamp":3356108434212,"id":85,"parentId":1,"tags":{},"startTime":1783859534102,"traceId":"493a90649c439484"},{"name":"telemetry-flush","duration":344140,"timestamp":3356108438803,"id":86,"parentId":1,"tags":{},"startTime":1783859534106,"traceId":"493a90649c439484"},{"name":"next-build","duration":5169127,"timestamp":3356103613869,"id":1,"tags":{"buildMode":"default","version":"16.2.10","bundler":"turbopack","has-custom-webpack-config":"false","use-build-worker":"true"},"startTime":1783859529281,"traceId":"493a90649c439484"}] +[{"name":"generate-buildid","duration":111,"timestamp":3358283214175,"id":4,"parentId":1,"tags":{},"startTime":1783861708887,"traceId":"775c1c31e4e65af7"},{"name":"load-custom-routes","duration":177,"timestamp":3358283214334,"id":5,"parentId":1,"tags":{},"startTime":1783861708887,"traceId":"775c1c31e4e65af7"},{"name":"create-dist-dir","duration":97,"timestamp":3358283214522,"id":6,"parentId":1,"tags":{},"startTime":1783861708887,"traceId":"775c1c31e4e65af7"},{"name":"clean","duration":179121,"timestamp":3358283215646,"id":7,"parentId":1,"tags":{},"startTime":1783861708888,"traceId":"775c1c31e4e65af7"},{"name":"discover-routes","duration":4177,"timestamp":3358283400804,"id":8,"parentId":1,"tags":{},"startTime":1783861709074,"traceId":"775c1c31e4e65af7"},{"name":"create-root-mapping","duration":48,"timestamp":3358283405015,"id":9,"parentId":1,"tags":{},"startTime":1783861709078,"traceId":"775c1c31e4e65af7"},{"name":"generate-route-types","duration":9475,"timestamp":3358283405841,"id":10,"parentId":1,"tags":{},"startTime":1783861709079,"traceId":"775c1c31e4e65af7"},{"name":"public-dir-conflict-check","duration":44,"timestamp":3358283415357,"id":11,"parentId":1,"tags":{},"startTime":1783861709088,"traceId":"775c1c31e4e65af7"},{"name":"generate-routes-manifest","duration":1346,"timestamp":3358283415493,"id":12,"parentId":1,"tags":{},"startTime":1783861709088,"traceId":"775c1c31e4e65af7"},{"name":"run-turbopack","duration":2195956,"timestamp":3358283419063,"id":14,"parentId":1,"tags":{},"startTime":1783861709092,"traceId":"775c1c31e4e65af7"},{"name":"turbopack-build-events","duration":32,"timestamp":3358283557205,"id":15,"parentId":1,"tags":{},"startTime":1783861709230,"traceId":"775c1c31e4e65af7"},{"name":"run-typescript","duration":1789648,"timestamp":3358285625484,"id":16,"parentId":1,"tags":{},"startTime":1783861711298,"traceId":"775c1c31e4e65af7"},{"name":"generate-required-server-files","duration":569,"timestamp":3358287415719,"id":18,"parentId":1,"tags":{},"startTime":1783861713089,"traceId":"775c1c31e4e65af7"},{"name":"check-static-error-page","duration":8021,"timestamp":3358287425069,"id":20,"parentId":19,"tags":{},"startTime":1783861713098,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":172897,"timestamp":3358287435564,"id":51,"parentId":22,"tags":{},"startTime":1783861713108,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":180830,"timestamp":3358287427686,"id":22,"parentId":19,"tags":{"page":"/_global-error"},"startTime":1783861713101,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":214562,"timestamp":3358287435958,"id":59,"parentId":47,"tags":{},"startTime":1783861713109,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":217724,"timestamp":3358287432841,"id":47,"parentId":19,"tags":{"page":"/api/v1/[...path]"},"startTime":1783861713106,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":223128,"timestamp":3358287435970,"id":60,"parentId":48,"tags":{},"startTime":1783861713109,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":226185,"timestamp":3358287432951,"id":48,"parentId":19,"tags":{"page":"/icon.svg"},"startTime":1783861713106,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":226395,"timestamp":3358287435905,"id":56,"parentId":44,"tags":{},"startTime":1783861713109,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":233136,"timestamp":3358287429198,"id":44,"parentId":19,"tags":{"page":"/api/me"},"startTime":1783861713102,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":230593,"timestamp":3358287435463,"id":50,"parentId":21,"tags":{},"startTime":1783861713108,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":240582,"timestamp":3358287425495,"id":21,"parentId":19,"tags":{"page":"/_not-found"},"startTime":1783861713098,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":230255,"timestamp":3358287435927,"id":57,"parentId":45,"tags":{},"startTime":1783861713109,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":236957,"timestamp":3358287429232,"id":45,"parentId":19,"tags":{"page":"/api/report-settings/preview"},"startTime":1783861713102,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":230348,"timestamp":3358287435886,"id":55,"parentId":43,"tags":{},"startTime":1783861713109,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":237078,"timestamp":3358287429160,"id":43,"parentId":19,"tags":{"page":"/api/logout"},"startTime":1783861713102,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":233068,"timestamp":3358287435944,"id":58,"parentId":46,"tags":{},"startTime":1783861713109,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":236327,"timestamp":3358287432698,"id":46,"parentId":19,"tags":{"page":"/api/report-settings"},"startTime":1783861713106,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":240897,"timestamp":3358287435848,"id":53,"parentId":41,"tags":{},"startTime":1783861713109,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":247734,"timestamp":3358287429060,"id":41,"parentId":19,"tags":{"page":"/api/customer-imports/preview"},"startTime":1783861713102,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":236982,"timestamp":3358287441354,"id":63,"parentId":23,"tags":{},"startTime":1783861713114,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":250478,"timestamp":3358287427920,"id":23,"parentId":19,"tags":{"page":"/contacts"},"startTime":1783861713101,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":247376,"timestamp":3358287435867,"id":54,"parentId":42,"tags":{},"startTime":1783861713109,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":254157,"timestamp":3358287429118,"id":42,"parentId":19,"tags":{"page":"/api/login"},"startTime":1783861713102,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":250603,"timestamp":3358287441375,"id":68,"parentId":28,"tags":{},"startTime":1783861713114,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":263843,"timestamp":3358287428172,"id":28,"parentId":19,"tags":{"page":"/documents"},"startTime":1783861713101,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":257235,"timestamp":3358287435828,"id":52,"parentId":40,"tags":{},"startTime":1783861713109,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":264291,"timestamp":3358287428801,"id":40,"parentId":19,"tags":{"page":"/api/customer-imports/confirm"},"startTime":1783861713102,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":251798,"timestamp":3358287441349,"id":62,"parentId":49,"tags":{},"startTime":1783861713114,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":260137,"timestamp":3358287433018,"id":49,"parentId":19,"tags":{"page":"/"},"startTime":1783861713106,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":256141,"timestamp":3358287441383,"id":70,"parentId":30,"tags":{},"startTime":1783861713114,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":269292,"timestamp":3358287428256,"id":30,"parentId":19,"tags":{"page":"/locations"},"startTime":1783861713101,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":256209,"timestamp":3358287441368,"id":66,"parentId":26,"tags":{},"startTime":1783861713114,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":269495,"timestamp":3358287428088,"id":26,"parentId":19,"tags":{"page":"/dashboard"},"startTime":1783861713101,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":258992,"timestamp":3358287441317,"id":61,"parentId":39,"tags":{},"startTime":1783861713114,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":271582,"timestamp":3358287428754,"id":39,"parentId":19,"tags":{"page":"/login"},"startTime":1783861713102,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":259435,"timestamp":3358287441364,"id":65,"parentId":25,"tags":{},"startTime":1783861713114,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":272774,"timestamp":3358287428047,"id":25,"parentId":19,"tags":{"page":"/customers"},"startTime":1783861713101,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":260737,"timestamp":3358287441396,"id":73,"parentId":33,"tags":{},"startTime":1783861713114,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":273734,"timestamp":3358287428427,"id":33,"parentId":19,"tags":{"page":"/users"},"startTime":1783861713101,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":265124,"timestamp":3358287441400,"id":74,"parentId":34,"tags":{},"startTime":1783861713114,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":278053,"timestamp":3358287428527,"id":34,"parentId":19,"tags":{"page":"/validations/[id]/edit"},"startTime":1783861713101,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":265210,"timestamp":3358287441419,"id":77,"parentId":37,"tags":{},"startTime":1783861713114,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":278005,"timestamp":3358287428632,"id":37,"parentId":19,"tags":{"page":"/validations"},"startTime":1783861713101,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":266102,"timestamp":3358287441404,"id":75,"parentId":35,"tags":{},"startTime":1783861713114,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":278975,"timestamp":3358287428566,"id":35,"parentId":19,"tags":{"page":"/validations/[id]/preview"},"startTime":1783861713101,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":266622,"timestamp":3358287441392,"id":72,"parentId":32,"tags":{},"startTime":1783861713114,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":279712,"timestamp":3358287428341,"id":32,"parentId":19,"tags":{"page":"/settings/report-layout"},"startTime":1783861713101,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":266862,"timestamp":3358287441413,"id":76,"parentId":36,"tags":{},"startTime":1783861713114,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":279694,"timestamp":3358287428602,"id":36,"parentId":19,"tags":{"page":"/validations/new"},"startTime":1783861713101,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":268012,"timestamp":3358287441379,"id":69,"parentId":29,"tags":{},"startTime":1783861713114,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":281207,"timestamp":3358287428214,"id":29,"parentId":19,"tags":{"page":"/equipment"},"startTime":1783861713101,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":269427,"timestamp":3358287441359,"id":64,"parentId":24,"tags":{},"startTime":1783861713114,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":282862,"timestamp":3358287427977,"id":24,"parentId":19,"tags":{"page":"/customers/import"},"startTime":1783861713101,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":270570,"timestamp":3358287441423,"id":78,"parentId":38,"tags":{},"startTime":1783861713114,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":283343,"timestamp":3358287428688,"id":38,"parentId":19,"tags":{"page":"/validations/quick-start"},"startTime":1783861713102,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":272296,"timestamp":3358287441372,"id":67,"parentId":27,"tags":{},"startTime":1783861713114,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":285556,"timestamp":3358287428134,"id":27,"parentId":19,"tags":{"page":"/devices"},"startTime":1783861713101,"traceId":"775c1c31e4e65af7"},{"name":"is-page-static","duration":276906,"timestamp":3358287441388,"id":71,"parentId":31,"tags":{},"startTime":1783861713114,"traceId":"775c1c31e4e65af7"},{"name":"check-page","duration":290020,"timestamp":3358287428298,"id":31,"parentId":19,"tags":{"page":"/profile/security"},"startTime":1783861713101,"traceId":"775c1c31e4e65af7"},{"name":"static-check","duration":293609,"timestamp":3358287424723,"id":19,"parentId":1,"tags":{},"startTime":1783861713098,"traceId":"775c1c31e4e65af7"},{"name":"write-routes-manifest","duration":329,"timestamp":3358287720993,"id":80,"parentId":1,"tags":{},"startTime":1783861713394,"traceId":"775c1c31e4e65af7"},{"name":"load-dotenv","duration":10,"timestamp":3358287725699,"id":83,"parentId":82,"tags":{},"startTime":1783861713399,"traceId":"775c1c31e4e65af7"},{"name":"run-export-path-map","duration":183,"timestamp":3358287726616,"id":84,"parentId":82,"tags":{},"startTime":1783861713399,"traceId":"775c1c31e4e65af7"},{"name":"next-export","duration":147130,"timestamp":3358287725266,"id":82,"parentId":1,"tags":{},"startTime":1783861713398,"traceId":"775c1c31e4e65af7"},{"name":"move-exported-app-not-found-","duration":483,"timestamp":3358287873578,"id":85,"parentId":81,"tags":{},"startTime":1783861713546,"traceId":"775c1c31e4e65af7"},{"name":"move-exported-app-global-error-","duration":299,"timestamp":3358287874094,"id":86,"parentId":81,"tags":{},"startTime":1783861713547,"traceId":"775c1c31e4e65af7"},{"name":"static-generation","duration":153111,"timestamp":3358287722201,"id":81,"parentId":1,"tags":{},"startTime":1783861713395,"traceId":"775c1c31e4e65af7"},{"name":"write-routes-manifest","duration":171,"timestamp":3358287875396,"id":87,"parentId":1,"tags":{},"startTime":1783861713548,"traceId":"775c1c31e4e65af7"},{"name":"write-standalone-directory","duration":155945,"timestamp":3358287884692,"id":89,"parentId":1,"tags":{},"startTime":1783861713558,"traceId":"775c1c31e4e65af7"},{"name":"output-standalone","duration":156021,"timestamp":3358287884633,"id":88,"parentId":1,"tags":{},"startTime":1783861713557,"traceId":"775c1c31e4e65af7"},{"name":"print-tree-view","duration":1330,"timestamp":3358288040746,"id":90,"parentId":1,"tags":{},"startTime":1783861713714,"traceId":"775c1c31e4e65af7"},{"name":"write-route-bundle-stats","duration":4772,"timestamp":3358288042086,"id":91,"parentId":1,"tags":{},"startTime":1783861713715,"traceId":"775c1c31e4e65af7"},{"name":"telemetry-flush","duration":330758,"timestamp":3358288046867,"id":92,"parentId":1,"tags":{},"startTime":1783861713720,"traceId":"775c1c31e4e65af7"},{"name":"next-build","duration":5272212,"timestamp":3358283105447,"id":1,"tags":{"buildMode":"default","version":"16.2.10","bundler":"turbopack","has-custom-webpack-config":"false","use-build-worker":"true"},"startTime":1783861708778,"traceId":"775c1c31e4e65af7"}] diff --git a/validation-suite/frontend/atlas/.next/trace-build b/validation-suite/frontend/atlas/.next/trace-build index 1362214b..12f10174 100644 --- a/validation-suite/frontend/atlas/.next/trace-build +++ b/validation-suite/frontend/atlas/.next/trace-build @@ -1 +1 @@ -[{"name":"run-turbopack","duration":2171728,"timestamp":3356103942910,"id":14,"parentId":1,"tags":{},"startTime":1783859529610,"traceId":"493a90649c439484"},{"name":"turbopack-build-events","duration":43,"timestamp":3356104086867,"id":15,"parentId":1,"tags":{},"startTime":1783859529754,"traceId":"493a90649c439484"},{"name":"run-typescript","duration":1646712,"timestamp":3356106134005,"id":16,"parentId":1,"tags":{},"startTime":1783859531802,"traceId":"493a90649c439484"},{"name":"static-check","duration":297478,"timestamp":3356107791961,"id":19,"parentId":1,"tags":{},"startTime":1783859533460,"traceId":"493a90649c439484"},{"name":"static-generation","duration":183256,"timestamp":3356108097727,"id":75,"parentId":1,"tags":{},"startTime":1783859533765,"traceId":"493a90649c439484"},{"name":"output-standalone","duration":142290,"timestamp":3356108290538,"id":82,"parentId":1,"tags":{},"startTime":1783859533958,"traceId":"493a90649c439484"},{"name":"telemetry-flush","duration":344140,"timestamp":3356108438803,"id":86,"parentId":1,"tags":{},"startTime":1783859534106,"traceId":"493a90649c439484"},{"name":"next-build","duration":5169127,"timestamp":3356103613869,"id":1,"tags":{"buildMode":"default","version":"16.2.10","bundler":"turbopack","has-custom-webpack-config":"false","use-build-worker":"true"},"startTime":1783859529281,"traceId":"493a90649c439484"}] +[{"name":"run-turbopack","duration":2195956,"timestamp":3358283419063,"id":14,"parentId":1,"tags":{},"startTime":1783861709092,"traceId":"775c1c31e4e65af7"},{"name":"turbopack-build-events","duration":32,"timestamp":3358283557205,"id":15,"parentId":1,"tags":{},"startTime":1783861709230,"traceId":"775c1c31e4e65af7"},{"name":"run-typescript","duration":1789648,"timestamp":3358285625484,"id":16,"parentId":1,"tags":{},"startTime":1783861711298,"traceId":"775c1c31e4e65af7"},{"name":"static-check","duration":293609,"timestamp":3358287424723,"id":19,"parentId":1,"tags":{},"startTime":1783861713098,"traceId":"775c1c31e4e65af7"},{"name":"static-generation","duration":153111,"timestamp":3358287722201,"id":81,"parentId":1,"tags":{},"startTime":1783861713395,"traceId":"775c1c31e4e65af7"},{"name":"output-standalone","duration":156021,"timestamp":3358287884633,"id":88,"parentId":1,"tags":{},"startTime":1783861713557,"traceId":"775c1c31e4e65af7"},{"name":"telemetry-flush","duration":330758,"timestamp":3358288046867,"id":92,"parentId":1,"tags":{},"startTime":1783861713720,"traceId":"775c1c31e4e65af7"},{"name":"next-build","duration":5272212,"timestamp":3358283105447,"id":1,"tags":{"buildMode":"default","version":"16.2.10","bundler":"turbopack","has-custom-webpack-config":"false","use-build-worker":"true"},"startTime":1783861708778,"traceId":"775c1c31e4e65af7"}] diff --git a/validation-suite/frontend/atlas/.next/types/routes.d.ts b/validation-suite/frontend/atlas/.next/types/routes.d.ts index b50aade9..d5d3d644 100644 --- a/validation-suite/frontend/atlas/.next/types/routes.d.ts +++ b/validation-suite/frontend/atlas/.next/types/routes.d.ts @@ -1,8 +1,8 @@ // This file is generated automatically by Next.js // Do not edit this file manually -type AppRoutes = "/" | "/contacts" | "/customers" | "/dashboard" | "/devices" | "/documents" | "/equipment" | "/locations" | "/login" | "/profile/security" | "/settings/report-layout" | "/users" | "/validations" | "/validations/[id]/edit" | "/validations/[id]/preview" | "/validations/new" | "/validations/quick-start" -type AppRouteHandlerRoutes = "/api/login" | "/api/logout" | "/api/me" | "/api/report-settings" | "/api/report-settings/preview" | "/api/v1/[...path]" +type AppRoutes = "/" | "/contacts" | "/customers" | "/customers/import" | "/dashboard" | "/devices" | "/documents" | "/equipment" | "/locations" | "/login" | "/profile/security" | "/settings/report-layout" | "/users" | "/validations" | "/validations/[id]/edit" | "/validations/[id]/preview" | "/validations/new" | "/validations/quick-start" +type AppRouteHandlerRoutes = "/api/customer-imports/confirm" | "/api/customer-imports/preview" | "/api/login" | "/api/logout" | "/api/me" | "/api/report-settings" | "/api/report-settings/preview" | "/api/v1/[...path]" type PageRoutes = never type LayoutRoutes = "/" type RedirectRoutes = never @@ -12,6 +12,8 @@ type Routes = AppRoutes | PageRoutes | LayoutRoutes | RedirectRoutes | RewriteRo interface ParamMap { "/": {} + "/api/customer-imports/confirm": {} + "/api/customer-imports/preview": {} "/api/login": {} "/api/logout": {} "/api/me": {} @@ -20,6 +22,7 @@ interface ParamMap { "/api/v1/[...path]": { "path": string[]; } "/contacts": {} "/customers": {} + "/customers/import": {} "/dashboard": {} "/devices": {} "/documents": {} diff --git a/validation-suite/frontend/atlas/.next/types/validator.ts b/validation-suite/frontend/atlas/.next/types/validator.ts index 69487a49..22e00377 100644 --- a/validation-suite/frontend/atlas/.next/types/validator.ts +++ b/validation-suite/frontend/atlas/.next/types/validator.ts @@ -56,6 +56,15 @@ type RouteHandlerConfig> = Specific + const handler = {} as typeof import("../../app/(app)/customers/import/page.js") + type __Check = __IsExpected + // @ts-ignore + type __Unused = __Check +} + // Validate ../../app/(app)/customers/page.tsx { type __IsExpected> = Specific @@ -200,6 +209,24 @@ type RouteHandlerConfig> = Specific + const handler = {} as typeof import("../../app/api/customer-imports/confirm/route.js") + type __Check = __IsExpected + // @ts-ignore + type __Unused = __Check +} + +// Validate ../../app/api/customer-imports/preview/route.ts +{ + type __IsExpected> = Specific + const handler = {} as typeof import("../../app/api/customer-imports/preview/route.js") + type __Check = __IsExpected + // @ts-ignore + type __Unused = __Check +} + // Validate ../../app/api/login/route.ts { type __IsExpected> = Specific diff --git a/validation-suite/frontend/atlas/app/(app)/customers/import/page.tsx b/validation-suite/frontend/atlas/app/(app)/customers/import/page.tsx new file mode 100644 index 00000000..3da4cde4 --- /dev/null +++ b/validation-suite/frontend/atlas/app/(app)/customers/import/page.tsx @@ -0,0 +1,288 @@ +"use client"; + +import { AlertTriangle, CheckCircle2, FileUp, RotateCcw, UploadCloud } from "lucide-react"; +import Link from "next/link"; +import { useMemo, useState } from "react"; +import { useAuth } from "@/components/auth"; + +type ImportAction = "NEU_ANLEGEN" | "BESTEHENDEN_AKTUALISIEREN" | "UEBERSPRINGEN" | "ERROR"; + +type PreviewRow = { + row_number: number; + source: Record; + recognized: { + customer: Record; + location: Record; + contact: Record; + }; + errors: string[]; + action: ImportAction; + message: string; + matches: Record; + allowed_actions: ImportAction[]; +}; + +type PreviewResult = { + columns: string[]; + target_fields: Record; + mapping: Record; + rows: PreviewRow[]; + summary: Record; + warnings: string[]; +}; + +type ConfirmResult = { + summary: Record; + rows: { row_number: number; customer_name?: string; action: ImportAction; result: string; message: string }[]; +}; + +const actionLabels: Record = { + NEU_ANLEGEN: "Neu anlegen", + BESTEHENDEN_AKTUALISIEREN: "Aktualisieren", + UEBERSPRINGEN: "Überspringen", + ERROR: "Fehler" +}; + +const filterOptions = [ + { value: "all", label: "Alle" }, + { value: "NEU_ANLEGEN", label: "Neu" }, + { value: "BESTEHENDEN_AKTUALISIEREN", label: "Aktualisieren" }, + { value: "duplicates", label: "Mögliche Dubletten" }, + { value: "ERROR", label: "Fehler" }, + { value: "UEBERSPRINGEN", label: "Überspringen" } +]; + +async function readError(response: Response, fallback: string) { + try { + const data = (await response.json()) as { detail?: string }; + return data.detail ?? fallback; + } catch { + return fallback; + } +} + +export default function CustomerImportPage() { + const { user } = useAuth(); + const [file, setFile] = useState(null); + const [preview, setPreview] = useState(null); + const [mapping, setMapping] = useState>({}); + const [rowActions, setRowActions] = useState>({}); + const [filter, setFilter] = useState("all"); + const [ignoreEmptyValues, setIgnoreEmptyValues] = useState(true); + const [result, setResult] = useState(null); + const [loading, setLoading] = useState(""); + const [error, setError] = useState(""); + + const rows = useMemo(() => { + const all = preview?.rows ?? []; + if (filter === "all") return all; + if (filter === "duplicates") return all.filter((row) => row.matches && Object.keys(row.matches).length > 0 && row.action === "UEBERSPRINGEN"); + return all.filter((row) => (rowActions[String(row.row_number)] ?? row.action) === filter); + }, [filter, preview?.rows, rowActions]); + + if (user?.role !== "admin") { + return
Nur fuer Administratoren verfuegbar.
; + } + + async function uploadPreview(nextMapping?: Record) { + if (!file) { + setError("Bitte zuerst eine Datei auswählen."); + return; + } + setLoading("preview"); + setError(""); + setResult(null); + const body = new FormData(); + body.set("file", file); + if (nextMapping) body.set("mapping", JSON.stringify(nextMapping)); + const response = await fetch("/api/customer-imports/preview", { method: "POST", body, credentials: "include" }); + if (!response.ok) { + setError(await readError(response, "Importvorschau konnte nicht erzeugt werden.")); + setLoading(""); + return; + } + const data = (await response.json()) as PreviewResult; + setPreview(data); + setMapping(data.mapping); + setRowActions(Object.fromEntries(data.rows.map((row) => [String(row.row_number), row.action]))); + setLoading(""); + } + + async function confirmImport() { + if (!file || !preview) return; + setLoading("confirm"); + setError(""); + const body = new FormData(); + body.set("file", file); + body.set("mapping", JSON.stringify(mapping)); + body.set("row_actions", JSON.stringify(rowActions)); + body.set("ignore_empty_values", String(ignoreEmptyValues)); + const response = await fetch("/api/customer-imports/confirm", { method: "POST", body, credentials: "include" }); + if (!response.ok) { + setError(await readError(response, "Kundenimport konnte nicht ausgeführt werden.")); + setLoading(""); + return; + } + setResult((await response.json()) as ConfirmResult); + setLoading(""); + } + + function reset() { + setFile(null); + setPreview(null); + setMapping({}); + setRowActions({}); + setResult(null); + setError(""); + } + + return ( +
+
+
+

Kunden importieren

+

CSV- oder XLSX-Kundenstamm kontrolliert prüfen und übernehmen.

+
+ Zur Kundenliste +
+ + {error ?
{error}
: null} + +
+
+
+
+

1. Datei hochladen

+

Erlaubt sind UTF-8 CSV und XLSX bis 5 MB. Der Upload verändert noch keine Daten.

+ +
+ + +
+
+
+
+ + {preview ? ( + <> +
+

2. Spalten zuordnen

+

Bitte automatische Zuordnung prüfen und bei Bedarf ändern.

+ {preview.warnings.map((warning) => ( +
+ {warning} +
+ ))} +
+ {preview.columns.map((column) => ( + + ))} +
+ +
+ +
+

3. Importvorschau prüfen

+
+ {filterOptions.map((item) => ( + + ))} +
+
+ + + + + + {rows.map((row) => { + const currentAction = rowActions[String(row.row_number)] ?? row.action; + return ( + + + + + + + + + ); + })} + +
ZeileKundeStandortAnsprechpartnerHinweisAktion
{row.row_number}{row.recognized.customer.name || "nicht erkannt"}
{row.recognized.customer.external_id || row.recognized.customer.email}
{row.recognized.location.name}
{row.recognized.location.postal_code} {row.recognized.location.city}
{row.recognized.contact.full_name || "nicht erfasst"}{row.errors.length ? {row.errors.join(", ")} : row.message} + +
+
+
+ +
+

4. Import bestätigen

+
+ + + + + +
+ + +
+ + ) : null} + + {result ? ( +
+

Import abgeschlossen

+
+ + + + + + +
+
+ ) : null} +
+ ); +} + +function Stat({ label, value }: { label: string; value?: number }) { + return
{value ?? 0}
{label}
; +} diff --git a/validation-suite/frontend/atlas/app/(app)/customers/page.tsx b/validation-suite/frontend/atlas/app/(app)/customers/page.tsx index b966bb89..03671abf 100644 --- a/validation-suite/frontend/atlas/app/(app)/customers/page.tsx +++ b/validation-suite/frontend/atlas/app/(app)/customers/page.tsx @@ -6,6 +6,8 @@ import { Customer } from "@/lib/api"; const schema = z.object({ customer_type: z.enum(["practice", "clinic"]), + source_system: z.string().optional().nullable(), + external_id: z.string().optional().nullable(), name: z.string().min(2), street: z.string().optional().nullable(), postal_code: z.string().optional().nullable(), @@ -25,6 +27,7 @@ export default function CustomersPage() { endpoint="/customers" columns={[ { key: "name", label: "Name" }, + { key: "external_id", label: "Kundennr." }, { key: "customer_type", label: "Typ" }, { key: "city", label: "Ort" }, { key: "phone", label: "Telefon" }, @@ -32,6 +35,8 @@ export default function CustomersPage() { ]} fields={[ { name: "customer_type", label: "Typ", type: "select", options: [{ label: "Praxis", value: "practice" }, { label: "Klinik", value: "clinic" }] }, + { name: "source_system", label: "Quellsystem" }, + { name: "external_id", label: "Kundennummer" }, { name: "name", label: "Name", required: true }, { name: "street", label: "Adresse" }, { name: "postal_code", label: "PLZ" }, @@ -43,8 +48,7 @@ export default function CustomersPage() { { name: "notes", label: "Bemerkungen", type: "textarea" } ]} schema={schema} - emptyValues={{ customer_type: "practice", name: "", street: "", postal_code: "", city: "", phone: "", email: "", hygiene_officer: "", quality_manager: "", notes: "" }} + emptyValues={{ customer_type: "practice", source_system: "", external_id: "", name: "", street: "", postal_code: "", city: "", phone: "", email: "", hygiene_officer: "", quality_manager: "", notes: "" }} /> ); } - diff --git a/validation-suite/frontend/atlas/app/api/customer-imports/confirm/route.ts b/validation-suite/frontend/atlas/app/api/customer-imports/confirm/route.ts new file mode 100644 index 00000000..4d0a5a50 --- /dev/null +++ b/validation-suite/frontend/atlas/app/api/customer-imports/confirm/route.ts @@ -0,0 +1,21 @@ +import { cookies } from "next/headers"; +import { NextRequest, NextResponse } from "next/server"; +import { AUTH_COOKIE_NAME } from "@/lib/auth"; + +const mercuryBase = `${process.env.MERCURY_INTERNAL_URL ?? "http://mercury-api:8000"}/api/v1`; + +export async function POST(request: NextRequest) { + const cookieStore = await cookies(); + const token = cookieStore.get(AUTH_COOKIE_NAME)?.value; + if (!token) { + return NextResponse.json({ detail: "Not authenticated" }, { status: 401 }); + } + const response = await fetch(`${mercuryBase}/customer-imports/confirm`, { + method: "POST", + headers: { Authorization: `Bearer ${token}` }, + body: await request.formData(), + cache: "no-store" + }); + const data = await response.json(); + return NextResponse.json(data, { status: response.status }); +} diff --git a/validation-suite/frontend/atlas/app/api/customer-imports/preview/route.ts b/validation-suite/frontend/atlas/app/api/customer-imports/preview/route.ts new file mode 100644 index 00000000..f5c4cc9d --- /dev/null +++ b/validation-suite/frontend/atlas/app/api/customer-imports/preview/route.ts @@ -0,0 +1,21 @@ +import { cookies } from "next/headers"; +import { NextRequest, NextResponse } from "next/server"; +import { AUTH_COOKIE_NAME } from "@/lib/auth"; + +const mercuryBase = `${process.env.MERCURY_INTERNAL_URL ?? "http://mercury-api:8000"}/api/v1`; + +export async function POST(request: NextRequest) { + const cookieStore = await cookies(); + const token = cookieStore.get(AUTH_COOKIE_NAME)?.value; + if (!token) { + return NextResponse.json({ detail: "Not authenticated" }, { status: 401 }); + } + const response = await fetch(`${mercuryBase}/customer-imports/preview`, { + method: "POST", + headers: { Authorization: `Bearer ${token}` }, + body: await request.formData(), + cache: "no-store" + }); + const data = await response.json(); + return NextResponse.json(data, { status: response.status }); +} diff --git a/validation-suite/frontend/atlas/components/app-shell.tsx b/validation-suite/frontend/atlas/components/app-shell.tsx index 114b53ef..17a86464 100644 --- a/validation-suite/frontend/atlas/components/app-shell.tsx +++ b/validation-suite/frontend/atlas/components/app-shell.tsx @@ -6,6 +6,7 @@ import { ClipboardPlus, FileArchive, FileCog, + FileUp, Gauge, LayoutDashboard, LogOut, @@ -26,6 +27,7 @@ const quickstartRoles = ["admin", "pruefer", "mitarbeiter"]; const navigation = [ { href: "/dashboard", label: "Dashboard", icon: LayoutDashboard }, { href: "/customers", label: "Kunden", icon: Building2 }, + { href: "/customers/import", label: "Kunden importieren", icon: FileUp, adminOnly: true }, { href: "/locations", label: "Standorte", icon: MapPin }, { href: "/contacts", label: "Ansprechpartner", icon: UserRound }, { href: "/devices", label: "Geraete", icon: Stethoscope }, @@ -41,6 +43,9 @@ function canStartValidation(role?: string) { } function isActiveRoute(pathname: string, href: string) { + if (href === "/customers") { + return pathname === href; + } if (href === "/validations") { return pathname === href || (pathname.startsWith(`${href}/`) && pathname !== QUICKSTART_HREF); } diff --git a/validation-suite/frontend/atlas/lib/api.ts b/validation-suite/frontend/atlas/lib/api.ts index a1c8d734..772d0748 100644 --- a/validation-suite/frontend/atlas/lib/api.ts +++ b/validation-suite/frontend/atlas/lib/api.ts @@ -8,6 +8,8 @@ export type Entity = { export type Customer = Entity & { customer_type: "practice" | "clinic"; + source_system?: string | null; + external_id?: string | null; name: string; city?: string | null; phone?: string | null; diff --git a/validation-suite/frontend/atlas/package.json b/validation-suite/frontend/atlas/package.json index 509ea8ef..26b149a2 100644 --- a/validation-suite/frontend/atlas/package.json +++ b/validation-suite/frontend/atlas/package.json @@ -8,6 +8,7 @@ "start": "next start", "lint": "next lint", "test:auth": "node --test tests/auth-cookie.test.mjs", + "test:customer-import": "node --test tests/customer-import.test.mjs", "test:middleware": "node --test tests/middleware-ssl.test.mjs", "test:quickstart-navigation": "node --test tests/quickstart-navigation.test.mjs", "test:quickstart-workflow": "node --test tests/quickstart-workflow.test.mjs", diff --git a/validation-suite/frontend/atlas/tests/customer-import.test.mjs b/validation-suite/frontend/atlas/tests/customer-import.test.mjs new file mode 100644 index 00000000..bb98e9fa --- /dev/null +++ b/validation-suite/frontend/atlas/tests/customer-import.test.mjs @@ -0,0 +1,39 @@ +import assert from "node:assert/strict"; +import fs from "node:fs"; +import path from "node:path"; +import test from "node:test"; + +const page = fs.readFileSync(path.resolve("app/(app)/customers/import/page.tsx"), "utf8"); +const shell = fs.readFileSync(path.resolve("components/app-shell.tsx"), "utf8"); +const previewBff = fs.readFileSync(path.resolve("app/api/customer-imports/preview/route.ts"), "utf8"); +const confirmBff = fs.readFileSync(path.resolve("app/api/customer-imports/confirm/route.ts"), "utf8"); + +test("customer import is admin-only and present in navigation", () => { + assert.match(shell, /href: "\/customers\/import"/); + assert.match(shell, /label: "Kunden importieren"/); + assert.match(shell, /adminOnly: true/); + assert.match(shell, /href === "\/customers"/); + assert.match(page, /user\?\.role !== "admin"/); +}); + +test("customer import page implements upload mapping preview and confirm", () => { + assert.match(page, /accept="\.csv,\.xlsx/); + assert.match(page, /Vorschau vorbereiten/); + assert.match(page, /Spalten zuordnen/); + assert.match(page, /preview\.target_fields/); + assert.match(page, /Importvorschau prüfen/); + assert.match(page, /Mögliche Dubletten/); + assert.match(page, /Kunden jetzt importieren/); + assert.match(page, /ignore_empty_values/); + assert.match(page, /row_actions/); +}); + +test("customer import BFF forwards multipart through HttpOnly cookie", () => { + for (const source of [previewBff, confirmBff]) { + assert.match(source, /AUTH_COOKIE_NAME/); + assert.match(source, /Authorization: `Bearer \$\{token\}`/); + assert.match(source, /request\.formData\(\)/); + } + assert.match(previewBff, /\/customer-imports\/preview/); + assert.match(confirmBff, /\/customer-imports\/confirm/); +});