plum-e2e 2.9.17 → 2.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env +1 -1
- package/CLAUDE.md +1 -1
- package/README.md +7 -7
- package/backend/app.js +1 -1
- package/backend/constants/socketEvents.js +8 -14
- package/backend/lib/csv.js +21 -0
- package/backend/lib/exportResponse.js +37 -0
- package/backend/lib/serverBootstrap.js +6 -6
- package/backend/lib/serverConfig.js +5 -3
- package/backend/mcp/server.js +47 -3
- package/backend/middleware/runnerOrAdmin.js +1 -1
- package/backend/package.json +1 -1
- package/backend/prisma/migrations/20260829000000_add_run_queue/migration.sql +29 -0
- package/backend/prisma/schema.prisma +30 -0
- package/backend/routes/active-runs.routes.js +10 -6
- package/backend/routes/node.routes.js +7 -0
- package/backend/routes/reports.routes.js +19 -0
- package/backend/routes/runners.routes.js +1 -1
- package/backend/routes/test-cases.routes.js +12 -0
- package/backend/routes/test-runs.routes.js +17 -0
- package/backend/routes/test-suites.routes.js +34 -0
- package/backend/routes/trigger.routes.js +8 -5
- package/backend/scripts/{manage-runners.mjs → manage-nodes.mjs} +67 -52
- package/backend/server.js +5 -1
- package/backend/services/cronService.js +15 -443
- package/backend/services/exportService.js +339 -0
- package/backend/services/nodeExecutionService.js +13 -1
- package/backend/services/runExecutorService.js +423 -0
- package/backend/services/runQueueService.js +276 -0
- package/backend/services/runnerService.js +22 -4
- package/backend/services/testImportService.js +87 -0
- package/backend/services/triggerService.js +13 -231
- package/backend/websockets/socketHandler.js +32 -590
- package/bin/plum.js +174 -68
- package/docker-compose.yml +1 -1
- package/frontend/.svelte-kit/adapter-node/.vite/manifest.json +78 -70
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/BackLink.DRrgBGDC.css +6 -0
- package/frontend/.svelte-kit/{output/server/_app/immutable/assets/Toast.DENwYn3g.css → adapter-node/_app/immutable/assets/Button.C1zsJAUG.css} +1 -1
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/ExportMenu.DsJQ1Qua.css +6 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_layout.B4TT3qNx.css +6 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.4bPj83tb.css +6 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.Be5c3USL.css +6 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.BwgtEi_a.css +6 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.ClS4XkkN.css +6 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.DOC8fPSI.css +6 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.Dm1nSEgE.css +6 -0
- package/frontend/.svelte-kit/adapter-node/chunks/BackLink.js +1 -1
- package/frontend/.svelte-kit/adapter-node/chunks/Badge.js +1 -1
- package/frontend/.svelte-kit/adapter-node/chunks/{Toast.js → Button.js} +2 -17
- package/frontend/.svelte-kit/adapter-node/chunks/ConfirmModal.js +2 -2
- package/frontend/.svelte-kit/adapter-node/chunks/EmptyState.js +2 -2
- package/frontend/.svelte-kit/adapter-node/chunks/Modal.js +1 -1
- package/frontend/.svelte-kit/adapter-node/chunks/common.js +11 -4
- package/frontend/.svelte-kit/adapter-node/chunks/constants.js +6 -4
- package/frontend/.svelte-kit/adapter-node/chunks/format.js +3 -3
- package/frontend/.svelte-kit/adapter-node/chunks/index.js +4 -4
- package/frontend/.svelte-kit/adapter-node/chunks/internal.js +1 -1
- package/frontend/.svelte-kit/adapter-node/chunks/reports.js +1 -1
- package/frontend/.svelte-kit/adapter-node/chunks/reports2.js +38 -40
- package/frontend/.svelte-kit/adapter-node/chunks/repository.js +26 -14
- package/frontend/.svelte-kit/adapter-node/chunks/runner.js +10 -20
- package/frontend/.svelte-kit/adapter-node/entries/pages/_layout.svelte.js +2 -0
- package/frontend/.svelte-kit/adapter-node/entries/pages/live/_id_/_page.svelte.js +254 -0
- package/frontend/.svelte-kit/adapter-node/entries/pages/login/_page.svelte.js +1 -1
- package/frontend/.svelte-kit/adapter-node/entries/pages/reports/_id_/_page.svelte.js +39 -25
- package/frontend/.svelte-kit/adapter-node/entries/pages/reports/_page.svelte.js +23 -19
- package/frontend/.svelte-kit/adapter-node/entries/pages/scheduled-tests/_page.svelte.js +5 -8
- package/frontend/.svelte-kit/adapter-node/entries/pages/settings/_page.svelte.js +354 -185
- package/frontend/.svelte-kit/adapter-node/entries/pages/setup/_page.svelte.js +1 -1
- package/frontend/.svelte-kit/adapter-node/entries/pages/test-repository/_page.svelte.js +55 -36
- package/frontend/.svelte-kit/adapter-node/entries/pages/test-repository/runs/_id_/_page.svelte.js +4 -7
- package/frontend/.svelte-kit/adapter-node/entries/pages/test-repository/suites/_id_/_page.svelte.js +66 -16
- package/frontend/.svelte-kit/adapter-node/manifest-full.js +10 -10
- package/frontend/.svelte-kit/adapter-node/manifest.js +10 -10
- package/frontend/.svelte-kit/adapter-node/nodes/0.js +2 -2
- package/frontend/.svelte-kit/adapter-node/nodes/1.js +1 -1
- package/frontend/.svelte-kit/adapter-node/nodes/10.js +2 -2
- package/frontend/.svelte-kit/adapter-node/nodes/11.js +2 -2
- package/frontend/.svelte-kit/adapter-node/nodes/12.js +2 -2
- package/frontend/.svelte-kit/adapter-node/nodes/2.js +1 -1
- package/frontend/.svelte-kit/adapter-node/nodes/3.js +3 -3
- package/frontend/.svelte-kit/adapter-node/nodes/4.js +3 -3
- package/frontend/.svelte-kit/adapter-node/nodes/5.js +3 -3
- package/frontend/.svelte-kit/adapter-node/nodes/6.js +3 -3
- package/frontend/.svelte-kit/adapter-node/nodes/7.js +2 -2
- package/frontend/.svelte-kit/adapter-node/nodes/8.js +2 -2
- package/frontend/.svelte-kit/adapter-node/nodes/9.js +1 -1
- package/frontend/.svelte-kit/ambient.d.ts +28 -28
- package/frontend/.svelte-kit/generated/client/app.js +4 -4
- package/frontend/.svelte-kit/generated/client/nodes/3.js +1 -1
- package/frontend/.svelte-kit/generated/client/nodes/4.js +1 -1
- package/frontend/.svelte-kit/generated/client/nodes/5.js +1 -1
- package/frontend/.svelte-kit/generated/client/nodes/6.js +1 -1
- package/frontend/.svelte-kit/generated/client-optimized/app.js +4 -4
- package/frontend/.svelte-kit/generated/client-optimized/nodes/3.js +1 -1
- package/frontend/.svelte-kit/generated/client-optimized/nodes/4.js +1 -1
- package/frontend/.svelte-kit/generated/client-optimized/nodes/5.js +1 -1
- package/frontend/.svelte-kit/generated/client-optimized/nodes/6.js +1 -1
- package/frontend/.svelte-kit/generated/server/internal.js +1 -1
- package/frontend/.svelte-kit/output/client/.vite/manifest.json +462 -403
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/0.BEqlRAtD.css +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/10.DC0wD6w_.css +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/12.Dm1nSEgE.css +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/3.Be5c3USL.css +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/5.ClS4XkkN.css +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/6.DdQVxyZK.css +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/8.DOC8fPSI.css +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/BackLink.DRrgBGDC.css +6 -0
- package/frontend/{build/client/_app/immutable/assets/Toast.DENwYn3g.css → .svelte-kit/output/client/_app/immutable/assets/Button.C1zsJAUG.css} +1 -1
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/ExportMenu.DsJQ1Qua.css +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_layout.B4TT3qNx.css +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.4bPj83tb.css +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.Be5c3USL.css +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.BwgtEi_a.css +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.ClS4XkkN.css +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.DOC8fPSI.css +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.Dm1nSEgE.css +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/3MBVX4Yb.js +175 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/6VDMVB5U.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/B2lVGNml.js +6 -0
- package/frontend/{build/client/_app/immutable/chunks/2zMvi6fR.js → .svelte-kit/output/client/_app/immutable/chunks/BCh31ecr.js} +1 -1
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BDb8hZHu.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BIf7lHIm.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BIjh3jiU.js +8 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BTV7EXZb.js +11 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/{DMZwI8Cj.js → BWGoOYU0.js} +1 -1
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BdBJfKUi.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/{t-La0hgu.js → BnXsGCy3.js} +1 -1
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BtTNggoY.js +8 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/C4Z3p6jE.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CNpD-yNH.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CUPWZLIN.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/{C1Vid6wz.js → CXQhSK1T.js} +1 -1
- package/frontend/{build/client/_app/immutable/chunks/CKDtmZUQ.js → .svelte-kit/output/client/_app/immutable/chunks/CtgCYzu5.js} +1 -1
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/{C8OURRSs.js → D72giPTu.js} +1 -1
- package/frontend/{build/client/_app/immutable/chunks/BmZ9upwL.js → .svelte-kit/output/client/_app/immutable/chunks/DDx3no2z.js} +1 -1
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/D_thT6pZ.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DeiVAbyn.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DiexacSB.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/{DDZw0L0T.js → Dlymnwnf.js} +1 -1
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/gCgJ3Cwu.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/htkwR9b-.js +6 -0
- package/frontend/{build/client/_app/immutable/chunks/DCgHuuvs.js → .svelte-kit/output/client/_app/immutable/chunks/iL4SCrvY.js} +1 -1
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/kFFd6Oo5.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/pNZogwkM.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/{w0D4Uzlq.js → prk8PJfA.js} +1 -1
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/qvxlSGpD.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/r_d1Iu0W.js +6 -0
- package/frontend/{build/client/_app/immutable/chunks/CNdcuGR0.js → .svelte-kit/output/client/_app/immutable/chunks/tsOANt55.js} +1 -1
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/zXSLr47H.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/entry/app.DgdSwPuN.js +7 -0
- package/frontend/{build/client/_app/immutable/entry/start.4qxHHAcl.js → .svelte-kit/output/client/_app/immutable/entry/start.D_lhI48n.js} +1 -1
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/0.D2F-i1I5.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/{1.Df9sLw8b.js → 1.JIF2GfHq.js} +1 -1
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/10.A0AHLfOt.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/11.CVSPxlqY.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/12.CnAR0AQb.js +6 -0
- package/frontend/{build/client/_app/immutable/nodes/2.BCPSg7H4.js → .svelte-kit/output/client/_app/immutable/nodes/2.Bno00fr8.js} +1 -1
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/3.B6KwaCsM.js +6 -0
- package/frontend/{build/client/_app/immutable/nodes/3.8BFAJoHT.js → .svelte-kit/output/client/_app/immutable/nodes/4.BX70m3v6.js} +1 -1
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/5.UIFh06yr.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/6.DZ1OV24V.js +10 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/7.B_XntBZ1.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/8.CVHgJw-E.js +9 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/{9.CvfGx3Hu.js → 9.DDDQPmMj.js} +1 -1
- package/frontend/.svelte-kit/output/client/_app/version.json +1 -1
- package/frontend/.svelte-kit/output/server/.vite/manifest.json +78 -70
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/BackLink.DRrgBGDC.css +6 -0
- package/frontend/.svelte-kit/output/{client/_app/immutable/assets/Toast.DENwYn3g.css → server/_app/immutable/assets/Button.C1zsJAUG.css} +1 -1
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/ExportMenu.DsJQ1Qua.css +6 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_layout.B4TT3qNx.css +6 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.4bPj83tb.css +6 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.Be5c3USL.css +6 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.BwgtEi_a.css +6 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.ClS4XkkN.css +6 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.DOC8fPSI.css +6 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.Dm1nSEgE.css +6 -0
- package/frontend/.svelte-kit/output/server/chunks/BackLink.js +1 -1
- package/frontend/.svelte-kit/output/server/chunks/Badge.js +1 -1
- package/frontend/.svelte-kit/output/server/chunks/{Toast.js → Button.js} +2 -17
- package/frontend/.svelte-kit/output/server/chunks/ConfirmModal.js +2 -2
- package/frontend/.svelte-kit/output/server/chunks/EmptyState.js +2 -2
- package/frontend/.svelte-kit/output/server/chunks/Modal.js +1 -1
- package/frontend/.svelte-kit/output/server/chunks/common.js +11 -4
- package/frontend/.svelte-kit/output/server/chunks/constants.js +6 -4
- package/frontend/.svelte-kit/output/server/chunks/format.js +3 -3
- package/frontend/.svelte-kit/output/server/chunks/index.js +4 -4
- package/frontend/.svelte-kit/output/server/chunks/internal.js +1 -1
- package/frontend/.svelte-kit/output/server/chunks/reports.js +1 -1
- package/frontend/.svelte-kit/output/server/chunks/reports2.js +38 -40
- package/frontend/.svelte-kit/output/server/chunks/repository.js +26 -14
- package/frontend/.svelte-kit/output/server/chunks/runner.js +10 -20
- package/frontend/.svelte-kit/output/server/entries/pages/_layout.svelte.js +2 -0
- package/frontend/.svelte-kit/output/server/entries/pages/live/_id_/_page.svelte.js +254 -0
- package/frontend/.svelte-kit/output/server/entries/pages/login/_page.svelte.js +1 -1
- package/frontend/.svelte-kit/output/server/entries/pages/reports/_id_/_page.svelte.js +39 -25
- package/frontend/.svelte-kit/output/server/entries/pages/reports/_page.svelte.js +23 -19
- package/frontend/.svelte-kit/output/server/entries/pages/scheduled-tests/_page.svelte.js +5 -8
- package/frontend/.svelte-kit/output/server/entries/pages/settings/_page.svelte.js +354 -185
- package/frontend/.svelte-kit/output/server/entries/pages/setup/_page.svelte.js +1 -1
- package/frontend/.svelte-kit/output/server/entries/pages/test-repository/_page.svelte.js +55 -36
- package/frontend/.svelte-kit/output/server/entries/pages/test-repository/runs/_id_/_page.svelte.js +4 -7
- package/frontend/.svelte-kit/output/server/entries/pages/test-repository/suites/_id_/_page.svelte.js +66 -16
- package/frontend/.svelte-kit/output/server/manifest-full.js +10 -10
- package/frontend/.svelte-kit/output/server/manifest.js +10 -10
- package/frontend/.svelte-kit/output/server/nodes/0.js +2 -2
- package/frontend/.svelte-kit/output/server/nodes/1.js +1 -1
- package/frontend/.svelte-kit/output/server/nodes/10.js +2 -2
- package/frontend/.svelte-kit/output/server/nodes/11.js +2 -2
- package/frontend/.svelte-kit/output/server/nodes/12.js +2 -2
- package/frontend/.svelte-kit/output/server/nodes/2.js +1 -1
- package/frontend/.svelte-kit/output/server/nodes/3.js +3 -3
- package/frontend/.svelte-kit/output/server/nodes/4.js +3 -3
- package/frontend/.svelte-kit/output/server/nodes/5.js +3 -3
- package/frontend/.svelte-kit/output/server/nodes/6.js +3 -3
- package/frontend/.svelte-kit/output/server/nodes/7.js +2 -2
- package/frontend/.svelte-kit/output/server/nodes/8.js +2 -2
- package/frontend/.svelte-kit/output/server/nodes/9.js +1 -1
- package/frontend/build/client/_app/immutable/assets/0.BEqlRAtD.css +6 -0
- package/frontend/build/client/_app/immutable/assets/0.BEqlRAtD.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/0.BEqlRAtD.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/10.DC0wD6w_.css +6 -0
- package/frontend/build/client/_app/immutable/assets/10.DC0wD6w_.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/10.DC0wD6w_.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/12.Dm1nSEgE.css +6 -0
- package/frontend/build/client/_app/immutable/assets/12.Dm1nSEgE.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/12.Dm1nSEgE.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/3.Be5c3USL.css +6 -0
- package/frontend/build/client/_app/immutable/assets/3.Be5c3USL.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/3.Be5c3USL.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/5.ClS4XkkN.css +6 -0
- package/frontend/build/client/_app/immutable/assets/5.ClS4XkkN.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/5.ClS4XkkN.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/6.DdQVxyZK.css +6 -0
- package/frontend/build/client/_app/immutable/assets/6.DdQVxyZK.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/6.DdQVxyZK.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/8.DOC8fPSI.css +6 -0
- package/frontend/build/client/_app/immutable/assets/8.DOC8fPSI.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/8.DOC8fPSI.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/BackLink.DRrgBGDC.css +6 -0
- package/frontend/build/client/_app/immutable/assets/BackLink.DRrgBGDC.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/BackLink.DRrgBGDC.css.gz +0 -0
- package/frontend/{.svelte-kit/adapter-node/_app/immutable/assets/Toast.DENwYn3g.css → build/client/_app/immutable/assets/Button.C1zsJAUG.css} +1 -1
- package/frontend/build/client/_app/immutable/assets/Button.C1zsJAUG.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/Button.C1zsJAUG.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/ExportMenu.DsJQ1Qua.css +6 -0
- package/frontend/build/client/_app/immutable/assets/ExportMenu.DsJQ1Qua.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/ExportMenu.DsJQ1Qua.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_layout.B4TT3qNx.css +6 -0
- package/frontend/build/client/_app/immutable/assets/_layout.B4TT3qNx.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_layout.B4TT3qNx.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.4bPj83tb.css +6 -0
- package/frontend/build/client/_app/immutable/assets/_page.4bPj83tb.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.4bPj83tb.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.Be5c3USL.css +6 -0
- package/frontend/build/client/_app/immutable/assets/_page.Be5c3USL.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.Be5c3USL.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BwgtEi_a.css +6 -0
- package/frontend/build/client/_app/immutable/assets/_page.BwgtEi_a.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BwgtEi_a.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.ClS4XkkN.css +6 -0
- package/frontend/build/client/_app/immutable/assets/_page.ClS4XkkN.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.ClS4XkkN.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.DOC8fPSI.css +6 -0
- package/frontend/build/client/_app/immutable/assets/_page.DOC8fPSI.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.DOC8fPSI.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.Dm1nSEgE.css +6 -0
- package/frontend/build/client/_app/immutable/assets/_page.Dm1nSEgE.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.Dm1nSEgE.css.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/3MBVX4Yb.js +175 -0
- package/frontend/build/client/_app/immutable/chunks/3MBVX4Yb.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/3MBVX4Yb.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/6VDMVB5U.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/6VDMVB5U.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/6VDMVB5U.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/B2lVGNml.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/B2lVGNml.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/B2lVGNml.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/chunks/2zMvi6fR.js → build/client/_app/immutable/chunks/BCh31ecr.js} +1 -1
- package/frontend/build/client/_app/immutable/chunks/BCh31ecr.js.br +6 -0
- package/frontend/build/client/_app/immutable/chunks/BCh31ecr.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BDb8hZHu.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/BDb8hZHu.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BDb8hZHu.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BIf7lHIm.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/BIf7lHIm.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BIf7lHIm.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BIjh3jiU.js +8 -0
- package/frontend/build/client/_app/immutable/chunks/BIjh3jiU.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BIjh3jiU.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BTV7EXZb.js +11 -0
- package/frontend/build/client/_app/immutable/chunks/BTV7EXZb.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BTV7EXZb.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/{DMZwI8Cj.js → BWGoOYU0.js} +1 -1
- package/frontend/build/client/_app/immutable/chunks/BWGoOYU0.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BWGoOYU0.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BdBJfKUi.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/BdBJfKUi.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BdBJfKUi.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/{t-La0hgu.js → BnXsGCy3.js} +1 -1
- package/frontend/build/client/_app/immutable/chunks/BnXsGCy3.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BnXsGCy3.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BtTNggoY.js +8 -0
- package/frontend/build/client/_app/immutable/chunks/BtTNggoY.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BtTNggoY.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/C4Z3p6jE.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/C4Z3p6jE.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/C4Z3p6jE.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CNpD-yNH.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/CNpD-yNH.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CNpD-yNH.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CUPWZLIN.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/CUPWZLIN.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CUPWZLIN.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/{C1Vid6wz.js → CXQhSK1T.js} +1 -1
- package/frontend/build/client/_app/immutable/chunks/CXQhSK1T.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CXQhSK1T.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/chunks/CKDtmZUQ.js → build/client/_app/immutable/chunks/CtgCYzu5.js} +1 -1
- package/frontend/build/client/_app/immutable/chunks/CtgCYzu5.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CtgCYzu5.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/{C8OURRSs.js → D72giPTu.js} +1 -1
- package/frontend/build/client/_app/immutable/chunks/D72giPTu.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/D72giPTu.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/chunks/BmZ9upwL.js → build/client/_app/immutable/chunks/DDx3no2z.js} +1 -1
- package/frontend/build/client/_app/immutable/chunks/DDx3no2z.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DDx3no2z.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/D_thT6pZ.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/D_thT6pZ.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/D_thT6pZ.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DeiVAbyn.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/DeiVAbyn.js.br +6 -0
- package/frontend/build/client/_app/immutable/chunks/DeiVAbyn.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DiexacSB.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/DiexacSB.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DiexacSB.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/{DDZw0L0T.js → Dlymnwnf.js} +1 -1
- package/frontend/build/client/_app/immutable/chunks/Dlymnwnf.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/Dlymnwnf.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/gCgJ3Cwu.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/gCgJ3Cwu.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/gCgJ3Cwu.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/htkwR9b-.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/htkwR9b-.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/htkwR9b-.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/chunks/DCgHuuvs.js → build/client/_app/immutable/chunks/iL4SCrvY.js} +1 -1
- package/frontend/build/client/_app/immutable/chunks/iL4SCrvY.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/iL4SCrvY.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/kFFd6Oo5.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/kFFd6Oo5.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/kFFd6Oo5.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/pNZogwkM.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/pNZogwkM.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/pNZogwkM.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/{w0D4Uzlq.js → prk8PJfA.js} +1 -1
- package/frontend/build/client/_app/immutable/chunks/prk8PJfA.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/prk8PJfA.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/qvxlSGpD.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/qvxlSGpD.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/qvxlSGpD.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/r_d1Iu0W.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/r_d1Iu0W.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/r_d1Iu0W.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/chunks/CNdcuGR0.js → build/client/_app/immutable/chunks/tsOANt55.js} +1 -1
- package/frontend/build/client/_app/immutable/chunks/tsOANt55.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/tsOANt55.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/zXSLr47H.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/zXSLr47H.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/zXSLr47H.js.gz +0 -0
- package/frontend/build/client/_app/immutable/entry/app.DgdSwPuN.js +7 -0
- package/frontend/build/client/_app/immutable/entry/app.DgdSwPuN.js.br +0 -0
- package/frontend/build/client/_app/immutable/entry/app.DgdSwPuN.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/entry/start.4qxHHAcl.js → build/client/_app/immutable/entry/start.D_lhI48n.js} +1 -1
- package/frontend/build/client/_app/immutable/entry/{start.4qxHHAcl.js.br → start.D_lhI48n.js.br} +1 -1
- package/frontend/build/client/_app/immutable/entry/{start.4qxHHAcl.js.gz → start.D_lhI48n.js.gz} +0 -0
- package/frontend/build/client/_app/immutable/nodes/0.D2F-i1I5.js +6 -0
- package/frontend/build/client/_app/immutable/nodes/0.D2F-i1I5.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/0.D2F-i1I5.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/{1.Df9sLw8b.js → 1.JIF2GfHq.js} +1 -1
- package/frontend/build/client/_app/immutable/nodes/1.JIF2GfHq.js.br +5 -0
- package/frontend/build/client/_app/immutable/nodes/1.JIF2GfHq.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/10.A0AHLfOt.js +6 -0
- package/frontend/build/client/_app/immutable/nodes/10.A0AHLfOt.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/10.A0AHLfOt.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/11.CVSPxlqY.js +6 -0
- package/frontend/build/client/_app/immutable/nodes/11.CVSPxlqY.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/11.CVSPxlqY.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/12.CnAR0AQb.js +6 -0
- package/frontend/build/client/_app/immutable/nodes/12.CnAR0AQb.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/12.CnAR0AQb.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/nodes/2.BCPSg7H4.js → build/client/_app/immutable/nodes/2.Bno00fr8.js} +1 -1
- package/frontend/build/client/_app/immutable/nodes/2.Bno00fr8.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/2.Bno00fr8.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/3.B6KwaCsM.js +6 -0
- package/frontend/build/client/_app/immutable/nodes/3.B6KwaCsM.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/3.B6KwaCsM.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/nodes/3.8BFAJoHT.js → build/client/_app/immutable/nodes/4.BX70m3v6.js} +1 -1
- package/frontend/build/client/_app/immutable/nodes/4.BX70m3v6.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/4.BX70m3v6.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/5.UIFh06yr.js +6 -0
- package/frontend/build/client/_app/immutable/nodes/5.UIFh06yr.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/5.UIFh06yr.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/6.DZ1OV24V.js +10 -0
- package/frontend/build/client/_app/immutable/nodes/6.DZ1OV24V.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/6.DZ1OV24V.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/7.B_XntBZ1.js +6 -0
- package/frontend/build/client/_app/immutable/nodes/7.B_XntBZ1.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/7.B_XntBZ1.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/8.CVHgJw-E.js +9 -0
- package/frontend/build/client/_app/immutable/nodes/8.CVHgJw-E.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/8.CVHgJw-E.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/{9.CvfGx3Hu.js → 9.DDDQPmMj.js} +1 -1
- package/frontend/build/client/_app/immutable/nodes/9.DDDQPmMj.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/9.DDDQPmMj.js.gz +0 -0
- package/frontend/build/client/_app/version.json +1 -1
- package/frontend/build/client/_app/version.json.br +0 -0
- package/frontend/build/client/_app/version.json.gz +0 -0
- package/frontend/build/server/chunks/0-38cvTs44.js +22 -0
- package/frontend/build/server/chunks/0-38cvTs44.js.map +5 -0
- package/frontend/build/server/chunks/{1-Kxn9d30Z.js → 1-CcYsajvR.js} +3 -3
- package/frontend/build/server/chunks/{1-Kxn9d30Z.js.map → 1-CcYsajvR.js.map} +1 -1
- package/frontend/build/server/chunks/10-CFR2MUJt.js +14 -0
- package/frontend/build/server/chunks/10-CFR2MUJt.js.map +5 -0
- package/frontend/build/server/chunks/11-BmkiRQ9D.js +14 -0
- package/frontend/build/server/chunks/11-BmkiRQ9D.js.map +5 -0
- package/frontend/build/server/chunks/12-BphJAwnL.js +14 -0
- package/frontend/build/server/chunks/12-BphJAwnL.js.map +5 -0
- package/frontend/build/server/chunks/2-Dalgd2D4.js +14 -0
- package/frontend/build/server/chunks/{2-Dc_rKWoK.js.map → 2-Dalgd2D4.js.map} +1 -1
- package/frontend/build/server/chunks/3-BvsmdXCj.js +14 -0
- package/frontend/build/server/chunks/3-BvsmdXCj.js.map +5 -0
- package/frontend/build/server/chunks/4-CN18WCEn.js +14 -0
- package/frontend/build/server/chunks/4-CN18WCEn.js.map +5 -0
- package/frontend/build/server/chunks/5-BwLYF3xL.js +14 -0
- package/frontend/build/server/chunks/5-BwLYF3xL.js.map +5 -0
- package/frontend/build/server/chunks/6-DTM2N_k3.js +14 -0
- package/frontend/build/server/chunks/6-DTM2N_k3.js.map +5 -0
- package/frontend/build/server/chunks/7-DTNbErSe.js +14 -0
- package/frontend/build/server/chunks/7-DTNbErSe.js.map +5 -0
- package/frontend/build/server/chunks/8-BfCbb7pl.js +14 -0
- package/frontend/build/server/chunks/8-BfCbb7pl.js.map +5 -0
- package/frontend/build/server/chunks/9-CQKepnMw.js +14 -0
- package/frontend/build/server/chunks/{9-DirZG_Lu.js.map → 9-CQKepnMw.js.map} +1 -1
- package/frontend/build/server/chunks/{BackLink-BJ8NaemM.js → BackLink-CMpNTYqE.js} +2 -2
- package/frontend/build/server/chunks/BackLink-CMpNTYqE.js.map +5 -0
- package/frontend/build/server/chunks/{Badge-44ZTDx0V.js → Badge-BTWnF9pA.js} +2 -2
- package/frontend/build/server/chunks/Badge-BTWnF9pA.js.map +5 -0
- package/frontend/build/server/chunks/{Toast-v-q4ZnYq.js → Button-B9h9viZX.js} +3 -17
- package/frontend/build/server/chunks/Button-B9h9viZX.js.map +5 -0
- package/frontend/build/server/chunks/{ConfirmModal-C0EAXcq_.js → ConfirmModal-C6Cz898n.js} +4 -4
- package/frontend/build/server/chunks/ConfirmModal-C6Cz898n.js.map +5 -0
- package/frontend/build/server/chunks/{EmptyState-BA_eXaeR.js → EmptyState-CRtsJIv6.js} +3 -3
- package/frontend/build/server/chunks/EmptyState-CRtsJIv6.js.map +5 -0
- package/frontend/build/server/chunks/{Modal-DChG187n.js → Modal-BJJMnfIg.js} +2 -2
- package/frontend/build/server/chunks/Modal-BJJMnfIg.js.map +5 -0
- package/frontend/build/server/chunks/_layout.svelte-B8vZGefg.js +28 -0
- package/frontend/build/server/chunks/_layout.svelte-B8vZGefg.js.map +5 -0
- package/frontend/build/server/chunks/{_page.svelte-Kg69DDaM.js → _page.svelte-BrYksycU.js} +5 -5
- package/frontend/build/server/chunks/_page.svelte-BrYksycU.js.map +5 -0
- package/frontend/build/server/chunks/_page.svelte-BrnXHxJ4.js +69 -0
- package/frontend/build/server/chunks/_page.svelte-BrnXHxJ4.js.map +5 -0
- package/frontend/build/server/chunks/_page.svelte-C2WqvInJ.js +898 -0
- package/frontend/build/server/chunks/_page.svelte-C2WqvInJ.js.map +5 -0
- package/frontend/build/server/chunks/{_page.svelte-04WxjOuH.js → _page.svelte-CP6jA1ex.js} +9 -9
- package/frontend/build/server/chunks/{_page.svelte-04WxjOuH.js.map → _page.svelte-CP6jA1ex.js.map} +1 -1
- package/frontend/build/server/chunks/{_page.svelte-D3E6Eojd.js → _page.svelte-Cf6bI1Y2.js} +5 -5
- package/frontend/build/server/chunks/_page.svelte-Cf6bI1Y2.js.map +5 -0
- package/frontend/build/server/chunks/{_page.svelte-1as75nPc.js → _page.svelte-D6b-klLK.js} +33 -29
- package/frontend/build/server/chunks/_page.svelte-D6b-klLK.js.map +5 -0
- package/frontend/build/server/chunks/{_page.svelte-CWWeZuid.js → _page.svelte-DBjTpquQ.js} +73 -24
- package/frontend/build/server/chunks/_page.svelte-DBjTpquQ.js.map +5 -0
- package/frontend/build/server/chunks/{_page.svelte-CB8-QBNg.js → _page.svelte-DM1_y4Oq.js} +61 -42
- package/frontend/build/server/chunks/_page.svelte-DM1_y4Oq.js.map +5 -0
- package/frontend/build/server/chunks/_page.svelte-Mo-O3HJ5.js +257 -0
- package/frontend/build/server/chunks/_page.svelte-Mo-O3HJ5.js.map +5 -0
- package/frontend/build/server/chunks/{_page.svelte-BuFusRK1.js → _page.svelte-mZF4NrfU.js} +14 -17
- package/frontend/build/server/chunks/_page.svelte-mZF4NrfU.js.map +5 -0
- package/frontend/build/server/chunks/{_page.svelte-1jo8MapI.js → _page.svelte-nrlgIFaU.js} +13 -15
- package/frontend/build/server/chunks/_page.svelte-nrlgIFaU.js.map +5 -0
- package/frontend/build/server/chunks/{auth-Chw-wBpI.js → auth-DDPlushv.js} +2 -2
- package/frontend/build/server/chunks/{auth-Chw-wBpI.js.map → auth-DDPlushv.js.map} +1 -1
- package/frontend/build/server/chunks/{client-DEmxR_a-.js → client-CsTiGNZy.js} +2 -2
- package/frontend/build/server/chunks/{client-DEmxR_a-.js.map → client-CsTiGNZy.js.map} +1 -1
- package/frontend/build/server/chunks/{common-DYYTVHPw.js → common-DS-Z0UFe.js} +7 -2
- package/frontend/build/server/chunks/common-DS-Z0UFe.js.map +5 -0
- package/frontend/build/server/chunks/{constants-CXTaQaB6.js → constants-OmHysD51.js} +3 -2
- package/frontend/build/server/chunks/constants-OmHysD51.js.map +5 -0
- package/frontend/build/server/chunks/{error.svelte-BD3xNemk.js → error.svelte-BXr4lXlB.js} +3 -3
- package/frontend/build/server/chunks/{error.svelte-BD3xNemk.js.map → error.svelte-BXr4lXlB.js.map} +1 -1
- package/frontend/build/server/chunks/{format-CiNRMfHu.js → format-Bqb0as15.js} +2 -2
- package/frontend/build/server/chunks/{format-CiNRMfHu.js.map → format-Bqb0as15.js.map} +1 -1
- package/frontend/build/server/chunks/{index-server-B3M9vyh2.js → index-server-53nOZg5X.js} +2 -2
- package/frontend/build/server/chunks/{index-server-B3M9vyh2.js.map → index-server-53nOZg5X.js.map} +1 -1
- package/frontend/build/server/chunks/{index2-5R1tbrep.js → index2-DGcbugKe.js} +2 -2
- package/frontend/build/server/chunks/{index2-5R1tbrep.js.map → index2-DGcbugKe.js.map} +1 -1
- package/frontend/build/server/chunks/{reports-D_ApeeNh.js → reports-chCHCDzB.js} +2 -2
- package/frontend/build/server/chunks/{reports-D_ApeeNh.js.map → reports-chCHCDzB.js.map} +1 -1
- package/frontend/build/server/chunks/{reports2-BtElN_53.js → reports2-Dr3zu9CD.js} +8 -9
- package/frontend/build/server/chunks/reports2-Dr3zu9CD.js.map +5 -0
- package/frontend/build/server/chunks/{repository-FYYV_vKE.js → repository-DSsWVKEb.js} +9 -3
- package/frontend/build/server/chunks/repository-DSsWVKEb.js.map +5 -0
- package/frontend/build/server/chunks/runner-aaUtOqck.js +27 -0
- package/frontend/build/server/chunks/runner-aaUtOqck.js.map +5 -0
- package/frontend/build/server/chunks/{stores-BLenR3c1.js → stores-C4ZkywTG.js} +3 -3
- package/frontend/build/server/chunks/{stores-BLenR3c1.js.map → stores-C4ZkywTG.js.map} +1 -1
- package/frontend/build/server/chunks/{theme-nAx-GvX_.js → theme-C81wSe5T.js} +2 -2
- package/frontend/build/server/chunks/{theme-nAx-GvX_.js.map → theme-C81wSe5T.js.map} +1 -1
- package/frontend/build/server/index.js +2 -2
- package/frontend/build/server/index.js.map +1 -1
- package/frontend/build/server/manifest.js +23 -23
- package/frontend/build/server/manifest.js.map +1 -1
- package/frontend/package-lock.json +14 -0
- package/frontend/package.json +2 -0
- package/frontend/src/lib/api/reports.js +7 -0
- package/frontend/src/lib/api/repository.js +28 -0
- package/frontend/src/lib/components/layout/RunnerPanel.svelte +187 -266
- package/frontend/src/lib/components/reports/RecordingPlayer.svelte +172 -2
- package/frontend/src/lib/components/ui/ExportMenu.svelte +154 -0
- package/frontend/src/lib/components/ui/NotificationStack.svelte +177 -0
- package/frontend/src/lib/constants.js +1 -1
- package/frontend/src/lib/copy/common.js +9 -0
- package/frontend/src/lib/copy/reports.js +29 -0
- package/frontend/src/lib/copy/repository.js +4 -0
- package/frontend/src/lib/copy/runners.js +9 -6
- package/frontend/src/lib/copy/settings.js +15 -0
- package/frontend/src/lib/socketEvents.js +3 -15
- package/frontend/src/lib/stores/notifications.js +23 -0
- package/frontend/src/lib/stores/replayVideo.js +51 -0
- package/frontend/src/lib/stores/runner.js +62 -46
- package/frontend/src/lib/utils/download.js +28 -0
- package/frontend/src/lib/utils/replayCapture.js +91 -0
- package/frontend/src/lib/utils/replayVideo.js +111 -0
- package/frontend/src/routes/+layout.svelte +2 -0
- package/frontend/src/routes/{reports/live → live/[id]}/+page.svelte +112 -183
- package/frontend/src/routes/reports/[id]/+page.svelte +38 -3
- package/frontend/src/routes/scheduled-tests/+page.svelte +11 -19
- package/frontend/src/routes/settings/+page.svelte +140 -56
- package/frontend/src/routes/test-repository/+page.svelte +44 -16
- package/frontend/src/routes/test-repository/runs/[id]/+page.svelte +14 -23
- package/frontend/src/routes/test-repository/suites/[id]/+page.svelte +38 -22
- package/package.json +1 -1
- package/backend/services/activeRunsService.js +0 -55
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/BackLink.CvWWuO3h.css +0 -6
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_layout.BuhMvMUj.css +0 -6
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.0Eln51hV.css +0 -6
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.5IJAEAjc.css +0 -6
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.BZfe6nWe.css +0 -6
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.Bj_a_5lv.css +0 -6
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.BwgOqeMo.css +0 -6
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.CFnbmY-D.css +0 -6
- package/frontend/.svelte-kit/adapter-node/entries/pages/reports/live/_page.svelte.js +0 -247
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/0.BhSG-jZH.css +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/10.CdaQUS6U.css +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/12.Bj_a_5lv.css +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/4.0Eln51hV.css +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/5.DFV9OgAu.css +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/6.CFnbmY-D.css +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/8.BwgOqeMo.css +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/BackLink.CvWWuO3h.css +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/Button.FOWXxvc7.css +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_layout.BuhMvMUj.css +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.0Eln51hV.css +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.5IJAEAjc.css +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.BZfe6nWe.css +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.Bj_a_5lv.css +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.BwgOqeMo.css +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.CFnbmY-D.css +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/3InFPLvE.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BAACMRH5.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BAMUGSh7.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BKuh57WU.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BUwxRmHf.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CGeZlCaI.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CMBQQ9RZ.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CMEtqUfQ.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CUC98kMZ.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CgnwuKKO.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/Co3xKhEp.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CuqnZUex.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CzlPaHY9.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DHM6H-es.js +0 -7
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DSLBMEpr.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DbgD7JLa.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/TOCyHP97.js +0 -11
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/kkA1mrsH.js +0 -8
- package/frontend/.svelte-kit/output/client/_app/immutable/entry/app.KrtMZ3my.js +0 -7
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/0.C8DodwXs.js +0 -11
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/10.DEbnxfND.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/11.BViaDK2m.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/12.BMSCSd88.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/4.D-YT_JJe.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/5.DVeH2eQP.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/6.DI7-IJhN.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/7.C-pKvVZy.js +0 -6
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/8.93Mb3ofT.js +0 -9
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/BackLink.CvWWuO3h.css +0 -6
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_layout.BuhMvMUj.css +0 -6
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.0Eln51hV.css +0 -6
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.5IJAEAjc.css +0 -6
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.BZfe6nWe.css +0 -6
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.Bj_a_5lv.css +0 -6
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.BwgOqeMo.css +0 -6
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.CFnbmY-D.css +0 -6
- package/frontend/.svelte-kit/output/server/entries/pages/reports/live/_page.svelte.js +0 -247
- package/frontend/build/client/_app/immutable/assets/0.BhSG-jZH.css +0 -6
- package/frontend/build/client/_app/immutable/assets/0.BhSG-jZH.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/0.BhSG-jZH.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/10.CdaQUS6U.css +0 -6
- package/frontend/build/client/_app/immutable/assets/10.CdaQUS6U.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/10.CdaQUS6U.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/12.Bj_a_5lv.css +0 -6
- package/frontend/build/client/_app/immutable/assets/12.Bj_a_5lv.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/12.Bj_a_5lv.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/4.0Eln51hV.css +0 -6
- package/frontend/build/client/_app/immutable/assets/4.0Eln51hV.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/4.0Eln51hV.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/5.DFV9OgAu.css +0 -6
- package/frontend/build/client/_app/immutable/assets/5.DFV9OgAu.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/5.DFV9OgAu.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/6.CFnbmY-D.css +0 -6
- package/frontend/build/client/_app/immutable/assets/6.CFnbmY-D.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/6.CFnbmY-D.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/8.BwgOqeMo.css +0 -6
- package/frontend/build/client/_app/immutable/assets/8.BwgOqeMo.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/8.BwgOqeMo.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/BackLink.CvWWuO3h.css +0 -6
- package/frontend/build/client/_app/immutable/assets/BackLink.CvWWuO3h.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/BackLink.CvWWuO3h.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/Button.FOWXxvc7.css +0 -6
- package/frontend/build/client/_app/immutable/assets/Button.FOWXxvc7.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/Button.FOWXxvc7.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/Toast.DENwYn3g.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/Toast.DENwYn3g.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_layout.BuhMvMUj.css +0 -6
- package/frontend/build/client/_app/immutable/assets/_layout.BuhMvMUj.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_layout.BuhMvMUj.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.0Eln51hV.css +0 -6
- package/frontend/build/client/_app/immutable/assets/_page.0Eln51hV.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.0Eln51hV.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.5IJAEAjc.css +0 -6
- package/frontend/build/client/_app/immutable/assets/_page.5IJAEAjc.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.5IJAEAjc.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BZfe6nWe.css +0 -6
- package/frontend/build/client/_app/immutable/assets/_page.BZfe6nWe.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BZfe6nWe.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.Bj_a_5lv.css +0 -6
- package/frontend/build/client/_app/immutable/assets/_page.Bj_a_5lv.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.Bj_a_5lv.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BwgOqeMo.css +0 -6
- package/frontend/build/client/_app/immutable/assets/_page.BwgOqeMo.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BwgOqeMo.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.CFnbmY-D.css +0 -6
- package/frontend/build/client/_app/immutable/assets/_page.CFnbmY-D.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.CFnbmY-D.css.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/2zMvi6fR.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/2zMvi6fR.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/3InFPLvE.js +0 -6
- package/frontend/build/client/_app/immutable/chunks/3InFPLvE.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/3InFPLvE.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BAACMRH5.js +0 -6
- package/frontend/build/client/_app/immutable/chunks/BAACMRH5.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BAACMRH5.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BAMUGSh7.js +0 -6
- package/frontend/build/client/_app/immutable/chunks/BAMUGSh7.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BAMUGSh7.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BKuh57WU.js +0 -6
- package/frontend/build/client/_app/immutable/chunks/BKuh57WU.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BKuh57WU.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BUwxRmHf.js +0 -6
- package/frontend/build/client/_app/immutable/chunks/BUwxRmHf.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BUwxRmHf.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BmZ9upwL.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BmZ9upwL.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/C1Vid6wz.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/C1Vid6wz.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/C8OURRSs.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/C8OURRSs.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CGeZlCaI.js +0 -6
- package/frontend/build/client/_app/immutable/chunks/CGeZlCaI.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CGeZlCaI.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CKDtmZUQ.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CKDtmZUQ.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CMBQQ9RZ.js +0 -6
- package/frontend/build/client/_app/immutable/chunks/CMBQQ9RZ.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CMBQQ9RZ.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CMEtqUfQ.js +0 -6
- package/frontend/build/client/_app/immutable/chunks/CMEtqUfQ.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CMEtqUfQ.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CNdcuGR0.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CNdcuGR0.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CUC98kMZ.js +0 -6
- package/frontend/build/client/_app/immutable/chunks/CUC98kMZ.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CUC98kMZ.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CgnwuKKO.js +0 -6
- package/frontend/build/client/_app/immutable/chunks/CgnwuKKO.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CgnwuKKO.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/Co3xKhEp.js +0 -6
- package/frontend/build/client/_app/immutable/chunks/Co3xKhEp.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/Co3xKhEp.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CuqnZUex.js +0 -6
- package/frontend/build/client/_app/immutable/chunks/CuqnZUex.js.br +0 -5
- package/frontend/build/client/_app/immutable/chunks/CuqnZUex.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CzlPaHY9.js +0 -6
- package/frontend/build/client/_app/immutable/chunks/CzlPaHY9.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CzlPaHY9.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DCgHuuvs.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DCgHuuvs.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DDZw0L0T.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DDZw0L0T.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DHM6H-es.js +0 -7
- package/frontend/build/client/_app/immutable/chunks/DHM6H-es.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DHM6H-es.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DMZwI8Cj.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DMZwI8Cj.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DSLBMEpr.js +0 -6
- package/frontend/build/client/_app/immutable/chunks/DSLBMEpr.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DSLBMEpr.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DbgD7JLa.js +0 -6
- package/frontend/build/client/_app/immutable/chunks/DbgD7JLa.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DbgD7JLa.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/TOCyHP97.js +0 -11
- package/frontend/build/client/_app/immutable/chunks/TOCyHP97.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/TOCyHP97.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/kkA1mrsH.js +0 -8
- package/frontend/build/client/_app/immutable/chunks/kkA1mrsH.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/kkA1mrsH.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/t-La0hgu.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/t-La0hgu.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/w0D4Uzlq.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/w0D4Uzlq.js.gz +0 -0
- package/frontend/build/client/_app/immutable/entry/app.KrtMZ3my.js +0 -7
- package/frontend/build/client/_app/immutable/entry/app.KrtMZ3my.js.br +0 -0
- package/frontend/build/client/_app/immutable/entry/app.KrtMZ3my.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/0.C8DodwXs.js +0 -11
- package/frontend/build/client/_app/immutable/nodes/0.C8DodwXs.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/0.C8DodwXs.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/1.Df9sLw8b.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/1.Df9sLw8b.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/10.DEbnxfND.js +0 -6
- package/frontend/build/client/_app/immutable/nodes/10.DEbnxfND.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/10.DEbnxfND.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/11.BViaDK2m.js +0 -6
- package/frontend/build/client/_app/immutable/nodes/11.BViaDK2m.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/11.BViaDK2m.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/12.BMSCSd88.js +0 -6
- package/frontend/build/client/_app/immutable/nodes/12.BMSCSd88.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/12.BMSCSd88.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/2.BCPSg7H4.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/2.BCPSg7H4.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/3.8BFAJoHT.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/3.8BFAJoHT.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/4.D-YT_JJe.js +0 -6
- package/frontend/build/client/_app/immutable/nodes/4.D-YT_JJe.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/4.D-YT_JJe.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/5.DVeH2eQP.js +0 -6
- package/frontend/build/client/_app/immutable/nodes/5.DVeH2eQP.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/5.DVeH2eQP.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/6.DI7-IJhN.js +0 -6
- package/frontend/build/client/_app/immutable/nodes/6.DI7-IJhN.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/6.DI7-IJhN.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/7.C-pKvVZy.js +0 -6
- package/frontend/build/client/_app/immutable/nodes/7.C-pKvVZy.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/7.C-pKvVZy.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/8.93Mb3ofT.js +0 -9
- package/frontend/build/client/_app/immutable/nodes/8.93Mb3ofT.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/8.93Mb3ofT.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/9.CvfGx3Hu.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/9.CvfGx3Hu.js.gz +0 -0
- package/frontend/build/server/chunks/0-D5YWFygh.js +0 -22
- package/frontend/build/server/chunks/0-D5YWFygh.js.map +0 -5
- package/frontend/build/server/chunks/10-l6_ikL_D.js +0 -14
- package/frontend/build/server/chunks/10-l6_ikL_D.js.map +0 -5
- package/frontend/build/server/chunks/11-CNLerze_.js +0 -14
- package/frontend/build/server/chunks/11-CNLerze_.js.map +0 -5
- package/frontend/build/server/chunks/12-De6Ol6pu.js +0 -14
- package/frontend/build/server/chunks/12-De6Ol6pu.js.map +0 -5
- package/frontend/build/server/chunks/2-Dc_rKWoK.js +0 -14
- package/frontend/build/server/chunks/3-DrRqVrcX.js +0 -14
- package/frontend/build/server/chunks/3-DrRqVrcX.js.map +0 -5
- package/frontend/build/server/chunks/4-Bo04DC5Z.js +0 -14
- package/frontend/build/server/chunks/4-Bo04DC5Z.js.map +0 -5
- package/frontend/build/server/chunks/5-CFeE5dPZ.js +0 -14
- package/frontend/build/server/chunks/5-CFeE5dPZ.js.map +0 -5
- package/frontend/build/server/chunks/6-DZk37MZH.js +0 -14
- package/frontend/build/server/chunks/6-DZk37MZH.js.map +0 -5
- package/frontend/build/server/chunks/7-DiQJZEF_.js +0 -14
- package/frontend/build/server/chunks/7-DiQJZEF_.js.map +0 -5
- package/frontend/build/server/chunks/8-CKPVFOqJ.js +0 -14
- package/frontend/build/server/chunks/8-CKPVFOqJ.js.map +0 -5
- package/frontend/build/server/chunks/9-DirZG_Lu.js +0 -14
- package/frontend/build/server/chunks/BackLink-BJ8NaemM.js.map +0 -5
- package/frontend/build/server/chunks/Badge-44ZTDx0V.js.map +0 -5
- package/frontend/build/server/chunks/ConfirmModal-C0EAXcq_.js.map +0 -5
- package/frontend/build/server/chunks/EmptyState-BA_eXaeR.js.map +0 -5
- package/frontend/build/server/chunks/Modal-DChG187n.js.map +0 -5
- package/frontend/build/server/chunks/Toast-v-q4ZnYq.js.map +0 -5
- package/frontend/build/server/chunks/_layout.svelte-CHVI3Prt.js +0 -29
- package/frontend/build/server/chunks/_layout.svelte-CHVI3Prt.js.map +0 -5
- package/frontend/build/server/chunks/_page.svelte-1as75nPc.js.map +0 -5
- package/frontend/build/server/chunks/_page.svelte-1jo8MapI.js.map +0 -5
- package/frontend/build/server/chunks/_page.svelte-8gELc_B1.js +0 -729
- package/frontend/build/server/chunks/_page.svelte-8gELc_B1.js.map +0 -5
- package/frontend/build/server/chunks/_page.svelte-BuFusRK1.js.map +0 -5
- package/frontend/build/server/chunks/_page.svelte-CAVyp70V.js +0 -250
- package/frontend/build/server/chunks/_page.svelte-CAVyp70V.js.map +0 -5
- package/frontend/build/server/chunks/_page.svelte-CB8-QBNg.js.map +0 -5
- package/frontend/build/server/chunks/_page.svelte-CWWeZuid.js.map +0 -5
- package/frontend/build/server/chunks/_page.svelte-D3E6Eojd.js.map +0 -5
- package/frontend/build/server/chunks/_page.svelte-Kg69DDaM.js.map +0 -5
- package/frontend/build/server/chunks/_page.svelte-L9fuiN_q.js +0 -57
- package/frontend/build/server/chunks/_page.svelte-L9fuiN_q.js.map +0 -5
- package/frontend/build/server/chunks/common-DYYTVHPw.js.map +0 -5
- package/frontend/build/server/chunks/constants-CXTaQaB6.js.map +0 -5
- package/frontend/build/server/chunks/reports2-BtElN_53.js.map +0 -5
- package/frontend/build/server/chunks/repository-FYYV_vKE.js.map +0 -5
- package/frontend/build/server/chunks/runner-DC7hXbnY.js +0 -37
- package/frontend/build/server/chunks/runner-DC7hXbnY.js.map +0 -5
- package/frontend/src/lib/components/ui/Toast.svelte +0 -24
- /package/frontend/.svelte-kit/output/client/_app/immutable/assets/{3.BR3wgXcZ.css → 4.BR3wgXcZ.css} +0 -0
- /package/frontend/build/client/_app/immutable/assets/{3.BR3wgXcZ.css → 4.BR3wgXcZ.css} +0 -0
- /package/frontend/build/client/_app/immutable/assets/{3.BR3wgXcZ.css.br → 4.BR3wgXcZ.css.br} +0 -0
- /package/frontend/build/client/_app/immutable/assets/{3.BR3wgXcZ.css.gz → 4.BR3wgXcZ.css.gz} +0 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This file is part of Plum.
|
|
3
|
+
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import{a as o,t as p}from"./6VDMVB5U.js";import"./CtgCYzu5.js";import{d as l,k as m,t as n}from"./BIf7lHIm.js";import{c as f,s as i}from"./BTV7EXZb.js";import{p as d}from"./D72giPTu.js";var v=p("<span><!></span>");function _(e,t){let r=d(t,"variant",8,"neutral");var a=v(),s=l(a);f(s,t,"default",{},null),m(a),n(()=>i(a,`badge ${r()??""} svelte-f4flx`)),o(e,a)}export{_ as B};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
This file is part of Plum.
|
|
3
|
+
Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
|
+
*/
|
|
5
|
+
x d˶z�j ���TO�,w~��I_)�jm����<��<-��ƞ�8�P���pn$!%"�4J�Ia6��z|�z��2����;J���:[
|
|
6
|
+
P�eG<!�o/�5���+�B:'���_�N�?e�I%��Eú�ܞ�|'Dx�X��7Ӏ����C�Sj\-�)���:�5��$��H��(і� �.��t|��'�ig�B��eI541lb��=�N$���T_����X�N+{�_?�z
|
|
Binary file
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This file is part of Plum.
|
|
3
|
+
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
function c(t,n){const e=URL.createObjectURL(t),o=document.createElement("a");o.href=e,o.download=n,document.body.appendChild(o),o.click(),o.remove(),setTimeout(()=>URL.revokeObjectURL(e),1e3)}function i(t,n){const e=/filename="?([^"]+)"?/.exec(t??"");return e?e[1]:n}async function r(t,{headers:n={},fallbackName:e="export"}={}){const o=await fetch(t,{headers:n});if(!o.ok)throw new Error("Export failed");const a=await o.blob();c(a,i(o.headers.get("Content-Disposition"),e))}export{c as a,r as d};
|
|
Binary file
|
|
Binary file
|
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import{s as e}from"./
|
|
6
|
+
import{s as e}from"./BIjh3jiU.js";const r=()=>{const s=e;return{page:{subscribe:s.page.subscribe},navigating:{subscribe:s.navigating.subscribe},updated:s.updated}},b={subscribe(s){return r().page.subscribe(s)}};export{b as p};
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This file is part of Plum.
|
|
3
|
+
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import{A as e}from"./C4Z3p6jE.js";import{a}from"./CXQhSK1T.js";function n(){return{Authorization:`Bearer ${a.getToken()}`}}async function i(){const t=await fetch(`${e}/active-runs`,{headers:n()});if(!t.ok)return[];const{runs:r}=await t.json();return r??[]}export{i as f};
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This file is part of Plum.
|
|
3
|
+
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import{w as r,ab as u}from"./BIf7lHIm.js";import{y as A,z as B,B as U,a as L}from"./C4Z3p6jE.js";import{t as S}from"./B2lVGNml.js";import{a as b}from"./CXQhSK1T.js";const N=Object.freeze({RUN_TEST:"run-test",CANCEL_TEST:"cancel-test",BG_RUN_QUEUED:"bg-run-queued",BG_RUN_START:"bg-run-start",BG_RUN_LOG:"bg-run-log",BG_RUN_DONE:"bg-run-done",BG_RUN_LANES_INIT:"bg-run-lanes-init",BG_RUN_LANE_LOG:"bg-run-lane-log",BG_RUN_LANE_STATUS:"bg-run-lane-status",BG_RUN_LANE_RRWEB_BATCH:"bg-run-lane-rrweb-batch",REPORT_READY:"report-ready"}),G="Run all tests?",h="Run all tests",$="No tag or filter is set. This will run",v="every test",F="in the suite, which may take a while.",Q="View Report",V="Test Run",W="Clear test run",m="None",M="No active test runs",P="Workers",Y="Browser",x="Runners",j="Notify",z="No automated cases in this run",K="Run",O="Manual run",q="No tests currently running",H="Queued",X="Cancel run",J=n=>`${n} automated`,Z=n=>n?"Discord notification on":"Discord notification off",nn=n=>n?"Slack notification on":"Slack notification off",sn=n=>`${S(n)} run`,tn=n=>`started by ${n}`,en=n=>n?"Collapse panel":"Expand panel",rn=n=>n>0?`Queued · #${n}`:"Queued";function on({running:n,queued:t,verdict:s}){return n>0&&t>0?`${n} running · ${t} queued`:n>0?n===1?"Running":`${n} running`:t>0?t===1?"Queued":`${t} queued`:s==="pass"?"Passed":s==="fail"?"Failed":"Ready"}function an(n,t){var s;return n.selectedRunners.length===1&&n.selectedRunners[0]===A?B:n.selectedRunners.length===1?((s=t.find(e=>e.id===n.selectedRunners[0]))==null?void 0:s.name)??"1 node":`${n.selectedRunners.length} nodes`}const d=r(null),p=r({});function C({kind:n,label:t,meta:s,status:e}){return{kind:n,label:t,status:e,testCompleted:!1,latestReportId:null,verdict:"idle",output:"",lanes:[],currentRun:{tag:(s==null?void 0:s.tag)??"",workers:s==null?void 0:s.workers,browser:s==null?void 0:s.browser,runTitle:t,startedBy:(s==null?void 0:s.startedBy)??null},rrwebByLane:{}}}function un(n,{id:t,workerId:s,events:e}){const o=n[t]??{},a=o[s]??{events:[]};return{...n,[t]:{...o,[s]:{events:[...a.events,...e]}}}}const g=r({workers:1,testID:"",browser:U[0].id,selectedRunners:["built-in"]}),I=r(!1),cn=r(!0),ln=r(0),Rn=r(0);function _n(n,t,s={},e=null){var E;const o=u(d);if(!o)return null;const{workers:a,testID:T,browser:R,selectedRunners:f}=u(g),c=(n!==void 0?n:T).trim().replace(/\sOR\s/gi,l=>l.toLowerCase()),i=crypto.randomUUID(),_=((E=u(b).user)==null?void 0:E.name)??null;return p.update(l=>({...l,[i]:C({kind:L.MANUAL,label:e||c||O,meta:{tag:c,workers:a,browser:R,startedBy:_},status:"queued"})})),I.set(!0),o.emit(N.RUN_TEST,{runId:i,tag:c,workers:a,browser:R,runners:f,testRunId:t??null,notifyDiscord:s.notifyDiscord??!1,notifySlack:s.notifySlack??!1,runTitle:e,startedBy:_}),i}function En(n){const t=u(d);t&&n&&t.emit(N.CANCEL_TEST,{runId:n})}function Ln(n,t){return Object.values(n).find(s=>s.kind===L.CRON&&s.label===t&&s.status!=="done")}export{tn as A,Y as B,W as C,M as D,Z as E,nn as F,q as G,J as H,O as M,m as N,H as Q,h as R,N as S,V as T,Q as V,P as W,ln as a,g as b,p as c,En as d,cn as e,Ln as f,un as g,on as h,an as i,G as j,$ as k,v as l,C as m,F as n,K as o,I as p,en as q,Rn as r,d as s,_n as t,z as u,x as v,j as w,X as x,rn as y,sn as z};
|
|
Binary file
|
|
Binary file
|
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import{w as o}from"./
|
|
6
|
+
import{w as o}from"./BIf7lHIm.js";const e="plum-theme",m=localStorage.getItem(e)??"light",a=o(m);a.subscribe(t=>{localStorage.setItem(e,t),document.documentElement.setAttribute("data-theme",t)});export{a as t};
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This file is part of Plum.
|
|
3
|
+
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import{A as n}from"./C4Z3p6jE.js";import{a as c}from"./CXQhSK1T.js";function s(){return{Authorization:`Bearer ${c.getToken()}`}}async function p(){const e=await fetch(`${n}/settings/project`,{headers:s()});return e.ok?e.json():{name:"",logoUrl:"",timezone:"UTC",maxRetries:0}}async function h({name:e,logoUrl:t,timezone:a,maxRetries:o}){return(await fetch(`${n}/settings/project`,{method:"POST",headers:{"Content-Type":"application/json",...s()},body:JSON.stringify({name:e,logoUrl:t,timezone:a,maxRetries:o})})).json()}async function d(){const e=await fetch(`${n}/backup/export`,{headers:s()});if(!e.ok)throw new Error("Export failed");return e.json()}async function y(e){return(await fetch(`${n}/backup/import`,{method:"POST",headers:{"Content-Type":"application/json",...s()},body:JSON.stringify(e)})).json()}async function k(){const e=await fetch(`${n}/backup/config`,{headers:s()});return e.ok?e.json():{backupEnabled:!1,backupCron:"0 2 * * *",backupS3Endpoint:"",backupS3Region:"",backupS3Bucket:"",backupS3AccessKey:"",backupS3SecretKeySet:!1,backupS3Prefix:"",backupLastRunAt:null,backupLastStatus:"",backupIncludeReports:!1}}async function b(e){return(await fetch(`${n}/backup/config`,{method:"POST",headers:{"Content-Type":"application/json",...s()},body:JSON.stringify(e)})).json()}async function j(e){return(await fetch(`${n}/backup/test-s3`,{method:"POST",headers:{"Content-Type":"application/json",...s()},body:JSON.stringify(e)})).json()}async function S(){return(await fetch(`${n}/backup/run-now`,{method:"POST",headers:s()})).json()}async function g(){return(await fetch(`${n}/backup/s3-backups`,{headers:s()})).json()}async function m(e){return(await fetch(`${n}/backup/s3-restore`,{method:"POST",headers:{"Content-Type":"application/json",...s()},body:JSON.stringify({key:e})})).json()}async function $(){const e=await fetch(`${n}/settings/integrations`,{headers:s()});return e.ok?e.json():{discordWebhookUrl:"",slackWebhookUrl:"",notifyPublicUrl:""}}async function w({discordWebhookUrl:e,slackWebhookUrl:t,notifyPublicUrl:a}){return(await fetch(`${n}/settings/integrations`,{method:"POST",headers:{"Content-Type":"application/json",...s()},body:JSON.stringify({discordWebhookUrl:e,slackWebhookUrl:t,notifyPublicUrl:a})})).json()}async function l(){const e=await fetch(`${n}/settings/mcp`,{headers:s()});return e.ok?e.json():{mcpKeySet:!1,mcpKey:""}}async function T(){const e=await fetch(`${n}/settings/mcp/generate`,{method:"POST",headers:s()});if(!e.ok)throw new Error("Failed to generate key");return e.json()}function r(){return{Authorization:`Bearer ${c.getToken()}`}}async function O(){const e=await fetch(`${n}/runners`,{headers:r()}),{runners:t}=await e.json();return t}async function P(e){return(await fetch(`${n}/runners`,{method:"POST",headers:{"Content-Type":"application/json",...r()},body:JSON.stringify(e)})).json()}async function C(e){return(await fetch(`${n}/runners/${e}`,{method:"DELETE",headers:r()})).json()}async function R(e,t){return(await fetch(`${n}/runners/${e}`,{method:"PUT",headers:{"Content-Type":"application/json",...r()},body:JSON.stringify(t)})).json()}async function B(e){return(await fetch(`${n}/runners/${e}/ping`,{method:"POST",headers:r()})).json()}async function N(e){return(await fetch(`${n}/runners/${e}/stop`,{method:"POST",headers:r()})).json()}async function E(e){return(await fetch(`${n}/runners/${e}/restart`,{method:"POST",headers:r()})).json()}async function J(e,t){return(await fetch(`${n}/runners/probe`,{method:"POST",headers:{"Content-Type":"application/json",...r()},body:JSON.stringify({url:e,token:t})})).json()}export{$ as a,p as b,l as c,k as d,g as e,O as f,J as g,N as h,C as i,P as j,w as k,T as l,d as m,y as n,b as o,B as p,m as q,E as r,h as s,j as t,R as u,S as v};
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This file is part of Plum.
|
|
3
|
+
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import{A as t,o as L,p as r}from"./C4Z3p6jE.js";import{d as T}from"./DiexacSB.js";function n(s){return{...s,date:new Date(s.createdAt).toLocaleString()}}async function p({page:s=1,limit:e=L}={}){const a=new URLSearchParams({page:s,limit:e}),o=await fetch(`${t}/reports?${a}`),{reports:E,total:c,passCount:i,failCount:l,trend:_}=await o.json();return{reports:E.map(n),total:c,passCount:i,failCount:l,trend:_.map(n)}}function A(s){return`/reports/${s}`}async function S(s){const e=await fetch(`${t}/reports/${s}`);if(!e.ok)throw new Error("Report not found");return e.json()}async function N(s){const e=await fetch(`${t}/reports/${s}/recordings`);if(!e.ok)throw new Error("Failed to fetch recordings");return e.json()}async function u(s,e){const a=await fetch(`${t}/reports/${s}/recordings/${e}/events`);if(!a.ok)throw new Error("Failed to fetch recording events");const{events:o}=await a.json();return o}async function I(s,e){await T(`${t}/reports/${s}/export?format=${e}`,{fallbackName:`report-${s}.${e}`})}async function D(s){const e=await fetch(`${t}/reports/${s}`,{method:"DELETE"});if(!e.ok)throw new Error("Failed to delete report");return e.json()}async function O(s){const e=await fetch(`${t}/reports/bulk`,{method:"DELETE",headers:{"Content-Type":"application/json"},body:JSON.stringify({ids:s})});if(!e.ok)throw new Error("Failed to delete reports");return e.json()}const f="Reports",h="Passed",w="Failed",P="Reports — Plum",$="Reports",m="passing",C="Recent",B="← older · newer →",y="No reports yet. Run a test to generate one.",g="Select all on this page",b="Select",U="Screenshots have been replaced by full session replay. Reports created before this change no longer have screenshots — steps and logs are still available.",v="Dismiss",G="Delete report",k=s=>s===1?"Delete report?":`Delete ${s} reports?`,F=s=>s===1?"This will permanently remove the report and its data file.":`This will permanently remove ${s} reports and their data files.`,H=s=>`${s} ${r(s,"run")} recorded`,V=s=>`${s} passed`,M=s=>`${s} failed`,W=(s,e,a)=>`${s} · ${e} · ${a}`,j=s=>`Delete (${s})`,K="Report — Plum",Y="Could not load report.",x="passed",q="failed",z="skipped",J="duration",Q="Run Logs",X="Failed and was automatically retried before the final result",Z="Watch replay",ss="Replay",es=s=>`${s} runners`,ts=s=>`${s} cases`,as=s=>`${s} attempts`,os=s=>`Case ${s}`,ns="Could not load this recording.",rs="Inspect element",Es=[{id:"csv",label:"CSV",hint:"Download report"},{id:"json",label:"JSON",hint:"Structured summary"}],cs="Download",is="Screenshot",ls="PNG of the current frame",_s="Record video",Ls="WebM — experimental, stays in your browser",Ts="Video export is only available for single-tab replays.",ds="Screenshot saved.",Rs="Could not capture this frame.",ps="Rendering replay video…",As="Replay video downloaded",Ss="Replay video render failed",Ns="Experimental — quality varies. Nothing is uploaded.",us="Dismiss",Is="Restart replay",Ds="Steps",Os="Inspector",fs="Click an element in the replay to inspect it.",hs="Attributes",ws="Size",Ps=s=>s===0?"Main tab":`Tab/Window ${s+1}`,$s="Live Run — Plum",ms="View past reports →",Cs="Live",Bs="Cancel run",ys="All tests passed",gs="Some tests failed",bs="View Report Now",Us="Awaiting stream...",vs="No stream...",Gs="Runner",ks="Running…",Fs="Finished",Hs="(waiting for output…)",Vs="Unknown runner",Ms=s=>`Worker ${s}`,Ws=s=>`${s} ${r(s,"worker")}`,js=s=>`Redirecting in ${s}s…`,Ks="Waiting for a runner",Ys="This run starts as soon as every runner it needs is free.",xs="Run not found",qs="This run has finished or was never started. Check the reports list for its results.",zs="Run skipped",Js=s=>s>0?`Position ${s} in the queue`:"Next up";export{u as $,Us as A,vs as B,Bs as C,v as D,Gs as E,ks as F,Fs as G,$ as H,h as I,w as J,es as K,P as L,ys as M,y as N,gs as O,m as P,Ks as Q,C as R,g as S,B as T,Ds as U,ms as V,Hs as W,Os as X,ws as Y,fs as Z,hs as _,D as a,rs as a0,cs as a1,Ps as a2,Is as a3,is as a4,ls as a5,_s as a6,Ls as a7,ds as a8,Rs as a9,Ts as aa,ns as ab,S as ac,N as ad,K as ae,Y as af,Es as ag,I as ah,x as ai,J as aj,Vs as ak,ts as al,X as am,as as an,Z as ao,ss as ap,q as aq,z as ar,Q as as,os as at,us as au,Ns as av,ps as aw,As as ax,Ss as ay,O as b,k as c,F as d,U as e,p as f,M as g,b as h,G as i,A as j,j as k,$s as l,f as m,xs as n,qs as o,V as p,Ys as q,H as r,Js as s,W as t,zs as u,Cs as v,Ws as w,bs as x,js as y,Ms as z};
|
|
Binary file
|
|
Binary file
|
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import{c as w,a as c,e as v,t as _}from"./
|
|
6
|
+
import{c as w,a as c,e as v,t as _}from"./6VDMVB5U.js";import{i as A}from"./CtgCYzu5.js";import{p as j,A as y,f as C,c as D,d as E,j as p,t as u,k as N}from"./BIf7lHIm.js";import{i as q}from"./D_thT6pZ.js";import{e as z,t as B,i as F}from"./BTV7EXZb.js";import{p as d}from"./D72giPTu.js";var G=_('<button class="page svelte-1a7b06a"></button>'),H=_('<div class="pagination svelte-1a7b06a"><button class="arrow svelte-1a7b06a" aria-label="Previous">←</button> <!> <button class="arrow svelte-1a7b06a" aria-label="Next">→</button></div>');function R(g,o){j(o,!1);let t=d(o,"current",8,1),e=d(o,"total",8,1);const h=y();function s(a){a<1||a>e()||h("change",a)}A();var b=w(),k=C(b);{var x=a=>{var i=H(),n=E(i),f=p(n,2);z(f,1,()=>Array(e()),F,(P,I,l)=>{var r=G();r.textContent=l+1,u(()=>B(r,"active",t()===l+1)),v("click",r,()=>s(l+1)),c(P,r)});var m=p(f,2);N(i),u(()=>{n.disabled=t()===1,m.disabled=t()===e()}),v("click",n,()=>s(t()-1)),v("click",m,()=>s(t()+1)),c(a,i)};q(k,a=>{e()>1&&a(x)})}c(g,b),D()}export{R as P};
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This file is part of Plum.
|
|
3
|
+
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import{e as v,u as m,t as b,d as c,k as _}from"./BIf7lHIm.js";import{l as p,e as y,a as h,t as k}from"./6VDMVB5U.js";import{i as q,p as s}from"./D72giPTu.js";import"./CtgCYzu5.js";import{c as S,s as x}from"./BTV7EXZb.js";import{s as g}from"./C4Z3p6jE.js";import{b as z}from"./tsOANt55.js";function f(e,t,r){if(e.multiple)return O(e,t);for(var n of e.options){var a=l(n);if(q(a,t)){n.selected=!0;return}}(!r||t!==void 0)&&(e.selectedIndex=-1)}function B(e,t){let r=!0;v(()=>{t&&f(e,m(t),r),r=!1;var n=new MutationObserver(()=>{var a=e.__value;f(e,a)});return n.observe(e,{childList:!0,subtree:!0,attributes:!0,attributeFilter:["value"]}),()=>{n.disconnect()}})}function D(e,t,r=t){var n=!0;p(e,"change",a=>{var u=a?"[selected]":":checked",i;if(e.multiple)i=[].map.call(e.querySelectorAll(u),l);else{var o=e.querySelector(u)??e.querySelector("option:not([disabled])");i=o&&l(o)}r(i)}),v(()=>{var a=t();if(f(e,a,n),n&&a===void 0){var u=e.querySelector(":checked");u!==null&&(a=l(u),r(a))}e.__value=a,n=!1}),B(e)}function O(e,t){for(var r of e.options)r.selected=~t.indexOf(l(r))}function l(e){return"__value"in e?e.__value:e.value}var w=k("<button><!></button>");function E(e,t){let r=s(t,"variant",8,"primary"),n=s(t,"size",8,"md"),a=s(t,"type",8,"button"),u=s(t,"disabled",8,!1);var i=w(),o=c(i);S(o,t,"default",{},null),_(i),b(()=>{g(i,"type",a()),i.disabled=u(),x(i,`btn ${r()??""} ${n()??""} svelte-m1euen`)}),y("click",i,function(d){z.call(this,t,d)}),h(e,i)}export{E as B,D as b,B as i,f as s};
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This file is part of Plum.
|
|
3
|
+
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import{p as t}from"./C4Z3p6jE.js";const E="Test Repository",o="Name",_="Description",T="Priority",n="Title",c="Name is required.",L="Title is required.",A="Test Repository — Plum",S="Test Repository",i="Manage test suites, cases, and track manual test runs.",D="+ New Suite",I="+ New Run",d="Import from file",R="/settings?section=testcases",O="Test cases",u="Suite",C="Suites",N="Test Runs",r="Search by ID or name…",l="No results",U="Cases",p="Suites",B="automated",P="Delete suite",b="Delete run",M="Duplicate run",m="No test suites yet",F="Create your first suite to start organising test cases.",g="No test runs yet",$="Create a test run to start executing and tracking manual tests.",h="New Test Suite",H="New Test Run",y="Login flows",v="What this suite covers…",G="Sprint 12 regression",f="Duplicate Run",k="Duplicate",W="? A copy will be added at the top of the list.",Y="Failed to load data",w="Failed to delete suite.",x="Failed to duplicate run.",X="Failed to delete run.",K=s=>`Nothing matches "${s}".`,V=s=>`by ${s}`,q=s=>`${s} ${t(s,"case")}`,z=s=>s?"Creating…":"Create Suite",Q=s=>s?"Creating…":"Create Run",j=s=>`Delete ${s==="suite"?"Suite":"Run"}`,J=s=>`Suite "${s}" created.`,Z=s=>`Suite "${s}" deleted.`,ss=s=>`Duplicated as "${s}".`,ts=s=>`Run "${s}" deleted.`,as="Delete Test Case",es="New Test Case",Es="User can log in with valid credentials",os="What this case verifies…",_s="Create Case",Ts="Edit Suite",ns="Edit suite",cs="Edit case",Ls="Test Cases",As="+ Add Case",Ss="Filter by ID or name…",is="No cases yet",Ds="Add your first test case to this suite.",Is="No cases match",ds="Date",Rs="Step",Os="Action",us="Test Data",Cs="Expected Output",Ns="Describe the action…",rs="Optional",ls="What should happen…",Us='No steps. Click "+ Add step" to begin.',ps="+ Add step",Bs="Edit Steps",Ps='No steps defined. Click "Edit Steps" to add them.',bs="Steps",Ms="History",ms="No history yet. Results appear after test runs or automated builds.",Fs="Automated run ↗",gs="Report not found",$s="Run not found",hs="Failed to load suite",Hs="Failed to load case",ys="Failed to delete case.",vs="Test case updated.",Gs="Steps saved.",fs="Suite updated.",ks="Move to suite",Ws="Move Test Case",Ys="Move to suite",ws="Failed to move case.",xs=s=>`${s?`${s.displayId} — ${s.name}`:"Suite"} — Plum`,Xs=s=>`Created by ${s}`,Ks=s=>`${s} created.`,Vs=s=>`${s} deleted.`,qs=(s,a)=>`${s} moved to ${a}.`,zs=s=>`${s} ${t(s,"step")}`,Qs=s=>s?"Saving…":"Save Steps",js=s=>s?"Moving…":"Move",Js=s=>`${s} ↗`,Zs="Edit Run",st="Edit run",tt="Reopen",at="Start Execution",et="Stop Execution",Et="← Edit Run",ot="Mark Complete",_t="Build",Tt="Execute",nt="In this run",ct="locked",Lt="No cases in this run.",At="Unassigned",St="Suite browser",it="Search cases…",Dt="No matching cases",It="No cases in this suite",dt="All cases added",Rt="No suites available.",Ot="This run is not in progress — start execution to record results.",ut="Toggle steps",Ct="Assign to me",Nt="In Progress",rt="Pass",lt="Fail",Ut="Blocked",pt="Skip",Bt="Reset to pending",Pt="↩ Reset",bt="Failed to add case.",Mt="Run updated.",mt="Run saved.",Ft="Run marked as complete.",gt="Run reopened.",$t=s=>`${(s==null?void 0:s.title)??"Test Run"} — Plum`,ht=s=>`${s} passed`,Ht=s=>`${s} failed`,yt=s=>`${s} remaining`,vt=s=>`Data: ${s}`,Gt=s=>`Expected: ${s}`;export{es as $,l as A,F as B,m as C,k as D,O as E,Y as F,P as G,S as H,R as I,q as J,V as K,$ as L,g as M,h as N,M as O,A as P,b as Q,N as R,C as S,n as T,K as U,U as V,B as W,p as X,hs as Y,xs as Z,as as _,i as a,St as a$,Es as a0,os as a1,Ts as a2,Ws as a3,Vs as a4,ys as a5,_s as a6,js as a7,Rt as a8,Ys as a9,Fs as aA,Gs as aB,Us as aC,Rs as aD,Ns as aE,us as aF,rs as aG,Cs as aH,ls as aI,Os as aJ,Ps as aK,gs as aL,Js as aM,$s as aN,$t as aO,Zs as aP,Mt as aQ,st as aR,_t as aS,Tt as aT,tt as aU,nt as aV,ut as aW,gt as aX,ct as aY,Lt as aZ,At as a_,Ks as aa,fs as ab,qs as ac,ws as ad,E as ae,ns as af,Ls as ag,As as ah,Xs as ai,u as aj,Ss as ak,ds as al,Ds as am,is as an,Is as ao,ks as ap,zs as aq,Hs as ar,bs as as,Ms as at,cs as au,vs as av,Bs as aw,Qs as ax,ps as ay,ms as az,f as b,it as b0,Ot as b1,ht as b2,Ht as b3,yt as b4,Nt as b5,rt as b6,lt as b7,Ut as b8,pt as b9,Bt as ba,Pt as bb,vt as bc,Gt as bd,Ct as be,mt as bf,bt as bg,at as bh,et as bi,Et as bj,ot as bk,Dt as bl,It as bm,dt as bn,Ft as bo,W as c,o as d,y as e,_ as f,v as g,T as h,z as i,H as j,G as k,Q as l,r as m,w as n,X as o,j as p,ss as q,ts as r,Z as s,x as t,c as u,J as v,L as w,d as x,D as y,I as z};
|
|
Binary file
|
|
Binary file
|
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import{i}from"./
|
|
6
|
+
import{i}from"./BIf7lHIm.js";function b(l,r){var e;var a=(e=l.$$events)==null?void 0:e[r.type],s=i(a)?a.slice():a==null?[]:[a];for(var t of s)t.call(this,r)}export{b};
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This file is part of Plum.
|
|
3
|
+
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import{e as f,s as y,a as m,t as h}from"./6VDMVB5U.js";import{i as G}from"./CtgCYzu5.js";import{p as J,A as K,B as T,s as n,d as l,j as E,k as i,g as t,t as b,c as Q,m as j}from"./BIf7lHIm.js";import{i as A}from"./D_thT6pZ.js";import{t as C,e as V}from"./BTV7EXZb.js";import{t as Y,u as Z,s as $}from"./C4Z3p6jE.js";import{b as tt}from"./BCh31ecr.js";import{p as r}from"./D72giPTu.js";var et=h('<span class="item-hint svelte-uuhpp9"> </span>'),at=h('<button type="button" class="item svelte-uuhpp9" role="menuitem"><span class="item-label svelte-uuhpp9"> </span> <!></button>'),st=h('<div class="popover svelte-uuhpp9" role="menu"></div>'),it=h('<div class="export-menu svelte-uuhpp9"><button type="button" class="trigger svelte-uuhpp9" aria-haspopup="menu"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path><polyline points="7 10 12 15 17 10"></polyline><line x1="12" y1="15" x2="12" y2="3"></line></svg> <span> </span></button> <!></div>');function dt(L,o){J(o,!1);let O=r(o,"label",8,Y),P=r(o,"items",8,Z),w=r(o,"busy",8,!1),M=r(o,"disabled",8,!1),R=r(o,"align",8,"right");const X=K();let a=j(!1),p=j();function D(){!M()&&!w()&&n(a,!t(a))}function H(e){n(a,!1),X("select",e)}function I(e){t(a)&&t(p)&&!t(p).contains(e.target)&&n(a,!1)}G();var u=it();f("click",T,I),f("keydown",T,e=>e.key==="Escape"&&n(a,!1));var s=l(u),B=E(l(s),2),N=l(B,!0);i(B),i(s);var S=E(s,2);{var U=e=>{var v=st();V(v,5,P,_=>_.id,(_,c)=>{var d=at(),g=l(d),W=l(g,!0);i(g);var q=E(g,2);{var z=k=>{var x=et(),F=l(x,!0);i(x),b(()=>y(F,t(c).hint)),m(k,x)};A(q,k=>{t(c).hint&&k(z)})}i(d),b(()=>y(W,t(c).label)),f("click",d,()=>H(t(c).id)),m(_,d)}),i(v),b(()=>C(v,"left",R()==="left")),m(e,v)};A(S,e=>{t(a)&&e(U)})}i(u),tt(u,e=>n(p,e),()=>t(p)),b(()=>{s.disabled=M(),$(s,"aria-expanded",t(a)),C(s,"open",t(a)),y(N,w()?"…":O())}),f("click",s,D),m(L,u),Q()}export{dt as E};
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This file is part of Plum.
|
|
3
|
+
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["../nodes/0.D2F-i1I5.js","../chunks/6VDMVB5U.js","../chunks/BIf7lHIm.js","../chunks/CtgCYzu5.js","../chunks/D_thT6pZ.js","../chunks/BTV7EXZb.js","../chunks/BIjh3jiU.js","../chunks/Dlymnwnf.js","../chunks/C4Z3p6jE.js","../chunks/CXQhSK1T.js","../chunks/kFFd6Oo5.js","../chunks/htkwR9b-.js","../chunks/B2lVGNml.js","../chunks/pNZogwkM.js","../chunks/DiexacSB.js","../chunks/BdBJfKUi.js","../chunks/gCgJ3Cwu.js","../chunks/BWGoOYU0.js","../chunks/D72giPTu.js","../chunks/CUPWZLIN.js","../assets/Modal.BZpm0HP8.css","../assets/ConfirmModal.Dd3uP-Sk.css","../chunks/DeiVAbyn.js","../assets/Badge.D1SV0Gv7.css","../chunks/BDb8hZHu.js","../chunks/BtTNggoY.js","../chunks/DDx3no2z.js","../assets/0.BEqlRAtD.css","../nodes/1.JIF2GfHq.js","../nodes/2.Bno00fr8.js","../chunks/BnXsGCy3.js","../chunks/CNpD-yNH.js","../assets/EmptyState.DUDM4P19.css","../assets/2.C1TbMUws.css","../nodes/3.B6KwaCsM.js","../chunks/BCh31ecr.js","../chunks/3MBVX4Yb.js","../assets/BackLink.DRrgBGDC.css","../assets/3.Be5c3USL.css","../nodes/4.BX70m3v6.js","../chunks/iL4SCrvY.js","../chunks/Dlnxgs49.js","../assets/4.BR3wgXcZ.css","../nodes/5.UIFh06yr.js","../chunks/prk8PJfA.js","../assets/Pagination.DZmi2Po-.css","../assets/5.ClS4XkkN.css","../nodes/6.DZ1OV24V.js","../chunks/Bfc47y5P.js","../chunks/tsOANt55.js","../chunks/zXSLr47H.js","../assets/ExportMenu.DsJQ1Qua.css","../assets/6.DdQVxyZK.css","../nodes/7.B_XntBZ1.js","../chunks/qvxlSGpD.js","../assets/Button.C1zsJAUG.css","../assets/7.CBHi6pzT.css","../nodes/8.CVHgJw-E.js","../assets/8.DOC8fPSI.css","../nodes/9.DDDQPmMj.js","../assets/9._h2o67kg.css","../nodes/10.A0AHLfOt.js","../chunks/r_d1Iu0W.js","../assets/10.DC0wD6w_.css","../nodes/11.CVSPxlqY.js","../assets/11.BWAH0Beh.css","../nodes/12.CnAR0AQb.js","../assets/12.Dm1nSEgE.css"])))=>i.map(i=>d[i]);
|
|
7
|
+
var W=r=>{throw TypeError(r)};var z=(r,t,s)=>t.has(r)||W("Cannot "+s);var u=(r,t,s)=>(z(r,t,"read from private field"),s?s.call(r):t.get(r)),w=(r,t,s)=>t.has(r)?W("Cannot add the same private member more than once"):t instanceof WeakSet?t.add(r):t.set(r,s),D=(r,t,s,a)=>(z(r,t,"write to private field"),a?a.call(r,s):t.set(r,s),s);import{s as V,O as K,g as E,ar as Q,ad as X,W as M,h as G,_ as $,Z as tt,a0 as et,a6 as rt,a7 as st,a8 as ot,p as at,af as nt,ag as it,o as ct,z as ut,f as T,j as lt,c as _t,as as I,d as mt,k as dt,t as ft,V as x}from"../chunks/BIf7lHIm.js";import{f as ht,m as vt,u as Et,a as b,c as S,t as Y,b as gt,s as yt}from"../chunks/6VDMVB5U.js";import{i as C}from"../chunks/D_thT6pZ.js";import{p as j,a as Pt}from"../chunks/D72giPTu.js";import{b as B}from"../chunks/BCh31ecr.js";const pt="modulepreload",Rt=function(r,t){return new URL(r,t).href},N={},l=function(t,s,a){let n=Promise.resolve();if(s&&s.length>0){const o=document.getElementsByTagName("link"),e=document.querySelector("meta[property=csp-nonce]"),d=(e==null?void 0:e.nonce)||(e==null?void 0:e.getAttribute("nonce"));n=Promise.allSettled(s.map(_=>{if(_=Rt(_,a),_ in N)return;N[_]=!0;const y=_.endsWith(".css"),k=y?'[rel="stylesheet"]':"";if(!!a)for(let P=o.length-1;P>=0;P--){const i=o[P];if(i.href===_&&(!y||i.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${_}"]${k}`))return;const h=document.createElement("link");if(h.rel=y?"stylesheet":pt,y||(h.as="script"),h.crossOrigin="",h.href=_,d&&h.setAttribute("nonce",d),document.head.appendChild(h),y)return new Promise((P,i)=>{h.addEventListener("load",P),h.addEventListener("error",()=>i(new Error(`Unable to preload CSS for ${_}`)))})}))}function c(o){const e=new Event("vite:preloadError",{cancelable:!0});if(e.payload=o,window.dispatchEvent(e),!e.defaultPrevented)throw o}return n.then(o=>{for(const e of o||[])e.status==="rejected"&&c(e.reason);return t().catch(c)})},Bt={};function bt(r){return class extends Ot{constructor(t){super({component:r,...t})}}}var g,m;class Ot{constructor(t){w(this,g);w(this,m);var c;var s=new Map,a=(o,e)=>{var d=M(e);return s.set(o,d),d};const n=new Proxy({...t.props||{},$$events:{}},{get(o,e){return E(s.get(e)??a(e,Reflect.get(o,e)))},has(o,e){return e===K?!0:(E(s.get(e)??a(e,Reflect.get(o,e))),Reflect.has(o,e))},set(o,e,d){return V(s.get(e)??a(e,d),d),Reflect.set(o,e,d)}});D(this,m,(t.hydrate?ht:vt)(t.component,{target:t.target,anchor:t.anchor,props:n,context:t.context,intro:t.intro??!1,recover:t.recover})),(!((c=t==null?void 0:t.props)!=null&&c.$$host)||t.sync===!1)&&Q(),D(this,g,n.$$events);for(const o of Object.keys(u(this,m)))o==="$set"||o==="$destroy"||o==="$on"||X(this,o,{get(){return u(this,m)[o]},set(e){u(this,m)[o]=e},enumerable:!0});u(this,m).$set=o=>{Object.assign(n,o)},u(this,m).$destroy=()=>{Et(u(this,m))}}$set(t){u(this,m).$set(t)}$on(t,s){u(this,g)[t]=u(this,g)[t]||[];const a=(...n)=>s.call(this,...n);return u(this,g)[t].push(a),()=>{u(this,g)[t]=u(this,g)[t].filter(n=>n!==a)}}$destroy(){u(this,m).$destroy()}}g=new WeakMap,m=new WeakMap;function q(r,t,s){G&&$();var a=r,n,c;tt(()=>{n!==(n=t())&&(c&&(st(c),c=null),n&&(c=rt(()=>s(a,n))))},et),G&&(a=ot)}var At=Y('<div id="svelte-announcer" aria-live="assertive" aria-atomic="true" style="position: absolute; left: 0; top: 0; clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap; width: 1px; height: 1px"><!></div>'),Lt=Y("<!> <!>",1);function Tt(r,t){at(t,!0);let s=j(t,"components",23,()=>[]),a=j(t,"data_0",3,null),n=j(t,"data_1",3,null);nt(()=>t.stores.page.set(t.page)),it(()=>{t.stores,t.page,t.constructors,s(),t.form,a(),n(),t.stores.page.notify()});let c=I(!1),o=I(!1),e=I(null);ct(()=>{const i=t.stores.page.subscribe(()=>{E(c)&&(V(o,!0),ut().then(()=>{V(e,Pt(document.title||"untitled page"))}))});return V(c,!0),i});const d=x(()=>t.constructors[1]);var _=Lt(),y=T(_);{var k=i=>{var v=S();const O=x(()=>t.constructors[0]);var A=T(v);q(A,()=>E(O),(p,R)=>{B(R(p,{get data(){return a()},get form(){return t.form},children:(f,wt)=>{var U=S(),Z=T(U);q(Z,()=>E(d),(H,J)=>{B(J(H,{get data(){return n()},get form(){return t.form}}),L=>s()[1]=L,()=>{var L;return(L=s())==null?void 0:L[1]})}),b(f,U)},$$slots:{default:!0}}),f=>s()[0]=f,()=>{var f;return(f=s())==null?void 0:f[0]})}),b(i,v)},F=i=>{var v=S();const O=x(()=>t.constructors[0]);var A=T(v);q(A,()=>E(O),(p,R)=>{B(R(p,{get data(){return a()},get form(){return t.form}}),f=>s()[0]=f,()=>{var f;return(f=s())==null?void 0:f[0]})}),b(i,v)};C(y,i=>{t.constructors[1]?i(k):i(F,!1)})}var h=lt(y,2);{var P=i=>{var v=At(),O=mt(v);{var A=p=>{var R=gt();ft(()=>yt(R,E(e))),b(p,R)};C(O,p=>{E(o)&&p(A)})}dt(v),b(i,v)};C(h,i=>{E(c)&&i(P)})}b(r,_),_t()}const qt=bt(Tt),Ft=[()=>l(()=>import("../nodes/0.D2F-i1I5.js"),__vite__mapDeps([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27]),import.meta.url),()=>l(()=>import("../nodes/1.JIF2GfHq.js"),__vite__mapDeps([28,1,2,3,6]),import.meta.url),()=>l(()=>import("../nodes/2.Bno00fr8.js"),__vite__mapDeps([29,1,2,3,4,5,8,30,11,12,9,31,18,32,33]),import.meta.url),()=>l(()=>import("../nodes/3.B6KwaCsM.js"),__vite__mapDeps([34,1,2,3,4,5,35,6,7,11,8,12,9,16,13,14,18,36,37,22,23,38]),import.meta.url),()=>l(()=>import("../nodes/4.BX70m3v6.js"),__vite__mapDeps([39,1,2,3,4,8,30,6,9,26,40,41,42]),import.meta.url),()=>l(()=>import("../nodes/5.UIFh06yr.js"),__vite__mapDeps([43,1,2,3,4,5,8,13,14,11,12,9,22,18,23,44,45,17,19,20,21,31,32,46]),import.meta.url),()=>l(()=>import("../nodes/6.DZ1OV24V.js"),__vite__mapDeps([47,1,2,3,4,5,8,48,49,7,6,13,14,12,24,22,18,23,36,37,50,35,51,25,52]),import.meta.url),()=>l(()=>import("../nodes/7.B_XntBZ1.js"),__vite__mapDeps([53,1,2,3,4,5,8,30,54,18,49,55,48,10,9,11,12,22,23,19,20,17,21,24,31,32,56]),import.meta.url),()=>l(()=>import("../nodes/8.CVHgJw-E.js"),__vite__mapDeps([57,1,2,3,4,5,8,30,54,18,49,55,35,6,7,10,9,15,14,26,11,12,40,24,17,19,20,21,22,23,58]),import.meta.url),()=>l(()=>import("../nodes/9.DDDQPmMj.js"),__vite__mapDeps([59,1,2,3,4,8,30,6,26,9,40,41,60]),import.meta.url),()=>l(()=>import("../nodes/10.A0AHLfOt.js"),__vite__mapDeps([61,1,2,3,4,5,8,30,54,18,49,55,15,9,14,50,35,51,62,11,12,44,45,31,32,17,19,20,21,24,63]),import.meta.url),()=>l(()=>import("../nodes/11.CVSPxlqY.js"),__vite__mapDeps([64,1,2,3,4,5,8,30,54,18,49,55,7,6,15,9,14,11,12,19,20,24,31,32,62,65]),import.meta.url),()=>l(()=>import("../nodes/12.CnAR0AQb.js"),__vite__mapDeps([66,1,2,3,4,5,8,30,54,18,49,55,48,7,6,15,9,14,50,35,51,62,31,32,17,19,20,21,24,44,45,67]),import.meta.url)],Ut=[],Wt={"/":[2],"/live/[id]":[3],"/login":[4],"/reports":[5],"/reports/[id]":[6],"/scheduled-tests":[7],"/settings":[8],"/setup":[9],"/test-repository":[10],"/test-repository/runs/[id]":[11],"/test-repository/suites/[id]":[12]},Vt={handleError:({error:r})=>{console.error(r)},reroute:()=>{},transport:{}},kt=Object.fromEntries(Object.entries(Vt.transport).map(([r,t])=>[r,t.decode])),zt=!1,Gt=(r,t)=>kt[r](t);export{Gt as decode,kt as decoders,Wt as dictionary,zt as hash,Vt as hooks,Bt as matchers,Ft as nodes,qt as root,Ut as server_loads};
|
|
Binary file
|
|
Binary file
|
package/frontend/build/client/_app/immutable/entry/{start.4qxHHAcl.js.gz → start.D_lhI48n.js.gz}
RENAMED
|
Binary file
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This file is part of Plum.
|
|
3
|
+
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import{s as j,a as g,e as U,t as E,b as ln,c as Ue}from"../chunks/6VDMVB5U.js";import{i as ct}from"../chunks/CtgCYzu5.js";import{e as nt,u as un,p as lt,o as Yt,s as x,d,j as l,f as re,g as r,k as h,t as H,x as le,c as ut,m as F,ao as hn,l as pe,b as xs,n as Ke}from"../chunks/BIf7lHIm.js";import{i as $,s as ht,a as _e}from"../chunks/D_thT6pZ.js";import{e as $e,t as O,i as je,a as xe,b as As,c as Vt,f as Oe,s as dn,h as pn}from"../chunks/BTV7EXZb.js";import{g as hs}from"../chunks/BIjh3jiU.js";import{p as Ss}from"../chunks/Dlymnwnf.js";import{s as ne,y as Te,A as fn,G as vn,O as ds,B as Nt,Q as ps,U as fs,r as Ot,N as _n,k as gn,q as vs,I as mn,J as yn,z as bn,C as wn}from"../chunks/C4Z3p6jE.js";import{a as Cs}from"../chunks/CXQhSK1T.js";import{b as kn,f as En,a as Rn}from"../chunks/kFFd6Oo5.js";import{b as Ee,p as Be,e as Ut,c as He,m as _s,s as xn,S as Re,a as gs,g as An,h as Sn,i as Cn,R as Tn,j as Bn,k as Ln,l as Nn,n as On,t as $t,T as Un,W as $n,B as In,o as qn,q as Pn,N as Dn,u as Vn,r as Mn,V as Fn,C as Wn,v as Kn,w as Hn,Q as zn,x as ms,y as Yn,z as jn,M as Jn,d as Gn,A as Xn,D as Qn,E as Zn,F as er,G as tr,H as sr}from"../chunks/htkwR9b-.js";import{j as nr,au as ys,av as rr,aw as ir,ax as or,ay as ar}from"../chunks/pNZogwkM.js";import{a as cr,v as lr}from"../chunks/BdBJfKUi.js";import{f as ur}from"../chunks/gCgJ3Cwu.js";import{t as hr,a as dr}from"../chunks/B2lVGNml.js";import{C as pr}from"../chunks/BWGoOYU0.js";import{B as fr}from"../chunks/DeiVAbyn.js";import{c as vr}from"../chunks/CUPWZLIN.js";import{d as _r,a as gr}from"../chunks/BDb8hZHu.js";import{r as mr,a as yr,d as br}from"../chunks/BtTNggoY.js";import{c as wr}from"../chunks/DDx3no2z.js";function It(n,e,t){nt(()=>{var s=un(()=>e(n,t==null?void 0:t())||{});if(s!=null&&s.destroy)return()=>s.destroy()})}const kr=!1,No=Object.freeze(Object.defineProperty({__proto__:null,ssr:kr},Symbol.toStringTag,{value:"Module"}));var Er=E('<span class="nav-sep svelte-10t98u4" aria-hidden="true"></span>'),Rr=E('<!> <a class="link svelte-10t98u4"> </a>',1),xr=E('<img alt="" class="project-logo svelte-10t98u4">'),Ar=E('<div class="project-card svelte-10t98u4"><!> <span class="project-name svelte-10t98u4"> </span></div>'),Sr=E('<span class="nav-user svelte-10t98u4"> </span>'),Cr=E('<hr class="mobile-sep svelte-10t98u4">'),Tr=E('<!> <a class="mobile-link svelte-10t98u4"> </a>',1),Br=E('<div class="mobile-menu svelte-10t98u4"><!> <a href="/settings" class="mobile-link svelte-10t98u4">Settings</a></div>'),Lr=E('<nav class="nav svelte-10t98u4"><div class="inner svelte-10t98u4"><a href="/" class="brand svelte-10t98u4"><span class="brand-serif svelte-10t98u4">Pl</span><span class="brand-sans svelte-10t98u4">um</span></a> <div class="links svelte-10t98u4"></div> <div class="actions svelte-10t98u4"><!> <!> <a href="/settings" class="settings-btn svelte-10t98u4" aria-label="Settings" title="Settings"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg></a> <button class="hamburger svelte-10t98u4"><span class="svelte-10t98u4"></span> <span class="svelte-10t98u4"></span> <span class="svelte-10t98u4"></span></button></div></div> <!></nav>');function Nr(n,e){lt(e,!1);const[t,s]=ht(),i=()=>_e(Ss,"$page",t),a=()=>_e(Cs,"$auth",t);let u=F(!1),_=F({name:"",logoUrl:""});Yt(async()=>{try{x(_,await kn())}catch{}});const w=[{href:"/",label:"Automated Tests"},{href:"/reports",label:"Reports"},{href:"/scheduled-tests",label:"Scheduled"},{href:"/test-repository",label:"Test Repository",sep:!0}];function B(){x(u,!1)}ct();var C=Lr(),q=d(C),A=d(q),V=l(A,2);$e(V,5,()=>w,je,(I,L)=>{var ee=Rr(),Y=re(ee);{var se=oe=>{var ce=Er();g(oe,ce)};$(Y,oe=>{r(L).sep&&oe(se)})}var X=l(Y,2),he=d(X,!0);h(X),H(oe=>{ne(X,"href",r(L).href),O(X,"repo",r(L).sep),O(X,"active",oe),j(he,r(L).label)},[()=>r(L).href==="/"?i().url.pathname==="/":i().url.pathname.startsWith(r(L).href)],le),g(I,ee)}),h(V);var J=l(V,2),ae=d(J);{var ue=I=>{var L=Ar(),ee=d(L);{var Y=he=>{var oe=xr();H(()=>ne(oe,"src",r(_).logoUrl)),g(he,oe)};$(ee,he=>{r(_).logoUrl&&he(Y)})}var se=l(ee,2),X=d(se,!0);h(se),h(L),H(()=>j(X,r(_).name)),g(I,L)};$(ae,I=>{r(_).name&&I(ue)})}var W=l(ae,2);{var P=I=>{var L=Sr(),ee=d(L,!0);h(L),H(()=>j(ee,a().user.name)),g(I,L)};$(W,I=>{a().user&&I(P)})}var z=l(W,2),R=l(z,2),te=d(R),D=l(te,2),M=l(D,2);h(R),h(J),h(q);var G=l(q,2);{var ie=I=>{var L=Br(),ee=d(L);$e(ee,1,()=>w,je,(se,X)=>{var he=Tr(),oe=re(he);{var ce=Ae=>{var ft=Cr();g(Ae,ft)};$(oe,Ae=>{r(X).sep&&Ae(ce)})}var Ne=l(oe,2),Je=d(Ne,!0);h(Ne),H(Ae=>{ne(Ne,"href",r(X).href),O(Ne,"active",Ae),j(Je,r(X).label)},[()=>r(X).href==="/"?i().url.pathname==="/":i().url.pathname.startsWith(r(X).href)],le),U("click",Ne,B),g(se,he)});var Y=l(ee,2);h(L),H(()=>O(Y,"active",i().url.pathname==="/settings")),U("click",Y,B),xe(3,L,()=>As,()=>({duration:200})),g(I,L)};$(G,I=>{r(u)&&I(ie)})}h(C),H(()=>{O(z,"active",i().url.pathname==="/settings"),ne(R,"aria-label",r(u)?"Close menu":"Open menu"),ne(R,"aria-expanded",r(u)),O(te,"rotated",r(u)),O(D,"hidden",r(u)),O(M,"rotated-reverse",r(u))}),U("click",A,B),U("click",R,()=>x(u,!r(u))),g(n,C),ut(),s()}var Or=E('<main class="shell svelte-28zx1m"><!></main>');function Ur(n,e){var t=Or(),s=d(t);Vt(s,e,"default",{},null),h(t),g(n,t)}const we=Object.create(null);we.open="0";we.close="1";we.ping="2";we.pong="3";we.message="4";we.upgrade="5";we.noop="6";const rt=Object.create(null);Object.keys(we).forEach(n=>{rt[we[n]]=n});const Mt={type:"error",data:"parser error"},Ts=typeof Blob=="function"||typeof Blob<"u"&&Object.prototype.toString.call(Blob)==="[object BlobConstructor]",Bs=typeof ArrayBuffer=="function",Ls=n=>typeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(n):n&&n.buffer instanceof ArrayBuffer,jt=({type:n,data:e},t,s)=>Ts&&e instanceof Blob?t?s(e):bs(e,s):Bs&&(e instanceof ArrayBuffer||Ls(e))?t?s(e):bs(new Blob([e]),s):s(we[n]+(e||"")),bs=(n,e)=>{const t=new FileReader;return t.onload=function(){const s=t.result.split(",")[1];e("b"+(s||""))},t.readAsDataURL(n)};function ws(n){return n instanceof Uint8Array?n:n instanceof ArrayBuffer?new Uint8Array(n):new Uint8Array(n.buffer,n.byteOffset,n.byteLength)}let qt;function $r(n,e){if(Ts&&n.data instanceof Blob)return n.data.arrayBuffer().then(ws).then(e);if(Bs&&(n.data instanceof ArrayBuffer||Ls(n.data)))return e(ws(n.data));jt(n,!1,t=>{qt||(qt=new TextEncoder),e(qt.encode(t))})}const ks="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Ye=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(let n=0;n<ks.length;n++)Ye[ks.charCodeAt(n)]=n;const Ir=n=>{let e=n.length*.75,t=n.length,s,i=0,a,u,_,w;n[n.length-1]==="="&&(e--,n[n.length-2]==="="&&e--);const B=new ArrayBuffer(e),C=new Uint8Array(B);for(s=0;s<t;s+=4)a=Ye[n.charCodeAt(s)],u=Ye[n.charCodeAt(s+1)],_=Ye[n.charCodeAt(s+2)],w=Ye[n.charCodeAt(s+3)],C[i++]=a<<2|u>>4,C[i++]=(u&15)<<4|_>>2,C[i++]=(_&3)<<6|w&63;return B},qr=typeof ArrayBuffer=="function",Jt=(n,e)=>{if(typeof n!="string")return{type:"message",data:Ns(n,e)};const t=n.charAt(0);return t==="b"?{type:"message",data:Pr(n.substring(1),e)}:rt[t]?n.length>1?{type:rt[t],data:n.substring(1)}:{type:rt[t]}:Mt},Pr=(n,e)=>{if(qr){const t=Ir(n);return Ns(t,e)}else return{base64:!0,data:n}},Ns=(n,e)=>{switch(e){case"blob":return n instanceof Blob?n:new Blob([n]);case"arraybuffer":default:return n instanceof ArrayBuffer?n:n.buffer}},Os="",Dr=(n,e)=>{const t=n.length,s=new Array(t);let i=0;n.forEach((a,u)=>{jt(a,!1,_=>{s[u]=_,++i===t&&e(s.join(Os))})})},Vr=(n,e)=>{const t=n.split(Os),s=[];for(let i=0;i<t.length;i++){const a=Jt(t[i],e);if(s.push(a),a.type==="error")break}return s};function Mr(){return new TransformStream({transform(n,e){$r(n,t=>{const s=t.length;let i;if(s<126)i=new Uint8Array(1),new DataView(i.buffer).setUint8(0,s);else if(s<65536){i=new Uint8Array(3);const a=new DataView(i.buffer);a.setUint8(0,126),a.setUint16(1,s)}else{i=new Uint8Array(9);const a=new DataView(i.buffer);a.setUint8(0,127),a.setBigUint64(1,BigInt(s))}n.data&&typeof n.data!="string"&&(i[0]|=128),e.enqueue(i),e.enqueue(t)})}})}let Pt;function tt(n){return n.reduce((e,t)=>e+t.length,0)}function st(n,e){if(n[0].length===e)return n.shift();const t=new Uint8Array(e);let s=0;for(let i=0;i<e;i++)t[i]=n[0][s++],s===n[0].length&&(n.shift(),s=0);return n.length&&s<n[0].length&&(n[0]=n[0].slice(s)),t}function Fr(n,e){Pt||(Pt=new TextDecoder);const t=[];let s=0,i=-1,a=!1;return new TransformStream({transform(u,_){for(t.push(u);;){if(s===0){if(tt(t)<1)break;const w=st(t,1);a=(w[0]&128)===128,i=w[0]&127,i<126?s=3:i===126?s=1:s=2}else if(s===1){if(tt(t)<2)break;const w=st(t,2);i=new DataView(w.buffer,w.byteOffset,w.length).getUint16(0),s=3}else if(s===2){if(tt(t)<8)break;const w=st(t,8),B=new DataView(w.buffer,w.byteOffset,w.length),C=B.getUint32(0);if(C>Math.pow(2,21)-1){_.enqueue(Mt);break}i=C*Math.pow(2,32)+B.getUint32(4),s=3}else{if(tt(t)<i)break;const w=st(t,i);_.enqueue(Jt(a?w:Pt.decode(w),e)),s=0}if(i===0||i>n){_.enqueue(Mt);break}}}})}const Us=4;function Z(n){if(n)return Wr(n)}function Wr(n){for(var e in Z.prototype)n[e]=Z.prototype[e];return n}Z.prototype.on=Z.prototype.addEventListener=function(n,e){return this._callbacks=this._callbacks||{},(this._callbacks["$"+n]=this._callbacks["$"+n]||[]).push(e),this};Z.prototype.once=function(n,e){function t(){this.off(n,t),e.apply(this,arguments)}return t.fn=e,this.on(n,t),this};Z.prototype.off=Z.prototype.removeListener=Z.prototype.removeAllListeners=Z.prototype.removeEventListener=function(n,e){if(this._callbacks=this._callbacks||{},arguments.length==0)return this._callbacks={},this;var t=this._callbacks["$"+n];if(!t)return this;if(arguments.length==1)return delete this._callbacks["$"+n],this;for(var s,i=0;i<t.length;i++)if(s=t[i],s===e||s.fn===e){t.splice(i,1);break}return t.length===0&&delete this._callbacks["$"+n],this};Z.prototype.emit=function(n){this._callbacks=this._callbacks||{};for(var e=new Array(arguments.length-1),t=this._callbacks["$"+n],s=1;s<arguments.length;s++)e[s-1]=arguments[s];if(t){t=t.slice(0);for(var s=0,i=t.length;s<i;++s)t[s].apply(this,e)}return this};Z.prototype.emitReserved=Z.prototype.emit;Z.prototype.listeners=function(n){return this._callbacks=this._callbacks||{},this._callbacks["$"+n]||[]};Z.prototype.hasListeners=function(n){return!!this.listeners(n).length};const dt=typeof Promise=="function"&&typeof Promise.resolve=="function"?e=>Promise.resolve().then(e):(e,t)=>t(e,0),fe=typeof self<"u"?self:typeof window<"u"?window:Function("return this")(),Kr="arraybuffer";function $s(n,...e){return e.reduce((t,s)=>(n.hasOwnProperty(s)&&(t[s]=n[s]),t),{})}const Hr=fe.setTimeout,zr=fe.clearTimeout;function pt(n,e){e.useNativeTimers?(n.setTimeoutFn=Hr.bind(fe),n.clearTimeoutFn=zr.bind(fe)):(n.setTimeoutFn=fe.setTimeout.bind(fe),n.clearTimeoutFn=fe.clearTimeout.bind(fe))}const Yr=1.33;function jr(n){return typeof n=="string"?Jr(n):Math.ceil((n.byteLength||n.size)*Yr)}function Jr(n){let e=0,t=0;for(let s=0,i=n.length;s<i;s++)e=n.charCodeAt(s),e<128?t+=1:e<2048?t+=2:e<55296||e>=57344?t+=3:(s++,t+=4);return t}function Is(){return Date.now().toString(36).substring(3)+Math.random().toString(36).substring(2,5)}function Gr(n){let e="";for(let t in n)n.hasOwnProperty(t)&&(e.length&&(e+="&"),e+=encodeURIComponent(t)+"="+encodeURIComponent(n[t]));return e}function Xr(n){let e={},t=n.split("&");for(let s=0,i=t.length;s<i;s++){let a=t[s].split("=");e[decodeURIComponent(a[0])]=decodeURIComponent(a[1])}return e}class Qr extends Error{constructor(e,t,s){super(e),this.description=t,this.context=s,this.type="TransportError"}}class Gt extends Z{constructor(e){super(),this.writable=!1,pt(this,e),this.opts=e,this.query=e.query,this.socket=e.socket,this.supportsBinary=!e.forceBase64}onError(e,t,s){return super.emitReserved("error",new Qr(e,t,s)),this}open(){return this.readyState="opening",this.doOpen(),this}close(){return(this.readyState==="opening"||this.readyState==="open")&&(this.doClose(),this.onClose()),this}send(e){this.readyState==="open"&&this.write(e)}onOpen(){this.readyState="open",this.writable=!0,super.emitReserved("open")}onData(e){const t=Jt(e,this.socket.binaryType);this.onPacket(t)}onPacket(e){super.emitReserved("packet",e)}onClose(e){this.readyState="closed",super.emitReserved("close",e)}pause(e){}createUri(e,t={}){return e+"://"+this._hostname()+this._port()+this.opts.path+this._query(t)}_hostname(){const e=this.opts.hostname;return e.indexOf(":")===-1?e:"["+e+"]"}_port(){return this.opts.port&&(this.opts.secure&&+(this.opts.port!==443)||!this.opts.secure&&Number(this.opts.port)!==80)?":"+this.opts.port:""}_query(e){const t=Gr(e);return t.length?"?"+t:""}}class Zr extends Gt{constructor(){super(...arguments),this._polling=!1}get name(){return"polling"}doOpen(){this._poll()}pause(e){this.readyState="pausing";const t=()=>{this.readyState="paused",e()};if(this._polling||!this.writable){let s=0;this._polling&&(s++,this.once("pollComplete",function(){--s||t()})),this.writable||(s++,this.once("drain",function(){--s||t()}))}else t()}_poll(){this._polling=!0,this.doPoll(),this.emitReserved("poll")}onData(e){const t=s=>{if(this.readyState==="opening"&&s.type==="open"&&this.onOpen(),s.type==="close")return this.onClose({description:"transport closed by the server"}),!1;this.onPacket(s)};Vr(e,this.socket.binaryType).forEach(t),this.readyState!=="closed"&&(this._polling=!1,this.emitReserved("pollComplete"),this.readyState==="open"&&this._poll())}doClose(){const e=()=>{this.write([{type:"close"}])};this.readyState==="open"?e():this.once("open",e)}write(e){this.writable=!1,Dr(e,t=>{this.doWrite(t,()=>{this.writable=!0,this.emitReserved("drain")})})}uri(){const e=this.opts.secure?"https":"http",t=this.query||{};return this.opts.timestampRequests!==!1&&(t[this.opts.timestampParam]=Is()),!this.supportsBinary&&!t.sid&&(t.b64=1),this.createUri(e,t)}}let qs=!1;try{qs=typeof XMLHttpRequest<"u"&&"withCredentials"in new XMLHttpRequest}catch{}const ei=qs;function ti(){}class si extends Zr{constructor(e){if(super(e),typeof location<"u"){const t=location.protocol==="https:";let s=location.port;s||(s=t?"443":"80"),this.xd=typeof location<"u"&&e.hostname!==location.hostname||s!==e.port}}doWrite(e,t){const s=this.request({method:"POST",data:e});s.on("success",t),s.on("error",(i,a)=>{this.onError("xhr post error",i,a)})}doPoll(){const e=this.request();e.on("data",this.onData.bind(this)),e.on("error",(t,s)=>{this.onError("xhr poll error",t,s)}),this.pollXhr=e}}class be extends Z{constructor(e,t,s){super(),this.createRequest=e,pt(this,s),this._opts=s,this._method=s.method||"GET",this._uri=t,this._data=s.data!==void 0?s.data:null,this._create()}_create(){var e;const t=$s(this._opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");t.xdomain=!!this._opts.xd;const s=this._xhr=this.createRequest(t);try{s.open(this._method,this._uri,!0);try{if(this._opts.extraHeaders){s.setDisableHeaderCheck&&s.setDisableHeaderCheck(!0);for(let i in this._opts.extraHeaders)this._opts.extraHeaders.hasOwnProperty(i)&&s.setRequestHeader(i,this._opts.extraHeaders[i])}}catch{}if(this._method==="POST")try{s.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch{}try{s.setRequestHeader("Accept","*/*")}catch{}(e=this._opts.cookieJar)===null||e===void 0||e.addCookies(s),"withCredentials"in s&&(s.withCredentials=this._opts.withCredentials),this._opts.requestTimeout&&(s.timeout=this._opts.requestTimeout),s.onreadystatechange=()=>{var i;s.readyState===3&&((i=this._opts.cookieJar)===null||i===void 0||i.parseCookies(s.getResponseHeader("set-cookie"))),s.readyState===4&&(s.status===200||s.status===1223?this._onLoad():this.setTimeoutFn(()=>{this._onError(typeof s.status=="number"?s.status:0)},0))},s.send(this._data)}catch(i){this.setTimeoutFn(()=>{this._onError(i)},0);return}typeof document<"u"&&(this._index=be.requestsCount++,be.requests[this._index]=this)}_onError(e){this.emitReserved("error",e,this._xhr),this._cleanup(!0)}_cleanup(e){if(!(typeof this._xhr>"u"||this._xhr===null)){if(this._xhr.onreadystatechange=ti,e)try{this._xhr.abort()}catch{}typeof document<"u"&&delete be.requests[this._index],this._xhr=null}}_onLoad(){const e=this._xhr.responseText;e!==null&&(this.emitReserved("data",e),this.emitReserved("success"),this._cleanup())}abort(){this._cleanup()}}be.requestsCount=0;be.requests={};if(typeof document<"u"){if(typeof attachEvent=="function")attachEvent("onunload",Es);else if(typeof addEventListener=="function"){const n="onpagehide"in fe?"pagehide":"unload";addEventListener(n,Es,!1)}}function Es(){for(let n in be.requests)be.requests.hasOwnProperty(n)&&be.requests[n].abort()}const ni=function(){const n=Ps({xdomain:!1});return n&&n.responseType!==null}();class ri extends si{constructor(e){super(e);const t=e&&e.forceBase64;this.supportsBinary=ni&&!t}request(e={}){return Object.assign(e,{xd:this.xd},this.opts),new be(Ps,this.uri(),e)}}function Ps(n){const e=n.xdomain;try{if(typeof XMLHttpRequest<"u"&&(!e||ei))return new XMLHttpRequest}catch{}if(!e)try{return new fe[["Active"].concat("Object").join("X")]("Microsoft.XMLHTTP")}catch{}}const Ds=typeof navigator<"u"&&typeof navigator.product=="string"&&navigator.product.toLowerCase()==="reactnative";class ii extends Gt{get name(){return"websocket"}doOpen(){const e=this.uri(),t=this.opts.protocols,s=Ds?{}:$s(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");this.opts.extraHeaders&&(s.headers=this.opts.extraHeaders);try{this.ws=this.createSocket(e,t,s)}catch(i){return this.emitReserved("error",i)}this.ws.binaryType=this.socket.binaryType,this.addEventListeners()}addEventListeners(){this.ws.onopen=()=>{this.opts.autoUnref&&this.ws._socket.unref(),this.onOpen()},this.ws.onclose=e=>this.onClose({description:"websocket connection closed",context:e}),this.ws.onmessage=e=>this.onData(e.data),this.ws.onerror=e=>this.onError("websocket error",e)}write(e){this.writable=!1;for(let t=0;t<e.length;t++){const s=e[t],i=t===e.length-1;jt(s,this.supportsBinary,a=>{try{this.doWrite(s,a)}catch{}i&&dt(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){typeof this.ws<"u"&&(this.ws.onerror=()=>{},this.ws.close(),this.ws=null)}uri(){const e=this.opts.secure?"wss":"ws",t=this.query||{};return this.opts.timestampRequests&&(t[this.opts.timestampParam]=Is()),this.supportsBinary||(t.b64=1),this.createUri(e,t)}}const Dt=fe.WebSocket||fe.MozWebSocket;class oi extends ii{createSocket(e,t,s){return Ds?new Dt(e,t,s):t?new Dt(e,t):new Dt(e)}doWrite(e,t){this.ws.send(t)}}class ai extends Gt{get name(){return"webtransport"}doOpen(){try{this._transport=new WebTransport(this.createUri("https"),this.opts.transportOptions[this.name])}catch(e){return this.emitReserved("error",e)}this._transport.closed.then(()=>{this.onClose()}).catch(e=>{this.onError("webtransport error",e)}),this._transport.ready.then(()=>{this._transport.createBidirectionalStream().then(e=>{const t=Fr(Number.MAX_SAFE_INTEGER,this.socket.binaryType),s=e.readable.pipeThrough(t).getReader(),i=Mr();i.readable.pipeTo(e.writable),this._writer=i.writable.getWriter();const a=()=>{s.read().then(({done:_,value:w})=>{_||(this.onPacket(w),a())}).catch(_=>{})};a();const u={type:"open"};this.query.sid&&(u.data=`{"sid":"${this.query.sid}"}`),this._writer.write(u).then(()=>this.onOpen())})})}write(e){this.writable=!1;for(let t=0;t<e.length;t++){const s=e[t],i=t===e.length-1;this._writer.write(s).then(()=>{i&&dt(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){var e;(e=this._transport)===null||e===void 0||e.close()}}const ci={websocket:oi,webtransport:ai,polling:ri},li=/^(?:(?![^:@\/?#]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@\/?#]*)(?::([^:@\/?#]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,ui=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];function Ft(n){if(n.length>8e3)throw"URI too long";const e=n,t=n.indexOf("["),s=n.indexOf("]");t!=-1&&s!=-1&&(n=n.substring(0,t)+n.substring(t,s).replace(/:/g,";")+n.substring(s,n.length));let i=li.exec(n||""),a={},u=14;for(;u--;)a[ui[u]]=i[u]||"";return t!=-1&&s!=-1&&(a.source=e,a.host=a.host.substring(1,a.host.length-1).replace(/;/g,":"),a.authority=a.authority.replace("[","").replace("]","").replace(/;/g,":"),a.ipv6uri=!0),a.pathNames=hi(a,a.path),a.queryKey=di(a,a.query),a}function hi(n,e){const t=/\/{2,9}/g,s=e.replace(t,"/").split("/");return(e.slice(0,1)=="/"||e.length===0)&&s.splice(0,1),e.slice(-1)=="/"&&s.splice(s.length-1,1),s}function di(n,e){const t={};return e.replace(/(?:^|&)([^&=]*)=?([^&]*)/g,function(s,i,a){i&&(t[i]=a)}),t}const Wt=typeof addEventListener=="function"&&typeof removeEventListener=="function",it=[];Wt&&addEventListener("offline",()=>{it.forEach(n=>n())},!1);class Le extends Z{constructor(e,t){if(super(),this.binaryType=Kr,this.writeBuffer=[],this._prevBufferLen=0,this._pingInterval=-1,this._pingTimeout=-1,this._maxPayload=-1,this._pingTimeoutTime=1/0,e&&typeof e=="object"&&(t=e,e=null),e){const s=Ft(e);t.hostname=s.host,t.secure=s.protocol==="https"||s.protocol==="wss",t.port=s.port,s.query&&(t.query=s.query)}else t.host&&(t.hostname=Ft(t.host).host);pt(this,t),this.secure=t.secure!=null?t.secure:typeof location<"u"&&location.protocol==="https:",t.hostname&&!t.port&&(t.port=this.secure?"443":"80"),this.hostname=t.hostname||(typeof location<"u"?location.hostname:"localhost"),this.port=t.port||(typeof location<"u"&&location.port?location.port:this.secure?"443":"80"),this.transports=[],this._transportsByName={},t.transports.forEach(s=>{const i=s.prototype.name;this.transports.push(i),this._transportsByName[i]=s}),this.opts=Object.assign({path:"/engine.io",agent:!1,withCredentials:!1,upgrade:!0,timestampParam:"t",rememberUpgrade:!1,addTrailingSlash:!0,rejectUnauthorized:!0,perMessageDeflate:{threshold:1024},transportOptions:{},closeOnBeforeunload:!1},t),this.opts.path=this.opts.path.replace(/\/$/,"")+(this.opts.addTrailingSlash?"/":""),typeof this.opts.query=="string"&&(this.opts.query=Xr(this.opts.query)),Wt&&(this.opts.closeOnBeforeunload&&(this._beforeunloadEventListener=()=>{this.transport&&(this.transport.removeAllListeners(),this.transport.close())},addEventListener("beforeunload",this._beforeunloadEventListener,!1)),this.hostname!=="localhost"&&(this._offlineEventListener=()=>{this._onClose("transport close",{description:"network connection lost"})},it.push(this._offlineEventListener))),this.opts.withCredentials&&(this._cookieJar=void 0),this._open()}createTransport(e){const t=Object.assign({},this.opts.query);t.EIO=Us,t.transport=e,this.id&&(t.sid=this.id);const s=Object.assign({},this.opts,{query:t,socket:this,hostname:this.hostname,secure:this.secure,port:this.port},this.opts.transportOptions[e]);return new this._transportsByName[e](s)}_open(){if(this.transports.length===0){this.setTimeoutFn(()=>{this.emitReserved("error","No transports available")},0);return}const e=this.opts.rememberUpgrade&&Le.priorWebsocketSuccess&&this.transports.indexOf("websocket")!==-1?"websocket":this.transports[0];this.readyState="opening";const t=this.createTransport(e);t.open(),this.setTransport(t)}setTransport(e){this.transport&&this.transport.removeAllListeners(),this.transport=e,e.on("drain",this._onDrain.bind(this)).on("packet",this._onPacket.bind(this)).on("error",this._onError.bind(this)).on("close",t=>this._onClose("transport close",t))}onOpen(){this.readyState="open",Le.priorWebsocketSuccess=this.transport.name==="websocket",this.emitReserved("open"),this.flush()}_onPacket(e){if(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing")switch(this.emitReserved("packet",e),this.emitReserved("heartbeat"),e.type){case"open":this.onHandshake(JSON.parse(e.data));break;case"ping":this._sendPacket("pong"),this.emitReserved("ping"),this.emitReserved("pong"),this._resetPingTimeout();break;case"error":const t=new Error("server error");t.code=e.data,this._onError(t);break;case"message":this.emitReserved("data",e.data),this.emitReserved("message",e.data);break}}onHandshake(e){this.emitReserved("handshake",e),this.id=e.sid,this.transport.query.sid=e.sid,this._pingInterval=e.pingInterval,this._pingTimeout=e.pingTimeout,this._maxPayload=e.maxPayload,this.onOpen(),this.readyState!=="closed"&&this._resetPingTimeout()}_resetPingTimeout(){this.clearTimeoutFn(this._pingTimeoutTimer);const e=this._pingInterval+this._pingTimeout;this._pingTimeoutTime=Date.now()+e,this._pingTimeoutTimer=this.setTimeoutFn(()=>{this._onClose("ping timeout")},e),this.opts.autoUnref&&this._pingTimeoutTimer.unref()}_onDrain(){this.writeBuffer.splice(0,this._prevBufferLen),this._prevBufferLen=0,this.writeBuffer.length===0?this.emitReserved("drain"):this.flush()}flush(){if(this.readyState!=="closed"&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length){const e=this._getWritablePackets();this.transport.send(e),this._prevBufferLen=e.length,this.emitReserved("flush")}}_getWritablePackets(){if(!(this._maxPayload&&this.transport.name==="polling"&&this.writeBuffer.length>1))return this.writeBuffer;let t=1;for(let s=0;s<this.writeBuffer.length;s++){const i=this.writeBuffer[s].data;if(i&&(t+=jr(i)),s>0&&t>this._maxPayload)return this.writeBuffer.slice(0,s);t+=2}return this.writeBuffer}_hasPingExpired(){if(!this._pingTimeoutTime)return!0;const e=Date.now()>this._pingTimeoutTime;return e&&(this._pingTimeoutTime=0,dt(()=>{this._onClose("ping timeout")},this.setTimeoutFn)),e}write(e,t,s){return this._sendPacket("message",e,t,s),this}send(e,t,s){return this._sendPacket("message",e,t,s),this}_sendPacket(e,t,s,i){if(typeof t=="function"&&(i=t,t=void 0),typeof s=="function"&&(i=s,s=null),this.readyState==="closing"||this.readyState==="closed")return;s=s||{},s.compress=s.compress!==!1;const a={type:e,data:t,options:s};this.emitReserved("packetCreate",a),this.writeBuffer.push(a),i&&this.once("flush",i),this.flush()}close(){const e=()=>{this._onClose("forced close"),this.transport.close()},t=()=>{this.off("upgrade",t),this.off("upgradeError",t),e()},s=()=>{this.once("upgrade",t),this.once("upgradeError",t)};return(this.readyState==="opening"||this.readyState==="open")&&(this.readyState="closing",this.writeBuffer.length?this.once("drain",()=>{this.upgrading?s():e()}):this.upgrading?s():e()),this}_onError(e){if(Le.priorWebsocketSuccess=!1,this.opts.tryAllTransports&&this.transports.length>1&&this.readyState==="opening")return this.transports.shift(),this._open();this.emitReserved("error",e),this._onClose("transport error",e)}_onClose(e,t){if(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing"){if(this.clearTimeoutFn(this._pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),Wt&&(this._beforeunloadEventListener&&removeEventListener("beforeunload",this._beforeunloadEventListener,!1),this._offlineEventListener)){const s=it.indexOf(this._offlineEventListener);s!==-1&&it.splice(s,1)}this.readyState="closed",this.id=null,this.emitReserved("close",e,t),this.writeBuffer=[],this._prevBufferLen=0}}}Le.protocol=Us;class pi extends Le{constructor(){super(...arguments),this._upgrades=[]}onOpen(){if(super.onOpen(),this.readyState==="open"&&this.opts.upgrade)for(let e=0;e<this._upgrades.length;e++)this._probe(this._upgrades[e])}_probe(e){let t=this.createTransport(e),s=!1;Le.priorWebsocketSuccess=!1;const i=()=>{s||(t.send([{type:"ping",data:"probe"}]),t.once("packet",q=>{if(!s)if(q.type==="pong"&&q.data==="probe"){if(this.upgrading=!0,this.emitReserved("upgrading",t),!t)return;Le.priorWebsocketSuccess=t.name==="websocket",this.transport.pause(()=>{s||this.readyState!=="closed"&&(C(),this.setTransport(t),t.send([{type:"upgrade"}]),this.emitReserved("upgrade",t),t=null,this.upgrading=!1,this.flush())})}else{const A=new Error("probe error");A.transport=t.name,this.emitReserved("upgradeError",A)}}))};function a(){s||(s=!0,C(),t.close(),t=null)}const u=q=>{const A=new Error("probe error: "+q);A.transport=t.name,a(),this.emitReserved("upgradeError",A)};function _(){u("transport closed")}function w(){u("socket closed")}function B(q){t&&q.name!==t.name&&a()}const C=()=>{t.removeListener("open",i),t.removeListener("error",u),t.removeListener("close",_),this.off("close",w),this.off("upgrading",B)};t.once("open",i),t.once("error",u),t.once("close",_),this.once("close",w),this.once("upgrading",B),this._upgrades.indexOf("webtransport")!==-1&&e!=="webtransport"?this.setTimeoutFn(()=>{s||t.open()},200):t.open()}onHandshake(e){this._upgrades=this._filterUpgrades(e.upgrades),super.onHandshake(e)}_filterUpgrades(e){const t=[];for(let s=0;s<e.length;s++)~this.transports.indexOf(e[s])&&t.push(e[s]);return t}}let fi=class extends pi{constructor(e,t={}){const s=typeof e=="object"?e:t;(!s.transports||s.transports&&typeof s.transports[0]=="string")&&(s.transports=(s.transports||["polling","websocket","webtransport"]).map(i=>ci[i]).filter(i=>!!i)),super(e,s)}};function vi(n,e="",t){let s=n;t=t||typeof location<"u"&&location,n==null&&(n=t.protocol+"//"+t.host),typeof n=="string"&&(n.charAt(0)==="/"&&(n.charAt(1)==="/"?n=t.protocol+n:n=t.host+n),/^(https?|wss?):\/\//.test(n)||(typeof t<"u"?n=t.protocol+"//"+n:n="https://"+n),s=Ft(n)),s.port||(/^(http|ws)$/.test(s.protocol)?s.port="80":/^(http|ws)s$/.test(s.protocol)&&(s.port="443")),s.path=s.path||"/";const a=s.host.indexOf(":")!==-1?"["+s.host+"]":s.host;return s.id=s.protocol+"://"+a+":"+s.port+e,s.href=s.protocol+"://"+a+(t&&t.port===s.port?"":":"+s.port),s}const _i=typeof ArrayBuffer=="function",gi=n=>typeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(n):n.buffer instanceof ArrayBuffer,Vs=Object.prototype.toString,mi=typeof Blob=="function"||typeof Blob<"u"&&Vs.call(Blob)==="[object BlobConstructor]",yi=typeof File=="function"||typeof File<"u"&&Vs.call(File)==="[object FileConstructor]";function Xt(n){return _i&&(n instanceof ArrayBuffer||gi(n))||mi&&n instanceof Blob||yi&&n instanceof File}function ot(n,e){if(!n||typeof n!="object")return!1;if(Array.isArray(n)){for(let t=0,s=n.length;t<s;t++)if(ot(n[t]))return!0;return!1}if(Xt(n))return!0;if(n.toJSON&&typeof n.toJSON=="function"&&arguments.length===1)return ot(n.toJSON(),!0);for(const t in n)if(Object.prototype.hasOwnProperty.call(n,t)&&ot(n[t]))return!0;return!1}function bi(n){const e=[],t=n.data,s=n;return s.data=Kt(t,e),s.attachments=e.length,{packet:s,buffers:e}}function Kt(n,e){if(!n)return n;if(Xt(n)){const t={_placeholder:!0,num:e.length};return e.push(n),t}else if(Array.isArray(n)){const t=new Array(n.length);for(let s=0;s<n.length;s++)t[s]=Kt(n[s],e);return t}else if(typeof n=="object"&&!(n instanceof Date)){const t={};for(const s in n)Object.prototype.hasOwnProperty.call(n,s)&&(t[s]=Kt(n[s],e));return t}return n}function wi(n,e){return n.data=Ht(n.data,e),delete n.attachments,n}function Ht(n,e){if(!n)return n;if(n&&n._placeholder===!0){if(typeof n.num=="number"&&n.num>=0&&n.num<e.length)return e[n.num];throw new Error("illegal attachments")}else if(Array.isArray(n))for(let t=0;t<n.length;t++)n[t]=Ht(n[t],e);else if(typeof n=="object")for(const t in n)Object.prototype.hasOwnProperty.call(n,t)&&(n[t]=Ht(n[t],e));return n}const ki=["connect","connect_error","disconnect","disconnecting","newListener","removeListener"];var S;(function(n){n[n.CONNECT=0]="CONNECT",n[n.DISCONNECT=1]="DISCONNECT",n[n.EVENT=2]="EVENT",n[n.ACK=3]="ACK",n[n.CONNECT_ERROR=4]="CONNECT_ERROR",n[n.BINARY_EVENT=5]="BINARY_EVENT",n[n.BINARY_ACK=6]="BINARY_ACK"})(S||(S={}));class Ei{constructor(e){this.replacer=e}encode(e){return(e.type===S.EVENT||e.type===S.ACK)&&ot(e)?this.encodeAsBinary({type:e.type===S.EVENT?S.BINARY_EVENT:S.BINARY_ACK,nsp:e.nsp,data:e.data,id:e.id}):[this.encodeAsString(e)]}encodeAsString(e){let t=""+e.type;return(e.type===S.BINARY_EVENT||e.type===S.BINARY_ACK)&&(t+=e.attachments+"-"),e.nsp&&e.nsp!=="/"&&(t+=e.nsp+","),e.id!=null&&(t+=e.id),e.data!=null&&(t+=JSON.stringify(e.data,this.replacer)),t}encodeAsBinary(e){const t=bi(e),s=this.encodeAsString(t.packet),i=t.buffers;return i.unshift(s),i}}function Rs(n){return Object.prototype.toString.call(n)==="[object Object]"}class Qt extends Z{constructor(e){super(),this.reviver=e}add(e){let t;if(typeof e=="string"){if(this.reconstructor)throw new Error("got plaintext data when reconstructing a packet");t=this.decodeString(e);const s=t.type===S.BINARY_EVENT;s||t.type===S.BINARY_ACK?(t.type=s?S.EVENT:S.ACK,this.reconstructor=new Ri(t),t.attachments===0&&super.emitReserved("decoded",t)):super.emitReserved("decoded",t)}else if(Xt(e)||e.base64)if(this.reconstructor)t=this.reconstructor.takeBinaryData(e),t&&(this.reconstructor=null,super.emitReserved("decoded",t));else throw new Error("got binary data when not reconstructing a packet");else throw new Error("Unknown type: "+e)}decodeString(e){let t=0;const s={type:Number(e.charAt(0))};if(S[s.type]===void 0)throw new Error("unknown packet type "+s.type);if(s.type===S.BINARY_EVENT||s.type===S.BINARY_ACK){const a=t+1;for(;e.charAt(++t)!=="-"&&t!=e.length;);const u=e.substring(a,t);if(u!=Number(u)||e.charAt(t)!=="-")throw new Error("Illegal attachments");s.attachments=Number(u)}if(e.charAt(t+1)==="/"){const a=t+1;for(;++t&&!(e.charAt(t)===","||t===e.length););s.nsp=e.substring(a,t)}else s.nsp="/";const i=e.charAt(t+1);if(i!==""&&Number(i)==i){const a=t+1;for(;++t;){const u=e.charAt(t);if(u==null||Number(u)!=u){--t;break}if(t===e.length)break}s.id=Number(e.substring(a,t+1))}if(e.charAt(++t)){const a=this.tryParse(e.substr(t));if(Qt.isPayloadValid(s.type,a))s.data=a;else throw new Error("invalid payload")}return s}tryParse(e){try{return JSON.parse(e,this.reviver)}catch{return!1}}static isPayloadValid(e,t){switch(e){case S.CONNECT:return Rs(t);case S.DISCONNECT:return t===void 0;case S.CONNECT_ERROR:return typeof t=="string"||Rs(t);case S.EVENT:case S.BINARY_EVENT:return Array.isArray(t)&&(typeof t[0]=="number"||typeof t[0]=="string"&&ki.indexOf(t[0])===-1);case S.ACK:case S.BINARY_ACK:return Array.isArray(t)}}destroy(){this.reconstructor&&(this.reconstructor.finishedReconstruction(),this.reconstructor=null)}}class Ri{constructor(e){this.packet=e,this.buffers=[],this.reconPack=e}takeBinaryData(e){if(this.buffers.push(e),this.buffers.length===this.reconPack.attachments){const t=wi(this.reconPack,this.buffers);return this.finishedReconstruction(),t}return null}finishedReconstruction(){this.reconPack=null,this.buffers=[]}}const xi=Object.freeze(Object.defineProperty({__proto__:null,Decoder:Qt,Encoder:Ei,get PacketType(){return S}},Symbol.toStringTag,{value:"Module"}));function ve(n,e,t){return n.on(e,t),function(){n.off(e,t)}}const Ai=Object.freeze({connect:1,connect_error:1,disconnect:1,disconnecting:1,newListener:1,removeListener:1});class Ms extends Z{constructor(e,t,s){super(),this.connected=!1,this.recovered=!1,this.receiveBuffer=[],this.sendBuffer=[],this._queue=[],this._queueSeq=0,this.ids=0,this.acks={},this.flags={},this.io=e,this.nsp=t,s&&s.auth&&(this.auth=s.auth),this._opts=Object.assign({},s),this.io._autoConnect&&this.open()}get disconnected(){return!this.connected}subEvents(){if(this.subs)return;const e=this.io;this.subs=[ve(e,"open",this.onopen.bind(this)),ve(e,"packet",this.onpacket.bind(this)),ve(e,"error",this.onerror.bind(this)),ve(e,"close",this.onclose.bind(this))]}get active(){return!!this.subs}connect(){return this.connected?this:(this.subEvents(),this.io._reconnecting||this.io.open(),this.io._readyState==="open"&&this.onopen(),this)}open(){return this.connect()}send(...e){return e.unshift("message"),this.emit.apply(this,e),this}emit(e,...t){var s,i,a;if(Ai.hasOwnProperty(e))throw new Error('"'+e.toString()+'" is a reserved event name');if(t.unshift(e),this._opts.retries&&!this.flags.fromQueue&&!this.flags.volatile)return this._addToQueue(t),this;const u={type:S.EVENT,data:t};if(u.options={},u.options.compress=this.flags.compress!==!1,typeof t[t.length-1]=="function"){const C=this.ids++,q=t.pop();this._registerAckCallback(C,q),u.id=C}const _=(i=(s=this.io.engine)===null||s===void 0?void 0:s.transport)===null||i===void 0?void 0:i.writable,w=this.connected&&!(!((a=this.io.engine)===null||a===void 0)&&a._hasPingExpired());return this.flags.volatile&&!_||(w?(this.notifyOutgoingListeners(u),this.packet(u)):this.sendBuffer.push(u)),this.flags={},this}_registerAckCallback(e,t){var s;const i=(s=this.flags.timeout)!==null&&s!==void 0?s:this._opts.ackTimeout;if(i===void 0){this.acks[e]=t;return}const a=this.io.setTimeoutFn(()=>{delete this.acks[e];for(let _=0;_<this.sendBuffer.length;_++)this.sendBuffer[_].id===e&&this.sendBuffer.splice(_,1);t.call(this,new Error("operation has timed out"))},i),u=(..._)=>{this.io.clearTimeoutFn(a),t.apply(this,_)};u.withError=!0,this.acks[e]=u}emitWithAck(e,...t){return new Promise((s,i)=>{const a=(u,_)=>u?i(u):s(_);a.withError=!0,t.push(a),this.emit(e,...t)})}_addToQueue(e){let t;typeof e[e.length-1]=="function"&&(t=e.pop());const s={id:this._queueSeq++,tryCount:0,pending:!1,args:e,flags:Object.assign({fromQueue:!0},this.flags)};e.push((i,...a)=>s!==this._queue[0]?void 0:(i!==null?s.tryCount>this._opts.retries&&(this._queue.shift(),t&&t(i)):(this._queue.shift(),t&&t(null,...a)),s.pending=!1,this._drainQueue())),this._queue.push(s),this._drainQueue()}_drainQueue(e=!1){if(!this.connected||this._queue.length===0)return;const t=this._queue[0];t.pending&&!e||(t.pending=!0,t.tryCount++,this.flags=t.flags,this.emit.apply(this,t.args))}packet(e){e.nsp=this.nsp,this.io._packet(e)}onopen(){typeof this.auth=="function"?this.auth(e=>{this._sendConnectPacket(e)}):this._sendConnectPacket(this.auth)}_sendConnectPacket(e){this.packet({type:S.CONNECT,data:this._pid?Object.assign({pid:this._pid,offset:this._lastOffset},e):e})}onerror(e){this.connected||this.emitReserved("connect_error",e)}onclose(e,t){this.connected=!1,delete this.id,this.emitReserved("disconnect",e,t),this._clearAcks()}_clearAcks(){Object.keys(this.acks).forEach(e=>{if(!this.sendBuffer.some(s=>String(s.id)===e)){const s=this.acks[e];delete this.acks[e],s.withError&&s.call(this,new Error("socket has been disconnected"))}})}onpacket(e){if(e.nsp===this.nsp)switch(e.type){case S.CONNECT:e.data&&e.data.sid?this.onconnect(e.data.sid,e.data.pid):this.emitReserved("connect_error",new Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)"));break;case S.EVENT:case S.BINARY_EVENT:this.onevent(e);break;case S.ACK:case S.BINARY_ACK:this.onack(e);break;case S.DISCONNECT:this.ondisconnect();break;case S.CONNECT_ERROR:this.destroy();const s=new Error(e.data.message);s.data=e.data.data,this.emitReserved("connect_error",s);break}}onevent(e){const t=e.data||[];e.id!=null&&t.push(this.ack(e.id)),this.connected?this.emitEvent(t):this.receiveBuffer.push(Object.freeze(t))}emitEvent(e){if(this._anyListeners&&this._anyListeners.length){const t=this._anyListeners.slice();for(const s of t)s.apply(this,e)}super.emit.apply(this,e),this._pid&&e.length&&typeof e[e.length-1]=="string"&&(this._lastOffset=e[e.length-1])}ack(e){const t=this;let s=!1;return function(...i){s||(s=!0,t.packet({type:S.ACK,id:e,data:i}))}}onack(e){const t=this.acks[e.id];typeof t=="function"&&(delete this.acks[e.id],t.withError&&e.data.unshift(null),t.apply(this,e.data))}onconnect(e,t){this.id=e,this.recovered=t&&this._pid===t,this._pid=t,this.connected=!0,this.emitBuffered(),this.emitReserved("connect"),this._drainQueue(!0)}emitBuffered(){this.receiveBuffer.forEach(e=>this.emitEvent(e)),this.receiveBuffer=[],this.sendBuffer.forEach(e=>{this.notifyOutgoingListeners(e),this.packet(e)}),this.sendBuffer=[]}ondisconnect(){this.destroy(),this.onclose("io server disconnect")}destroy(){this.subs&&(this.subs.forEach(e=>e()),this.subs=void 0),this.io._destroy(this)}disconnect(){return this.connected&&this.packet({type:S.DISCONNECT}),this.destroy(),this.connected&&this.onclose("io client disconnect"),this}close(){return this.disconnect()}compress(e){return this.flags.compress=e,this}get volatile(){return this.flags.volatile=!0,this}timeout(e){return this.flags.timeout=e,this}onAny(e){return this._anyListeners=this._anyListeners||[],this._anyListeners.push(e),this}prependAny(e){return this._anyListeners=this._anyListeners||[],this._anyListeners.unshift(e),this}offAny(e){if(!this._anyListeners)return this;if(e){const t=this._anyListeners;for(let s=0;s<t.length;s++)if(e===t[s])return t.splice(s,1),this}else this._anyListeners=[];return this}listenersAny(){return this._anyListeners||[]}onAnyOutgoing(e){return this._anyOutgoingListeners=this._anyOutgoingListeners||[],this._anyOutgoingListeners.push(e),this}prependAnyOutgoing(e){return this._anyOutgoingListeners=this._anyOutgoingListeners||[],this._anyOutgoingListeners.unshift(e),this}offAnyOutgoing(e){if(!this._anyOutgoingListeners)return this;if(e){const t=this._anyOutgoingListeners;for(let s=0;s<t.length;s++)if(e===t[s])return t.splice(s,1),this}else this._anyOutgoingListeners=[];return this}listenersAnyOutgoing(){return this._anyOutgoingListeners||[]}notifyOutgoingListeners(e){if(this._anyOutgoingListeners&&this._anyOutgoingListeners.length){const t=this._anyOutgoingListeners.slice();for(const s of t)s.apply(this,e.data)}}}function De(n){n=n||{},this.ms=n.min||100,this.max=n.max||1e4,this.factor=n.factor||2,this.jitter=n.jitter>0&&n.jitter<=1?n.jitter:0,this.attempts=0}De.prototype.duration=function(){var n=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var e=Math.random(),t=Math.floor(e*this.jitter*n);n=Math.floor(e*10)&1?n+t:n-t}return Math.min(n,this.max)|0};De.prototype.reset=function(){this.attempts=0};De.prototype.setMin=function(n){this.ms=n};De.prototype.setMax=function(n){this.max=n};De.prototype.setJitter=function(n){this.jitter=n};class zt extends Z{constructor(e,t){var s;super(),this.nsps={},this.subs=[],e&&typeof e=="object"&&(t=e,e=void 0),t=t||{},t.path=t.path||"/socket.io",this.opts=t,pt(this,t),this.reconnection(t.reconnection!==!1),this.reconnectionAttempts(t.reconnectionAttempts||1/0),this.reconnectionDelay(t.reconnectionDelay||1e3),this.reconnectionDelayMax(t.reconnectionDelayMax||5e3),this.randomizationFactor((s=t.randomizationFactor)!==null&&s!==void 0?s:.5),this.backoff=new De({min:this.reconnectionDelay(),max:this.reconnectionDelayMax(),jitter:this.randomizationFactor()}),this.timeout(t.timeout==null?2e4:t.timeout),this._readyState="closed",this.uri=e;const i=t.parser||xi;this.encoder=new i.Encoder,this.decoder=new i.Decoder,this._autoConnect=t.autoConnect!==!1,this._autoConnect&&this.open()}reconnection(e){return arguments.length?(this._reconnection=!!e,e||(this.skipReconnect=!0),this):this._reconnection}reconnectionAttempts(e){return e===void 0?this._reconnectionAttempts:(this._reconnectionAttempts=e,this)}reconnectionDelay(e){var t;return e===void 0?this._reconnectionDelay:(this._reconnectionDelay=e,(t=this.backoff)===null||t===void 0||t.setMin(e),this)}randomizationFactor(e){var t;return e===void 0?this._randomizationFactor:(this._randomizationFactor=e,(t=this.backoff)===null||t===void 0||t.setJitter(e),this)}reconnectionDelayMax(e){var t;return e===void 0?this._reconnectionDelayMax:(this._reconnectionDelayMax=e,(t=this.backoff)===null||t===void 0||t.setMax(e),this)}timeout(e){return arguments.length?(this._timeout=e,this):this._timeout}maybeReconnectOnOpen(){!this._reconnecting&&this._reconnection&&this.backoff.attempts===0&&this.reconnect()}open(e){if(~this._readyState.indexOf("open"))return this;this.engine=new fi(this.uri,this.opts);const t=this.engine,s=this;this._readyState="opening",this.skipReconnect=!1;const i=ve(t,"open",function(){s.onopen(),e&&e()}),a=_=>{this.cleanup(),this._readyState="closed",this.emitReserved("error",_),e?e(_):this.maybeReconnectOnOpen()},u=ve(t,"error",a);if(this._timeout!==!1){const _=this._timeout,w=this.setTimeoutFn(()=>{i(),a(new Error("timeout")),t.close()},_);this.opts.autoUnref&&w.unref(),this.subs.push(()=>{this.clearTimeoutFn(w)})}return this.subs.push(i),this.subs.push(u),this}connect(e){return this.open(e)}onopen(){this.cleanup(),this._readyState="open",this.emitReserved("open");const e=this.engine;this.subs.push(ve(e,"ping",this.onping.bind(this)),ve(e,"data",this.ondata.bind(this)),ve(e,"error",this.onerror.bind(this)),ve(e,"close",this.onclose.bind(this)),ve(this.decoder,"decoded",this.ondecoded.bind(this)))}onping(){this.emitReserved("ping")}ondata(e){try{this.decoder.add(e)}catch(t){this.onclose("parse error",t)}}ondecoded(e){dt(()=>{this.emitReserved("packet",e)},this.setTimeoutFn)}onerror(e){this.emitReserved("error",e)}socket(e,t){let s=this.nsps[e];return s?this._autoConnect&&!s.active&&s.connect():(s=new Ms(this,e,t),this.nsps[e]=s),s}_destroy(e){const t=Object.keys(this.nsps);for(const s of t)if(this.nsps[s].active)return;this._close()}_packet(e){const t=this.encoder.encode(e);for(let s=0;s<t.length;s++)this.engine.write(t[s],e.options)}cleanup(){this.subs.forEach(e=>e()),this.subs.length=0,this.decoder.destroy()}_close(){this.skipReconnect=!0,this._reconnecting=!1,this.onclose("forced close")}disconnect(){return this._close()}onclose(e,t){var s;this.cleanup(),(s=this.engine)===null||s===void 0||s.close(),this.backoff.reset(),this._readyState="closed",this.emitReserved("close",e,t),this._reconnection&&!this.skipReconnect&&this.reconnect()}reconnect(){if(this._reconnecting||this.skipReconnect)return this;const e=this;if(this.backoff.attempts>=this._reconnectionAttempts)this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{const t=this.backoff.duration();this._reconnecting=!0;const s=this.setTimeoutFn(()=>{e.skipReconnect||(this.emitReserved("reconnect_attempt",e.backoff.attempts),!e.skipReconnect&&e.open(i=>{i?(e._reconnecting=!1,e.reconnect(),this.emitReserved("reconnect_error",i)):e.onreconnect()}))},t);this.opts.autoUnref&&s.unref(),this.subs.push(()=>{this.clearTimeoutFn(s)})}}onreconnect(){const e=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",e)}}const ze={};function at(n,e){typeof n=="object"&&(e=n,n=void 0),e=e||{};const t=vi(n,e.path||"/socket.io"),s=t.source,i=t.id,a=t.path,u=ze[i]&&a in ze[i].nsps,_=e.forceNew||e["force new connection"]||e.multiplex===!1||u;let w;return _?w=new zt(s,e):(ze[i]||(ze[i]=new zt(s,e)),w=ze[i]),t.query&&!e.query&&(e.query=t.queryKey),w.socket(t.path,e)}Object.assign(at,{Manager:zt,Socket:Ms,io:at,connect:at});var Si=E(' <strong class="svelte-1pcdei1"></strong> ',1),Ci=E('<a class="view-report-btn svelte-1pcdei1"> <svg width="11" height="11" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="svelte-1pcdei1"><line x1="5" y1="12" x2="19" y2="12" class="svelte-1pcdei1"></line><polyline points="12 5 19 12 12 19" class="svelte-1pcdei1"></polyline></svg></a>'),Ti=E('<span class="run-chip-spinner svelte-1pcdei1"></span>'),Bi=E('<span class="run-chip-count svelte-1pcdei1"> </span>'),Li=E('<div class="run-chip svelte-1pcdei1"><svg width="9" height="10" viewBox="0 0 10 12" fill="currentColor" stroke="none" style="opacity:0.6;flex-shrink:0" class="svelte-1pcdei1"><polygon points="0,0 10,6 0,12" class="svelte-1pcdei1"></polygon></svg> <span class="run-chip-title svelte-1pcdei1"> </span> <!> <button class="run-chip-clear svelte-1pcdei1"><svg width="9" height="9" viewBox="0 0 14 14" fill="none" class="svelte-1pcdei1"><path d="M1 1l12 12M13 1L1 13" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" class="svelte-1pcdei1"></path></svg></button></div>'),Ni=E('<div class="input-wrap svelte-1pcdei1"><svg class="input-icon svelte-1pcdei1" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8" class="svelte-1pcdei1"></circle><line x1="21" y1="21" x2="16.65" y2="16.65" class="svelte-1pcdei1"></line></svg> <input type="text" class="tag-input svelte-1pcdei1" placeholder="@tag or leave blank for all tests"></div>'),Oi=E('<button class="dropdown-item svelte-1pcdei1"><span style="color:var(--text-muted)" class="svelte-1pcdei1">✕</span> </button> <div class="dropdown-divider svelte-1pcdei1"></div>',1),Ui=E('<div class="dropdown-empty svelte-1pcdei1"></div>'),$i=E('<button class="dropdown-item svelte-1pcdei1"> </button>'),Ii=E('<div class="dropdown-menu run-pick-menu svelte-1pcdei1"><!> <!></div>'),qi=E('<button class="dropdown-item svelte-1pcdei1"> </button>'),Pi=E('<div class="dropdown-menu svelte-1pcdei1"></div>'),Di=E('<label class="runner-option svelte-1pcdei1"><input type="checkbox" class="svelte-1pcdei1"> <span class="runner-dot built-in svelte-1pcdei1"></span> <span class="svelte-1pcdei1"></span></label>'),Vi=E('<label class="runner-option svelte-1pcdei1"><input type="checkbox" class="svelte-1pcdei1"> <span class="runner-dot remote svelte-1pcdei1"></span> <span class="svelte-1pcdei1"> </span></label>'),Mi=E('<div class="dropdown-menu runners-menu svelte-1pcdei1"><!> <!></div>'),Fi=E('<div class="ctrl-divider svelte-1pcdei1"></div> <div class="ctrl-group svelte-1pcdei1"><span class="ctrl-label svelte-1pcdei1"></span> <div class="dropdown-wrap svelte-1pcdei1"><button class="dropdown-trigger svelte-1pcdei1"><span class="svelte-1pcdei1"> </span> <svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" class="trigger-chevron svelte-1pcdei1"><polyline points="6 9 12 15 18 9" class="svelte-1pcdei1"></polyline></svg></button> <!></div></div>',1),Wi=E('<button type="button" class="notify-btn svelte-1pcdei1"></button>'),Ki=E('<button type="button" class="notify-btn svelte-1pcdei1"></button>'),Hi=E('<div class="ctrl-divider svelte-1pcdei1"></div> <div class="ctrl-group svelte-1pcdei1"><span class="ctrl-label svelte-1pcdei1"></span> <div class="notify-toggles svelte-1pcdei1"><!> <!></div></div>',1),zi=E('<span class="meta-dot svelte-1pcdei1">·</span> ',1),Yi=E('<div class="run-card svelte-1pcdei1"><span class="run-card-dot svelte-1pcdei1"></span> <a class="run-card-main svelte-1pcdei1"><div class="run-card-info svelte-1pcdei1"><span class="run-card-label svelte-1pcdei1"> </span> <span class="run-card-meta svelte-1pcdei1"> <!></span></div> <!> <svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" class="run-card-arrow svelte-1pcdei1"><line x1="5" y1="12" x2="19" y2="12" class="svelte-1pcdei1"></line><polyline points="12 5 19 12 12 19" class="svelte-1pcdei1"></polyline></svg></a> <button class="run-card-cancel svelte-1pcdei1"><svg width="12" height="12" viewBox="0 0 14 14" fill="none" class="svelte-1pcdei1"><path d="M1 1l12 12M13 1L1 13" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" class="svelte-1pcdei1"></path></svg></button></div>'),ji=E('<div class="empty-runs svelte-1pcdei1"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="empty-icon svelte-1pcdei1"><circle cx="12" cy="12" r="10" class="svelte-1pcdei1"></circle><line x1="10" y1="15" x2="10" y2="12" class="svelte-1pcdei1"></line><line x1="10" y1="9" x2="10.01" y2="9" class="svelte-1pcdei1"></line></svg> </div>'),Ji=E('<div class="body svelte-1pcdei1"><!> <!></div>'),Gi=E('<!> <div class="panel svelte-1pcdei1"><div class="scan-line svelte-1pcdei1"></div> <div class="bar svelte-1pcdei1"><div class="bar-left svelte-1pcdei1"><div class="bar-status svelte-1pcdei1"><span class="status-dot svelte-1pcdei1"></span> <span class="status-word svelte-1pcdei1"> </span></div> <!></div> <span class="flex-gap svelte-1pcdei1"></span> <div class="bar-center svelte-1pcdei1"><!> <div class="ctrl-group svelte-1pcdei1"><span class="ctrl-label svelte-1pcdei1"></span> <div class="dropdown-wrap svelte-1pcdei1"><button class="dropdown-trigger svelte-1pcdei1"><span class="svelte-1pcdei1"> </span> <svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" class="trigger-chevron svelte-1pcdei1"><polyline points="6 9 12 15 18 9" class="svelte-1pcdei1"></polyline></svg></button> <!></div></div> <div class="ctrl-divider svelte-1pcdei1"></div> <div class="ctrl-group svelte-1pcdei1"><span class="ctrl-label svelte-1pcdei1"></span> <div class="stepper svelte-1pcdei1"><button class="step-btn svelte-1pcdei1">−</button> <span class="step-val svelte-1pcdei1"> </span> <button class="step-btn svelte-1pcdei1">+</button></div></div> <div class="ctrl-divider svelte-1pcdei1"></div> <div class="ctrl-group svelte-1pcdei1"><span class="ctrl-label svelte-1pcdei1"></span> <div class="dropdown-wrap svelte-1pcdei1"><button class="dropdown-trigger svelte-1pcdei1"><span class="svelte-1pcdei1"> </span> <svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" class="trigger-chevron svelte-1pcdei1"><polyline points="6 9 12 15 18 9" class="svelte-1pcdei1"></polyline></svg></button> <!></div></div> <!> <!> <div class="ctrl-divider svelte-1pcdei1"></div> <button class="run-btn svelte-1pcdei1"><svg width="9" height="10" viewBox="0 0 10 12" fill="currentColor" stroke="none" class="svelte-1pcdei1"><polygon points="0,0 10,6 0,12" class="svelte-1pcdei1"></polygon></svg> </button></div> <span class="flex-gap-sm svelte-1pcdei1"></span> <button class="expand-btn svelte-1pcdei1"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="svelte-1pcdei1"><polyline points="18 15 12 9 6 15" class="svelte-1pcdei1"></polyline></svg></button></div> <!></div>',1);function Xi(n,e){lt(e,!1);const[t,s]=ht(),i=()=>_e(Ee,"$runnerConfig",t),a=()=>_e(He,"$backgroundRuns",t),u=()=>_e(Mn,"$runsVersion",t),_=()=>_e(Be,"$panelExpanded",t),w=()=>_e(Ut,"$builtInEnabled",t),B=F(),C=F(),q=F(),A=F(),V=F(),J=F(),ae=F(),ue=F(),W=F();let P=F([]),z=F([]),R=F(null),te=F(!1),D=F(!1),M=F(!1),G=F(!1),ie=F(!1),I=F({discordWebhookUrl:"",slackWebhookUrl:"",notifyPublicUrl:""}),L=F(!1),ee=F(!1);function Y(o){function p(k){o.contains(k.target)||o.dispatchEvent(new CustomEvent("clickoutside"))}return document.addEventListener("click",p,!0),{destroy(){document.removeEventListener("click",p,!0)}}}let se,X,he,oe,ce=F(null);Yt(()=>{try{const c=localStorage.getItem("plum:runnerConfig");c&&Ee.update(f=>({...f,...JSON.parse(c)}))}catch{}try{const c=localStorage.getItem("plum:panelExpanded");c!==null&&Be.set(c==="true")}catch{}try{const c=localStorage.getItem("plum:builtInEnabled");c!==null&&Ut.set(c!=="false")}catch{}En().then(c=>{x(P,c);const f=new Set([Te,...c.map(v=>v.id)]);Ee.update(v=>{const y=v.selectedRunners.filter(m=>f.has(m));return{...v,selectedRunners:y.length>0?y:[Te]}})}).catch(()=>{}),Rn().then(c=>x(I,c)).catch(()=>{}),ur().then(c=>{c.length!==0&&(He.update(f=>{const v={...f};for(const{runId:y,kind:m,label:b,meta:N,status:K}of c)v[y]||(v[y]=_s({kind:m,label:b,meta:N,status:K}));return v}),Be.set(!0))}).catch(()=>{}),se=Ee.subscribe(c=>{try{localStorage.setItem("plum:runnerConfig",JSON.stringify(c))}catch{}}),X=Be.subscribe(c=>{try{localStorage.setItem("plum:panelExpanded",String(c))}catch{}}),he=Ut.subscribe(c=>{try{localStorage.setItem("plum:builtInEnabled",String(c))}catch{}Ee.update(f=>{if(!c&&f.selectedRunners.includes(Te)){const v=f.selectedRunners.filter(m=>m!==Te),y=v.length>0?v:r(P)[0]?[r(P)[0].id]:[];return{...f,selectedRunners:y}}return f})});const o=at(fn,{transports:["websocket"]});oe=o,xn.set(o),o.on(Re.REPORT_READY,()=>gs.update(c=>c+1));function p(c,f){He.update(v=>v[c]?{...v,[c]:f(v[c])}:v)}function k(c,{kind:f,label:v,meta:y},m){He.update(b=>({...b,[c]:b[c]?{...b[c],status:m}:_s({kind:f,label:v,meta:y,status:m})})),Be.set(!0)}o.on(Re.BG_RUN_QUEUED,({runId:c,kind:f,label:v,meta:y})=>{k(c,{kind:f,label:v,meta:y},"queued")}),o.on(Re.BG_RUN_START,({runId:c,kind:f,label:v,meta:y})=>{k(c,{kind:f,label:v,meta:y},"running")}),o.on(Re.BG_RUN_LOG,({runId:c,log:f})=>{p(c,v=>({...v,output:v.output+f}))}),o.on(Re.BG_RUN_LANES_INIT,({runId:c,lanes:f})=>{p(c,v=>({...v,lanes:f.map(y=>({...y,status:"running",logs:""}))}))});function T(c,f,v){const y=c.lanes.some(m=>m.id===f)?c.lanes.map(m=>m.id===f?{...m,...v(m)}:m):[...c.lanes,{id:f,name:f,testCount:0,status:"running",logs:"",...v({logs:""})}];return{...c,lanes:y}}o.on(Re.BG_RUN_LANE_LOG,({runId:c,laneId:f,log:v})=>{p(c,y=>T(y,f,m=>({logs:(m.logs||"")+v})))}),o.on(Re.BG_RUN_LANE_STATUS,({runId:c,laneId:f,status:v})=>{p(c,y=>T(y,f,()=>({status:v})))}),o.on(Re.BG_RUN_LANE_RRWEB_BATCH,({runId:c,...f})=>{p(c,v=>({...v,rrwebByLane:An(v.rrwebByLane,f)}))}),o.on(Re.BG_RUN_DONE,({runId:c,code:f,reportId:v})=>{const y=f===0||f===null,m=f===130;p(c,b=>({...b,status:"done",testCompleted:!m,latestReportId:m?null:v,verdict:m?"cancelled":y?"pass":"fail"})),!m&&v&&x(ce,{reportId:v,verdict:y?"pass":"fail"}),m||gs.update(b=>b+1),setTimeout(()=>{He.update(b=>{const N={...b};return delete N[c],N})},vn+5e3)})}),hn(()=>{se==null||se(),X==null||X(),he==null||he(),oe==null||oe.disconnect()});async function Ne(o){x(G,!1),x(R,{id:o.id,title:o.title,tags:null}),x(te,!0);try{const k=(await lr(o.id)).entries.filter(T=>{var c;return(c=T.case)==null?void 0:c.isAutomated}).map(T=>`@${T.case.displayId}`);x(R,{id:o.id,title:o.title,tags:k})}catch{x(R,null)}finally{x(te,!1)}}function Je(){x(R,null)}function Ae(){const o={notifyDiscord:r(L),notifySlack:r(ee)};if(r(R)){if(r(te)||!r(R).tags||r(R).tags.length===0)return;$t(r(R).tags.join(" or "),r(R).id,o,r(R).title)}else i().testID.trim()===""?x(ie,!0):$t(void 0,void 0,o)}function ft(o){o.key==="Enter"&&!r(R)&&Ae()}function Zt(o){Ee.update(p=>({...p,workers:Math.max(ps,Math.min(fs,p.workers+o))}))}function es(o){Ee.update(p=>{const k=p.selectedRunners;if(k.includes(o)&&k.length===1)return p;const T=k.includes(o)?k.filter(c=>c!==o):[...k,o];return{...p,selectedRunners:T}})}function vt(o){return i().selectedRunners.includes(o)}pe(()=>i(),()=>{x(B,i())}),pe(()=>a(),()=>{x(C,Object.entries(a()).filter(([,o])=>o.status==="queued"||o.status==="running"))}),pe(()=>r(C),()=>{x(q,r(C).filter(([,o])=>o.status==="running").length)}),pe(()=>r(C),()=>{x(A,r(C).filter(([,o])=>o.status==="queued").length)}),pe(()=>r(C),()=>{x(V,r(C).length>0)}),pe(()=>(u(),ds),()=>{u()>=0&&cr({limit:ds}).then(o=>x(z,o.runs)).catch(()=>{})}),pe(()=>(r(q),r(A),r(ce)),()=>{var o,p;x(J,r(q)>0?"var(--accent)":r(A)>0?"var(--warn)":((o=r(ce))==null?void 0:o.verdict)==="pass"?"var(--pass)":((p=r(ce))==null?void 0:p.verdict)==="fail"?"var(--fail)":"var(--border)")}),pe(()=>(r(q),r(A),r(ce)),()=>{var o;x(ae,Sn({running:r(q),queued:r(A),verdict:(o=r(ce))==null?void 0:o.verdict}))}),pe(()=>r(B),()=>{x(ue,Nt.find(o=>o.id===r(B).browser)??Nt[0])}),pe(()=>(r(B),r(P)),()=>{x(W,Cn(r(B),r(P)))}),xs(),ct();var ts=Gi(),ss=re(ts);pr(ss,{title:Bn,confirmLabel:Tn,get open(){return r(ie)},set open(o){x(ie,o)},$$events:{confirm:()=>{x(ie,!1),$t(void 0,void 0,{notifyDiscord:r(L),notifySlack:r(ee)})}},children:(o,p)=>{Ke();var k=Si(),T=re(k);T.nodeValue=`${Ln} `;var c=l(T);c.textContent=Nn;var f=l(c);f.nodeValue=` ${On}`,g(o,k)},$$slots:{default:!0},$$legacy:!0});var _t=l(ss,2),Ge=d(_t),gt=l(Ge,2),mt=d(gt),yt=d(mt),bt=d(yt),wt=l(bt,2),Fs=d(wt,!0);h(wt),h(yt);var Ws=l(yt,2);{var Ks=o=>{var p=Ci(),k=d(p);k.nodeValue=`${Fn} `,Ke(),h(p),H(T=>ne(p,"href",T),[()=>nr(r(ce).reportId)],le),U("click",p,()=>Be.set(!1)),xe(3,p,()=>Oe,()=>({x:-6,duration:200})),g(o,p)};$(Ws,o=>{var p;!r(V)&&((p=r(ce))!=null&&p.reportId)&&o(Ks)})}h(mt);var kt=l(mt,4),ns=d(kt);{var Hs=o=>{var p=Li(),k=l(d(p),2),T=d(k,!0);h(k);var c=l(k,2);{var f=m=>{var b=Ti();g(m,b)},v=m=>{var b=Ue(),N=re(b);{var K=Q=>{var de=Bi(),ge=d(de,!0);h(de),H(Fe=>{O(de,"none",r(R).tags.length===0),j(ge,Fe)},[()=>sr(r(R).tags.length)],le),g(Q,de)};$(N,Q=>{r(R).tags!==null&&Q(K)},!0)}g(m,b)};$(c,m=>{r(te)?m(f):m(v,!1)})}var y=l(c,2);ne(y,"aria-label",Wn),h(p),H(()=>{O(p,"loading",r(te)),j(T,r(R).title)}),U("click",y,Je),g(o,p)},zs=o=>{var p=Ni(),k=l(d(p),2);Ot(k),h(p),H(()=>_n(k,i().testID)),U("input",k,T=>Ee.update(c=>({...c,testID:T.currentTarget.value}))),U("keydown",k,ft),g(o,p)};$(ns,o=>{r(R)?o(Hs):o(zs,!1)})}var Et=l(ns,2),rs=d(Et);rs.textContent=Un;var Xe=l(rs,2),Ie=d(Xe),Rt=d(Ie),Ys=d(Rt,!0);h(Rt);var js=l(Rt,2);h(Ie);var Js=l(Ie,2);{var Gs=o=>{var p=Ii(),k=d(p);{var T=y=>{var m=Oi(),b=re(m),N=l(d(b));N.nodeValue=` ${gn}`,h(b),Ke(2),U("click",b,Je),g(y,m)};$(k,y=>{r(R)&&y(T)})}var c=l(k,2);{var f=y=>{var m=Ui();m.textContent=Qn,g(y,m)},v=y=>{var m=Ue(),b=re(m);$e(b,1,()=>r(z).filter(N=>N.status!=="complete"),je,(N,K)=>{var Q=$i(),de=d(Q,!0);h(Q),H(()=>{var ge;O(Q,"active",((ge=r(R))==null?void 0:ge.id)===r(K).id),j(de,r(K).title)}),U("click",Q,()=>Ne(r(K))),g(N,Q)}),g(y,m)};$(c,y=>{r(z).filter(m=>m.status!=="complete").length===0?y(f):y(v,!1)})}h(p),xe(3,p,()=>Oe,()=>({y:6,duration:130})),g(o,p)};$(Js,o=>{r(G)&&o(Gs)})}h(Xe),It(Xe,o=>Y==null?void 0:Y(o)),nt(()=>U("clickoutside",Xe,()=>x(G,!1))),h(Et);var xt=l(Et,4),is=d(xt);is.textContent=$n;var os=l(is,2),At=d(os),St=l(At,2),Xs=d(St,!0);h(St);var as=l(St,2);h(os),h(xt);var Ct=l(xt,4),cs=d(Ct);cs.textContent=In;var Qe=l(cs,2),Ve=d(Qe),Tt=d(Ve),Qs=d(Tt,!0);h(Tt);var Zs=l(Tt,2);h(Ve);var en=l(Ve,2);{var tn=o=>{var p=Pi();$e(p,5,()=>Nt,je,(k,T)=>{var c=qi(),f=d(c,!0);h(c),H(()=>{O(c,"active",r(B).browser===r(T).id),j(f,r(T).label)}),U("click",c,()=>{Ee.update(v=>({...v,browser:r(T).id})),x(D,!1)}),g(k,c)}),h(p),xe(3,p,()=>Oe,()=>({y:6,duration:130})),g(o,p)};$(en,o=>{r(D)&&o(tn)})}h(Qe),It(Qe,o=>Y==null?void 0:Y(o)),nt(()=>U("clickoutside",Qe,()=>x(D,!1))),h(Ct);var ls=l(Ct,2);{var sn=o=>{var p=Fi(),k=l(re(p),2),T=d(k);T.textContent=Kn;var c=l(T,2),f=d(c),v=d(f),y=d(v,!0);h(v);var m=l(v,2);h(f);var b=l(f,2);{var N=K=>{var Q=Mi(),de=d(Q);{var ge=Se=>{var me=Di(),ye=d(me);Ot(ye);var Ce=l(ye,4);Ce.textContent=bn,h(me),H(qe=>vs(ye,qe),[()=>vt(Te)],le),U("change",ye,()=>es(Te)),g(Se,me)};$(de,Se=>{(w()||vt(Te))&&Se(ge)})}var Fe=l(de,2);$e(Fe,1,()=>r(P),je,(Se,me)=>{var ye=Vi(),Ce=d(ye);Ot(Ce);var qe=l(Ce,4),Bt=d(qe,!0);h(qe),h(ye),H(We=>{vs(Ce,We),j(Bt,r(me).name)},[()=>vt(r(me).id)],le),U("change",Ce,()=>es(r(me).id)),g(Se,ye)}),h(Q),xe(3,Q,()=>Oe,()=>({y:6,duration:130})),g(K,Q)};$(b,K=>{r(M)&&K(N)})}h(c),It(c,K=>Y==null?void 0:Y(K)),nt(()=>U("clickoutside",c,()=>x(M,!1))),h(k),H(K=>{O(f,"open",r(M)),O(f,"has-remote",K),j(y,r(W)),O(m,"open",r(M))},[()=>r(B).selectedRunners.some(K=>K!==Te)],le),U("click",f,()=>{x(M,!r(M))}),g(o,p)};$(ls,o=>{r(P).length>0&&o(sn)})}var us=l(ls,2);{var nn=o=>{var p=Hi(),k=l(re(p),2),T=d(k);T.textContent=Hn;var c=l(T,2),f=d(c);{var v=b=>{var N=Wi();N.textContent=mn,H(K=>{ne(N,"title",K),O(N,"active",r(L))},[()=>Zn(r(L))],le),U("click",N,()=>x(L,!r(L))),g(b,N)};$(f,b=>{r(I).discordWebhookUrl&&b(v)})}var y=l(f,2);{var m=b=>{var N=Ki();N.textContent=yn,H(K=>{ne(N,"title",K),O(N,"active",r(ee))},[()=>er(r(ee))],le),U("click",N,()=>x(ee,!r(ee))),g(b,N)};$(y,b=>{r(I).slackWebhookUrl&&b(m)})}h(c),h(k),g(o,p)};$(us,o=>{(r(I).discordWebhookUrl||r(I).slackWebhookUrl)&&o(nn)})}var Me=l(us,4),rn=l(d(Me));rn.nodeValue=` ${qn}`,h(Me),h(kt);var Ze=l(kt,4),on=d(Ze);h(Ze),h(gt);var an=l(gt,2);{var cn=o=>{var p=Ji(),k=d(p);$e(k,3,()=>r(C),([f,v])=>f,(f,v,y)=>{let m=()=>r(v)[0],b=()=>r(v)[1];var N=Yi(),K=d(N),Q=l(K,2),de=d(Q),ge=d(de),Fe=d(ge,!0);h(ge);var Se=l(ge,2),me=d(Se),ye=l(me);{var Ce=ke=>{var Pe=zi(),et=l(re(Pe));H(Lt=>j(et,` ${Lt??""}`),[()=>Xn(b().currentRun.startedBy)],le),g(ke,Pe)};$(ye,ke=>{var Pe;(Pe=b().currentRun)!=null&&Pe.startedBy&&ke(Ce)})}h(Se),h(de);var qe=l(de,2);const Bt=le(()=>b().status==="queued"?"tag":dr(b().kind));fr(qe,{get variant(){return r(Bt)},children:(ke,Pe)=>{Ke();var et=ln();H(Lt=>j(et,Lt),[()=>b().status==="queued"?zn:hr(b().kind)],le),g(ke,et)},$$slots:{default:!0}}),Ke(2),h(Q);var We=l(Q,2);ne(We,"title",ms),ne(We,"aria-label",ms),h(N),H(ke=>{O(N,"active-run",b().status==="running"),O(N,"queued-run",b().status==="queued"),O(K,"pulse-accent",b().status==="running"),O(K,"queued-dot",b().status==="queued"),ne(Q,"href",`/live/${m()??""}`),j(Fe,b().label||Jn),j(me,`${ke??""} `)},[()=>b().status==="queued"?Yn(r(C).slice(0,r(y)).filter(([,ke])=>ke.status==="queued").length+1):jn(b().kind)],le),U("click",Q,()=>Be.set(!1)),U("click",We,()=>Gn(m())),xe(3,N,()=>Oe,()=>({x:-4,duration:160})),g(f,N)});var T=l(k,2);{var c=f=>{var v=ji(),y=l(d(v));y.nodeValue=` ${tr}`,h(v),g(f,v)};$(T,f=>{r(V)||f(c)})}h(p),xe(3,p,()=>As,()=>({duration:200})),g(o,p)};$(an,o=>{_()&&o(cn)})}h(_t),H(o=>{var p,k,T,c;O(_t,"expanded",_()),O(Ge,"scanning",r(q)>0),O(Ge,"line-pass",((p=r(ce))==null?void 0:p.verdict)==="pass"&&!r(V)),O(Ge,"line-fail",((k=r(ce))==null?void 0:k.verdict)==="fail"&&!r(V)),ne(bt,"style",`background:${r(J)??""}`),O(bt,"pulse",r(q)>0),ne(wt,"style",`color:${r(J)??""}`),j(Fs,r(ae)),O(Ie,"open",r(G)),O(Ie,"has-remote",!!r(R)),j(Ys,r(R)?r(R).title:Dn),O(js,"open",r(G)),At.disabled=r(B).workers<=ps,j(Xs,r(B).workers),as.disabled=r(B).workers>=fs,O(Ve,"open",r(D)),j(Qs,r(ue).label),O(Zs,"open",r(D)),Me.disabled=r(te)||r(R)&&((T=r(R).tags)==null?void 0:T.length)===0,ne(Me,"title",r(R)&&((c=r(R).tags)==null?void 0:c.length)===0?Vn:void 0),ne(Ze,"aria-label",o),O(on,"flipped",_())},[()=>Pn(_())],le),U("click",Ie,()=>{x(G,!r(G))}),U("click",At,()=>Zt(-1)),U("click",as,()=>Zt(1)),U("click",Ve,()=>{x(D,!r(D))}),U("click",Me,Ae),U("click",Ze,()=>Be.update(o=>!o)),g(n,ts),ut(),s()}function Qi(n,{from:e,to:t},s={}){var{delay:i=0,duration:a=D=>Math.sqrt(D)*120,easing:u=vr}=s,_=getComputedStyle(n),w=_.transform==="none"?"":_.transform,[B,C]=_.transformOrigin.split(" ").map(parseFloat);B/=n.clientWidth,C/=n.clientHeight;var q=Zi(n),A=n.clientWidth/t.width/q,V=n.clientHeight/t.height/q,J=e.left+e.width*B,ae=e.top+e.height*C,ue=t.left+t.width*B,W=t.top+t.height*C,P=(J-ue)*A,z=(ae-W)*V,R=e.width/t.width,te=e.height/t.height;return{delay:i,duration:typeof a=="function"?a(Math.sqrt(P*P+z*z)):a,easing:u,css:(D,M)=>{var G=M*P,ie=M*z,I=D+M*R,L=D+M*te;return`transform: ${w} translate(${G}px, ${ie}px) scale(${I}, ${L});`}}}function Zi(n){if("currentCSSZoom"in n)return n.currentCSSZoom;for(var e=n,t=1;e!==null;)t*=+getComputedStyle(e).zoom,e=e.parentElement;return t}var eo=E('<div class="row svelte-1l6rncl"><span class="spinner svelte-1l6rncl" aria-hidden="true"></span> <span class="msg svelte-1l6rncl"> </span> <button class="link text svelte-1l6rncl"></button></div> <div class="bar svelte-1l6rncl"><span class="fill svelte-1l6rncl"></span></div> <p class="sub svelte-1l6rncl"></p>',1),to=E('<div class="row svelte-1l6rncl"><span class="dot success svelte-1l6rncl"></span> <span class="msg svelte-1l6rncl"></span></div>'),so=E('<p class="sub svelte-1l6rncl"> </p>'),no=E('<div class="row svelte-1l6rncl"><span class="dot error svelte-1l6rncl"></span> <span class="msg svelte-1l6rncl"></span> <button class="link text svelte-1l6rncl"></button></div> <!>',1),ro=E('<div class="card svelte-1l6rncl"><!></div>'),io=E('<div class="card svelte-1l6rncl"><div class="row svelte-1l6rncl"><span></span> <span class="msg svelte-1l6rncl"> </span> <button class="link svelte-1l6rncl"><svg width="12" height="12" viewBox="0 0 14 14" fill="none"><path d="M1 1l12 12M13 1L1 13" stroke="currentColor" stroke-width="1.6" stroke-linecap="round"></path></svg></button></div></div>'),oo=E('<div class="stack svelte-1l6rncl"><!> <!></div>');function ao(n,e){lt(e,!1);const[t,s]=ht(),i=()=>_e(mr,"$replayVideoJob",t),a=()=>_e(gr,"$notifications",t),u=F(),_=F();pe(()=>i(),()=>{x(u,i())}),pe(()=>r(u),()=>{var A;x(_,Math.round((((A=r(u))==null?void 0:A.progress)??0)*100))}),xs(),ct();var w=oo(),B=d(w);{var C=A=>{var V=ro(),J=d(V);{var ae=W=>{var P=eo(),z=re(P),R=l(d(z),2),te=d(R);h(R);var D=l(R,2);D.textContent=wn,h(z);var M=l(z,2),G=d(M);h(M);var ie=l(M,2);ie.textContent=rr,H(()=>{j(te,`${ir} ${r(_)??""}%`),ne(G,"style",`width:${r(_)??""}%`)}),U("click",D,function(...I){var L;(L=yr)==null||L.apply(this,I)}),g(W,P)},ue=W=>{var P=Ue(),z=re(P);{var R=D=>{var M=to(),G=l(d(M),2);G.textContent=or,h(M),g(D,M)},te=D=>{var M=no(),G=re(M),ie=l(d(G),2);ie.textContent=ar;var I=l(ie,2);I.textContent=ys,h(G);var L=l(G,2);{var ee=Y=>{var se=so(),X=d(se,!0);h(se),H(()=>j(X,r(u).error)),g(Y,se)};$(L,Y=>{r(u).error&&Y(ee)})}U("click",I,function(...Y){var se;(se=br)==null||se.apply(this,Y)}),g(D,M)};$(z,D=>{r(u).status==="done"?D(R):D(te,!1)},!0)}g(W,P)};$(J,W=>{r(u).status==="rendering"?W(ae):W(ue,!1)})}h(V),xe(3,V,()=>Oe,()=>({y:12,duration:200})),g(A,V)};$(B,A=>{r(u)&&A(C)})}var q=l(B,2);$e(q,9,a,A=>A.id,(A,V)=>{var J=io(),ae=d(J),ue=d(ae),W=l(ue,2),P=d(W,!0);h(W);var z=l(W,2);ne(z,"aria-label",ys),h(ae),h(J),H(()=>{dn(ue,`dot ${r(V).type??""} svelte-1l6rncl`),j(P,r(V).message)}),U("click",z,()=>_r(r(V).id)),pn(J,()=>Qi,()=>({duration:180})),xe(3,J,()=>Oe,()=>({y:12,duration:200})),g(A,J)}),h(w),g(n,w),ut(),s()}var co=E("<!> <!> <!> <!>",1),lo=E('<div class="boot-loading svelte-3qbr79">Loading…</div>');function Uo(n,e){lt(e,!1);const[t,s]=ht(),i=()=>_e(Ss,"$page",t),a=()=>_e(Cs,"$auth",t),u=["/login","/setup"];let _=F(!1);Yt(async()=>{const A=i().url.pathname;if(u.includes(A)){x(_,!0);return}if(a().token){x(_,!0);return}try{const J=await wr();await hs(J?"/setup":"/login")}catch{await hs("/login")}finally{x(_,!0)}}),ct();var w=Ue(),B=re(w);{var C=A=>{var V=Ue(),J=re(V);{var ae=W=>{var P=Ue(),z=re(P);Vt(z,e,"default",{},null),g(W,P)},ue=W=>{var P=co(),z=re(P);Nr(z,{});var R=l(z,2);Ur(R,{children:(M,G)=>{var ie=Ue(),I=re(ie);Vt(I,e,"default",{},null),g(M,ie)},$$slots:{default:!0}});var te=l(R,2);Xi(te,{});var D=l(te,2);ao(D,{}),g(W,P)};$(J,W=>{i().url.pathname==="/login"||i().url.pathname==="/setup"?W(ae):W(ue,!1)})}g(A,V)},q=A=>{var V=lo();g(A,V)};$(B,A=>{r(_)?A(C):A(q,!1)})}g(n,w),ut(),s()}export{Uo as component,No as universal};
|
|
Binary file
|
|
Binary file
|
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import{a as g,t as h,s}from"../chunks/
|
|
6
|
+
import{a as g,t as h,s}from"../chunks/6VDMVB5U.js";import{i as d}from"../chunks/CtgCYzu5.js";import{p as l,f as v,t as x,c as _,d as o,k as p,j as k}from"../chunks/BIf7lHIm.js";import{s as $,p as i}from"../chunks/BIjh3jiU.js";const b={get error(){return i.error},get status(){return i.status}};$.updated.check;const m=b;var j=h("<h1> </h1> <p> </p>",1);function z(c,n){l(n,!1),d();var r=j(),t=v(r),f=o(t,!0);p(t);var e=k(t,2),u=o(e,!0);p(e),x(()=>{var a;s(f,m.status),s(u,(a=m.error)==null?void 0:a.message)}),g(c,r),_()}export{z as component};
|
|
Binary file
|