commit 110a0b7105389c806bc70b3833a2d84c6566567d Author: Yamen Ahmad Date: Wed Apr 1 16:59:11 2026 +0400 feat: add complete EnCoach frontend application Full React 18 + TypeScript + Vite frontend with: - 90+ pages (admin, student, teacher, public) - shadcn/ui component library with 50+ components - JWT authentication with role-based access control - TanStack React Query for server state management - 30+ API service modules - AI-powered features (coaching, grading, generation) - Adaptive learning UI (diagnostics, proficiency, plans) - Institutional LMS management (courses, batches, timetable) - Communication suite (discussions, announcements, DMs) - Full CRUD with validation and confirmation dialogs Made-with: Cursor diff --git a/.env.development b/.env.development new file mode 100644 index 0000000..e8ed795 --- /dev/null +++ b/.env.development @@ -0,0 +1,3 @@ +# Relative URL: Vite proxies /api → Odoo :8069 (avoids "Failed to fetch" from CORS). +VITE_API_BASE_URL=/api +VITE_APP_NAME=EnCoach diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..f1ee21a --- /dev/null +++ b/.env.example @@ -0,0 +1,3 @@ +# Dev: use /api with Vite proxy (see vite.config.ts). Production: full URL, e.g. https://your-odoo/api +VITE_API_BASE_URL=/api +VITE_APP_NAME=EnCoach diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..db6276b --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +# Dependencies +node_modules/ + +# Build output +dist/ +build/ + +# Environment +.env +.env.local +.env.production +.env.*.local + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db + +# Logs +*.log +npm-debug.log* + +# Testing +coverage/ + +# Vite +*.local diff --git a/README.md b/README.md new file mode 100644 index 0000000..6e543eb --- /dev/null +++ b/README.md @@ -0,0 +1,118 @@ +# EnCoach — Adaptive Learning Platform (Frontend) + +The frontend application for the EnCoach Adaptive Learning Platform, serving UTAS university students and freelance learners across IELTS, Mathematics, and IT courses. + +Built with React 18, TypeScript, and Vite. Connects to an Odoo 19 backend via REST API. + +## Tech Stack + +| Layer | Technology | +|---|---| +| Framework | React 18 + TypeScript | +| Build | Vite 5 (SWC) | +| Routing | React Router v6 | +| State / Data | TanStack Query v5, React Context | +| UI Components | shadcn/ui + Radix UI | +| Styling | Tailwind CSS 3 | +| Forms | react-hook-form + Zod validation | +| Charts | Recharts | +| Icons | Lucide React | + +## Architecture + +``` +src/ +├── components/ # Shared UI, layouts, AI components +│ ├── ai/ # 14 AI-powered components (coaching, grading, insights) +│ └── ui/ # shadcn/ui primitives +├── contexts/ # AuthContext (JWT session management) +├── hooks/ +│ ├── queries/ # TanStack Query hooks (exams, assignments, LMS, adaptive) +│ └── usePermissions # Entity-scoped permission checks +├── lib/ +│ ├── api-client.ts # Centralized HTTP client with JWT + 401 interception +│ └── query-client.ts # TanStack Query configuration +├── pages/ +│ ├── admin/ # Admin & LMS management (courses, batches, taxonomy, resources) +│ ├── student/ # Student portal (dashboard, courses, adaptive learning flow) +│ └── teacher/ # Teacher portal (courses, assignments, attendance, grading) +├── services/ # 21 API service modules mapped to Odoo endpoints +└── types/ # 14 TypeScript type definition files +``` + +## Key Features + +- **7 User Roles** — Student, Teacher, Admin, Corporate, Master Corporate, Agent, Developer +- **Adaptive Learning Engine** — Diagnostic assessment, proficiency profiling, AI-generated learning plans, topic-level content delivery +- **LMS Integration** — Course management, batches, timetables, attendance, grades (OpenEduCat via API) +- **Exam Portal** — IELTS-style exams with AI grading, writing evaluation, speaking assessment +- **14 AI Components** — Study coach, writing helper, grading assistant, risk detection, insights panel, batch optimizer, report narratives +- **Entity-Scoped Permissions** — Fine-grained access control with 77+ permission types +- **Multi-Subject Support** — IELTS (English), Mathematics, IT — all using a universal subject taxonomy + +## Getting Started + +### Prerequisites + +- Node.js 18+ (or Bun) +- Odoo 19 backend running (see `docs/ODOO_BACKEND_SRS_v3.md`) + +### Setup + +```bash +# Clone the repository +git clone https://git.albousalh.com/devops/encoach_frontend_new_v1.git +cd encoach_frontend_new_v1 + +# Install dependencies +npm install + +# Configure environment +cp .env.example .env.development + +# Start development server +npm run dev +``` + +The app runs on `http://localhost:8080` by default. + +### Environment Variables + +| Variable | Description | Default | +|---|---|---| +| `VITE_API_BASE_URL` | Odoo backend API base URL | `http://localhost:8069/api` | +| `VITE_APP_NAME` | Application display name | `EnCoach` | + +### Scripts + +| Command | Description | +|---|---| +| `npm run dev` | Start dev server with HMR | +| `npm run build` | Production build | +| `npm run build:dev` | Development build | +| `npm run preview` | Preview production build | +| `npm run lint` | Run ESLint | +| `npm run test` | Run tests | +| `npm run test:watch` | Run tests in watch mode | + +## Documentation + +All project documentation is in the `docs/` folder: + +| Document | Purpose | +|---|---| +| `ENCOACH_UNIFIED_SRS.md` | Master Software Requirements Specification | +| `ODOO_BACKEND_SRS_v3.md` | Backend developer handoff (Odoo modules + API contract) | +| `ENCOACH_PRODUCT_DESCRIPTION.md` | Non-technical product overview | +| `UTAS_MASTER_PLAN.md` | Project timeline and milestones | +| `MATH_IT_ADAPTIVE_LEARNING_SRS.md` | Adaptive learning engine specification | + +## Backend API + +The frontend expects an Odoo 19 backend exposing REST endpoints under `/api/`. All service modules in `src/services/` map directly to the API contract defined in `docs/ODOO_BACKEND_SRS_v3.md`. + +Authentication uses JWT tokens stored in `localStorage`, with automatic 401 interception and redirect to login. + +## License + +Proprietary — EnCoach Platform. All rights reserved. diff --git a/bun.lock b/bun.lock new file mode 100644 index 0000000..9562fc5 --- /dev/null +++ b/bun.lock @@ -0,0 +1,1222 @@ +{ + "lockfileVersion": 1, + "configVersion": 1, + "workspaces": { + "": { + "name": "vite_react_shadcn_ts", + "dependencies": { + "@hookform/resolvers": "^3.10.0", + "@radix-ui/react-accordion": "^1.2.11", + "@radix-ui/react-alert-dialog": "^1.1.14", + "@radix-ui/react-aspect-ratio": "^1.1.7", + "@radix-ui/react-avatar": "^1.1.10", + "@radix-ui/react-checkbox": "^1.3.2", + "@radix-ui/react-collapsible": "^1.1.11", + "@radix-ui/react-context-menu": "^2.2.15", + "@radix-ui/react-dialog": "^1.1.14", + "@radix-ui/react-dropdown-menu": "^2.1.15", + "@radix-ui/react-hover-card": "^1.1.14", + "@radix-ui/react-label": "^2.1.7", + "@radix-ui/react-menubar": "^1.1.15", + "@radix-ui/react-navigation-menu": "^1.2.13", + "@radix-ui/react-popover": "^1.1.14", + "@radix-ui/react-progress": "^1.1.7", + "@radix-ui/react-radio-group": "^1.3.7", + "@radix-ui/react-scroll-area": "^1.2.9", + "@radix-ui/react-select": "^2.2.5", + "@radix-ui/react-separator": "^1.1.7", + "@radix-ui/react-slider": "^1.3.5", + "@radix-ui/react-slot": "^1.2.3", + "@radix-ui/react-switch": "^1.2.5", + "@radix-ui/react-tabs": "^1.1.12", + "@radix-ui/react-toast": "^1.2.14", + "@radix-ui/react-toggle": "^1.1.9", + "@radix-ui/react-toggle-group": "^1.1.10", + "@radix-ui/react-tooltip": "^1.2.7", + "@tanstack/react-query": "^5.83.0", + "class-variance-authority": "^0.7.1", + "clsx": "^2.1.1", + "cmdk": "^1.1.1", + "date-fns": "^3.6.0", + "embla-carousel-react": "^8.6.0", + "input-otp": "^1.4.2", + "lucide-react": "^0.462.0", + "next-themes": "^0.3.0", + "react": "^18.3.1", + "react-day-picker": "^8.10.1", + "react-dom": "^18.3.1", + "react-hook-form": "^7.61.1", + "react-resizable-panels": "^2.1.9", + "react-router-dom": "^6.30.1", + "recharts": "^2.15.4", + "sonner": "^1.7.4", + "tailwind-merge": "^2.6.0", + "tailwindcss-animate": "^1.0.7", + "vaul": "^0.9.9", + "zod": "^3.25.76", + }, + "devDependencies": { + "@eslint/js": "^9.32.0", + "@tailwindcss/typography": "^0.5.16", + "@testing-library/jest-dom": "^6.6.0", + "@testing-library/react": "^16.0.0", + "@types/node": "^22.16.5", + "@types/react": "^18.3.23", + "@types/react-dom": "^18.3.7", + "@vitejs/plugin-react-swc": "^3.11.0", + "autoprefixer": "^10.4.21", + "eslint": "^9.32.0", + "eslint-plugin-react-hooks": "^5.2.0", + "eslint-plugin-react-refresh": "^0.4.20", + "globals": "^15.15.0", + "jsdom": "^20.0.3", + "lovable-tagger": "^1.1.13", + "postcss": "^8.5.6", + "tailwindcss": "^3.4.17", + "typescript": "^5.8.3", + "typescript-eslint": "^8.38.0", + "vite": "^5.4.19", + "vitest": "^3.2.4", + }, + }, + }, + "packages": { + "@adobe/css-tools": ["@adobe/css-tools@4.4.4", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/@adobe/css-tools/-/css-tools-4.4.4.tgz", {}, "sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg=="], + + "@alloc/quick-lru": ["@alloc/quick-lru@5.2.0", "", {}, "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw=="], + + "@babel/code-frame": ["@babel/code-frame@7.29.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/@babel/code-frame/-/code-frame-7.29.0.tgz", { "dependencies": { "@babel/helper-validator-identifier": "^7.28.5", "js-tokens": "^4.0.0", "picocolors": "^1.1.1" } }, "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw=="], + + "@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.28.5", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", {}, "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q=="], + + "@babel/runtime": ["@babel/runtime@7.28.2", "", {}, "sha512-KHp2IflsnGywDjBWDkR9iEqiWSpc8GIi0lgTT3mOElT0PP1tG26P4tmFI2YvAdzgq9RGyoHZQEIEdZy6Ec5xCA=="], + + "@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.25.0", "", { "os": "aix", "cpu": "ppc64" }, "sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ=="], + + "@esbuild/android-arm": ["@esbuild/android-arm@0.25.0", "", { "os": "android", "cpu": "arm" }, "sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g=="], + + "@esbuild/android-arm64": ["@esbuild/android-arm64@0.25.0", "", { "os": "android", "cpu": "arm64" }, "sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g=="], + + "@esbuild/android-x64": ["@esbuild/android-x64@0.25.0", "", { "os": "android", "cpu": "x64" }, "sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg=="], + + "@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.25.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw=="], + + "@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.25.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg=="], + + "@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.25.0", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w=="], + + "@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.25.0", "", { "os": "freebsd", "cpu": "x64" }, "sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A=="], + + "@esbuild/linux-arm": ["@esbuild/linux-arm@0.25.0", "", { "os": "linux", "cpu": "arm" }, "sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg=="], + + "@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.25.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg=="], + + "@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.25.0", "", { "os": "linux", "cpu": "ia32" }, "sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg=="], + + "@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.25.0", "", { "os": "linux", "cpu": "none" }, "sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw=="], + + "@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.25.0", "", { "os": "linux", "cpu": "none" }, "sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ=="], + + "@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.25.0", "", { "os": "linux", "cpu": "ppc64" }, "sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw=="], + + "@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.25.0", "", { "os": "linux", "cpu": "none" }, "sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA=="], + + "@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.25.0", "", { "os": "linux", "cpu": "s390x" }, "sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA=="], + + "@esbuild/linux-x64": ["@esbuild/linux-x64@0.25.0", "", { "os": "linux", "cpu": "x64" }, "sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw=="], + + "@esbuild/netbsd-arm64": ["@esbuild/netbsd-arm64@0.25.0", "", { "os": "none", "cpu": "arm64" }, "sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw=="], + + "@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.25.0", "", { "os": "none", "cpu": "x64" }, "sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA=="], + + "@esbuild/openbsd-arm64": ["@esbuild/openbsd-arm64@0.25.0", "", { "os": "openbsd", "cpu": "arm64" }, "sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw=="], + + "@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.25.0", "", { "os": "openbsd", "cpu": "x64" }, "sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg=="], + + "@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.25.0", "", { "os": "sunos", "cpu": "x64" }, "sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg=="], + + "@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.25.0", "", { "os": "win32", "cpu": "arm64" }, "sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw=="], + + "@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.25.0", "", { "os": "win32", "cpu": "ia32" }, "sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA=="], + + "@esbuild/win32-x64": ["@esbuild/win32-x64@0.25.0", "", { "os": "win32", "cpu": "x64" }, "sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ=="], + + "@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.7.0", "", { "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw=="], + + "@eslint-community/regexpp": ["@eslint-community/regexpp@4.12.1", "", {}, "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ=="], + + "@eslint/config-array": ["@eslint/config-array@0.21.0", "", { "dependencies": { "@eslint/object-schema": "^2.1.6", "debug": "^4.3.1", "minimatch": "^3.1.2" } }, "sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ=="], + + "@eslint/config-helpers": ["@eslint/config-helpers@0.3.0", "", {}, "sha512-ViuymvFmcJi04qdZeDc2whTHryouGcDlaxPqarTD0ZE10ISpxGUVZGZDx4w01upyIynL3iu6IXH2bS1NhclQMw=="], + + "@eslint/core": ["@eslint/core@0.15.1", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA=="], + + "@eslint/eslintrc": ["@eslint/eslintrc@3.3.1", "", { "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^10.0.1", "globals": "^14.0.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" } }, "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ=="], + + "@eslint/js": ["@eslint/js@9.32.0", "", {}, "sha512-BBpRFZK3eX6uMLKz8WxFOBIFFcGFJ/g8XuwjTHCqHROSIsopI+ddn/d5Cfh36+7+e5edVS8dbSHnBNhrLEX0zg=="], + + "@eslint/object-schema": ["@eslint/object-schema@2.1.6", "", {}, "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA=="], + + "@eslint/plugin-kit": ["@eslint/plugin-kit@0.3.4", "", { "dependencies": { "@eslint/core": "^0.15.1", "levn": "^0.4.1" } }, "sha512-Ul5l+lHEcw3L5+k8POx6r74mxEYKG5kOb6Xpy2gCRW6zweT6TEhAf8vhxGgjhqrd/VO/Dirhsb+1hNpD1ue9hw=="], + + "@floating-ui/core": ["@floating-ui/core@1.7.2", "", { "dependencies": { "@floating-ui/utils": "^0.2.10" } }, "sha512-wNB5ooIKHQc+Kui96jE/n69rHFWAVoxn5CAzL1Xdd8FG03cgY3MLO+GF9U3W737fYDSgPWA6MReKhBQBop6Pcw=="], + + "@floating-ui/dom": ["@floating-ui/dom@1.7.2", "", { "dependencies": { "@floating-ui/core": "^1.7.2", "@floating-ui/utils": "^0.2.10" } }, "sha512-7cfaOQuCS27HD7DX+6ib2OrnW+b4ZBwDNnCcT0uTyidcmyWb03FnQqJybDBoCnpdxwBSfA94UAYlRCt7mV+TbA=="], + + "@floating-ui/react-dom": ["@floating-ui/react-dom@2.1.4", "", { "dependencies": { "@floating-ui/dom": "^1.7.2" }, "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0" } }, "sha512-JbbpPhp38UmXDDAu60RJmbeme37Jbgsm7NrHGgzYYFKmblzRUh6Pa641dII6LsjwF4XlScDrde2UAzDo/b9KPw=="], + + "@floating-ui/utils": ["@floating-ui/utils@0.2.10", "", {}, "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ=="], + + "@hookform/resolvers": ["@hookform/resolvers@3.10.0", "", { "peerDependencies": { "react-hook-form": "^7.0.0" } }, "sha512-79Dv+3mDF7i+2ajj7SkypSKHhl1cbln1OGavqrsF7p6mbUv11xpqpacPsGDCTRvCSjEEIez2ef1NveSVL3b0Ag=="], + + "@humanfs/core": ["@humanfs/core@0.19.1", "", {}, "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA=="], + + "@humanfs/node": ["@humanfs/node@0.16.6", "", { "dependencies": { "@humanfs/core": "^0.19.1", "@humanwhocodes/retry": "^0.3.0" } }, "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw=="], + + "@humanwhocodes/module-importer": ["@humanwhocodes/module-importer@1.0.1", "", {}, "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="], + + "@humanwhocodes/retry": ["@humanwhocodes/retry@0.4.3", "", {}, "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ=="], + + "@isaacs/cliui": ["@isaacs/cliui@8.0.2", "", { "dependencies": { "string-width": "^5.1.2", "string-width-cjs": "npm:string-width@^4.2.0", "strip-ansi": "^7.0.1", "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", "wrap-ansi": "^8.1.0", "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" } }, "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA=="], + + "@jridgewell/gen-mapping": ["@jridgewell/gen-mapping@0.3.5", "", { "dependencies": { "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg=="], + + "@jridgewell/resolve-uri": ["@jridgewell/resolve-uri@3.1.2", "", {}, "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="], + + "@jridgewell/set-array": ["@jridgewell/set-array@1.2.1", "", {}, "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A=="], + + "@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@1.5.5", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", {}, "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og=="], + + "@jridgewell/trace-mapping": ["@jridgewell/trace-mapping@0.3.25", "", { "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ=="], + + "@nodelib/fs.scandir": ["@nodelib/fs.scandir@2.1.5", "", { "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" } }, "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="], + + "@nodelib/fs.stat": ["@nodelib/fs.stat@2.0.5", "", {}, "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="], + + "@nodelib/fs.walk": ["@nodelib/fs.walk@1.2.8", "", { "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" } }, "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="], + + "@pkgjs/parseargs": ["@pkgjs/parseargs@0.11.0", "", {}, "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg=="], + + "@radix-ui/number": ["@radix-ui/number@1.1.1", "", {}, "sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g=="], + + "@radix-ui/primitive": ["@radix-ui/primitive@1.1.2", "", {}, "sha512-XnbHrrprsNqZKQhStrSwgRUQzoCI1glLzdw79xiZPoofhGICeZRSQ3dIxAKH1gb3OHfNf4d6f+vAv3kil2eggA=="], + + "@radix-ui/react-accordion": ["@radix-ui/react-accordion@1.2.11", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collapsible": "1.1.11", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-l3W5D54emV2ues7jjeG1xcyN7S3jnK3zE2zHqgn0CmMsy9lNJwmgcrmaxS+7ipw15FAivzKNzH3d5EcGoFKw0A=="], + + "@radix-ui/react-alert-dialog": ["@radix-ui/react-alert-dialog@1.1.14", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dialog": "1.1.14", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-IOZfZ3nPvN6lXpJTBCunFQPRSvK8MDgSc1FB85xnIpUKOw9en0dJj8JmCAxV7BiZdtYlUpmrQjoTFkVYtdoWzQ=="], + + "@radix-ui/react-arrow": ["@radix-ui/react-arrow@1.1.7", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w=="], + + "@radix-ui/react-aspect-ratio": ["@radix-ui/react-aspect-ratio@1.1.7", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-Yq6lvO9HQyPwev1onK1daHCHqXVLzPhSVjmsNjCa2Zcxy2f7uJD2itDtxknv6FzAKCwD1qQkeVDmX/cev13n/g=="], + + "@radix-ui/react-avatar": ["@radix-ui/react-avatar@1.1.10", "", { "dependencies": { "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-is-hydrated": "0.1.0", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-V8piFfWapM5OmNCXTzVQY+E1rDa53zY+MQ4Y7356v4fFz6vqCyUtIz2rUD44ZEdwg78/jKmMJHj07+C/Z/rcog=="], + + "@radix-ui/react-checkbox": ["@radix-ui/react-checkbox@1.3.2", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-use-size": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-yd+dI56KZqawxKZrJ31eENUwqc1QSqg4OZ15rybGjF2ZNwMO+wCyHzAVLRp9qoYJf7kYy0YpZ2b0JCzJ42HZpA=="], + + "@radix-ui/react-collapsible": ["@radix-ui/react-collapsible@1.1.11", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-2qrRsVGSCYasSz1RFOorXwl0H7g7J1frQtgpQgYrt+MOidtPAINHn9CPovQXb83r8ahapdx3Tu0fa/pdFFSdPg=="], + + "@radix-ui/react-collection": ["@radix-ui/react-collection@1.1.7", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw=="], + + "@radix-ui/react-compose-refs": ["@radix-ui/react-compose-refs@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg=="], + + "@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="], + + "@radix-ui/react-context-menu": ["@radix-ui/react-context-menu@2.2.15", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-menu": "2.1.15", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-UsQUMjcYTsBjTSXw0P3GO0werEQvUY2plgRQuKoCTtkNr45q1DiL51j4m7gxhABzZ0BadoXNsIbg7F3KwiUBbw=="], + + "@radix-ui/react-dialog": ["@radix-ui/react-dialog@1.1.14", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-focus-guards": "1.1.2", "@radix-ui/react-focus-scope": "1.1.7", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-slot": "1.2.3", "@radix-ui/react-use-controllable-state": "1.2.2", "aria-hidden": "^1.2.4", "react-remove-scroll": "^2.6.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-+CpweKjqpzTmwRwcYECQcNYbI8V9VSQt0SNFKeEBLgfucbsLssU6Ppq7wUdNXEGb573bMjFhVjKVll8rmV6zMw=="], + + "@radix-ui/react-direction": ["@radix-ui/react-direction@1.1.1", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw=="], + + "@radix-ui/react-dismissable-layer": ["@radix-ui/react-dismissable-layer@1.1.10", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-escape-keydown": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-IM1zzRV4W3HtVgftdQiiOmA0AdJlCtMLe00FXaHwgt3rAnNsIyDqshvkIW3hj/iu5hu8ERP7KIYki6NkqDxAwQ=="], + + "@radix-ui/react-dropdown-menu": ["@radix-ui/react-dropdown-menu@2.1.15", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-menu": "2.1.15", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-mIBnOjgwo9AH3FyKaSWoSu/dYj6VdhJ7frEPiGTeXCdUFHjl9h3mFh2wwhEtINOmYXWhdpf1rY2minFsmaNgVQ=="], + + "@radix-ui/react-focus-guards": ["@radix-ui/react-focus-guards@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-fyjAACV62oPV925xFCrH8DR5xWhg9KYtJT4s3u54jxp+L/hbpTY2kIeEFFbFe+a/HCE94zGQMZLIpVTPVZDhaA=="], + + "@radix-ui/react-focus-scope": ["@radix-ui/react-focus-scope@1.1.7", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw=="], + + "@radix-ui/react-hover-card": ["@radix-ui/react-hover-card@1.1.14", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-popper": "1.2.7", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-CPYZ24Mhirm+g6D8jArmLzjYu4Eyg3TTUHswR26QgzXBHBe64BO/RHOJKzmF/Dxb4y4f9PKyJdwm/O/AhNkb+Q=="], + + "@radix-ui/react-id": ["@radix-ui/react-id@1.1.1", "", { "dependencies": { "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg=="], + + "@radix-ui/react-label": ["@radix-ui/react-label@2.1.7", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ=="], + + "@radix-ui/react-menu": ["@radix-ui/react-menu@2.1.15", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-focus-guards": "1.1.2", "@radix-ui/react-focus-scope": "1.1.7", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-popper": "1.2.7", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-roving-focus": "1.1.10", "@radix-ui/react-slot": "1.2.3", "@radix-ui/react-use-callback-ref": "1.1.1", "aria-hidden": "^1.2.4", "react-remove-scroll": "^2.6.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-tVlmA3Vb9n8SZSd+YSbuFR66l87Wiy4du+YE+0hzKQEANA+7cWKH1WgqcEX4pXqxUFQKrWQGHdvEfw00TjFiew=="], + + "@radix-ui/react-menubar": ["@radix-ui/react-menubar@1.1.15", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-menu": "2.1.15", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-roving-focus": "1.1.10", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-Z71C7LGD+YDYo3TV81paUs8f3Zbmkvg6VLRQpKYfzioOE6n7fOhA3ApK/V/2Odolxjoc4ENk8AYCjohCNayd5A=="], + + "@radix-ui/react-navigation-menu": ["@radix-ui/react-navigation-menu@1.2.13", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-layout-effect": "1.1.1", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-visually-hidden": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-WG8wWfDiJlSF5hELjwfjSGOXcBR/ZMhBFCGYe8vERpC39CQYZeq1PQ2kaYHdye3V95d06H89KGMsVCIE4LWo3g=="], + + "@radix-ui/react-popover": ["@radix-ui/react-popover@1.1.14", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-focus-guards": "1.1.2", "@radix-ui/react-focus-scope": "1.1.7", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-popper": "1.2.7", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-slot": "1.2.3", "@radix-ui/react-use-controllable-state": "1.2.2", "aria-hidden": "^1.2.4", "react-remove-scroll": "^2.6.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-ODz16+1iIbGUfFEfKx2HTPKizg2MN39uIOV8MXeHnmdd3i/N9Wt7vU46wbHsqA0xoaQyXVcs0KIlBdOA2Y95bw=="], + + "@radix-ui/react-popper": ["@radix-ui/react-popper@1.2.7", "", { "dependencies": { "@floating-ui/react-dom": "^2.0.0", "@radix-ui/react-arrow": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-layout-effect": "1.1.1", "@radix-ui/react-use-rect": "1.1.1", "@radix-ui/react-use-size": "1.1.1", "@radix-ui/rect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-IUFAccz1JyKcf/RjB552PlWwxjeCJB8/4KxT7EhBHOJM+mN7LdW+B3kacJXILm32xawcMMjb2i0cIZpo+f9kiQ=="], + + "@radix-ui/react-portal": ["@radix-ui/react-portal@1.1.9", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ=="], + + "@radix-ui/react-presence": ["@radix-ui/react-presence@1.1.4", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-ueDqRbdc4/bkaQT3GIpLQssRlFgWaL/U2z/S31qRwwLWoxHLgry3SIfCwhxeQNbirEUXFa+lq3RL3oBYXtcmIA=="], + + "@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="], + + "@radix-ui/react-progress": ["@radix-ui/react-progress@1.1.7", "", { "dependencies": { "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-vPdg/tF6YC/ynuBIJlk1mm7Le0VgW6ub6J2UWnTQ7/D23KXcPI1qy+0vBkgKgd38RCMJavBXpB83HPNFMTb0Fg=="], + + "@radix-ui/react-radio-group": ["@radix-ui/react-radio-group@1.3.7", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-roving-focus": "1.1.10", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-use-size": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-9w5XhD0KPOrm92OTTE0SysH3sYzHsSTHNvZgUBo/VZ80VdYyB5RneDbc0dKpURS24IxkoFRu/hI0i4XyfFwY6g=="], + + "@radix-ui/react-roving-focus": ["@radix-ui/react-roving-focus@1.1.10", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-dT9aOXUen9JSsxnMPv/0VqySQf5eDQ6LCk5Sw28kamz8wSOW2bJdlX2Bg5VUIIcV+6XlHpWTIuTPCf/UNIyq8Q=="], + + "@radix-ui/react-scroll-area": ["@radix-ui/react-scroll-area@1.2.9", "", { "dependencies": { "@radix-ui/number": "1.1.1", "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-YSjEfBXnhUELsO2VzjdtYYD4CfQjvao+lhhrX5XsHD7/cyUNzljF1FHEbgTPN7LH2MClfwRMIsYlqTYpKTTe2A=="], + + "@radix-ui/react-select": ["@radix-ui/react-select@2.2.5", "", { "dependencies": { "@radix-ui/number": "1.1.1", "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-focus-guards": "1.1.2", "@radix-ui/react-focus-scope": "1.1.7", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-popper": "1.2.7", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-slot": "1.2.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-layout-effect": "1.1.1", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-visually-hidden": "1.2.3", "aria-hidden": "^1.2.4", "react-remove-scroll": "^2.6.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-HnMTdXEVuuyzx63ME0ut4+sEMYW6oouHWNGUZc7ddvUWIcfCva/AMoqEW/3wnEllriMWBa0RHspCYnfCWJQYmA=="], + + "@radix-ui/react-separator": ["@radix-ui/react-separator@1.1.7", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA=="], + + "@radix-ui/react-slider": ["@radix-ui/react-slider@1.3.5", "", { "dependencies": { "@radix-ui/number": "1.1.1", "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-layout-effect": "1.1.1", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-use-size": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-rkfe2pU2NBAYfGaxa3Mqosi7VZEWX5CxKaanRv0vZd4Zhl9fvQrg0VM93dv3xGLGfrHuoTRF3JXH8nb9g+B3fw=="], + + "@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="], + + "@radix-ui/react-switch": ["@radix-ui/react-switch@1.2.5", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-use-size": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-5ijLkak6ZMylXsaImpZ8u4Rlf5grRmoc0p0QeX9VJtlrM4f5m3nCTX8tWga/zOA8PZYIR/t0p2Mnvd7InrJ6yQ=="], + + "@radix-ui/react-tabs": ["@radix-ui/react-tabs@1.1.12", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-roving-focus": "1.1.10", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-GTVAlRVrQrSw3cEARM0nAx73ixrWDPNZAruETn3oHCNP6SbZ/hNxdxp+u7VkIEv3/sFoLq1PfcHrl7Pnp0CDpw=="], + + "@radix-ui/react-toast": ["@radix-ui/react-toast@1.2.14", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-layout-effect": "1.1.1", "@radix-ui/react-visually-hidden": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-nAP5FBxBJGQ/YfUB+r+O6USFVkWq3gAInkxyEnmvEV5jtSbfDhfa4hwX8CraCnbjMLsE7XSf/K75l9xXY7joWg=="], + + "@radix-ui/react-toggle": ["@radix-ui/react-toggle@1.1.9", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-ZoFkBBz9zv9GWer7wIjvdRxmh2wyc2oKWw6C6CseWd6/yq1DK/l5lJ+wnsmFwJZbBYqr02mrf8A2q/CVCuM3ZA=="], + + "@radix-ui/react-toggle-group": ["@radix-ui/react-toggle-group@1.1.10", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-roving-focus": "1.1.10", "@radix-ui/react-toggle": "1.1.9", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-kiU694Km3WFLTC75DdqgM/3Jauf3rD9wxeS9XtyWFKsBUeZA337lC+6uUazT7I1DhanZ5gyD5Stf8uf2dbQxOQ=="], + + "@radix-ui/react-tooltip": ["@radix-ui/react-tooltip@1.2.7", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-popper": "1.2.7", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-slot": "1.2.3", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-visually-hidden": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-Ap+fNYwKTYJ9pzqW+Xe2HtMRbQ/EeWkj2qykZ6SuEV4iS/o1bZI5ssJbk4D2r8XuDuOBVz/tIx2JObtuqU+5Zw=="], + + "@radix-ui/react-use-callback-ref": ["@radix-ui/react-use-callback-ref@1.1.1", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg=="], + + "@radix-ui/react-use-controllable-state": ["@radix-ui/react-use-controllable-state@1.2.2", "", { "dependencies": { "@radix-ui/react-use-effect-event": "0.0.2", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg=="], + + "@radix-ui/react-use-effect-event": ["@radix-ui/react-use-effect-event@0.0.2", "", { "dependencies": { "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA=="], + + "@radix-ui/react-use-escape-keydown": ["@radix-ui/react-use-escape-keydown@1.1.1", "", { "dependencies": { "@radix-ui/react-use-callback-ref": "1.1.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g=="], + + "@radix-ui/react-use-is-hydrated": ["@radix-ui/react-use-is-hydrated@0.1.0", "", { "dependencies": { "use-sync-external-store": "^1.5.0" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-U+UORVEq+cTnRIaostJv9AGdV3G6Y+zbVd+12e18jQ5A3c0xL03IhnHuiU4UV69wolOQp5GfR58NW/EgdQhwOA=="], + + "@radix-ui/react-use-layout-effect": ["@radix-ui/react-use-layout-effect@1.1.1", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ=="], + + "@radix-ui/react-use-previous": ["@radix-ui/react-use-previous@1.1.1", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ=="], + + "@radix-ui/react-use-rect": ["@radix-ui/react-use-rect@1.1.1", "", { "dependencies": { "@radix-ui/rect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w=="], + + "@radix-ui/react-use-size": ["@radix-ui/react-use-size@1.1.1", "", { "dependencies": { "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ=="], + + "@radix-ui/react-visually-hidden": ["@radix-ui/react-visually-hidden@1.2.3", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug=="], + + "@radix-ui/rect": ["@radix-ui/rect@1.1.1", "", {}, "sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw=="], + + "@remix-run/router": ["@remix-run/router@1.23.0", "", {}, "sha512-O3rHJzAQKamUz1fvE0Qaw0xSFqsA/yafi2iqeE0pvdFtCO1viYx8QL6f3Ln/aCCTLxs68SLf0KPM9eSeM8yBnA=="], + + "@rolldown/pluginutils": ["@rolldown/pluginutils@1.0.0-beta.27", "", {}, "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA=="], + + "@rollup/rollup-android-arm-eabi": ["@rollup/rollup-android-arm-eabi@4.24.0", "", { "os": "android", "cpu": "arm" }, "sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA=="], + + "@rollup/rollup-android-arm64": ["@rollup/rollup-android-arm64@4.24.0", "", { "os": "android", "cpu": "arm64" }, "sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA=="], + + "@rollup/rollup-darwin-arm64": ["@rollup/rollup-darwin-arm64@4.24.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA=="], + + "@rollup/rollup-darwin-x64": ["@rollup/rollup-darwin-x64@4.24.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ=="], + + "@rollup/rollup-linux-arm-gnueabihf": ["@rollup/rollup-linux-arm-gnueabihf@4.24.0", "", { "os": "linux", "cpu": "arm" }, "sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA=="], + + "@rollup/rollup-linux-arm-musleabihf": ["@rollup/rollup-linux-arm-musleabihf@4.24.0", "", { "os": "linux", "cpu": "arm" }, "sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw=="], + + "@rollup/rollup-linux-arm64-gnu": ["@rollup/rollup-linux-arm64-gnu@4.24.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA=="], + + "@rollup/rollup-linux-arm64-musl": ["@rollup/rollup-linux-arm64-musl@4.24.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw=="], + + "@rollup/rollup-linux-powerpc64le-gnu": ["@rollup/rollup-linux-powerpc64le-gnu@4.24.0", "", { "os": "linux", "cpu": "ppc64" }, "sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw=="], + + "@rollup/rollup-linux-riscv64-gnu": ["@rollup/rollup-linux-riscv64-gnu@4.24.0", "", { "os": "linux", "cpu": "none" }, "sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg=="], + + "@rollup/rollup-linux-s390x-gnu": ["@rollup/rollup-linux-s390x-gnu@4.24.0", "", { "os": "linux", "cpu": "s390x" }, "sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g=="], + + "@rollup/rollup-linux-x64-gnu": ["@rollup/rollup-linux-x64-gnu@4.24.0", "", { "os": "linux", "cpu": "x64" }, "sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A=="], + + "@rollup/rollup-linux-x64-musl": ["@rollup/rollup-linux-x64-musl@4.24.0", "", { "os": "linux", "cpu": "x64" }, "sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ=="], + + "@rollup/rollup-win32-arm64-msvc": ["@rollup/rollup-win32-arm64-msvc@4.24.0", "", { "os": "win32", "cpu": "arm64" }, "sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ=="], + + "@rollup/rollup-win32-ia32-msvc": ["@rollup/rollup-win32-ia32-msvc@4.24.0", "", { "os": "win32", "cpu": "ia32" }, "sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ=="], + + "@rollup/rollup-win32-x64-msvc": ["@rollup/rollup-win32-x64-msvc@4.24.0", "", { "os": "win32", "cpu": "x64" }, "sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw=="], + + "@swc/core": ["@swc/core@1.13.2", "", { "dependencies": { "@swc/counter": "^0.1.3", "@swc/types": "^0.1.23" }, "optionalDependencies": { "@swc/core-darwin-arm64": "1.13.2", "@swc/core-darwin-x64": "1.13.2", "@swc/core-linux-arm-gnueabihf": "1.13.2", "@swc/core-linux-arm64-gnu": "1.13.2", "@swc/core-linux-arm64-musl": "1.13.2", "@swc/core-linux-x64-gnu": "1.13.2", "@swc/core-linux-x64-musl": "1.13.2", "@swc/core-win32-arm64-msvc": "1.13.2", "@swc/core-win32-ia32-msvc": "1.13.2", "@swc/core-win32-x64-msvc": "1.13.2" }, "peerDependencies": { "@swc/helpers": ">=0.5.17" }, "optionalPeers": ["@swc/helpers"] }, "sha512-YWqn+0IKXDhqVLKoac4v2tV6hJqB/wOh8/Br8zjqeqBkKa77Qb0Kw2i7LOFzjFNZbZaPH6AlMGlBwNrxaauaAg=="], + + "@swc/core-darwin-arm64": ["@swc/core-darwin-arm64@1.13.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-44p7ivuLSGFJ15Vly4ivLJjg3ARo4879LtEBAabcHhSZygpmkP8eyjyWxrH3OxkY1eRZSIJe8yRZPFw4kPXFPw=="], + + "@swc/core-darwin-x64": ["@swc/core-darwin-x64@1.13.2", "", { "os": "darwin", "cpu": "x64" }, "sha512-Lb9EZi7X2XDAVmuUlBm2UvVAgSCbD3qKqDCxSI4jEOddzVOpNCnyZ/xEampdngUIyDDhhJLYU9duC+Mcsv5Y+A=="], + + "@swc/core-linux-arm-gnueabihf": ["@swc/core-linux-arm-gnueabihf@1.13.2", "", { "os": "linux", "cpu": "arm" }, "sha512-9TDe/92ee1x57x+0OqL1huG4BeljVx0nWW4QOOxp8CCK67Rpc/HHl2wciJ0Kl9Dxf2NvpNtkPvqj9+BUmM9WVA=="], + + "@swc/core-linux-arm64-gnu": ["@swc/core-linux-arm64-gnu@1.13.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-KJUSl56DBk7AWMAIEcU83zl5mg3vlQYhLELhjwRFkGFMvghQvdqQ3zFOYa4TexKA7noBZa3C8fb24rI5sw9Exg=="], + + "@swc/core-linux-arm64-musl": ["@swc/core-linux-arm64-musl@1.13.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-teU27iG1oyWpNh9CzcGQ48ClDRt/RCem7mYO7ehd2FY102UeTws2+OzLESS1TS1tEZipq/5xwx3FzbVgiolCiQ=="], + + "@swc/core-linux-x64-gnu": ["@swc/core-linux-x64-gnu@1.13.2", "", { "os": "linux", "cpu": "x64" }, "sha512-dRPsyPyqpLD0HMRCRpYALIh4kdOir8pPg4AhNQZLehKowigRd30RcLXGNVZcc31Ua8CiPI4QSgjOIxK+EQe4LQ=="], + + "@swc/core-linux-x64-musl": ["@swc/core-linux-x64-musl@1.13.2", "", { "os": "linux", "cpu": "x64" }, "sha512-CCxETW+KkYEQDqz1SYC15YIWYheqFC+PJVOW76Maa/8yu8Biw+HTAcblKf2isrlUtK8RvrQN94v3UXkC2NzCEw=="], + + "@swc/core-win32-arm64-msvc": ["@swc/core-win32-arm64-msvc@1.13.2", "", { "os": "win32", "cpu": "arm64" }, "sha512-Wv/QTA6PjyRLlmKcN6AmSI4jwSMRl0VTLGs57PHTqYRwwfwd7y4s2fIPJVBNbAlXd795dOEP6d/bGSQSyhOX3A=="], + + "@swc/core-win32-ia32-msvc": ["@swc/core-win32-ia32-msvc@1.13.2", "", { "os": "win32", "cpu": "ia32" }, "sha512-PuCdtNynEkUNbUXX/wsyUC+t4mamIU5y00lT5vJcAvco3/r16Iaxl5UCzhXYaWZSNVZMzPp9qN8NlSL8M5pPxw=="], + + "@swc/core-win32-x64-msvc": ["@swc/core-win32-x64-msvc@1.13.2", "", { "os": "win32", "cpu": "x64" }, "sha512-qlmMkFZJus8cYuBURx1a3YAG2G7IW44i+FEYV5/32ylKkzGNAr9tDJSA53XNnNXkAB5EXSPsOz7bn5C3JlEtdQ=="], + + "@swc/counter": ["@swc/counter@0.1.3", "", {}, "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ=="], + + "@swc/types": ["@swc/types@0.1.23", "", { "dependencies": { "@swc/counter": "^0.1.3" } }, "sha512-u1iIVZV9Q0jxY+yM2vw/hZGDNudsN85bBpTqzAQ9rzkxW9D+e3aEM4Han+ow518gSewkXgjmEK0BD79ZcNVgPw=="], + + "@tailwindcss/typography": ["@tailwindcss/typography@0.5.16", "", { "dependencies": { "lodash.castarray": "^4.4.0", "lodash.isplainobject": "^4.0.6", "lodash.merge": "^4.6.2", "postcss-selector-parser": "6.0.10" }, "peerDependencies": { "tailwindcss": ">=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1" } }, "sha512-0wDLwCVF5V3x3b1SGXPCDcdsbDHMBe+lkFzBRaHeLvNi+nrrnZ1lA18u+OTWO8iSWU2GxUOCvlXtDuqftc1oiA=="], + + "@tanstack/query-core": ["@tanstack/query-core@5.83.0", "", {}, "sha512-0M8dA+amXUkyz5cVUm/B+zSk3xkQAcuXuz5/Q/LveT4ots2rBpPTZOzd7yJa2Utsf8D2Upl5KyjhHRY+9lB/XA=="], + + "@tanstack/react-query": ["@tanstack/react-query@5.83.0", "", { "dependencies": { "@tanstack/query-core": "5.83.0" }, "peerDependencies": { "react": "^18 || ^19" } }, "sha512-/XGYhZ3foc5H0VM2jLSD/NyBRIOK4q9kfeml4+0x2DlL6xVuAcVEW+hTlTapAmejObg0i3eNqhkr2dT+eciwoQ=="], + + "@testing-library/dom": ["@testing-library/dom@10.4.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/@testing-library/dom/-/dom-10.4.1.tgz", { "dependencies": { "@babel/code-frame": "^7.10.4", "@babel/runtime": "^7.12.5", "@types/aria-query": "^5.0.1", "aria-query": "5.3.0", "dom-accessibility-api": "^0.5.9", "lz-string": "^1.5.0", "picocolors": "1.1.1", "pretty-format": "^27.0.2" } }, "sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg=="], + + "@testing-library/jest-dom": ["@testing-library/jest-dom@6.9.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/@testing-library/jest-dom/-/jest-dom-6.9.1.tgz", { "dependencies": { "@adobe/css-tools": "^4.4.0", "aria-query": "^5.0.0", "css.escape": "^1.5.1", "dom-accessibility-api": "^0.6.3", "picocolors": "^1.1.1", "redent": "^3.0.0" } }, "sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA=="], + + "@testing-library/react": ["@testing-library/react@16.3.2", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/@testing-library/react/-/react-16.3.2.tgz", { "dependencies": { "@babel/runtime": "^7.12.5" }, "peerDependencies": { "@testing-library/dom": "^10.0.0", "@types/react": "^18.0.0 || ^19.0.0", "@types/react-dom": "^18.0.0 || ^19.0.0", "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-XU5/SytQM+ykqMnAnvB2umaJNIOsLF3PVv//1Ew4CTcpz0/BRyy/af40qqrt7SjKpDdT1saBMc42CUok5gaw+g=="], + + "@tootallnate/once": ["@tootallnate/once@2.0.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/@tootallnate/once/-/once-2.0.0.tgz", {}, "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A=="], + + "@types/aria-query": ["@types/aria-query@5.0.4", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/@types/aria-query/-/aria-query-5.0.4.tgz", {}, "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw=="], + + "@types/chai": ["@types/chai@5.2.3", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/@types/chai/-/chai-5.2.3.tgz", { "dependencies": { "@types/deep-eql": "*", "assertion-error": "^2.0.1" } }, "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA=="], + + "@types/d3-array": ["@types/d3-array@3.2.1", "", {}, "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg=="], + + "@types/d3-color": ["@types/d3-color@3.1.3", "", {}, "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A=="], + + "@types/d3-ease": ["@types/d3-ease@3.0.2", "", {}, "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA=="], + + "@types/d3-interpolate": ["@types/d3-interpolate@3.0.4", "", { "dependencies": { "@types/d3-color": "*" } }, "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA=="], + + "@types/d3-path": ["@types/d3-path@3.1.0", "", {}, "sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ=="], + + "@types/d3-scale": ["@types/d3-scale@4.0.8", "", { "dependencies": { "@types/d3-time": "*" } }, "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ=="], + + "@types/d3-shape": ["@types/d3-shape@3.1.6", "", { "dependencies": { "@types/d3-path": "*" } }, "sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA=="], + + "@types/d3-time": ["@types/d3-time@3.0.3", "", {}, "sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw=="], + + "@types/d3-timer": ["@types/d3-timer@3.0.2", "", {}, "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw=="], + + "@types/deep-eql": ["@types/deep-eql@4.0.2", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/@types/deep-eql/-/deep-eql-4.0.2.tgz", {}, "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw=="], + + "@types/estree": ["@types/estree@1.0.6", "", {}, "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw=="], + + "@types/json-schema": ["@types/json-schema@7.0.15", "", {}, "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA=="], + + "@types/node": ["@types/node@22.16.5", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-bJFoMATwIGaxxx8VJPeM8TonI8t579oRvgAuT8zFugJsJZgzqv0Fu8Mhp68iecjzG7cnN3mO2dJQ5uUM2EFrgQ=="], + + "@types/prop-types": ["@types/prop-types@15.7.13", "", {}, "sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA=="], + + "@types/react": ["@types/react@18.3.23", "", { "dependencies": { "@types/prop-types": "*", "csstype": "^3.0.2" } }, "sha512-/LDXMQh55EzZQ0uVAZmKKhfENivEvWz6E+EYzh+/MCjMhNsotd+ZHhBGIjFDTi6+fz0OhQQQLbTgdQIxxCsC0w=="], + + "@types/react-dom": ["@types/react-dom@18.3.7", "", { "peerDependencies": { "@types/react": "^18.0.0" } }, "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ=="], + + "@typescript-eslint/eslint-plugin": ["@typescript-eslint/eslint-plugin@8.38.0", "", { "dependencies": { "@eslint-community/regexpp": "^4.10.0", "@typescript-eslint/scope-manager": "8.38.0", "@typescript-eslint/type-utils": "8.38.0", "@typescript-eslint/utils": "8.38.0", "@typescript-eslint/visitor-keys": "8.38.0", "graphemer": "^1.4.0", "ignore": "^7.0.0", "natural-compare": "^1.4.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "@typescript-eslint/parser": "^8.38.0", "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-CPoznzpuAnIOl4nhj4tRr4gIPj5AfKgkiJmGQDaq+fQnRJTYlcBjbX3wbciGmpoPf8DREufuPRe1tNMZnGdanA=="], + + "@typescript-eslint/parser": ["@typescript-eslint/parser@8.38.0", "", { "dependencies": { "@typescript-eslint/scope-manager": "8.38.0", "@typescript-eslint/types": "8.38.0", "@typescript-eslint/typescript-estree": "8.38.0", "@typescript-eslint/visitor-keys": "8.38.0", "debug": "^4.3.4" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-Zhy8HCvBUEfBECzIl1PKqF4p11+d0aUJS1GeUiuqK9WmOug8YCmC4h4bjyBvMyAMI9sbRczmrYL5lKg/YMbrcQ=="], + + "@typescript-eslint/project-service": ["@typescript-eslint/project-service@8.38.0", "", { "dependencies": { "@typescript-eslint/tsconfig-utils": "^8.38.0", "@typescript-eslint/types": "^8.38.0", "debug": "^4.3.4" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-dbK7Jvqcb8c9QfH01YB6pORpqX1mn5gDZc9n63Ak/+jD67oWXn3Gs0M6vddAN+eDXBCS5EmNWzbSxsn9SzFWWg=="], + + "@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.38.0", "", { "dependencies": { "@typescript-eslint/types": "8.38.0", "@typescript-eslint/visitor-keys": "8.38.0" } }, "sha512-WJw3AVlFFcdT9Ri1xs/lg8LwDqgekWXWhH3iAF+1ZM+QPd7oxQ6jvtW/JPwzAScxitILUIFs0/AnQ/UWHzbATQ=="], + + "@typescript-eslint/tsconfig-utils": ["@typescript-eslint/tsconfig-utils@8.38.0", "", { "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-Lum9RtSE3EroKk/bYns+sPOodqb2Fv50XOl/gMviMKNvanETUuUcC9ObRbzrJ4VSd2JalPqgSAavwrPiPvnAiQ=="], + + "@typescript-eslint/type-utils": ["@typescript-eslint/type-utils@8.38.0", "", { "dependencies": { "@typescript-eslint/types": "8.38.0", "@typescript-eslint/typescript-estree": "8.38.0", "@typescript-eslint/utils": "8.38.0", "debug": "^4.3.4", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-c7jAvGEZVf0ao2z+nnz8BUaHZD09Agbh+DY7qvBQqLiz8uJzRgVPj5YvOh8I8uEiH8oIUGIfHzMwUcGVco/SJg=="], + + "@typescript-eslint/types": ["@typescript-eslint/types@8.38.0", "", {}, "sha512-wzkUfX3plUqij4YwWaJyqhiPE5UCRVlFpKn1oCRn2O1bJ592XxWJj8ROQ3JD5MYXLORW84063z3tZTb/cs4Tyw=="], + + "@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.38.0", "", { "dependencies": { "@typescript-eslint/project-service": "8.38.0", "@typescript-eslint/tsconfig-utils": "8.38.0", "@typescript-eslint/types": "8.38.0", "@typescript-eslint/visitor-keys": "8.38.0", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-fooELKcAKzxux6fA6pxOflpNS0jc+nOQEEOipXFNjSlBS6fqrJOVY/whSn70SScHrcJ2LDsxWrneFoWYSVfqhQ=="], + + "@typescript-eslint/utils": ["@typescript-eslint/utils@8.38.0", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.7.0", "@typescript-eslint/scope-manager": "8.38.0", "@typescript-eslint/types": "8.38.0", "@typescript-eslint/typescript-estree": "8.38.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-hHcMA86Hgt+ijJlrD8fX0j1j8w4C92zue/8LOPAFioIno+W0+L7KqE8QZKCcPGc/92Vs9x36w/4MPTJhqXdyvg=="], + + "@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.38.0", "", { "dependencies": { "@typescript-eslint/types": "8.38.0", "eslint-visitor-keys": "^4.2.1" } }, "sha512-pWrTcoFNWuwHlA9CvlfSsGWs14JxfN1TH25zM5L7o0pRLhsoZkDnTsXfQRJBEWJoV5DL0jf+Z+sxiud+K0mq1g=="], + + "@vitejs/plugin-react-swc": ["@vitejs/plugin-react-swc@3.11.0", "", { "dependencies": { "@rolldown/pluginutils": "1.0.0-beta.27", "@swc/core": "^1.12.11" }, "peerDependencies": { "vite": "^4 || ^5 || ^6 || ^7" } }, "sha512-YTJCGFdNMHCMfjODYtxRNVAYmTWQ1Lb8PulP/2/f/oEEtglw8oKxKIZmmRkyXrVrHfsKOaVkAc3NT9/dMutO5w=="], + + "@vitest/expect": ["@vitest/expect@3.2.4", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/@vitest/expect/-/expect-3.2.4.tgz", { "dependencies": { "@types/chai": "^5.2.2", "@vitest/spy": "3.2.4", "@vitest/utils": "3.2.4", "chai": "^5.2.0", "tinyrainbow": "^2.0.0" } }, "sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig=="], + + "@vitest/mocker": ["@vitest/mocker@3.2.4", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/@vitest/mocker/-/mocker-3.2.4.tgz", { "dependencies": { "@vitest/spy": "3.2.4", "estree-walker": "^3.0.3", "magic-string": "^0.30.17" }, "peerDependencies": { "msw": "^2.4.9", "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0" }, "optionalPeers": ["msw", "vite"] }, "sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ=="], + + "@vitest/pretty-format": ["@vitest/pretty-format@3.2.4", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/@vitest/pretty-format/-/pretty-format-3.2.4.tgz", { "dependencies": { "tinyrainbow": "^2.0.0" } }, "sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA=="], + + "@vitest/runner": ["@vitest/runner@3.2.4", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/@vitest/runner/-/runner-3.2.4.tgz", { "dependencies": { "@vitest/utils": "3.2.4", "pathe": "^2.0.3", "strip-literal": "^3.0.0" } }, "sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ=="], + + "@vitest/snapshot": ["@vitest/snapshot@3.2.4", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/@vitest/snapshot/-/snapshot-3.2.4.tgz", { "dependencies": { "@vitest/pretty-format": "3.2.4", "magic-string": "^0.30.17", "pathe": "^2.0.3" } }, "sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ=="], + + "@vitest/spy": ["@vitest/spy@3.2.4", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/@vitest/spy/-/spy-3.2.4.tgz", { "dependencies": { "tinyspy": "^4.0.3" } }, "sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw=="], + + "@vitest/utils": ["@vitest/utils@3.2.4", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/@vitest/utils/-/utils-3.2.4.tgz", { "dependencies": { "@vitest/pretty-format": "3.2.4", "loupe": "^3.1.4", "tinyrainbow": "^2.0.0" } }, "sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA=="], + + "abab": ["abab@2.0.6", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/abab/-/abab-2.0.6.tgz", {}, "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA=="], + + "acorn": ["acorn@8.15.0", "", { "bin": "bin/acorn" }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="], + + "acorn-globals": ["acorn-globals@7.0.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/acorn-globals/-/acorn-globals-7.0.1.tgz", { "dependencies": { "acorn": "^8.1.0", "acorn-walk": "^8.0.2" } }, "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q=="], + + "acorn-jsx": ["acorn-jsx@5.3.2", "", { "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="], + + "acorn-walk": ["acorn-walk@8.3.5", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/acorn-walk/-/acorn-walk-8.3.5.tgz", { "dependencies": { "acorn": "^8.11.0" } }, "sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw=="], + + "agent-base": ["agent-base@6.0.2", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/agent-base/-/agent-base-6.0.2.tgz", { "dependencies": { "debug": "4" } }, "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ=="], + + "ajv": ["ajv@6.12.6", "", { "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" } }, "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="], + + "ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="], + + "ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="], + + "any-promise": ["any-promise@1.3.0", "", {}, "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A=="], + + "anymatch": ["anymatch@3.1.3", "", { "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" } }, "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw=="], + + "arg": ["arg@5.0.2", "", {}, "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg=="], + + "argparse": ["argparse@2.0.1", "", {}, "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="], + + "aria-hidden": ["aria-hidden@1.2.4", "", { "dependencies": { "tslib": "^2.0.0" } }, "sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A=="], + + "aria-query": ["aria-query@5.3.2", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/aria-query/-/aria-query-5.3.2.tgz", {}, "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw=="], + + "assertion-error": ["assertion-error@2.0.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/assertion-error/-/assertion-error-2.0.1.tgz", {}, "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA=="], + + "asynckit": ["asynckit@0.4.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/asynckit/-/asynckit-0.4.0.tgz", {}, "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="], + + "autoprefixer": ["autoprefixer@10.4.21", "", { "dependencies": { "browserslist": "^4.24.4", "caniuse-lite": "^1.0.30001702", "fraction.js": "^4.3.7", "normalize-range": "^0.1.2", "picocolors": "^1.1.1", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.1.0" }, "bin": "bin/autoprefixer" }, "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ=="], + + "balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="], + + "binary-extensions": ["binary-extensions@2.3.0", "", {}, "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw=="], + + "brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="], + + "braces": ["braces@3.0.3", "", { "dependencies": { "fill-range": "^7.1.1" } }, "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA=="], + + "browserslist": ["browserslist@4.25.1", "", { "dependencies": { "caniuse-lite": "^1.0.30001726", "electron-to-chromium": "^1.5.173", "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.3" }, "bin": "cli.js" }, "sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw=="], + + "cac": ["cac@6.7.14", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/cac/-/cac-6.7.14.tgz", {}, "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ=="], + + "call-bind-apply-helpers": ["call-bind-apply-helpers@1.0.2", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", { "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2" } }, "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ=="], + + "callsites": ["callsites@3.1.0", "", {}, "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="], + + "camelcase-css": ["camelcase-css@2.0.1", "", {}, "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA=="], + + "caniuse-lite": ["caniuse-lite@1.0.30001727", "", {}, "sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q=="], + + "chai": ["chai@5.3.3", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/chai/-/chai-5.3.3.tgz", { "dependencies": { "assertion-error": "^2.0.1", "check-error": "^2.1.1", "deep-eql": "^5.0.1", "loupe": "^3.1.0", "pathval": "^2.0.0" } }, "sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw=="], + + "chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="], + + "check-error": ["check-error@2.1.3", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/check-error/-/check-error-2.1.3.tgz", {}, "sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA=="], + + "chokidar": ["chokidar@3.6.0", "", { "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw=="], + + "class-variance-authority": ["class-variance-authority@0.7.1", "", { "dependencies": { "clsx": "^2.1.1" } }, "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg=="], + + "clsx": ["clsx@2.1.1", "", {}, "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA=="], + + "cmdk": ["cmdk@1.1.1", "", { "dependencies": { "@radix-ui/react-compose-refs": "^1.1.1", "@radix-ui/react-dialog": "^1.1.6", "@radix-ui/react-id": "^1.1.0", "@radix-ui/react-primitive": "^2.0.2" }, "peerDependencies": { "react": "^18 || ^19 || ^19.0.0-rc", "react-dom": "^18 || ^19 || ^19.0.0-rc" } }, "sha512-Vsv7kFaXm+ptHDMZ7izaRsP70GgrW9NBNGswt9OZaVBLlE0SNpDq8eu/VGXyF9r7M0azK3Wy7OlYXsuyYLFzHg=="], + + "color-convert": ["color-convert@2.0.1", "", { "dependencies": { "color-name": "~1.1.4" } }, "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="], + + "color-name": ["color-name@1.1.4", "", {}, "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="], + + "combined-stream": ["combined-stream@1.0.8", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/combined-stream/-/combined-stream-1.0.8.tgz", { "dependencies": { "delayed-stream": "~1.0.0" } }, "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="], + + "commander": ["commander@4.1.1", "", {}, "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA=="], + + "concat-map": ["concat-map@0.0.1", "", {}, "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="], + + "cross-spawn": ["cross-spawn@7.0.6", "", { "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" } }, "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA=="], + + "css.escape": ["css.escape@1.5.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/css.escape/-/css.escape-1.5.1.tgz", {}, "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg=="], + + "cssesc": ["cssesc@3.0.0", "", { "bin": "bin/cssesc" }, "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="], + + "cssom": ["cssom@0.5.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/cssom/-/cssom-0.5.0.tgz", {}, "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw=="], + + "cssstyle": ["cssstyle@2.3.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/cssstyle/-/cssstyle-2.3.0.tgz", { "dependencies": { "cssom": "~0.3.6" } }, "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A=="], + + "csstype": ["csstype@3.1.3", "", {}, "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="], + + "d3-array": ["d3-array@3.2.4", "", { "dependencies": { "internmap": "1 - 2" } }, "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg=="], + + "d3-color": ["d3-color@3.1.0", "", {}, "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA=="], + + "d3-ease": ["d3-ease@3.0.1", "", {}, "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w=="], + + "d3-format": ["d3-format@3.1.0", "", {}, "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA=="], + + "d3-interpolate": ["d3-interpolate@3.0.1", "", { "dependencies": { "d3-color": "1 - 3" } }, "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g=="], + + "d3-path": ["d3-path@3.1.0", "", {}, "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ=="], + + "d3-scale": ["d3-scale@4.0.2", "", { "dependencies": { "d3-array": "2.10.0 - 3", "d3-format": "1 - 3", "d3-interpolate": "1.2.0 - 3", "d3-time": "2.1.1 - 3", "d3-time-format": "2 - 4" } }, "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ=="], + + "d3-shape": ["d3-shape@3.2.0", "", { "dependencies": { "d3-path": "^3.1.0" } }, "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA=="], + + "d3-time": ["d3-time@3.1.0", "", { "dependencies": { "d3-array": "2 - 3" } }, "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q=="], + + "d3-time-format": ["d3-time-format@4.1.0", "", { "dependencies": { "d3-time": "1 - 3" } }, "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg=="], + + "d3-timer": ["d3-timer@3.0.1", "", {}, "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA=="], + + "data-urls": ["data-urls@3.0.2", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/data-urls/-/data-urls-3.0.2.tgz", { "dependencies": { "abab": "^2.0.6", "whatwg-mimetype": "^3.0.0", "whatwg-url": "^11.0.0" } }, "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ=="], + + "date-fns": ["date-fns@3.6.0", "", {}, "sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww=="], + + "debug": ["debug@4.3.7", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ=="], + + "decimal.js": ["decimal.js@10.6.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/decimal.js/-/decimal.js-10.6.0.tgz", {}, "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg=="], + + "decimal.js-light": ["decimal.js-light@2.5.1", "", {}, "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg=="], + + "deep-eql": ["deep-eql@5.0.2", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/deep-eql/-/deep-eql-5.0.2.tgz", {}, "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q=="], + + "deep-is": ["deep-is@0.1.4", "", {}, "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="], + + "delayed-stream": ["delayed-stream@1.0.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/delayed-stream/-/delayed-stream-1.0.0.tgz", {}, "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="], + + "dequal": ["dequal@2.0.3", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/dequal/-/dequal-2.0.3.tgz", {}, "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA=="], + + "detect-node-es": ["detect-node-es@1.1.0", "", {}, "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ=="], + + "didyoumean": ["didyoumean@1.2.2", "", {}, "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw=="], + + "dlv": ["dlv@1.1.3", "", {}, "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA=="], + + "dom-accessibility-api": ["dom-accessibility-api@0.6.3", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz", {}, "sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w=="], + + "dom-helpers": ["dom-helpers@5.2.1", "", { "dependencies": { "@babel/runtime": "^7.8.7", "csstype": "^3.0.2" } }, "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA=="], + + "domexception": ["domexception@4.0.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/domexception/-/domexception-4.0.0.tgz", { "dependencies": { "webidl-conversions": "^7.0.0" } }, "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw=="], + + "dunder-proto": ["dunder-proto@1.0.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/dunder-proto/-/dunder-proto-1.0.1.tgz", { "dependencies": { "call-bind-apply-helpers": "^1.0.1", "es-errors": "^1.3.0", "gopd": "^1.2.0" } }, "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A=="], + + "eastasianwidth": ["eastasianwidth@0.2.0", "", {}, "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="], + + "electron-to-chromium": ["electron-to-chromium@1.5.192", "", {}, "sha512-rP8Ez0w7UNw/9j5eSXCe10o1g/8B1P5SM90PCCMVkIRQn2R0LEHWz4Eh9RnxkniuDe1W0cTSOB3MLlkTGDcuCg=="], + + "embla-carousel": ["embla-carousel@8.6.0", "", {}, "sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA=="], + + "embla-carousel-react": ["embla-carousel-react@8.6.0", "", { "dependencies": { "embla-carousel": "8.6.0", "embla-carousel-reactive-utils": "8.6.0" }, "peerDependencies": { "react": "^16.8.0 || ^17.0.1 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" } }, "sha512-0/PjqU7geVmo6F734pmPqpyHqiM99olvyecY7zdweCw+6tKEXnrE90pBiBbMMU8s5tICemzpQ3hi5EpxzGW+JA=="], + + "embla-carousel-reactive-utils": ["embla-carousel-reactive-utils@8.6.0", "", { "peerDependencies": { "embla-carousel": "8.6.0" } }, "sha512-fMVUDUEx0/uIEDM0Mz3dHznDhfX+znCCDCeIophYb1QGVM7YThSWX+wz11zlYwWFOr74b4QLGg0hrGPJeG2s4A=="], + + "emoji-regex": ["emoji-regex@9.2.2", "", {}, "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="], + + "entities": ["entities@6.0.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/entities/-/entities-6.0.1.tgz", {}, "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g=="], + + "es-define-property": ["es-define-property@1.0.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/es-define-property/-/es-define-property-1.0.1.tgz", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], + + "es-errors": ["es-errors@1.3.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/es-errors/-/es-errors-1.3.0.tgz", {}, "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="], + + "es-module-lexer": ["es-module-lexer@1.7.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/es-module-lexer/-/es-module-lexer-1.7.0.tgz", {}, "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA=="], + + "es-object-atoms": ["es-object-atoms@1.1.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/es-object-atoms/-/es-object-atoms-1.1.1.tgz", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], + + "es-set-tostringtag": ["es-set-tostringtag@2.1.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", { "dependencies": { "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA=="], + + "esbuild": ["esbuild@0.25.0", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.25.0", "@esbuild/android-arm": "0.25.0", "@esbuild/android-arm64": "0.25.0", "@esbuild/android-x64": "0.25.0", "@esbuild/darwin-arm64": "0.25.0", "@esbuild/darwin-x64": "0.25.0", "@esbuild/freebsd-arm64": "0.25.0", "@esbuild/freebsd-x64": "0.25.0", "@esbuild/linux-arm": "0.25.0", "@esbuild/linux-arm64": "0.25.0", "@esbuild/linux-ia32": "0.25.0", "@esbuild/linux-loong64": "0.25.0", "@esbuild/linux-mips64el": "0.25.0", "@esbuild/linux-ppc64": "0.25.0", "@esbuild/linux-riscv64": "0.25.0", "@esbuild/linux-s390x": "0.25.0", "@esbuild/linux-x64": "0.25.0", "@esbuild/netbsd-arm64": "0.25.0", "@esbuild/netbsd-x64": "0.25.0", "@esbuild/openbsd-arm64": "0.25.0", "@esbuild/openbsd-x64": "0.25.0", "@esbuild/sunos-x64": "0.25.0", "@esbuild/win32-arm64": "0.25.0", "@esbuild/win32-ia32": "0.25.0", "@esbuild/win32-x64": "0.25.0" }, "bin": "bin/esbuild" }, "sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw=="], + + "escalade": ["escalade@3.2.0", "", {}, "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="], + + "escape-string-regexp": ["escape-string-regexp@4.0.0", "", {}, "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="], + + "escodegen": ["escodegen@2.1.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/escodegen/-/escodegen-2.1.0.tgz", { "dependencies": { "esprima": "^4.0.1", "estraverse": "^5.2.0", "esutils": "^2.0.2" }, "optionalDependencies": { "source-map": "~0.6.1" }, "bin": { "escodegen": "bin/escodegen.js", "esgenerate": "bin/esgenerate.js" } }, "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w=="], + + "eslint": ["eslint@9.32.0", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.12.1", "@eslint/config-array": "^0.21.0", "@eslint/config-helpers": "^0.3.0", "@eslint/core": "^0.15.0", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "9.32.0", "@eslint/plugin-kit": "^0.3.4", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "@types/json-schema": "^7.0.15", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^8.4.0", "eslint-visitor-keys": "^4.2.1", "espree": "^10.4.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "peerDependencies": { "jiti": "*" }, "bin": "bin/eslint.js" }, "sha512-LSehfdpgMeWcTZkWZVIJl+tkZ2nuSkyyB9C27MZqFWXuph7DvaowgcTvKqxvpLW1JZIk8PN7hFY3Rj9LQ7m7lg=="], + + "eslint-plugin-react-hooks": ["eslint-plugin-react-hooks@5.2.0", "", { "peerDependencies": { "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" } }, "sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg=="], + + "eslint-plugin-react-refresh": ["eslint-plugin-react-refresh@0.4.20", "", { "peerDependencies": { "eslint": ">=8.40" } }, "sha512-XpbHQ2q5gUF8BGOX4dHe+71qoirYMhApEPZ7sfhF/dNnOF1UXnCMGZf79SFTBO7Bz5YEIT4TMieSlJBWhP9WBA=="], + + "eslint-scope": ["eslint-scope@8.4.0", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg=="], + + "eslint-visitor-keys": ["eslint-visitor-keys@4.2.1", "", {}, "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ=="], + + "espree": ["espree@10.4.0", "", { "dependencies": { "acorn": "^8.15.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.1" } }, "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ=="], + + "esprima": ["esprima@4.0.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/esprima/-/esprima-4.0.1.tgz", { "bin": { "esparse": "./bin/esparse.js", "esvalidate": "./bin/esvalidate.js" } }, "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="], + + "esquery": ["esquery@1.6.0", "", { "dependencies": { "estraverse": "^5.1.0" } }, "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg=="], + + "esrecurse": ["esrecurse@4.3.0", "", { "dependencies": { "estraverse": "^5.2.0" } }, "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag=="], + + "estraverse": ["estraverse@5.3.0", "", {}, "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="], + + "estree-walker": ["estree-walker@3.0.3", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/estree-walker/-/estree-walker-3.0.3.tgz", { "dependencies": { "@types/estree": "^1.0.0" } }, "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g=="], + + "esutils": ["esutils@2.0.3", "", {}, "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="], + + "eventemitter3": ["eventemitter3@4.0.7", "", {}, "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="], + + "expect-type": ["expect-type@1.3.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/expect-type/-/expect-type-1.3.0.tgz", {}, "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA=="], + + "fast-deep-equal": ["fast-deep-equal@3.1.3", "", {}, "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="], + + "fast-equals": ["fast-equals@5.2.2", "", {}, "sha512-V7/RktU11J3I36Nwq2JnZEM7tNm17eBJz+u25qdxBZeCKiX6BkVSZQjwWIr+IobgnZy+ag73tTZgZi7tr0LrBw=="], + + "fast-glob": ["fast-glob@3.3.2", "", { "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.4" } }, "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow=="], + + "fast-json-stable-stringify": ["fast-json-stable-stringify@2.1.0", "", {}, "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="], + + "fast-levenshtein": ["fast-levenshtein@2.0.6", "", {}, "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="], + + "fastq": ["fastq@1.17.1", "", { "dependencies": { "reusify": "^1.0.4" } }, "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w=="], + + "fdir": ["fdir@6.5.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/fdir/-/fdir-6.5.0.tgz", { "peerDependencies": { "picomatch": "^3 || ^4" }, "optionalPeers": ["picomatch"] }, "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg=="], + + "file-entry-cache": ["file-entry-cache@8.0.0", "", { "dependencies": { "flat-cache": "^4.0.0" } }, "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ=="], + + "fill-range": ["fill-range@7.1.1", "", { "dependencies": { "to-regex-range": "^5.0.1" } }, "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg=="], + + "find-up": ["find-up@5.0.0", "", { "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" } }, "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng=="], + + "flat-cache": ["flat-cache@4.0.1", "", { "dependencies": { "flatted": "^3.2.9", "keyv": "^4.5.4" } }, "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw=="], + + "flatted": ["flatted@3.3.1", "", {}, "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw=="], + + "foreground-child": ["foreground-child@3.3.0", "", { "dependencies": { "cross-spawn": "^7.0.0", "signal-exit": "^4.0.1" } }, "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg=="], + + "form-data": ["form-data@4.0.5", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/form-data/-/form-data-4.0.5.tgz", { "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "es-set-tostringtag": "^2.1.0", "hasown": "^2.0.2", "mime-types": "^2.1.12" } }, "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w=="], + + "fraction.js": ["fraction.js@4.3.7", "", {}, "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew=="], + + "fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="], + + "function-bind": ["function-bind@1.1.2", "", {}, "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="], + + "get-intrinsic": ["get-intrinsic@1.3.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/get-intrinsic/-/get-intrinsic-1.3.0.tgz", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], + + "get-nonce": ["get-nonce@1.0.1", "", {}, "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q=="], + + "get-proto": ["get-proto@1.0.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/get-proto/-/get-proto-1.0.1.tgz", { "dependencies": { "dunder-proto": "^1.0.1", "es-object-atoms": "^1.0.0" } }, "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g=="], + + "glob": ["glob@10.4.5", "", { "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^3.1.2", "minimatch": "^9.0.4", "minipass": "^7.1.2", "package-json-from-dist": "^1.0.0", "path-scurry": "^1.11.1" }, "bin": "dist/esm/bin.mjs" }, "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg=="], + + "glob-parent": ["glob-parent@6.0.2", "", { "dependencies": { "is-glob": "^4.0.3" } }, "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A=="], + + "globals": ["globals@15.15.0", "", {}, "sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg=="], + + "gopd": ["gopd@1.2.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/gopd/-/gopd-1.2.0.tgz", {}, "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="], + + "graphemer": ["graphemer@1.4.0", "", {}, "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag=="], + + "has-flag": ["has-flag@4.0.0", "", {}, "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="], + + "has-symbols": ["has-symbols@1.1.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/has-symbols/-/has-symbols-1.1.0.tgz", {}, "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ=="], + + "has-tostringtag": ["has-tostringtag@1.0.2", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/has-tostringtag/-/has-tostringtag-1.0.2.tgz", { "dependencies": { "has-symbols": "^1.0.3" } }, "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw=="], + + "hasown": ["hasown@2.0.2", "", { "dependencies": { "function-bind": "^1.1.2" } }, "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ=="], + + "html-encoding-sniffer": ["html-encoding-sniffer@3.0.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", { "dependencies": { "whatwg-encoding": "^2.0.0" } }, "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA=="], + + "http-proxy-agent": ["http-proxy-agent@5.0.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", { "dependencies": { "@tootallnate/once": "2", "agent-base": "6", "debug": "4" } }, "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w=="], + + "https-proxy-agent": ["https-proxy-agent@5.0.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", { "dependencies": { "agent-base": "6", "debug": "4" } }, "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA=="], + + "iconv-lite": ["iconv-lite@0.6.3", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/iconv-lite/-/iconv-lite-0.6.3.tgz", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="], + + "ignore": ["ignore@5.3.2", "", {}, "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g=="], + + "import-fresh": ["import-fresh@3.3.1", "", { "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ=="], + + "imurmurhash": ["imurmurhash@0.1.4", "", {}, "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="], + + "indent-string": ["indent-string@4.0.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/indent-string/-/indent-string-4.0.0.tgz", {}, "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg=="], + + "input-otp": ["input-otp@1.4.2", "", { "peerDependencies": { "react": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc" } }, "sha512-l3jWwYNvrEa6NTCt7BECfCm48GvwuZzkoeG3gBL2w4CHeOXW3eKFmf9UNYkNfYc3mxMrthMnxjIE07MT0zLBQA=="], + + "internmap": ["internmap@2.0.3", "", {}, "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg=="], + + "is-binary-path": ["is-binary-path@2.1.0", "", { "dependencies": { "binary-extensions": "^2.0.0" } }, "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="], + + "is-core-module": ["is-core-module@2.15.1", "", { "dependencies": { "hasown": "^2.0.2" } }, "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ=="], + + "is-extglob": ["is-extglob@2.1.1", "", {}, "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="], + + "is-fullwidth-code-point": ["is-fullwidth-code-point@3.0.0", "", {}, "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="], + + "is-glob": ["is-glob@4.0.3", "", { "dependencies": { "is-extglob": "^2.1.1" } }, "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="], + + "is-number": ["is-number@7.0.0", "", {}, "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="], + + "is-potential-custom-element-name": ["is-potential-custom-element-name@1.0.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", {}, "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ=="], + + "isexe": ["isexe@2.0.0", "", {}, "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="], + + "jackspeak": ["jackspeak@3.4.3", "", { "dependencies": { "@isaacs/cliui": "^8.0.2" }, "optionalDependencies": { "@pkgjs/parseargs": "^0.11.0" } }, "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw=="], + + "jiti": ["jiti@1.21.6", "", { "bin": "bin/jiti.js" }, "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w=="], + + "js-tokens": ["js-tokens@4.0.0", "", {}, "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="], + + "js-yaml": ["js-yaml@4.1.0", "", { "dependencies": { "argparse": "^2.0.1" }, "bin": "bin/js-yaml.js" }, "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="], + + "jsdom": ["jsdom@20.0.3", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/jsdom/-/jsdom-20.0.3.tgz", { "dependencies": { "abab": "^2.0.6", "acorn": "^8.8.1", "acorn-globals": "^7.0.0", "cssom": "^0.5.0", "cssstyle": "^2.3.0", "data-urls": "^3.0.2", "decimal.js": "^10.4.2", "domexception": "^4.0.0", "escodegen": "^2.0.0", "form-data": "^4.0.0", "html-encoding-sniffer": "^3.0.0", "http-proxy-agent": "^5.0.0", "https-proxy-agent": "^5.0.1", "is-potential-custom-element-name": "^1.0.1", "nwsapi": "^2.2.2", "parse5": "^7.1.1", "saxes": "^6.0.0", "symbol-tree": "^3.2.4", "tough-cookie": "^4.1.2", "w3c-xmlserializer": "^4.0.0", "webidl-conversions": "^7.0.0", "whatwg-encoding": "^2.0.0", "whatwg-mimetype": "^3.0.0", "whatwg-url": "^11.0.0", "ws": "^8.11.0", "xml-name-validator": "^4.0.0" }, "peerDependencies": { "canvas": "^2.5.0" }, "optionalPeers": ["canvas"] }, "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ=="], + + "json-buffer": ["json-buffer@3.0.1", "", {}, "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="], + + "json-schema-traverse": ["json-schema-traverse@0.4.1", "", {}, "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="], + + "json-stable-stringify-without-jsonify": ["json-stable-stringify-without-jsonify@1.0.1", "", {}, "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="], + + "keyv": ["keyv@4.5.4", "", { "dependencies": { "json-buffer": "3.0.1" } }, "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw=="], + + "levn": ["levn@0.4.1", "", { "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" } }, "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="], + + "lilconfig": ["lilconfig@3.1.3", "", {}, "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw=="], + + "lines-and-columns": ["lines-and-columns@1.2.4", "", {}, "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="], + + "locate-path": ["locate-path@6.0.0", "", { "dependencies": { "p-locate": "^5.0.0" } }, "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="], + + "lodash": ["lodash@4.17.21", "", {}, "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="], + + "lodash.castarray": ["lodash.castarray@4.4.0", "", {}, "sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q=="], + + "lodash.isplainobject": ["lodash.isplainobject@4.0.6", "", {}, "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA=="], + + "lodash.merge": ["lodash.merge@4.6.2", "", {}, "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="], + + "loose-envify": ["loose-envify@1.4.0", "", { "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" }, "bin": "cli.js" }, "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="], + + "loupe": ["loupe@3.2.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/loupe/-/loupe-3.2.1.tgz", {}, "sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ=="], + + "lovable-tagger": ["lovable-tagger@1.1.13", "", { "dependencies": { "esbuild": "^0.25.0", "tailwindcss": "^3.4.17" }, "peerDependencies": { "vite": ">=5.0.0 <8.0.0" } }, "sha512-RBEYDxao7Xf8ya29L0cd+ocE7Gs80xPOIOwwck65Hoie8YDKViuXi3UYV14DoNWIvaJ7WVPf7SG3cc844nFqGA=="], + + "lru-cache": ["lru-cache@10.4.3", "", {}, "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="], + + "lucide-react": ["lucide-react@0.462.0", "", { "peerDependencies": { "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc" } }, "sha512-NTL7EbAao9IFtuSivSZgrAh4fZd09Lr+6MTkqIxuHaH2nnYiYIzXPo06cOxHg9wKLdj6LL8TByG4qpePqwgx/g=="], + + "lz-string": ["lz-string@1.5.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/lz-string/-/lz-string-1.5.0.tgz", { "bin": { "lz-string": "bin/bin.js" } }, "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ=="], + + "magic-string": ["magic-string@0.30.21", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/magic-string/-/magic-string-0.30.21.tgz", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.5" } }, "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ=="], + + "math-intrinsics": ["math-intrinsics@1.1.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/math-intrinsics/-/math-intrinsics-1.1.0.tgz", {}, "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g=="], + + "merge2": ["merge2@1.4.1", "", {}, "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="], + + "micromatch": ["micromatch@4.0.8", "", { "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" } }, "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA=="], + + "mime-db": ["mime-db@1.52.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/mime-db/-/mime-db-1.52.0.tgz", {}, "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="], + + "mime-types": ["mime-types@2.1.35", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/mime-types/-/mime-types-2.1.35.tgz", { "dependencies": { "mime-db": "1.52.0" } }, "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="], + + "min-indent": ["min-indent@1.0.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/min-indent/-/min-indent-1.0.1.tgz", {}, "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg=="], + + "minimatch": ["minimatch@3.1.2", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="], + + "minipass": ["minipass@7.1.2", "", {}, "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="], + + "ms": ["ms@2.1.3", "", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="], + + "mz": ["mz@2.7.0", "", { "dependencies": { "any-promise": "^1.0.0", "object-assign": "^4.0.1", "thenify-all": "^1.0.0" } }, "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q=="], + + "nanoid": ["nanoid@3.3.11", "", { "bin": "bin/nanoid.cjs" }, "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="], + + "natural-compare": ["natural-compare@1.4.0", "", {}, "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="], + + "next-themes": ["next-themes@0.3.0", "", { "peerDependencies": { "react": "^16.8 || ^17 || ^18", "react-dom": "^16.8 || ^17 || ^18" } }, "sha512-/QHIrsYpd6Kfk7xakK4svpDI5mmXP0gfvCoJdGpZQ2TOrQZmsW0QxjaiLn8wbIKjtm4BTSqLoix4lxYYOnLJ/w=="], + + "node-releases": ["node-releases@2.0.19", "", {}, "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw=="], + + "normalize-path": ["normalize-path@3.0.0", "", {}, "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="], + + "normalize-range": ["normalize-range@0.1.2", "", {}, "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA=="], + + "nwsapi": ["nwsapi@2.2.23", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/nwsapi/-/nwsapi-2.2.23.tgz", {}, "sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ=="], + + "object-assign": ["object-assign@4.1.1", "", {}, "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="], + + "object-hash": ["object-hash@3.0.0", "", {}, "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw=="], + + "optionator": ["optionator@0.9.4", "", { "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0", "word-wrap": "^1.2.5" } }, "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g=="], + + "p-limit": ["p-limit@3.1.0", "", { "dependencies": { "yocto-queue": "^0.1.0" } }, "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="], + + "p-locate": ["p-locate@5.0.0", "", { "dependencies": { "p-limit": "^3.0.2" } }, "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw=="], + + "package-json-from-dist": ["package-json-from-dist@1.0.1", "", {}, "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw=="], + + "parent-module": ["parent-module@1.0.1", "", { "dependencies": { "callsites": "^3.0.0" } }, "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="], + + "parse5": ["parse5@7.3.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/parse5/-/parse5-7.3.0.tgz", { "dependencies": { "entities": "^6.0.0" } }, "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw=="], + + "path-exists": ["path-exists@4.0.0", "", {}, "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="], + + "path-key": ["path-key@3.1.1", "", {}, "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="], + + "path-parse": ["path-parse@1.0.7", "", {}, "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="], + + "path-scurry": ["path-scurry@1.11.1", "", { "dependencies": { "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" } }, "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA=="], + + "pathe": ["pathe@2.0.3", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/pathe/-/pathe-2.0.3.tgz", {}, "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="], + + "pathval": ["pathval@2.0.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/pathval/-/pathval-2.0.1.tgz", {}, "sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ=="], + + "picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], + + "picomatch": ["picomatch@4.0.4", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/picomatch/-/picomatch-4.0.4.tgz", {}, "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A=="], + + "pify": ["pify@2.3.0", "", {}, "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog=="], + + "pirates": ["pirates@4.0.6", "", {}, "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg=="], + + "postcss": ["postcss@8.5.6", "", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg=="], + + "postcss-import": ["postcss-import@15.1.0", "", { "dependencies": { "postcss-value-parser": "^4.0.0", "read-cache": "^1.0.0", "resolve": "^1.1.7" }, "peerDependencies": { "postcss": "^8.0.0" } }, "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew=="], + + "postcss-js": ["postcss-js@4.0.1", "", { "dependencies": { "camelcase-css": "^2.0.1" }, "peerDependencies": { "postcss": "^8.4.21" } }, "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw=="], + + "postcss-load-config": ["postcss-load-config@4.0.2", "", { "dependencies": { "lilconfig": "^3.0.0", "yaml": "^2.3.4" }, "peerDependencies": { "postcss": ">=8.0.9", "ts-node": ">=9.0.0" }, "optionalPeers": ["ts-node"] }, "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ=="], + + "postcss-nested": ["postcss-nested@6.2.0", "", { "dependencies": { "postcss-selector-parser": "^6.1.1" }, "peerDependencies": { "postcss": "^8.2.14" } }, "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ=="], + + "postcss-selector-parser": ["postcss-selector-parser@6.0.10", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w=="], + + "postcss-value-parser": ["postcss-value-parser@4.2.0", "", {}, "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="], + + "prelude-ls": ["prelude-ls@1.2.1", "", {}, "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="], + + "pretty-format": ["pretty-format@27.5.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/pretty-format/-/pretty-format-27.5.1.tgz", { "dependencies": { "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", "react-is": "^17.0.1" } }, "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ=="], + + "prop-types": ["prop-types@15.8.1", "", { "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", "react-is": "^16.13.1" } }, "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg=="], + + "psl": ["psl@1.15.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/psl/-/psl-1.15.0.tgz", { "dependencies": { "punycode": "^2.3.1" } }, "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w=="], + + "punycode": ["punycode@2.3.1", "", {}, "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg=="], + + "querystringify": ["querystringify@2.2.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/querystringify/-/querystringify-2.2.0.tgz", {}, "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ=="], + + "queue-microtask": ["queue-microtask@1.2.3", "", {}, "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="], + + "react": ["react@18.3.1", "", { "dependencies": { "loose-envify": "^1.1.0" } }, "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ=="], + + "react-day-picker": ["react-day-picker@8.10.1", "", { "peerDependencies": { "date-fns": "^2.28.0 || ^3.0.0", "react": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, "sha512-TMx7fNbhLk15eqcMt+7Z7S2KF7mfTId/XJDjKE8f+IUcFn0l08/kI4FiYTL/0yuOLmEcbR4Fwe3GJf/NiiMnPA=="], + + "react-dom": ["react-dom@18.3.1", "", { "dependencies": { "loose-envify": "^1.1.0", "scheduler": "^0.23.2" }, "peerDependencies": { "react": "^18.3.1" } }, "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw=="], + + "react-hook-form": ["react-hook-form@7.61.1", "", { "peerDependencies": { "react": "^16.8.0 || ^17 || ^18 || ^19" } }, "sha512-2vbXUFDYgqEgM2RcXcAT2PwDW/80QARi+PKmHy5q2KhuKvOlG8iIYgf7eIlIANR5trW9fJbP4r5aub3a4egsew=="], + + "react-is": ["react-is@18.3.1", "", {}, "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg=="], + + "react-remove-scroll": ["react-remove-scroll@2.7.1", "", { "dependencies": { "react-remove-scroll-bar": "^2.3.7", "react-style-singleton": "^2.2.3", "tslib": "^2.1.0", "use-callback-ref": "^1.3.3", "use-sidecar": "^1.1.3" }, "peerDependencies": { "@types/react": "*", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" } }, "sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA=="], + + "react-remove-scroll-bar": ["react-remove-scroll-bar@2.3.8", "", { "dependencies": { "react-style-singleton": "^2.2.2", "tslib": "^2.0.0" }, "peerDependencies": { "@types/react": "*", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q=="], + + "react-resizable-panels": ["react-resizable-panels@2.1.9", "", { "peerDependencies": { "react": "^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc", "react-dom": "^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" } }, "sha512-z77+X08YDIrgAes4jl8xhnUu1LNIRp4+E7cv4xHmLOxxUPO/ML7PSrE813b90vj7xvQ1lcf7g2uA9GeMZonjhQ=="], + + "react-router": ["react-router@6.30.1", "", { "dependencies": { "@remix-run/router": "1.23.0" }, "peerDependencies": { "react": ">=16.8" } }, "sha512-X1m21aEmxGXqENEPG3T6u0Th7g0aS4ZmoNynhbs+Cn+q+QGTLt+d5IQ2bHAXKzKcxGJjxACpVbnYQSCRcfxHlQ=="], + + "react-router-dom": ["react-router-dom@6.30.1", "", { "dependencies": { "@remix-run/router": "1.23.0", "react-router": "6.30.1" }, "peerDependencies": { "react": ">=16.8", "react-dom": ">=16.8" } }, "sha512-llKsgOkZdbPU1Eg3zK8lCn+sjD9wMRZZPuzmdWWX5SUs8OFkN5HnFVC0u5KMeMaC9aoancFI/KoLuKPqN+hxHw=="], + + "react-smooth": ["react-smooth@4.0.4", "", { "dependencies": { "fast-equals": "^5.0.1", "prop-types": "^15.8.1", "react-transition-group": "^4.4.5" }, "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-gnGKTpYwqL0Iii09gHobNolvX4Kiq4PKx6eWBCYYix+8cdw+cGo3do906l1NBPKkSWx1DghC1dlWG9L2uGd61Q=="], + + "react-style-singleton": ["react-style-singleton@2.2.3", "", { "dependencies": { "get-nonce": "^1.0.0", "tslib": "^2.0.0" }, "peerDependencies": { "@types/react": "*", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" } }, "sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ=="], + + "react-transition-group": ["react-transition-group@4.4.5", "", { "dependencies": { "@babel/runtime": "^7.5.5", "dom-helpers": "^5.0.1", "loose-envify": "^1.4.0", "prop-types": "^15.6.2" }, "peerDependencies": { "react": ">=16.6.0", "react-dom": ">=16.6.0" } }, "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g=="], + + "read-cache": ["read-cache@1.0.0", "", { "dependencies": { "pify": "^2.3.0" } }, "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA=="], + + "readdirp": ["readdirp@3.6.0", "", { "dependencies": { "picomatch": "^2.2.1" } }, "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="], + + "recharts": ["recharts@2.15.4", "", { "dependencies": { "clsx": "^2.0.0", "eventemitter3": "^4.0.1", "lodash": "^4.17.21", "react-is": "^18.3.1", "react-smooth": "^4.0.4", "recharts-scale": "^0.4.4", "tiny-invariant": "^1.3.1", "victory-vendor": "^36.6.8" }, "peerDependencies": { "react": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-UT/q6fwS3c1dHbXv2uFgYJ9BMFHu3fwnd7AYZaEQhXuYQ4hgsxLvsUXzGdKeZrW5xopzDCvuA2N41WJ88I7zIw=="], + + "recharts-scale": ["recharts-scale@0.4.5", "", { "dependencies": { "decimal.js-light": "^2.4.1" } }, "sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w=="], + + "redent": ["redent@3.0.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/redent/-/redent-3.0.0.tgz", { "dependencies": { "indent-string": "^4.0.0", "strip-indent": "^3.0.0" } }, "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg=="], + + "requires-port": ["requires-port@1.0.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/requires-port/-/requires-port-1.0.0.tgz", {}, "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="], + + "resolve": ["resolve@1.22.8", "", { "dependencies": { "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": "bin/resolve" }, "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw=="], + + "resolve-from": ["resolve-from@4.0.0", "", {}, "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="], + + "reusify": ["reusify@1.0.4", "", {}, "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="], + + "rollup": ["rollup@4.24.0", "", { "dependencies": { "@types/estree": "1.0.6" }, "optionalDependencies": { "@rollup/rollup-android-arm-eabi": "4.24.0", "@rollup/rollup-android-arm64": "4.24.0", "@rollup/rollup-darwin-arm64": "4.24.0", "@rollup/rollup-darwin-x64": "4.24.0", "@rollup/rollup-linux-arm-gnueabihf": "4.24.0", "@rollup/rollup-linux-arm-musleabihf": "4.24.0", "@rollup/rollup-linux-arm64-gnu": "4.24.0", "@rollup/rollup-linux-arm64-musl": "4.24.0", "@rollup/rollup-linux-powerpc64le-gnu": "4.24.0", "@rollup/rollup-linux-riscv64-gnu": "4.24.0", "@rollup/rollup-linux-s390x-gnu": "4.24.0", "@rollup/rollup-linux-x64-gnu": "4.24.0", "@rollup/rollup-linux-x64-musl": "4.24.0", "@rollup/rollup-win32-arm64-msvc": "4.24.0", "@rollup/rollup-win32-ia32-msvc": "4.24.0", "@rollup/rollup-win32-x64-msvc": "4.24.0", "fsevents": "~2.3.2" }, "bin": "dist/bin/rollup" }, "sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg=="], + + "run-parallel": ["run-parallel@1.2.0", "", { "dependencies": { "queue-microtask": "^1.2.2" } }, "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="], + + "safer-buffer": ["safer-buffer@2.1.2", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/safer-buffer/-/safer-buffer-2.1.2.tgz", {}, "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="], + + "saxes": ["saxes@6.0.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/saxes/-/saxes-6.0.0.tgz", { "dependencies": { "xmlchars": "^2.2.0" } }, "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA=="], + + "scheduler": ["scheduler@0.23.2", "", { "dependencies": { "loose-envify": "^1.1.0" } }, "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ=="], + + "semver": ["semver@7.7.2", "", { "bin": "bin/semver.js" }, "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA=="], + + "shebang-command": ["shebang-command@2.0.0", "", { "dependencies": { "shebang-regex": "^3.0.0" } }, "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="], + + "shebang-regex": ["shebang-regex@3.0.0", "", {}, "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="], + + "siginfo": ["siginfo@2.0.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/siginfo/-/siginfo-2.0.0.tgz", {}, "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g=="], + + "signal-exit": ["signal-exit@4.1.0", "", {}, "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="], + + "sonner": ["sonner@1.7.4", "", { "peerDependencies": { "react": "^18.0.0 || ^19.0.0 || ^19.0.0-rc", "react-dom": "^18.0.0 || ^19.0.0 || ^19.0.0-rc" } }, "sha512-DIS8z4PfJRbIyfVFDVnK9rO3eYDtse4Omcm6bt0oEr5/jtLgysmjuBl1frJ9E/EQZrFmKx2A8m/s5s9CRXIzhw=="], + + "source-map": ["source-map@0.6.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/source-map/-/source-map-0.6.1.tgz", {}, "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="], + + "source-map-js": ["source-map-js@1.2.1", "", {}, "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="], + + "stackback": ["stackback@0.0.2", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/stackback/-/stackback-0.0.2.tgz", {}, "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw=="], + + "std-env": ["std-env@3.10.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/std-env/-/std-env-3.10.0.tgz", {}, "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg=="], + + "string-width": ["string-width@5.1.2", "", { "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", "strip-ansi": "^7.0.1" } }, "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA=="], + + "string-width-cjs": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], + + "strip-ansi": ["strip-ansi@7.1.0", "", { "dependencies": { "ansi-regex": "^6.0.1" } }, "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ=="], + + "strip-ansi-cjs": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], + + "strip-indent": ["strip-indent@3.0.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/strip-indent/-/strip-indent-3.0.0.tgz", { "dependencies": { "min-indent": "^1.0.0" } }, "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ=="], + + "strip-json-comments": ["strip-json-comments@3.1.1", "", {}, "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="], + + "strip-literal": ["strip-literal@3.1.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/strip-literal/-/strip-literal-3.1.0.tgz", { "dependencies": { "js-tokens": "^9.0.1" } }, "sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg=="], + + "sucrase": ["sucrase@3.35.0", "", { "dependencies": { "@jridgewell/gen-mapping": "^0.3.2", "commander": "^4.0.0", "glob": "^10.3.10", "lines-and-columns": "^1.1.6", "mz": "^2.7.0", "pirates": "^4.0.1", "ts-interface-checker": "^0.1.9" }, "bin": { "sucrase": "bin/sucrase", "sucrase-node": "bin/sucrase-node" } }, "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA=="], + + "supports-color": ["supports-color@7.2.0", "", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="], + + "supports-preserve-symlinks-flag": ["supports-preserve-symlinks-flag@1.0.0", "", {}, "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="], + + "symbol-tree": ["symbol-tree@3.2.4", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/symbol-tree/-/symbol-tree-3.2.4.tgz", {}, "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="], + + "tailwind-merge": ["tailwind-merge@2.6.0", "", {}, "sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA=="], + + "tailwindcss": ["tailwindcss@3.4.17", "", { "dependencies": { "@alloc/quick-lru": "^5.2.0", "arg": "^5.0.2", "chokidar": "^3.6.0", "didyoumean": "^1.2.2", "dlv": "^1.1.3", "fast-glob": "^3.3.2", "glob-parent": "^6.0.2", "is-glob": "^4.0.3", "jiti": "^1.21.6", "lilconfig": "^3.1.3", "micromatch": "^4.0.8", "normalize-path": "^3.0.0", "object-hash": "^3.0.0", "picocolors": "^1.1.1", "postcss": "^8.4.47", "postcss-import": "^15.1.0", "postcss-js": "^4.0.1", "postcss-load-config": "^4.0.2", "postcss-nested": "^6.2.0", "postcss-selector-parser": "^6.1.2", "resolve": "^1.22.8", "sucrase": "^3.35.0" }, "bin": { "tailwind": "lib/cli.js", "tailwindcss": "lib/cli.js" } }, "sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og=="], + + "tailwindcss-animate": ["tailwindcss-animate@1.0.7", "", { "peerDependencies": { "tailwindcss": ">=3.0.0 || insiders" } }, "sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA=="], + + "thenify": ["thenify@3.3.1", "", { "dependencies": { "any-promise": "^1.0.0" } }, "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw=="], + + "thenify-all": ["thenify-all@1.6.0", "", { "dependencies": { "thenify": ">= 3.1.0 < 4" } }, "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA=="], + + "tiny-invariant": ["tiny-invariant@1.3.3", "", {}, "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg=="], + + "tinybench": ["tinybench@2.9.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/tinybench/-/tinybench-2.9.0.tgz", {}, "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg=="], + + "tinyexec": ["tinyexec@0.3.2", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/tinyexec/-/tinyexec-0.3.2.tgz", {}, "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA=="], + + "tinyglobby": ["tinyglobby@0.2.15", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/tinyglobby/-/tinyglobby-0.2.15.tgz", { "dependencies": { "fdir": "^6.5.0", "picomatch": "^4.0.3" } }, "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ=="], + + "tinypool": ["tinypool@1.1.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/tinypool/-/tinypool-1.1.1.tgz", {}, "sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg=="], + + "tinyrainbow": ["tinyrainbow@2.0.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/tinyrainbow/-/tinyrainbow-2.0.0.tgz", {}, "sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw=="], + + "tinyspy": ["tinyspy@4.0.4", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/tinyspy/-/tinyspy-4.0.4.tgz", {}, "sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q=="], + + "to-regex-range": ["to-regex-range@5.0.1", "", { "dependencies": { "is-number": "^7.0.0" } }, "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="], + + "tough-cookie": ["tough-cookie@4.1.4", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/tough-cookie/-/tough-cookie-4.1.4.tgz", { "dependencies": { "psl": "^1.1.33", "punycode": "^2.1.1", "universalify": "^0.2.0", "url-parse": "^1.5.3" } }, "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag=="], + + "tr46": ["tr46@3.0.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/tr46/-/tr46-3.0.0.tgz", { "dependencies": { "punycode": "^2.1.1" } }, "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA=="], + + "ts-api-utils": ["ts-api-utils@2.1.0", "", { "peerDependencies": { "typescript": ">=4.8.4" } }, "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ=="], + + "ts-interface-checker": ["ts-interface-checker@0.1.13", "", {}, "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA=="], + + "tslib": ["tslib@2.8.0", "", {}, "sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA=="], + + "type-check": ["type-check@0.4.0", "", { "dependencies": { "prelude-ls": "^1.2.1" } }, "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="], + + "typescript": ["typescript@5.8.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ=="], + + "typescript-eslint": ["typescript-eslint@8.38.0", "", { "dependencies": { "@typescript-eslint/eslint-plugin": "8.38.0", "@typescript-eslint/parser": "8.38.0", "@typescript-eslint/typescript-estree": "8.38.0", "@typescript-eslint/utils": "8.38.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-FsZlrYK6bPDGoLeZRuvx2v6qrM03I0U0SnfCLPs/XCCPCFD80xU9Pg09H/K+XFa68uJuZo7l/Xhs+eDRg2l3hg=="], + + "undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="], + + "universalify": ["universalify@0.2.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/universalify/-/universalify-0.2.0.tgz", {}, "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg=="], + + "update-browserslist-db": ["update-browserslist-db@1.1.3", "", { "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": "cli.js" }, "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw=="], + + "uri-js": ["uri-js@4.4.1", "", { "dependencies": { "punycode": "^2.1.0" } }, "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="], + + "url-parse": ["url-parse@1.5.10", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/url-parse/-/url-parse-1.5.10.tgz", { "dependencies": { "querystringify": "^2.1.1", "requires-port": "^1.0.0" } }, "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ=="], + + "use-callback-ref": ["use-callback-ref@1.3.3", "", { "dependencies": { "tslib": "^2.0.0" }, "peerDependencies": { "@types/react": "*", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" } }, "sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg=="], + + "use-sidecar": ["use-sidecar@1.1.3", "", { "dependencies": { "detect-node-es": "^1.1.0", "tslib": "^2.0.0" }, "peerDependencies": { "@types/react": "*", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" } }, "sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ=="], + + "use-sync-external-store": ["use-sync-external-store@1.5.0", "", { "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A=="], + + "util-deprecate": ["util-deprecate@1.0.2", "", {}, "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="], + + "vaul": ["vaul@0.9.9", "", { "dependencies": { "@radix-ui/react-dialog": "^1.1.1" }, "peerDependencies": { "react": "^16.8 || ^17.0 || ^18.0", "react-dom": "^16.8 || ^17.0 || ^18.0" } }, "sha512-7afKg48srluhZwIkaU+lgGtFCUsYBSGOl8vcc8N/M3YQlZFlynHD15AE+pwrYdc826o7nrIND4lL9Y6b9WWZZQ=="], + + "victory-vendor": ["victory-vendor@36.9.2", "", { "dependencies": { "@types/d3-array": "^3.0.3", "@types/d3-ease": "^3.0.0", "@types/d3-interpolate": "^3.0.1", "@types/d3-scale": "^4.0.2", "@types/d3-shape": "^3.1.0", "@types/d3-time": "^3.0.0", "@types/d3-timer": "^3.0.0", "d3-array": "^3.1.6", "d3-ease": "^3.0.1", "d3-interpolate": "^3.0.1", "d3-scale": "^4.0.2", "d3-shape": "^3.1.0", "d3-time": "^3.0.0", "d3-timer": "^3.0.1" } }, "sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ=="], + + "vite": ["vite@5.4.19", "", { "dependencies": { "esbuild": "^0.21.3", "postcss": "^8.4.43", "rollup": "^4.20.0" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^18.0.0 || >=20.0.0", "less": "*", "lightningcss": "^1.21.0", "sass": "*", "sass-embedded": "*", "stylus": "*", "sugarss": "*", "terser": "^5.4.0" }, "optionalPeers": ["less", "lightningcss", "sass", "sass-embedded", "stylus", "sugarss", "terser"], "bin": "bin/vite.js" }, "sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA=="], + + "vite-node": ["vite-node@3.2.4", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/vite-node/-/vite-node-3.2.4.tgz", { "dependencies": { "cac": "^6.7.14", "debug": "^4.4.1", "es-module-lexer": "^1.7.0", "pathe": "^2.0.3", "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0" }, "bin": { "vite-node": "vite-node.mjs" } }, "sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg=="], + + "vitest": ["vitest@3.2.4", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/vitest/-/vitest-3.2.4.tgz", { "dependencies": { "@types/chai": "^5.2.2", "@vitest/expect": "3.2.4", "@vitest/mocker": "3.2.4", "@vitest/pretty-format": "^3.2.4", "@vitest/runner": "3.2.4", "@vitest/snapshot": "3.2.4", "@vitest/spy": "3.2.4", "@vitest/utils": "3.2.4", "chai": "^5.2.0", "debug": "^4.4.1", "expect-type": "^1.2.1", "magic-string": "^0.30.17", "pathe": "^2.0.3", "picomatch": "^4.0.2", "std-env": "^3.9.0", "tinybench": "^2.9.0", "tinyexec": "^0.3.2", "tinyglobby": "^0.2.14", "tinypool": "^1.1.1", "tinyrainbow": "^2.0.0", "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0", "vite-node": "3.2.4", "why-is-node-running": "^2.3.0" }, "peerDependencies": { "@edge-runtime/vm": "*", "@types/debug": "^4.1.12", "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", "@vitest/browser": "3.2.4", "@vitest/ui": "3.2.4", "happy-dom": "*", "jsdom": "*" }, "optionalPeers": ["@edge-runtime/vm", "@types/debug", "@types/node", "@vitest/browser", "@vitest/ui", "happy-dom", "jsdom"], "bin": { "vitest": "vitest.mjs" } }, "sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A=="], + + "w3c-xmlserializer": ["w3c-xmlserializer@4.0.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", { "dependencies": { "xml-name-validator": "^4.0.0" } }, "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw=="], + + "webidl-conversions": ["webidl-conversions@7.0.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/webidl-conversions/-/webidl-conversions-7.0.0.tgz", {}, "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g=="], + + "whatwg-encoding": ["whatwg-encoding@2.0.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", { "dependencies": { "iconv-lite": "0.6.3" } }, "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg=="], + + "whatwg-mimetype": ["whatwg-mimetype@3.0.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", {}, "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q=="], + + "whatwg-url": ["whatwg-url@11.0.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/whatwg-url/-/whatwg-url-11.0.0.tgz", { "dependencies": { "tr46": "^3.0.0", "webidl-conversions": "^7.0.0" } }, "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ=="], + + "which": ["which@2.0.2", "", { "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "bin/node-which" } }, "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="], + + "why-is-node-running": ["why-is-node-running@2.3.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/why-is-node-running/-/why-is-node-running-2.3.0.tgz", { "dependencies": { "siginfo": "^2.0.0", "stackback": "0.0.2" }, "bin": { "why-is-node-running": "cli.js" } }, "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w=="], + + "word-wrap": ["word-wrap@1.2.5", "", {}, "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA=="], + + "wrap-ansi": ["wrap-ansi@8.1.0", "", { "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", "strip-ansi": "^7.0.1" } }, "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ=="], + + "wrap-ansi-cjs": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="], + + "ws": ["ws@8.20.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/ws/-/ws-8.20.0.tgz", { "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": ">=5.0.2" }, "optionalPeers": ["bufferutil", "utf-8-validate"] }, "sha512-sAt8BhgNbzCtgGbt2OxmpuryO63ZoDk/sqaB/znQm94T4fCEsy/yV+7CdC1kJhOU9lboAEU7R3kquuycDoibVA=="], + + "xml-name-validator": ["xml-name-validator@4.0.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/xml-name-validator/-/xml-name-validator-4.0.0.tgz", {}, "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw=="], + + "xmlchars": ["xmlchars@2.2.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/xmlchars/-/xmlchars-2.2.0.tgz", {}, "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw=="], + + "yaml": ["yaml@2.6.0", "", { "bin": "bin.mjs" }, "sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ=="], + + "yocto-queue": ["yocto-queue@0.1.0", "", {}, "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="], + + "zod": ["zod@3.25.76", "", {}, "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ=="], + + "@eslint-community/eslint-utils/eslint-visitor-keys": ["eslint-visitor-keys@3.4.3", "", {}, "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag=="], + + "@eslint/eslintrc/globals": ["globals@14.0.0", "", {}, "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ=="], + + "@humanfs/node/@humanwhocodes/retry": ["@humanwhocodes/retry@0.3.1", "", {}, "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA=="], + + "@jridgewell/gen-mapping/@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@1.5.0", "", {}, "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ=="], + + "@jridgewell/trace-mapping/@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@1.5.0", "", {}, "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ=="], + + "@testing-library/dom/aria-query": ["aria-query@5.3.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/aria-query/-/aria-query-5.3.0.tgz", { "dependencies": { "dequal": "^2.0.3" } }, "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A=="], + + "@testing-library/dom/dom-accessibility-api": ["dom-accessibility-api@0.5.16", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", {}, "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg=="], + + "@typescript-eslint/eslint-plugin/ignore": ["ignore@7.0.5", "", {}, "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg=="], + + "@typescript-eslint/typescript-estree/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], + + "agent-base/debug": ["debug@4.4.3", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/debug/-/debug-4.4.3.tgz", { "dependencies": { "ms": "^2.1.3" } }, "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA=="], + + "anymatch/picomatch": ["picomatch@2.3.1", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="], + + "chokidar/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="], + + "cssstyle/cssom": ["cssom@0.3.8", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/cssom/-/cssom-0.3.8.tgz", {}, "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg=="], + + "fast-glob/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="], + + "glob/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], + + "http-proxy-agent/debug": ["debug@4.4.3", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/debug/-/debug-4.4.3.tgz", { "dependencies": { "ms": "^2.1.3" } }, "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA=="], + + "https-proxy-agent/debug": ["debug@4.4.3", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/debug/-/debug-4.4.3.tgz", { "dependencies": { "ms": "^2.1.3" } }, "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA=="], + + "micromatch/picomatch": ["picomatch@2.3.1", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="], + + "postcss-nested/postcss-selector-parser": ["postcss-selector-parser@6.1.2", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg=="], + + "pretty-format/ansi-styles": ["ansi-styles@5.2.0", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/ansi-styles/-/ansi-styles-5.2.0.tgz", {}, "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA=="], + + "pretty-format/react-is": ["react-is@17.0.2", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/react-is/-/react-is-17.0.2.tgz", {}, "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="], + + "prop-types/react-is": ["react-is@16.13.1", "", {}, "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="], + + "readdirp/picomatch": ["picomatch@2.3.1", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="], + + "string-width-cjs/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], + + "string-width-cjs/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], + + "strip-ansi/ansi-regex": ["ansi-regex@6.1.0", "", {}, "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA=="], + + "strip-literal/js-tokens": ["js-tokens@9.0.1", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/js-tokens/-/js-tokens-9.0.1.tgz", {}, "sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ=="], + + "tailwindcss/postcss-selector-parser": ["postcss-selector-parser@6.1.2", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg=="], + + "vite/esbuild": ["esbuild@0.21.5", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.21.5", "@esbuild/android-arm": "0.21.5", "@esbuild/android-arm64": "0.21.5", "@esbuild/android-x64": "0.21.5", "@esbuild/darwin-arm64": "0.21.5", "@esbuild/darwin-x64": "0.21.5", "@esbuild/freebsd-arm64": "0.21.5", "@esbuild/freebsd-x64": "0.21.5", "@esbuild/linux-arm": "0.21.5", "@esbuild/linux-arm64": "0.21.5", "@esbuild/linux-ia32": "0.21.5", "@esbuild/linux-loong64": "0.21.5", "@esbuild/linux-mips64el": "0.21.5", "@esbuild/linux-ppc64": "0.21.5", "@esbuild/linux-riscv64": "0.21.5", "@esbuild/linux-s390x": "0.21.5", "@esbuild/linux-x64": "0.21.5", "@esbuild/netbsd-x64": "0.21.5", "@esbuild/openbsd-x64": "0.21.5", "@esbuild/sunos-x64": "0.21.5", "@esbuild/win32-arm64": "0.21.5", "@esbuild/win32-ia32": "0.21.5", "@esbuild/win32-x64": "0.21.5" }, "bin": "bin/esbuild" }, "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw=="], + + "vite-node/debug": ["debug@4.4.3", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/debug/-/debug-4.4.3.tgz", { "dependencies": { "ms": "^2.1.3" } }, "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA=="], + + "vitest/debug": ["debug@4.4.3", "https://europe-west4-npm.pkg.dev/lovable-core-prod/sandbox-npm-cache/debug/-/debug-4.4.3.tgz", { "dependencies": { "ms": "^2.1.3" } }, "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA=="], + + "wrap-ansi/ansi-styles": ["ansi-styles@6.2.1", "", {}, "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="], + + "wrap-ansi-cjs/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], + + "wrap-ansi-cjs/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], + + "@typescript-eslint/typescript-estree/minimatch/brace-expansion": ["brace-expansion@2.0.2", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="], + + "glob/minimatch/brace-expansion": ["brace-expansion@2.0.2", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="], + + "vite/esbuild/@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.21.5", "", { "os": "aix", "cpu": "ppc64" }, "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ=="], + + "vite/esbuild/@esbuild/android-arm": ["@esbuild/android-arm@0.21.5", "", { "os": "android", "cpu": "arm" }, "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg=="], + + "vite/esbuild/@esbuild/android-arm64": ["@esbuild/android-arm64@0.21.5", "", { "os": "android", "cpu": "arm64" }, "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A=="], + + "vite/esbuild/@esbuild/android-x64": ["@esbuild/android-x64@0.21.5", "", { "os": "android", "cpu": "x64" }, "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA=="], + + "vite/esbuild/@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.21.5", "", { "os": "darwin", "cpu": "arm64" }, "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ=="], + + "vite/esbuild/@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.21.5", "", { "os": "darwin", "cpu": "x64" }, "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw=="], + + "vite/esbuild/@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.21.5", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g=="], + + "vite/esbuild/@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.21.5", "", { "os": "freebsd", "cpu": "x64" }, "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ=="], + + "vite/esbuild/@esbuild/linux-arm": ["@esbuild/linux-arm@0.21.5", "", { "os": "linux", "cpu": "arm" }, "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA=="], + + "vite/esbuild/@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.21.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q=="], + + "vite/esbuild/@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.21.5", "", { "os": "linux", "cpu": "ia32" }, "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg=="], + + "vite/esbuild/@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.21.5", "", { "os": "linux", "cpu": "none" }, "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg=="], + + "vite/esbuild/@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.21.5", "", { "os": "linux", "cpu": "none" }, "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg=="], + + "vite/esbuild/@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.21.5", "", { "os": "linux", "cpu": "ppc64" }, "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w=="], + + "vite/esbuild/@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.21.5", "", { "os": "linux", "cpu": "none" }, "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA=="], + + "vite/esbuild/@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.21.5", "", { "os": "linux", "cpu": "s390x" }, "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A=="], + + "vite/esbuild/@esbuild/linux-x64": ["@esbuild/linux-x64@0.21.5", "", { "os": "linux", "cpu": "x64" }, "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ=="], + + "vite/esbuild/@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.21.5", "", { "os": "none", "cpu": "x64" }, "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg=="], + + "vite/esbuild/@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.21.5", "", { "os": "openbsd", "cpu": "x64" }, "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow=="], + + "vite/esbuild/@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.21.5", "", { "os": "sunos", "cpu": "x64" }, "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg=="], + + "vite/esbuild/@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.21.5", "", { "os": "win32", "cpu": "arm64" }, "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A=="], + + "vite/esbuild/@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.21.5", "", { "os": "win32", "cpu": "ia32" }, "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA=="], + + "vite/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.21.5", "", { "os": "win32", "cpu": "x64" }, "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw=="], + + "wrap-ansi-cjs/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], + } +} diff --git a/bun.lockb b/bun.lockb new file mode 100755 index 0000000..5d9d33a Binary files /dev/null and b/bun.lockb differ diff --git a/components.json b/components.json new file mode 100644 index 0000000..62e1011 --- /dev/null +++ b/components.json @@ -0,0 +1,20 @@ +{ + "$schema": "https://ui.shadcn.com/schema.json", + "style": "default", + "rsc": false, + "tsx": true, + "tailwind": { + "config": "tailwind.config.ts", + "css": "src/index.css", + "baseColor": "slate", + "cssVariables": true, + "prefix": "" + }, + "aliases": { + "components": "@/components", + "utils": "@/lib/utils", + "ui": "@/components/ui", + "lib": "@/lib", + "hooks": "@/hooks" + } +} diff --git a/docs/04-AI-Stack-Report.md b/docs/04-AI-Stack-Report.md new file mode 100644 index 0000000..2728ca5 --- /dev/null +++ b/docs/04-AI-Stack-Report.md @@ -0,0 +1,633 @@ +# EnCoach - AI Stack Technical Report + +**Analysis Date:** March 8, 2026 + +--- + +## Table of Contents + +1. [AI Stack Overview](#1-ai-stack-overview) +2. [OpenAI GPT (Content Generation & Grading)](#2-openai-gpt--content-generation--grading) +3. [OpenAI Whisper (Speech-to-Text)](#3-openai-whisper--speech-to-text) +4. [AWS Polly (Text-to-Speech)](#4-aws-polly--text-to-speech) +5. [FAISS + Sentence Transformers (RAG Training Tips)](#5-faiss--sentence-transformers--rag-training-tips) +6. [ELAI (AI Avatar Video Generation)](#6-elai--ai-avatar-video-generation) +7. [GPTZero (AI Writing Detection)](#7-gptzero--ai-writing-detection) +8. [End-to-End Data Flows](#8-end-to-end-data-flows) +9. [Frontend AI Integration Points](#9-frontend-ai-integration-points) +10. [Environment Variables & Configuration](#10-environment-variables--configuration) + +--- + +## 1. AI Stack Overview + +The EnCoach platform uses **6 AI/ML services** working together to power automated IELTS exam generation, grading, and personalized training. + +``` +┌─────────────────────────────────────────────────────────┐ +│ Frontend (Next.js) │ +│ ExamEditor, ExamPage, Training, AIDetection components │ +└────────────────────────┬────────────────────────────────┘ + │ HTTP (JWT) + ▼ +┌─────────────────────────────────────────────────────────┐ +│ Backend (FastAPI) │ +│ │ +│ ┌──────────┐ ┌──────────┐ ┌──────────┐ │ +│ │ OpenAI │ │ Whisper │ │ AWS Polly│ │ +│ │ GPT-4o │ │ (local) │ │ (cloud) │ │ +│ │ GPT-3.5 │ │ base │ │ neural │ │ +│ └────┬─────┘ └────┬─────┘ └────┬─────┘ │ +│ │ │ │ │ +│ Content Gen Transcription TTS Audio │ +│ Grading Speaking eval Listening MP3s │ +│ Evaluation │ +│ │ +│ ┌──────────┐ ┌──────────┐ ┌──────────┐ │ +│ │ FAISS + │ │ ELAI │ │ GPTZero │ │ +│ │ SentTrans│ │ (cloud) │ │ (cloud) │ │ +│ │ (local) │ │ avatars │ │ detect │ │ +│ └────┬─────┘ └────┬─────┘ └────┬─────┘ │ +│ │ │ │ │ +│ RAG Tips Avatar Videos AI Detection │ +│ Training Speaking Writing eval │ +│ │ +└─────────────────────────────────────────────────────────┘ +``` + +| Service | Type | Purpose | Model/Version | +|---|---|---|---| +| **OpenAI GPT** | Cloud API | Content generation, grading, evaluation | `gpt-4o`, `gpt-3.5-turbo` | +| **OpenAI Whisper** | Local (self-hosted) | Speech-to-text transcription | `base` (~1 GB, 4 instances) | +| **AWS Polly** | Cloud API | Text-to-speech for listening | Neural engine, 11 voices | +| **FAISS + Sentence Transformers** | Local (self-hosted) | RAG-based training tips | `all-MiniLM-L6-v2` + `IndexFlatL2` | +| **ELAI** | Cloud API | AI avatar video generation | ElevenLabs/Azure voices | +| **GPTZero** | Cloud API | AI-generated text detection | v2/predict/text | + +--- + +## 2. OpenAI GPT — Content Generation & Grading + +### 2.1 Configuration + +| Setting | Value | +|---|---| +| **Default Model** | `gpt-4o` | +| **Secondary Model** | `gpt-3.5-turbo` | +| **Max Tokens** | 4,097 (300 reserved) | +| **Response Format** | `json_object` | +| **Retry Limit** | 2 (on blacklist or missing fields) | +| **Content Filter** | Blacklisted words (religious, sexual, political terms) | + +**Temperature settings:** + +| Context | Temperature | Behavior | +|---|---|---| +| Grading | 0.1 | Near-deterministic, consistent evaluation | +| Tips / Summaries | 0.2 | Low creativity, factual output | +| Content Generation | 0.7 | Higher creativity for passages and tasks | + +### 2.2 Content Generation + +GPT generates all IELTS exam content. Each module has specific prompt templates: + +#### Reading Module +- **Model:** `gpt-4o`, temperature 0.7 +- **Generates:** Passages with title and text body +- **Difficulty scaling:** + - Passage 1: easy + - Passage 2: hard + - Passage 3: very hard +- **Exercise types generated:** Fill in the blanks, True/False/Not Given, Matching headings, Multiple choice +- **Prompt pattern:** System prompt defines JSON schema → User prompt specifies passage difficulty, topic, and word count + +#### Listening Module +- **Model:** `gpt-4o`, temperature 0.7 +- **Generates:** Conversation scripts and monologues +- **Output format:** + - Conversations: `{"conversation": [{"name", "gender", "text"}]}` — 2 or 4 speakers + - Monologues: `{"monologue": "..."}` — social or academic context +- **Exercise types generated:** Same as reading (fill blanks, T/F/NG, matching, MC) + +#### Writing Module +- **Task 1 (General):** Letter prompts — `gpt-3.5-turbo` +- **Task 1 (Academic):** Image-based prompts — `gpt-4o` +- **Task 2 (Essay):** Essay prompts — `gpt-4o` + +#### Speaking Module +- **Model:** `gpt-4o`, temperature 0.7 +- **Part 1:** 5 questions across 2 topics +- **Part 2:** 1 question + 3 follow-up prompts +- **Part 3:** 5 discussion questions + +#### Level Test +- **Generates:** Multiple choice questions at varying difficulty levels +- **Supports:** Standard level, UTAS format, custom levels + +### 2.3 Grading / Evaluation + +GPT evaluates student answers using IELTS band scoring criteria: + +#### Writing Grading +- **Model:** `gpt-4o`, temperature 0.1 (Task 1) / 0.7 (Task 2) +- **Runs in parallel:** Evaluation + Perfect Answer + Spelling Fix + GPTZero +- **Output JSON:** + ```json + { + "comment": "Detailed commentary...", + "overall": 6.5, + "task_response": { + "Task Achievement": { "score": 7, "comment": "..." }, + "Coherence and Cohesion": { "score": 6, "comment": "..." }, + "Lexical Resource": { "score": 7, "comment": "..." }, + "Grammatical Range and Accuracy": { "score": 6, "comment": "..." } + } + } + ``` +- **Perfect Answer:** GPT generates an ideal answer for comparison +- **Spelling Fix:** `gpt-3.5-turbo` at temperature 0.2 corrects transcription errors + +#### Speaking Grading +- **Flow:** Audio → Whisper transcription → GPT-4o grading +- **Criteria:** Fluency & Coherence, Lexical Resource, Grammar, Pronunciation +- **Perfect Answers:** `gpt-4o` (Part 1), `gpt-3.5-turbo` (Parts 2/3) + +#### Exam Summary +- **Model:** `gpt-3.5-turbo`, temperature 0.2 +- **Uses:** OpenAI function calling (`save_evaluation_and_suggestions`) +- **Output:** Overall evaluation, suggestions, bullet points + +### 2.4 Other GPT Uses +- **Training tips selection:** GPT selects relevant tips from FAISS results +- **Whisper overlap fix:** GPT-4o merges overlapping transcription segments +- **Short answer grading:** Grades fill-in-the-blank and short text answers + +--- + +## 3. OpenAI Whisper — Speech-to-Text + +### 3.1 Configuration + +| Setting | Value | +|---|---| +| **Model** | `base` (~1 GB) | +| **Instances** | 4 (round-robin) | +| **Loading** | `in_memory=True` | +| **Concurrency** | `ThreadPoolExecutor` with 4 workers | +| **Language** | English | +| **Precision** | `fp16=False` | + +### 3.2 How It Works + +Whisper runs **locally** on the Cloud Run container (not via OpenAI's API). Four model instances are loaded into memory at startup and assigned to workers via round-robin. + +**Processing pipeline:** + +``` +Audio Input + │ + ▼ +Resample to 16 kHz mono float32 (librosa) + │ + ▼ +Split into 30-second chunks (1/4 overlap) + │ + ▼ +Transcribe each chunk (Whisper base model) + │ + ▼ +Concatenate transcriptions + │ + ▼ +Fix overlapping text (GPT-4o removes duplicated words) + │ + ▼ +Final transcript +``` + +**Retry:** 3 attempts via `tenacity` library. + +### 3.3 Where It's Connected + +| Feature | Connection | +|---|---| +| **Speaking Grading** | Student audio → Whisper → transcript → GPT grading | +| **Audio Transcription** | Uploaded audio → Whisper → listening script for exam editor | + +--- + +## 4. AWS Polly — Text-to-Speech + +### 4.1 Configuration + +| Setting | Value | +|---|---| +| **Engine** | Neural | +| **Output Format** | MP3 | +| **Region** | `eu-west-1` | +| **Max Chunk Size** | 3,000 characters (split at sentence boundaries) | + +### 4.2 Available Voices + +| Voice | Language/Accent | +|---|---| +| Danielle | American English | +| Gregory | American English | +| Kevin | American English | +| Ruth | American English | +| Stephen | American English | +| Arthur | British English | +| Olivia | Australian English | +| Ayanda | South African English | +| Aria | New Zealand English | +| Kajal | Indian English | +| Niamh | Irish English | + +### 4.3 How It Works + +**Listening exam audio generation:** + +``` +Generated Dialog/Monologue (from GPT) + │ + ▼ +Assign voices to speakers (random for monologue, per-speaker for dialog) + │ + ▼ +Split text into ≤3000 char chunks at sentence boundaries + │ + ▼ +AWS Polly Neural TTS → MP3 audio bytes + │ + ▼ +Concatenate audio segments + │ + ▼ +Upload to Firebase Storage + │ + ▼ +Return download URL +``` + +### 4.4 Where It's Connected + +| Feature | Connection | +|---|---| +| **Listening Exam Audio** | GPT script → Polly TTS → MP3 → Firebase Storage → student playback | +| **Listening Instructions** | "Recording has now finished" scripts → Stephen voice → MP3 | + +--- + +## 5. FAISS + Sentence Transformers — RAG Training Tips + +### 5.1 Configuration + +| Setting | Value | +|---|---| +| **Embeddings Model** | `all-MiniLM-L6-v2` (Sentence Transformers) | +| **Index Type** | `faiss.IndexFlatL2` (exact L2 search) | +| **Top-K** | 5 results per query | +| **Data Source** | `pathways_2_rw_with_ids.json` | + +### 5.2 Knowledge Base Categories + +| Category | Index File | +|---|---| +| `ct_focus` | `./faiss/ct_focus_tips_index.faiss` | +| `language_for_writing` | `./faiss/language_for_writing_tips_index.faiss` | +| `reading_skill` | `./faiss/reading_skill_tips_index.faiss` | +| `strategy` | `./faiss/strategy_tips_index.faiss` | +| `word_link` | `./faiss/word_link_tips_index.faiss` | +| `word_partners` | `./faiss/word_partners_tips_index.faiss` | +| `writing_skill` | `./faiss/writing_skill_tips_index.faiss` | + +**Metadata:** `./faiss/tips_metadata.pkl` (pickle file with tip IDs and text) + +### 5.3 How RAG Works + +``` +Student Exam Performance + │ + ▼ +GPT analyzes performance → generates queries (text + category) + │ + ▼ +Sentence Transformers encodes query → embedding vector + │ + ▼ +FAISS L2 search → top 5 matching tips per category + │ + ▼ +GPT selects most relevant tips from retrieved results + │ + ▼ +Tips stored in MongoDB and displayed to student +``` + +### 5.4 Where It's Connected + +| Feature | Connection | +|---|---| +| **Training Module** | After exam → analyze weak areas → retrieve personalized tips → display training content | +| **Walkthrough** | Tips linked to specific reading/writing skills for guided learning | + +--- + +## 6. ELAI — AI Avatar Video Generation + +### 6.1 Configuration + +| Setting | Value | +|---|---| +| **API Endpoint** | `https://apis.elai.io/api/v1/videos` | +| **Auth** | Bearer token (`ELAI_TOKEN`) | +| **Animation** | `fade_in` | +| **Language** | English | + +### 6.2 Available Avatars + +| Avatar | Gender | Voice Provider | +|---|---|---| +| Gia | Female | ElevenLabs | +| Vadim | Male | Azure | +| Orhan | Male | ElevenLabs | +| Flora | Female | Azure | +| Scarlett | Female | ElevenLabs | +| Parker | Male | Azure | +| Ethan | Male | ElevenLabs | + +Each avatar has a unique `avatar_code`, `avatar_url`, `avatar_canvas` dimensions, `voice_id`, and `voice_provider`. + +### 6.3 How It Works + +``` +Speaking Task Text (from GPT) + │ + ▼ +Select Avatar (user choice from available list) + │ + ▼ +Build video config (slide, avatar, canvas, logo, voice settings) + │ + ▼ +POST to ELAI API → create video + │ + ▼ +POST render request → start processing + │ + ▼ +Poll GET status every 10 seconds until "ready" + │ + ▼ +Return video URL for playback +``` + +### 6.4 Where It's Connected + +| Feature | Connection | +|---|---| +| **Speaking Exam** | AI avatar presents speaking questions via video | +| **Exam Editor** | Teachers generate speaking videos while creating exams | + +--- + +## 7. GPTZero — AI Writing Detection + +### 7.1 Configuration + +| Setting | Value | +|---|---| +| **API Endpoint** | `https://api.gptzero.me/v2/predict/text` | +| **Auth** | `x-api-key` header | +| **Multilingual** | `false` | + +### 7.2 How It Works + +``` +Student's Writing Submission + │ + ▼ +POST to GPTZero API with document text + │ + ▼ +Response: predicted_class, confidence, per-sentence AI probability + │ + ▼ +Returned as part of writing evaluation + │ + ▼ +Frontend displays AI Detection component +``` + +**Response fields:** +- `predicted_class`: `ai`, `mixed`, or `human` +- `confidence_category`: confidence level +- `class_probabilities`: probability distribution +- `sentences`: per-sentence analysis with `highlight_sentence_for_ai` flag + +### 7.3 Where It's Connected + +| Feature | Connection | +|---|---| +| **Writing Grading** | Runs in parallel with GPT evaluation, perfect answer, and spelling fix | +| **Frontend UI** | `AIDetection` component displays results with radial progress, segmented bars, and highlighted AI-generated sentences | + +--- + +## 8. End-to-End Data Flows + +### 8.1 Exam Generation Flow + +``` +Teacher clicks "Generate" in Exam Editor + │ + ▼ +Frontend: POST /api/exam/generate/{module}/{sectionId} + │ + ▼ +Next.js API Route: proxies to BACKEND_URL/{module}/... + │ + ▼ +FastAPI Controller → Service + │ + ├── Reading: GPT-4o generates passage + exercises + ├── Listening: GPT-4o generates script → Polly TTS → MP3 → Firebase + ├── Writing: GPT-4o/3.5 generates task prompt + └── Speaking: GPT-4o generates questions → ELAI creates avatar video + │ + ▼ +Response with generated content → stored in exam editor state +``` + +### 8.2 Writing Grading Flow + +``` +Student submits writing answer + │ + ▼ +Frontend: POST /api/evaluate/writing + │ + ▼ +Next.js API: inserts pending evaluation in MongoDB → proxies to backend + │ + ▼ +FastAPI runs 4 tasks IN PARALLEL: + ├── GPT-4o: Grade against IELTS band criteria (temp 0.1) + ├── GPT-4o: Generate perfect answer for comparison + ├── GPT-3.5: Fix spelling/transcription errors (temp 0.2) + └── GPTZero: Detect AI-generated content + │ + ▼ +Combined result stored in MongoDB evaluation collection + │ + ▼ +Frontend polls /api/evaluate/status until complete + │ + ▼ +UI shows: band scores, detailed comments, perfect answer, AI detection +``` + +### 8.3 Speaking Grading Flow + +``` +Student records audio response + │ + ▼ +Frontend: POST /api/evaluate/speaking (FormData with audio) + │ + ▼ +Next.js API: inserts pending evaluation → proxies to backend + │ + ▼ +FastAPI pipeline: + │ + ▼ +Whisper (local): Transcribe audio → text + │ + ▼ +GPT-4o: Grade transcript against IELTS speaking criteria (temp 0.1) + │ + ▼ +GPT-4o/3.5: Generate perfect answer + │ + ▼ +Result stored in MongoDB + │ + ▼ +Frontend polls and displays scores + transcript + perfect answer +``` + +### 8.4 Training / Personalized Tips Flow + +``` +Student completes an exam + │ + ▼ +Frontend: POST /api/training + │ + ▼ +Backend analyzes exam performance with GPT + │ + ▼ +GPT generates search queries + categories + │ + ▼ +Sentence Transformers encodes queries → FAISS L2 search + │ + ▼ +Top 5 tips per category retrieved + │ + ▼ +GPT selects most relevant tips + │ + ▼ +Training content stored in MongoDB → displayed to student +``` + +--- + +## 9. Frontend AI Integration Points + +### 9.1 API Routes (Next.js → FastAPI) + +| Frontend Route | Backend Route | AI Services Used | +|---|---|---| +| `POST /api/evaluate/writing` | `BACKEND_URL/grade/writing/{task}` | GPT-4o, GPT-3.5, GPTZero | +| `POST /api/evaluate/speaking` | `BACKEND_URL/grade/speaking/{task}` | Whisper, GPT-4o, GPT-3.5 | +| `GET /api/exam/generate/reading/{id}` | `BACKEND_URL/reading/{passage}` | GPT-4o | +| `GET /api/exam/generate/listening/{id}` | `BACKEND_URL/listening/{section}` | GPT-4o | +| `GET /api/exam/generate/writing/{id}` | `BACKEND_URL/writing/{task}` | GPT-4o / GPT-3.5 | +| `GET /api/exam/generate/speaking/{id}` | `BACKEND_URL/speaking/{task}` | GPT-4o | +| `POST /api/exam/media/listening` | `BACKEND_URL/listening/media` | AWS Polly | +| `POST /api/exam/media/speaking` | `BACKEND_URL/speaking/media` | ELAI | +| `POST /api/transcribe` | `BACKEND_URL/listening/transcribe` | Whisper | +| `POST /api/training` | `BACKEND_URL/training/` | GPT, FAISS, Sentence Transformers | +| `GET /api/exam/avatars` | `BACKEND_URL/speaking/avatars` | ELAI | + +### 9.2 Key UI Components + +| Component | Purpose | +|---|---| +| `AIDetection.tsx` | Displays AI detection results (radial progress, highlighted sentences) | +| `GenerateBtn.tsx` | Brain icon button with spinner for content generation | +| `generateVideos.ts` | Manages ELAI video creation + polling loop | +| `ExamPage.tsx` | Triggers writing/speaking evaluation + polls for results | +| `useEvaluationPolling.tsx` | Hook that polls evaluation status until grading completes | +| `generation.tsx` | Page for generating exams (gated by permissions) | + +### 9.3 Permissions + +| Permission | Controls | +|---|---| +| `generate_reading` | Reading passage generation | +| `generate_listening` | Listening script generation | +| `generate_writing` | Writing prompt generation | +| `generate_speaking` | Speaking task generation | +| `generate_level` | Level test generation | + +--- + +## 10. Environment Variables & Configuration + +### 10.1 Required API Keys + +| Variable | Service | Where Used | +|---|---|---| +| `OPENAI_API_KEY` | OpenAI GPT-4o / GPT-3.5 | Content generation, grading, evaluation | +| `AWS_ACCESS_KEY_ID` | AWS Polly | Text-to-speech | +| `AWS_SECRET_ACCESS_KEY` | AWS Polly | Text-to-speech | +| `ELAI_TOKEN` | ELAI | Avatar video generation | +| `GPT_ZERO_API_KEY` | GPTZero | AI writing detection | + +### 10.2 Backend Service Wiring (Dependency Injection) + +``` +DI Container +├── llm → OpenAI(client=AsyncOpenAI) +├── tts → AWSPolly(client=polly_client) +├── stt → OpenAIWhisper(model="base", num_models=4) +├── vid_gen → ELAI(client=http_client, token, avatars, conf) +├── ai_detector → GPTZero(client=http_client, key) +├── training_kb → TrainingContentKnowledgeBase(embeddings=SentenceTransformer) +│ +├── Controllers +│ ├── ReadingController → uses llm +│ ├── ListeningController → uses llm, tts +│ ├── WritingController → uses llm, ai_detector +│ ├── SpeakingController → uses llm, stt, vid_gen +│ ├── GradeController → uses llm, stt, ai_detector +│ ├── LevelController → uses llm +│ └── TrainingController → uses llm, training_kb +``` + +### 10.3 Cost Drivers + +| Service | Cost Model | Usage Pattern | +|---|---|---| +| **OpenAI GPT-4o** | Per token (input + output) | Every generation, every grading — highest cost | +| **OpenAI GPT-3.5** | Per token (cheaper) | Summaries, spelling, some writing tasks | +| **AWS Polly** | Per character (Neural) | Every listening exam audio | +| **ELAI** | Per video minute | Every speaking exam video | +| **GPTZero** | Per API call | Every writing grading | +| **Whisper (local)** | Compute only (no API cost) | Every speaking grading + transcription | +| **FAISS (local)** | Compute only (no API cost) | Every training session | diff --git a/docs/ARCHITECTURE.md b/docs/ARCHITECTURE.md new file mode 100644 index 0000000..07615f1 --- /dev/null +++ b/docs/ARCHITECTURE.md @@ -0,0 +1,344 @@ +# EnCoach Platform -- Architecture & Connectivity Document + +## Overview + +EnCoach is an **IELTS preparation and English proficiency testing platform** composed of four repositories that work together as a distributed system. The platform supports exam taking, AI-powered grading, training content, multi-tenant entity management, payments, and a public-facing marketing website. + +--- + +## Repositories at a Glance + +- **[ielts-ui](ielts-ui)** -- Full-stack Next.js 14 app. The main platform for students, teachers, admins, and corporate users. Serves both the browser UI and internal API routes. +- **[ielts-be](ielts-be)** -- Python/FastAPI backend. Handles AI/ML workloads: exam generation, grading (writing/speaking), audio transcription, TTS, and training content. +- **[encoachcms](encoachcms)** -- Strapi v4 headless CMS. Manages bilingual (EN/AR) marketing content for the landing page. +- **[encoach-landing-page](encoach-landing-page)** -- Next.js 13 marketing website. Consumes CMS content and links users into the main platform. + +--- + +## System Architecture Diagram + +```mermaid +graph TB + subgraph publicFacing ["Public-Facing Layer"] + LP["encoach-landing-page
(Next.js 13)"] + CMS["encoachcms
(Strapi v4)"] + end + + subgraph platformCore ["Platform Core"] + UI["ielts-ui
(Next.js 14 + API Routes)"] + BE["ielts-be
(FastAPI / Python)"] + end + + subgraph dataStores ["Data Stores"] + MongoDB["MongoDB"] + MySQL["MySQL
(CMS)"] + FirebaseAuth["Firebase Auth"] + FirebaseStorage["Firebase Storage"] + GCS["Google Cloud Storage
(CMS uploads)"] + end + + subgraph externalServices ["External Services"] + OpenAI["OpenAI GPT-4o"] + Whisper["OpenAI Whisper
(local)"] + Polly["AWS Polly
(TTS)"] + ELAI["ELAI
(AI Video)"] + GPTZero["GPTZero
(AI Detection)"] + Stripe["Stripe"] + PayPal["PayPal"] + Paymob["Paymob"] + end + + LP -->|"REST + Bearer token"| CMS + LP -->|"GET /api/packages, POST /api/tickets"| UI + LP -->|"Links to platform.encoach.com"| UI + + CMS --> MySQL + CMS --> GCS + + UI --> MongoDB + UI --> FirebaseAuth + UI -->|"Proxy: Bearer JWT"| BE + + BE --> MongoDB + BE --> FirebaseAuth + BE --> FirebaseStorage + BE --> OpenAI + BE --> Whisper + BE --> Polly + BE --> ELAI + BE --> GPTZero + + UI --> Stripe + UI --> PayPal + UI --> Paymob + LP --> Stripe +``` + +--- + +## 1. ielts-ui (Main Platform) + +**Tech:** Next.js 14, React 18, TypeScript, Tailwind CSS + DaisyUI, Zustand, SWR, iron-session, Firebase Auth, MongoDB (direct) + +**Role:** The central application. Serves the browser UI and acts as a **BFF (Backend-for-Frontend)** via Next.js API routes. It directly queries MongoDB for user/entity/group data and proxies AI-related requests to `ielts-be`. + +### Key Modules + +| Module | Description | +|--------|-------------| +| **Auth** | Firebase email/password auth + iron-session cookies. SSR-protected via `withIronSessionSsr`. | +| **Dashboards** | Role-based: student, teacher, admin, corporate, mastercorporate, developer, agent. | +| **Exams** | Taking exams (Reading, Listening, Writing, Speaking, Level). Zustand store tracks session, progress, solutions. | +| **Exam Editor** | Create/edit exams with dedicated components under `src/components/ExamEditor/`. | +| **Training** | Training content consumed from `ielts-be`. | +| **Grading** | Writing and speaking grading proxied to `ielts-be` as background tasks; UI polls for results. | +| **Entities** | Multi-tenant entity management (schools, organizations). | +| **Classrooms** | Classroom and group management for teachers. | +| **Assignments** | Assign exams to students with deadlines. | +| **Stats** | Performance statistics and PDF report generation (via `@react-pdf/renderer`). | +| **Payments** | Stripe, PayPal, Paymob webhook handlers in API routes. | +| **Tickets** | Support ticket system. | +| **User Mgmt** | Bulk import, permissions, role-based access. | + +### How it Connects to ielts-be + +API routes in `src/pages/api/` proxy to `BACKEND_URL` with `Authorization: Bearer ${BACKEND_JWT}`: + +| UI API Route | Backend Endpoint | +|--------------|------------------| +| `/api/evaluate/writing` | `BACKEND_URL/grade/writing/{task}` | +| `/api/evaluate/speaking` | `BACKEND_URL/grade/speaking/{task}` | +| `/api/transcribe` | `BACKEND_URL/listening/transcribe` | +| `/api/training` | `BACKEND_URL/training/` | +| `/api/exam/upload` | `BACKEND_URL/{endpoint}` | +| `/api/exam/media/*` | `BACKEND_URL/{endpoint}/media` | +| `/api/exam/generate/*` | `BACKEND_URL/{endpoint}` | +| `/api/exam/avatars` | `BACKEND_URL/speaking/avatars` | +| `/api/exam/[module]/import` | `BACKEND_URL/{module}/import` | +| `/api/stats/[id]/[export]/pdf` | `BACKEND_URL/grade/summary` | +| `/api/batch_users` | `BACKEND_URL/user/import` | + +### How it Connects to the Landing Page + +Exposes public-ish API routes consumed by the landing page: + +- `GET /api/packages` -- subscription packages (CORS-enabled) +- `POST /api/tickets` -- contact form submissions (CORS-enabled) +- `GET /api/users/agents` -- list sales agents (CORS-enabled) + +--- + +## 2. ielts-be (AI/ML Backend) + +**Tech:** Python 3.11, FastAPI, Motor (async MongoDB), Poetry, dependency-injector, OpenAI, Whisper, AWS Polly, ELAI, FAISS + +**Role:** Handles all AI/ML-intensive operations -- exam content generation, grading, transcription, text-to-speech, AI video, and training recommendations. Runs as a standalone service on port 8000. + +### Architecture Layers + +``` +API Routes --> Controllers --> Services --> Repositories + | + Third-Party Services + (OpenAI, Whisper, Polly, ELAI, GPTZero) +``` + +Wired together via `dependency-injector`. + +### Key Capabilities + +| Capability | Implementation | +|------------|----------------| +| **Writing Grading** | GPT-4o evaluates against IELTS rubric (Task Achievement, Coherence, Lexical Resource, Grammar). GPTZero checks for AI-generated text. Runs as background task; results stored in `evaluation` collection. | +| **Speaking Grading** | Whisper transcribes audio, then GPT grades (Fluency, Lexical, Grammar, Pronunciation). Parts 1/2/3 supported. | +| **Exam Generation** | GPT generates reading passages, listening dialogs, writing prompts, speaking tasks, and level-test exercises. | +| **Audio (TTS)** | AWS Polly synthesizes MP3 for listening sections. | +| **Video** | ELAI generates AI avatar videos for speaking prompts. | +| **Transcription** | Whisper (local model) for speech-to-text. | +| **Training** | FAISS + sentence-transformers for semantic search over tips; GPT for personalized recommendations. | +| **Short Answer Grading** | GPT-4o for reading/listening fill-in-the-blank answers. | + +### Authentication + +All endpoints (except `/api/healthcheck`) require a Bearer JWT token validated with `JWT_SECRET_KEY` (HS256). The `ielts-ui` sends this as `BACKEND_JWT`. + +--- + +## 3. encoachcms (Content Management) + +**Tech:** Strapi v4.21, Node.js 18, MySQL (prod) / SQLite (dev), Google Cloud Storage for uploads + +**Role:** Headless CMS for managing the marketing website content. Editors create/update bilingual (EN/AR) content via the Strapi admin panel at `/admin`. + +### Content Types (all Single Types) + +`home`, `about`, `services`, `contact`, `footer`, `nav-bar`, `history`, `price`, `terms-and-conditions`, `privacy-policy`, `country-managers-contact` + +### How it Connects + +- Exposes REST API at `STRAPI_URL/api/{content-type}/?populate=deep&locale={en|ar}` +- Authenticated via API token (`STRAPI_TOKEN`) +- **Only consumed by `encoach-landing-page`** -- neither `ielts-ui` nor `ielts-be` use it + +### Plugins + +- `strapi-plugin-populate-deep` -- deep relation population +- `strapi-plugin-import-export-entries` -- content import/export +- `strapi-plugin-publisher` -- scheduled publishing +- `@strapi/plugin-i18n` -- internationalization +- `@strapi/plugin-documentation` -- OpenAPI docs + +--- + +## 4. encoach-landing-page (Marketing Website) + +**Tech:** Next.js 13 (App Router), TypeScript, Tailwind CSS + DaisyUI, Stripe + +**Role:** Public marketing website at `encoach.com`. Bilingual (EN at `/`, AR at `/ar/`). Fetches content from the CMS and links users into the main platform. + +### Pages + +`/` (Home), `/about`, `/services`, `/price`, `/history`, `/contact`, `/terms`, `/privacy-policy`, `/contacts/[country]`, `/success` -- all mirrored under `/ar/` for Arabic. + +### How it Connects + +| Target | Connection | +|--------|------------| +| **encoachcms** | `getData()` fetches `STRAPI_URL/api/{page}/?populate=deep&locale={locale}` with Bearer token | +| **ielts-ui** | `GET /api/packages` for pricing, `POST /api/tickets` for contact form, `GET /api/users/agents` for sales agents | +| **Stripe** | Checkout flow; `/api/success` route validates session and POSTs to `WEBHOOK_URL` | +| **Platform links** | Buttons link to `platform.encoach.com/register`, `platform.encoach.com/official-exam` | + +--- + +## Data Flow Diagrams + +### Authentication Flow + +```mermaid +sequenceDiagram + participant Browser + participant UI as ielts-ui + participant Firebase as Firebase Auth + participant Mongo as MongoDB + + Browser->>UI: POST /api/login (email, password) + UI->>Firebase: signInWithEmailAndPassword + Firebase-->>UI: Firebase UID + token + UI->>Mongo: Find user by Firebase UID + Mongo-->>UI: User document + UI->>UI: Save to iron-session cookie + UI-->>Browser: Set-Cookie (eCrop/ielts) + Browser->>UI: Subsequent requests with cookie + UI->>UI: withIronSessionSsr validates cookie +``` + +### Exam Grading Flow (Writing) + +```mermaid +sequenceDiagram + participant Student + participant UI as ielts-ui API Route + participant BE as ielts-be + participant GPT as OpenAI GPT-4o + participant GPTZero as GPTZero + participant Mongo as MongoDB + + Student->>UI: Submit writing answer + UI->>BE: POST /api/exam/grade/writing/{task} + BE->>BE: Start background task + BE-->>UI: 200 OK (accepted) + UI-->>Student: "Grading in progress" + + par Parallel Grading + BE->>GPT: Evaluate against IELTS rubric + GPT-->>BE: Scores + feedback + and AI Detection + BE->>GPTZero: Check for AI content + GPTZero-->>BE: AI probability + end + + BE->>Mongo: Save evaluation result + Student->>UI: Poll for result + UI->>Mongo: Query evaluation + Mongo-->>UI: Grading result + UI-->>Student: Display scores + feedback +``` + +### Landing Page Content Flow + +```mermaid +sequenceDiagram + participant Visitor + participant LP as encoach-landing-page + participant CMS as encoachcms (Strapi) + participant Platform as ielts-ui + + Visitor->>LP: Visit encoach.com + LP->>CMS: GET /api/home/?populate=deep&locale=en + CMS-->>LP: Home content (JSON) + LP-->>Visitor: Rendered page + + Visitor->>LP: View pricing + LP->>CMS: GET /api/price/?populate=deep&locale=en + LP->>Platform: GET /api/packages + Platform-->>LP: Package list + LP-->>Visitor: Pricing page with packages + + Visitor->>LP: Submit contact form + LP->>Platform: POST /api/tickets + Platform-->>LP: Ticket created +``` + +--- + +## Shared Infrastructure + +| Resource | Used By | Details | +|----------|---------|---------| +| **MongoDB** | ielts-ui, ielts-be | Same database (`MONGODB_URI` / `MONGODB_DB`). UI reads users, groups, stats directly. BE reads/writes evaluations, training. | +| **Firebase Auth** | ielts-ui, ielts-be | Shared Firebase project. UI handles login/signup; BE imports users. | +| **Firebase Storage** | ielts-be | Stores exam media (audio, images). | +| **Google Cloud Storage** | encoachcms | CMS file uploads (images, media). | + +--- + +## Deployment Topology + +| Service | Port | URL (Production) | +|---------|------|-------------------| +| ielts-ui | 3000 | `platform.encoach.com` | +| ielts-be | 8000 | Internal (proxied by ielts-ui) | +| encoachcms | 1337 | Internal (consumed by landing page) | +| encoach-landing-page | 3000 | `encoach.com` | + +Both Next.js apps use `output: "standalone"` and have Dockerfiles. The BE is not directly exposed to the internet -- it sits behind ielts-ui's API route proxy layer. + +--- + +## User Roles + +| Role | Access | +|------|--------| +| **student** | Take exams, view stats, training, assignments | +| **teacher** | Manage classrooms, assignments, view student performance | +| **admin** | Full platform management, user management, entities | +| **corporate** | Corporate dashboard, bulk operations | +| **mastercorporate** | Multi-entity corporate management | +| **developer** | Developer dashboard, system tools | +| **agent** | Sales agent, visible on landing page | + +--- + +## Key Environment Variables (Cross-Service) + +| Variable | Service | Purpose | +|----------|---------|---------| +| `MONGODB_URI` / `MONGODB_DB` | ielts-ui, ielts-be | Shared MongoDB | +| `BACKEND_URL` | ielts-ui | URL of ielts-be | +| `BACKEND_JWT` / `JWT_SECRET_KEY` | ielts-ui / ielts-be | Shared JWT secret for service-to-service auth | +| `FIREBASE_*` | ielts-ui, ielts-be | Shared Firebase project credentials | +| `STRAPI_URL` / `STRAPI_TOKEN` | encoach-landing-page | CMS connection | +| `STRIPE_KEY` / `STRIPE_SECRET` | ielts-ui, encoach-landing-page | Payment processing | +| `OPENAI_API_KEY` | ielts-be | AI grading and generation | +| `AWS_ACCESS_KEY_ID/SECRET` | ielts-be | AWS Polly TTS | diff --git a/docs/DEVELOPER_FEEDBACK.md b/docs/DEVELOPER_FEEDBACK.md new file mode 100644 index 0000000..010aeab --- /dev/null +++ b/docs/DEVELOPER_FEEDBACK.md @@ -0,0 +1,249 @@ +# EnCoach Odoo 19 -- Developer Feedback + +**Date:** March 11, 2026 +**Status:** ALL ITEMS RESOLVED (March 13, 2026) +**Reference:** ODOO_MIGRATION_SRS_v2.md + +--- + +## Overall Assessment + +The delivery covers approximately **85% of the SRS v2 requirements**. All 15 custom modules are present, the core AI/ML services are well-implemented, data models match the specification, and 67-72 API endpoints are wired up with proper JWT authentication and security groups. The code quality is solid -- clean structure, proper error handling, and good separation of concerns. + +The items below still need to be implemented to reach full SRS compliance. + +--- + +## 1. Payment Integration (Critical -- Not Implemented) + +**SRS Reference:** Section 7 + +All three payment services are currently stubs that return `"not yet implemented"`. The SRS requires full integration with: + +### 1.1 Stripe + +**Files:** `encoach_subscription/services/stripe_service.py` + +Required functionality: +- Install and use the `stripe` Python SDK +- `create_checkout_session()` -- Create a Stripe Checkout Session using `stripe.checkout.Session.create()` with: + - `line_items` from the selected `encoach.package` + - `success_url` and `cancel_url` from the request + - `client_reference_id` = user ID + - `customer_email` = user email + - Apply discount if `discount_code` is provided (validate against `encoach.discount`) +- Return `{ "sessionId": "cs_...", "url": "https://checkout.stripe.com/..." }` +- **Webhook endpoint** (`POST /api/stripe/webhook`): + - Verify signature using `stripe.Webhook.construct_event()` with `STRIPE_WEBHOOK_SECRET` + - Handle `checkout.session.completed` event: + - Find user by `client_reference_id` + - Extend `subscription_expiration` by the package's `duration_days` + - Create `encoach.subscription.payment` record + - For corporate users, propagate subscription to entity members + +### 1.2 PayPal + +**Files:** `encoach_subscription/services/paypal_service.py` + +Required functionality: +- Use PayPal REST API (`httpx` or `requests`) +- Obtain access token from `PAYPAL_ACCESS_TOKEN_URL` using `client_id` + `client_secret` +- `create_order()` -- Create PayPal order via `POST /v2/checkout/orders`: + - `intent: "CAPTURE"` + - `purchase_units` with amount from package (minus discount) + - Return `{ "orderId": "...", "approvalUrl": "https://paypal.com/..." }` +- `capture_order()` -- Capture approved order via `POST /v2/checkout/orders/{id}/capture`: + - On success, extend subscription and create payment record + - Return `{ "ok": true }` + +### 1.3 Paymob + +**Files:** `encoach_subscription/services/paymob_service.py` + +Required functionality: +- Use Paymob API (`httpx` or `requests`) +- `create_intention()` -- Create payment intention: + - Authenticate with `PAYMOB_API_KEY` + - Create order, then payment key + - Return `{ "intentionId": "...", "clientSecret": "..." }` +- `verify_transaction()` -- Verify webhook callback: + - Validate HMAC using `PAYMOB_SECRET` + - On success, extend subscription and create payment record +- **Webhook endpoint** (`POST /api/paymob/webhook`): + - Verify transaction authenticity + - Update subscription on success + +### 1.4 Subscription Extension Logic + +After any successful payment (all providers), the system must: +1. Calculate new expiration: `max(current_expiration, now()) + duration_days` +2. Update `user.subscription_expiration` +3. Create `encoach.subscription.payment` record with provider, amount, transaction ID +4. For corporate users: propagate the new expiration to all entity members + +--- + +## 2. Missing API Endpoints + +**SRS Reference:** Section 4 + +The following endpoints are specified in the SRS but not present in the delivery: + +### 2.1 Exam Variants (add to `encoach_api/controllers/generation.py` or `exams.py`) + +| Endpoint | Method | Description | +|----------|--------|-------------| +| `POST /api/exam/writing//attachment` | POST | Academic writing Task 1 with image upload (multipart form with `file` + `difficulty`). Must send image to GPT-4o vision API for prompt generation. | +| `GET /api/exam/level/` | GET | Return a pre-built level exam (no AI generation) | +| `GET /api/exam/level/utas` | GET | Return a UTAS-format level exam | +| `POST /api/exam/level/import/` | POST | Import level exam from uploaded file | +| `POST /api/exam/level/custom/` | POST | Generate custom level exam from JSON specification | +| `POST /api/exam/reading/import` | POST | Import reading exam from Word/Excel file | +| `POST /api/exam/listening/import` | POST | Import listening exam from file | + +### 2.2 Entity/Role/Permission Management (new controller files needed) + +| Endpoint | Method | Description | +|----------|--------|-------------| +| `GET /api/entities` | GET | List entities (with pagination) | +| `POST /api/entities` | POST | Create entity | +| `PATCH /api/entities/` | PATCH | Update entity | +| `DELETE /api/entities/` | DELETE | Delete entity | +| `GET /api/roles` | GET | List roles (filter by entityID) | +| `POST /api/roles` | POST | Create role | +| `PATCH /api/roles/` | PATCH | Update role | +| `DELETE /api/roles/` | DELETE | Delete role | +| `GET /api/permissions` | GET | List permissions | + +### 2.3 Other Missing Endpoints + +| Endpoint | Method | Description | +|----------|--------|-------------| +| `GET /api/discounts` | GET | List discount codes | +| `POST /api/discounts` | POST | Create discount code | +| `PATCH /api/discounts/` | PATCH | Update discount code | +| `DELETE /api/discounts/` | DELETE | Delete discount code | +| `GET /api/approval-workflows` | GET | List approval workflows | +| `POST /api/approval-workflows` | POST | Create approval workflow | +| `PATCH /api/approval-workflows/` | PATCH | Update approval workflow | +| `DELETE /api/approval-workflows/` | DELETE | Delete approval workflow | + +--- + +## 3. Evaluation Status Endpoint Path + +**SRS Reference:** Section 4.2 + +**Current:** `GET /api/evaluate/status?sessionId=...&exerciseId=...` (query params) +**SRS specifies:** `GET /api/evaluate//` (path params) + +The frontend SRS document (`ODOO_MIGRATION_FRONTEND_SRS.md`) references the path-param version. Please either: +- (A) Change the endpoint to use path params to match the SRS, OR +- (B) Confirm that query params are intentional so we can update the frontend SRS + +--- + +## 4. Record-Level Security Rules (`ir.rule`) + +**SRS Reference:** Section 5 + +The delivery has model-level ACL rules (`ir.model.access.csv`) for each module, which is good. However, record-level security rules (`ir.rule`) are also needed to ensure: + +- **Students** can only read/write their own records (sessions, stats, evaluations, training, tickets) +- **Teachers** can see records for students in their groups/assignments +- **Corporate** users can see records within their entity +- **Admin/Developer** users have unrestricted access + +Example rules needed (add to each module's `security/` directory): + +```xml + + + Students see own stats + + + [('user_id', '=', user.id)] + +``` + +Models that need record rules: +- `encoach.session` -- students see own sessions only +- `encoach.stat` -- students see own stats only +- `encoach.evaluation` -- students see own evaluations only +- `encoach.training` -- students see own training only +- `encoach.ticket` -- students see own tickets, admins see all +- `encoach.assignment` -- students see assignments they're assigned to +- `encoach.exam` -- filtered by access field (public/private/entity) + +--- + +## 5. Whisper Scaling + +**SRS Reference:** Section 6.5 + +**Current:** Single lazy-loaded Whisper model instance in `whisper_service.py` +**SRS specifies:** 4 model instances with `ThreadPoolExecutor(max_workers=4)` for parallel transcription + +Update `encoach_ai_media/services/whisper_service.py` to: +1. Load the configurable number of model instances (from `encoach.whisper_workers` system parameter, default 4) +2. Use `concurrent.futures.ThreadPoolExecutor` to process transcription requests in parallel +3. Round-robin or queue-based assignment of requests to model instances + +This is important for production performance when multiple students submit speaking exams simultaneously. + +--- + +## 6. FAISS Index Type + +**SRS Reference:** Section 6.8 + +**Current:** `faiss.IndexFlatIP` (inner product) +**SRS specifies:** `faiss.IndexFlatL2` (L2/Euclidean distance) + +The current implementation normalizes vectors and uses inner product, which effectively gives cosine similarity. This works correctly, but it's a deviation from the SRS. If the original `ielts-be` training data was built with L2 distance, the results may differ slightly. Please verify which index type the original system used and align accordingly. + +--- + +## 7. Payment Webhook Endpoints + +**SRS Reference:** Section 7 + +In addition to the payment service implementations (Item 1 above), the following webhook controller routes need to be added to `encoach_api/controllers/subscriptions.py`: + +```python +@http.route('/api/stripe/webhook', type='http', auth='public', methods=['POST'], csrf=False, cors='*') +def stripe_webhook(self, **kwargs): + """Handle Stripe webhook events (checkout.session.completed, etc.).""" + ... + +@http.route('/api/paymob/webhook', type='http', auth='public', methods=['POST'], csrf=False, cors='*') +def paymob_webhook(self, **kwargs): + """Handle Paymob transaction callbacks.""" + ... +``` + +These must be `auth='public'` (no JWT) since they're called by external services. + +--- + +## Summary of Action Items + +| # | Item | Priority | Status | +|---|------|----------|--------| +| 1 | Payment integration (Stripe/PayPal/Paymob) | **Critical** | RESOLVED | +| 2 | Missing API endpoints (~20 endpoints) | **High** | RESOLVED | +| 3 | Evaluation status endpoint path alignment | **Medium** | RESOLVED | +| 4 | `ir.rule` record-level security rules | **High** | RESOLVED | +| 5 | Whisper multi-instance scaling | **Medium** | RESOLVED | +| 6 | FAISS index type verification | **Low** | RESOLVED | +| 7 | Payment webhook endpoints | **Critical** | RESOLVED | + +--- + +## Changes Already Applied + +The following small fixes have been applied directly to the codebase: + +1. **`encoach_ai_media/__manifest__.py`** -- Added missing `external_dependencies`: `numpy`, `openai-whisper`, `librosa`, `soundfile`, `httpx` +2. **`encoach_training/__manifest__.py`** -- Added missing `external_dependencies`: `numpy`, `faiss-cpu`, `sentence-transformers` +3. **`requirements.txt`** -- Created at project root with all Python dependencies and versions from SRS Section 6.10 diff --git a/docs/ENCOACH_ODOO19_BACKEND_SRS.md b/docs/ENCOACH_ODOO19_BACKEND_SRS.md new file mode 100644 index 0000000..84d0ba3 --- /dev/null +++ b/docs/ENCOACH_ODOO19_BACKEND_SRS.md @@ -0,0 +1,1759 @@ +# EnCoach Platform — Odoo 19 Backend SRS + +**Version:** 2.0 +**Date:** March 2026 +**Status:** Definitive +**Purpose:** Complete backend specification for an Odoo 19 developer to build all required modules, models, and REST API endpoints for the EnCoach Adaptive Learning Platform. Includes courseware, communication, notification, FAQ, enhanced approval workflows, plagiarism detection, and official exam access modes. + +--- + +## Table of Contents + +1. [Introduction](#1-introduction) +2. [Architecture Overview](#2-architecture-overview) +3. [OpenEduCat Integration Strategy](#3-openeducat-integration-strategy) +4. [Module Inventory](#4-module-inventory) +5. [Authentication and User Management](#5-authentication-and-user-management) +6. [Entity and Permission System](#6-entity-and-permission-system) +7. [LMS Core (OpenEduCat Bridge)](#7-lms-core-openeducat-bridge) +8. [Academic Year, Term, and Department](#8-academic-year-term-and-department) +9. [Admission and Enrollment](#9-admission-and-enrollment) +10. [Subject Registration](#10-subject-registration) +11. [Exam Engine (EnCoach AI)](#11-exam-engine-encoach-ai) +12. [Institutional Exams (OpenEduCat)](#12-institutional-exams-openeducat) +13. [Assignment System](#13-assignment-system) +14. [Course Assignment Submissions (OpenEduCat)](#14-course-assignment-submissions-openeducat) +15. [Classroom and Group Management](#15-classroom-and-group-management) +16. [Subject Taxonomy Engine](#16-subject-taxonomy-engine) +17. [Adaptive Learning Engine](#17-adaptive-learning-engine) +18. [Learning Resources](#18-learning-resources) +19. [AI Services](#19-ai-services) +20. [Training Content](#20-training-content) +21. [Analytics and Statistics](#21-analytics-and-statistics) +22. [Subscription and Payments](#22-subscription-and-payments) +23. [Support Tickets](#23-support-tickets) +24. [File Storage](#24-file-storage) +25. [Approval Workflows (Enhanced)](#25-approval-workflows-enhanced) +26. [Courseware and Content Delivery](#26-courseware-and-content-delivery) +27. [Communication System](#27-communication-system) +28. [Notification Engine](#28-notification-engine) +29. [FAQ System](#29-faq-system) +30. [Plagiarism Detection](#30-plagiarism-detection) +31. [Official Exam Access](#31-official-exam-access) +32. [Non-Functional Requirements](#32-non-functional-requirements) +33. [Implementation Priority](#33-implementation-priority) + +--- + +## 1. Introduction + +### 1.1 Scope + +This document specifies the complete Odoo 19 backend for the EnCoach Adaptive Learning Platform. The backend serves a React SPA frontend via REST API. All endpoints use JSON request/response with JWT authentication (except explicitly public endpoints). + +### 1.2 Frontend Contract + +The React frontend has 29 API service modules that define the exact endpoints the backend must implement. This SRS documents every endpoint, its expected request/response shape, and the underlying Odoo models. + +### 1.3 Key Principles + +- **OpenEduCat First:** All traditional LMS features (courses, batches, students, faculty, timetable, attendance, exams, assignments, admissions) use OpenEduCat community modules ported to Odoo 19. +- **EnCoach Extensions:** Custom modules extend OpenEduCat models with fields the platform needs (e.g., `description`, `image`, `max_capacity` on `op.course`). +- **REST API Layer:** All data is exposed via REST controllers in `encoach_api` and `encoach_lms_api` modules. The frontend never uses Odoo's web client or XML-RPC. +- **AI Services:** AI functionality (GPT, Whisper, Polly, ELAI, GPTZero, FAISS) is encapsulated in dedicated `encoach_ai_*` modules with API endpoints. + +--- + +## 2. Architecture Overview + +``` +React SPA (Vite + TypeScript) + │ + ▼ REST API (JSON + JWT) +┌─────────────────────────────────┐ +│ Odoo 19 Server │ +│ │ +│ ┌──────────┐ ┌──────────────┐ │ +│ │ encoach_ │ │ OpenEduCat │ │ +│ │ modules │ │ (ported v19)│ │ +│ └──────────┘ └──────────────┘ │ +│ │ │ │ +│ ▼ ▼ │ +│ PostgreSQL 16 │ +└─────────────────────────────────┘ + │ + ▼ External Services + OpenAI API │ AWS Polly │ ELAI │ GPTZero +``` + +### 2.1 Technology Stack + +| Layer | Technology | +|-------|-----------| +| Framework | Odoo 19 Community Edition | +| Language | Python 3.12+ | +| Database | PostgreSQL 16 | +| LMS Foundation | OpenEduCat (ported from v17 to v19) | +| AI/ML | OpenAI GPT-4o, Whisper (local), AWS Polly, Sentence Transformers, FAISS | +| Authentication | JWT (PyJWT) | +| File Storage | Odoo ir.attachment + optional S3 | +| Deployment | Docker, Docker Compose | + +--- + +## 3. OpenEduCat Integration Strategy + +### 3.1 Modules to Port (v17 → v19) + +| Module | Models | Porting Notes | +|--------|--------|---------------| +| `openeducat_core` | `op.course`, `op.batch`, `op.student`, `op.faculty`, `op.subject`, `op.department`, `op.category`, `op.academic.year`, `op.academic.term`, `op.student.course`, `op.subject.registration` | Core dependency for all other modules | +| `openeducat_timetable` | `op.session`, `op.timing` | Depends on `openeducat_core` | +| `openeducat_attendance` | `op.attendance.register`, `op.attendance.sheet`, `op.attendance.line`, `op.attendance.type` | Depends on `openeducat_core`, `openeducat_timetable` | +| `openeducat_classroom` | `op.classroom` | Depends on `openeducat_facility` | +| `openeducat_facility` | `op.facility`, `op.facility.line` | Dependency of classroom | +| `openeducat_exam` | `op.exam.session`, `op.exam`, `op.exam.type`, `op.exam.attendees`, `op.exam.room`, `op.marksheet.register`, `op.marksheet.line`, `op.result.line`, `op.result.template`, `op.grade.configuration` | Depends on `openeducat_core` | +| `openeducat_assignment` | `op.assignment`, `op.assignment.sub.line`, `grading.assignment`, `grading.assignment.type` | Depends on `openeducat_core` | +| `openeducat_admission` | `op.admission`, `op.admission.register` | Depends on `openeducat_core` | + +### 3.2 Model Extensions (via `encoach_lms_api`) + +The `encoach_lms_api` module uses `_inherit` to add fields missing from OpenEduCat but required by the frontend: + +| Model | Added Fields | +|-------|-------------| +| `op.course` | `description` (Text), `image` (Binary), `max_capacity` (Integer), `status` (Selection: draft/active/archived), `department_id` (Many2one to `op.department`) | +| `op.batch` | `max_students` (Integer), `status` (Selection: draft/active/completed) | +| `op.student` | `enrollment_date` (Date), `status` (Selection: active/inactive/graduated/suspended) | +| `op.faculty` | `department_id` (Many2one to `op.department`), `specialization` (Char) | +| `op.subject` | `credits` (Float), `department_id` (Many2one to `op.department`) | + +### 3.3 Serialization + +All OpenEduCat models need `to_api_dict()` methods on the `encoach_lms_api` inheriting models that convert records to JSON-serializable dictionaries with snake_case keys. Many2one fields are serialized as `{field}_id` (integer) and `{field}_name` (string). + +--- + +## 4. Module Inventory + +| # | Module | Type | Description | +|---|--------|------|-------------| +| 1 | `openeducat_core` | OpenEduCat (port v19) | Course, batch, student, faculty, subject, department, academic year/term | +| 2 | `openeducat_timetable` | OpenEduCat (port v19) | Timetable sessions and timings | +| 3 | `openeducat_attendance` | OpenEduCat (port v19) | Attendance sheets, lines, registers | +| 4 | `openeducat_classroom` | OpenEduCat (port v19) | Physical classrooms | +| 5 | `openeducat_facility` | OpenEduCat (port v19) | Facility management | +| 6 | `openeducat_exam` | OpenEduCat (port v19) | Institutional exam sessions, marksheets, grading | +| 7 | `openeducat_assignment` | OpenEduCat (port v19) | Course assignments and submissions | +| 8 | `openeducat_admission` | OpenEduCat (port v19) | Admission registers and applications | +| 9 | `encoach_core` | Custom | `encoach.user` extensions on `res.users`, entities, roles, permissions, codes, invites | +| 10 | `encoach_api` | Custom | REST API controllers for auth, users, entities, permissions, exams, assignments, classrooms, tickets, subscriptions, stats, storage, approvals | +| 11 | `encoach_lms_api` | Custom | REST API bridge for OpenEduCat models (courses, batches, timetable, attendance, grades, academic years, departments, admissions, subject registration, institutional exams, marksheets, course assignments) | +| 12 | `encoach_ai` | Custom | OpenAI service wrapper, token counting, blacklist, system parameter management | +| 13 | `encoach_ai_media` | Custom | TTS (AWS Polly), STT (Whisper), ELAI avatar video generation | +| 14 | `encoach_ai_generation` | Custom | AI exam content generation for all subjects | +| 15 | `encoach_ai_grading` | Custom | AI grading for writing, speaking, math, IT | +| 16 | `encoach_exam` | Custom | `encoach.exam` model for AI-powered exams | +| 17 | `encoach_assignment` | Custom | `encoach.assignment` model (exam-wrapper assignments) | +| 18 | `encoach_evaluation` | Custom | Evaluation job tracking | +| 19 | `encoach_stats` | Custom | Session tracking and statistics | +| 20 | `encoach_training` | Custom | Training tips, walkthroughs, FAISS embeddings | +| 21 | `encoach_classroom` | Custom | `encoach.classroom.group` for virtual classrooms | +| 22 | `encoach_subscription` | Custom | Packages, payments, discounts, Stripe/PayPal/Paymob | +| 23 | `encoach_registration` | Custom | User registration and batch import | +| 24 | `encoach_ticket` | Custom | Support tickets | +| 25 | `encoach_taxonomy` | Custom | Subject, domain, topic, learning objective models | +| 26 | `encoach_resources` | Custom | Learning resource library | +| 27 | `encoach_adaptive` | Custom | Proficiency tracking, learning plans, progress, content cache | +| 28 | `encoach_adaptive_api` | Custom | REST controllers for adaptive learning | +| 29 | `encoach_adaptive_ai` | Custom | AI services for diagnostics, plan generation, coaching, content generation | +| 30 | `encoach_sis` | Custom | UTAS SIS integration (sync, mapping) | +| 31 | `encoach_branding` | Custom | Whitelabeling configuration | +| 32 | `encoach_courseware` | Custom | Course chapters, chapter materials, chapter progress tracking, AI workbench for content generation | +| 33 | `encoach_communication` | Custom | Discussion boards, threaded posts, announcements, direct messaging | +| 34 | `encoach_notification` | Custom | Notification engine, configurable rules, email/in-app delivery, user preferences | +| 35 | `encoach_faq` | Custom | FAQ categories and items, role-filtered, searchable | + +**Total: 8 OpenEduCat (ported) + 27 custom = 35 modules** + +--- + +## 5. Authentication and User Management + +### 5.1 Authentication Model + +JWT-based authentication. Tokens are issued on login and validated on every API request. + +### 5.2 User Model + +Extends `res.users` with `encoach.user` mixin: + +| Field | Type | Description | +|-------|------|-------------| +| `user_type` | Selection | `student`, `teacher`, `admin`, `corporate`, `mastercorporate`, `agent`, `developer` | +| `is_verified` | Boolean | Email verification status | +| `entity_ids` | Many2many | Associated entities | +| `phone` | Char | Phone number | +| `birth_date` | Date | Date of birth | +| `gender` | Selection | `m`, `f`, `o` | +| `op_student_id` | Many2one | Link to `op.student` if user_type is student | +| `op_faculty_id` | Many2one | Link to `op.faculty` if user_type is teacher | + +### 5.3 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `POST` | `/api/login` | Public | Authenticate user, return JWT + user object | +| `POST` | `/api/logout` | JWT | Invalidate token | +| `GET` | `/api/user` | JWT | Get current authenticated user | +| `POST` | `/api/reset/sendVerification` | Public | Send password reset / verification email | +| `GET` | `/api/users/list` | JWT | Paginated user list with filters (`type`, `entity_id`, `page`, `size`) | +| `GET` | `/api/users/{id}` | JWT | Get user by ID | +| `PATCH` | `/api/users/update` | JWT | Update user (id in body) | +| `POST` | `/api/users/create` | JWT | Create user | +| `POST` | `/api/batch_users` | JWT | Batch create users from CSV/JSON | +| `GET` | `/api/users/export` | JWT | Export users as CSV blob | + +### 5.4 Login Response Shape + +```json +{ + "token": "eyJ...", + "user": { + "id": 1, + "name": "John Doe", + "email": "john@example.com", + "user_type": "admin", + "is_verified": true, + "entities": [ + { "id": 1, "name": "UTAS", "logo": "..." } + ] + } +} +``` + +--- + +## 6. Entity and Permission System + +### 6.1 Entity Model (`encoach.entity`) + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Entity name | +| `code` | Char | Unique code | +| `type` | Selection | `corporate`, `university`, `freelance` | +| `logo` | Binary | Entity logo | +| `active` | Boolean | Active status | +| `user_ids` | Many2many | Members | +| `role_ids` | One2many | Custom roles | + +### 6.2 Role and Permission Models + +**`encoach.role`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Role name | +| `entity_id` | Many2one | Parent entity | +| `permission_ids` | Many2many | Assigned permissions | + +**`encoach.permission`** + +77+ entity-scoped permissions (e.g., `view_students`, `edit_exam`, `view_payment_record`, `manage_entities`). + +### 6.3 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/entities` | JWT | Paginated entities | +| `GET` | `/api/entities/{id}` | JWT | Entity detail | +| `POST` | `/api/entities` | JWT | Create entity | +| `PATCH` | `/api/entities/{id}` | JWT | Update entity | +| `DELETE` | `/api/entities/{id}` | JWT | Delete entity | +| `GET` | `/api/entities/{entityId}/roles` | JWT | Roles for entity | +| `POST` | `/api/entities/{entityId}/roles` | JWT | Create role | +| `PATCH` | `/api/roles/{roleId}/permissions` | JWT | Update role permissions | +| `GET` | `/api/permissions` | JWT | List permissions (filter by `entity_id`) | + +--- + +## 7. LMS Core (OpenEduCat Bridge) + +### 7.1 Course API + +Backed by `op.course` (extended via `_inherit` in `encoach_lms_api`). + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/courses` | JWT | Paginated courses (filter: `status`, `department_id`) | +| `GET` | `/api/courses/{id}` | JWT | Course detail with subjects, batches | +| `POST` | `/api/courses` | JWT | Create course | +| `PATCH` | `/api/courses/{id}` | JWT | Update course | +| `DELETE` | `/api/courses/{id}` | JWT | Delete course | +| `POST` | `/api/courses/ai-generate` | JWT | AI-generate course outline (calls OpenAI) | + +**Course Response Shape:** + +```json +{ + "id": 1, + "name": "IELTS Preparation", + "code": "IELTS-101", + "description": "Comprehensive IELTS preparation course", + "department_id": 1, + "department_name": "English", + "max_capacity": 30, + "status": "active", + "subject_ids": [1, 2, 3], + "subject_names": ["Reading", "Writing", "Listening"], + "batch_count": 2, + "student_count": 45, + "image": "base64..." +} +``` + +### 7.2 Batch API + +Backed by `op.batch` (extended). + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/batches` | JWT | Paginated batches (filter: `course_id`, `status`) | +| `GET` | `/api/batches/{id}` | JWT | Batch detail with student list | +| `POST` | `/api/batches` | JWT | Create batch | +| `PATCH` | `/api/batches/{id}` | JWT | Update batch | +| `DELETE` | `/api/batches/{id}` | JWT | Delete batch | + +### 7.3 Timetable API + +Backed by `op.session` and `op.timing`. + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/timetable` | JWT | Sessions (filter: `course_id`, `batch_id`, `faculty_id`, `start_date`, `end_date`) | +| `POST` | `/api/timetable` | JWT | Create timetable session | + +**Session Response Shape:** + +```json +{ + "id": 1, + "name": "IELTS Reading - Week 1", + "course_id": 1, + "course_name": "IELTS Preparation", + "batch_id": 1, + "batch_name": "Batch A", + "faculty_id": 5, + "faculty_name": "Dr. Smith", + "subject_id": 1, + "subject_name": "Reading", + "classroom_id": 3, + "classroom_name": "Room 101", + "start_datetime": "2026-03-15T09:00:00", + "end_datetime": "2026-03-15T10:30:00", + "day": "Monday" +} +``` + +### 7.4 Attendance API + +Backed by `op.attendance.sheet` and `op.attendance.line`. + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/attendance` | JWT | Attendance records (filter: `course_id`, `batch_id`, `student_id`, `date_from`, `date_to`) | +| `POST` | `/api/attendance` | JWT | Record attendance (batch of student attendance lines) | + +**Attendance Record Request:** + +```json +{ + "session_id": 1, + "attendance_date": "2026-03-15", + "lines": [ + { "student_id": 1, "present": true }, + { "student_id": 2, "present": false, "remark": "Sick leave" } + ] +} +``` + +### 7.5 Grades API + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/grades` | JWT | Grade records (filter: `student_id`, `course_id`, `batch_id`) | + +--- + +## 8. Academic Year, Term, and Department + +### 8.1 Academic Year and Term + +Backed by `op.academic.year` and `op.academic.term` (OpenEduCat core). + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/academic-years` | JWT | List academic years with terms | +| `GET` | `/api/academic-years/{id}` | JWT | Year detail with terms | +| `POST` | `/api/academic-years` | JWT | Create academic year | +| `PATCH` | `/api/academic-years/{id}` | JWT | Update year | +| `DELETE` | `/api/academic-years/{id}` | JWT | Delete year | +| `POST` | `/api/academic-years/{id}/generate-terms` | JWT | Auto-generate terms from `term_structure` | +| `GET` | `/api/academic-terms` | JWT | List terms (filter: `year_id`) | +| `POST` | `/api/academic-terms` | JWT | Create term | +| `PATCH` | `/api/academic-terms/{id}` | JWT | Update term | +| `DELETE` | `/api/academic-terms/{id}` | JWT | Delete term | + +**Generate Terms Logic:** + +Given `term_structure` on the academic year, compute term dates: +- `two_sem`: 2 terms splitting the year in half +- `two_sem_qua`: 2 semesters, each with 2 quarters (4 terms total) +- `three_sem`: 3 trimesters +- `four_Quarter`: 4 quarters +- `final_year`: single term spanning the full year + +### 8.2 Department + +Backed by `op.department` (OpenEduCat core). + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/departments` | JWT | List departments | +| `POST` | `/api/departments` | JWT | Create department | +| `PATCH` | `/api/departments/{id}` | JWT | Update department | +| `DELETE` | `/api/departments/{id}` | JWT | Delete department | + +**Department Response:** + +```json +{ + "id": 1, + "name": "Department of Mathematics", + "code": "MATH", + "parent_id": null, + "parent_name": null, + "course_count": 5, + "faculty_count": 12 +} +``` + +--- + +## 9. Admission and Enrollment + +### 9.1 Admission Register + +Backed by `op.admission.register` (OpenEduCat). + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/admission-registers` | JWT | List registers | +| `POST` | `/api/admission-registers` | JWT | Create register | +| `PATCH` | `/api/admission-registers/{id}` | JWT | Update register | +| `POST` | `/api/admission-registers/{id}/confirm` | JWT | Confirm register (opens enrollment) | +| `POST` | `/api/admission-registers/{id}/close` | JWT | Close register | + +### 9.2 Admission + +Backed by `op.admission` (OpenEduCat). + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/admissions` | JWT | List admissions (filter: `state`, `register_id`, `course_id`, `page`, `size`) | +| `GET` | `/api/admissions/{id}` | JWT | Admission detail | +| `POST` | `/api/admissions` | Public* | Submit admission application | +| `POST` | `/api/admissions/{id}/submit` | JWT | Submit for review | +| `POST` | `/api/admissions/{id}/confirm` | JWT | Confirm admission | +| `POST` | `/api/admissions/{id}/admit` | JWT | Admit applicant | +| `POST` | `/api/admissions/{id}/reject` | JWT | Reject admission | + +*Note: `POST /api/admissions` is public when submitted via the `/apply` page. Backend should allow unauthenticated submission when the register allows public applications. + +### 9.3 Admit Action Logic + +When an admission is admitted (`/admit`): +1. Create `op.student` record from admission data +2. Create `res.users` record with `user_type=student` +3. Create `op.student.course` linking student to course/batch +4. Set `admission.student_id` to the new student +5. Set `admission.state` to `admission` +6. Send welcome email with login credentials + +--- + +## 10. Subject Registration + +### 10.1 Model + +Backed by `op.subject.registration` (OpenEduCat core). + +### 10.2 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/subject-registrations` | JWT | List registrations (filter: `student_id`, `course_id`, `state`) | +| `POST` | `/api/subject-registrations` | JWT | Create registration | +| `PATCH` | `/api/subject-registrations/{id}` | JWT | Update selected subjects | +| `POST` | `/api/subject-registrations/{id}/confirm` | JWT | Confirm registration | +| `POST` | `/api/subject-registrations/{id}/reject` | JWT | Reject registration | +| `GET` | `/api/subject-registrations/available` | JWT | Get available subjects for current student's enrolled courses | + +### 10.3 Available Subjects Logic + +For the current user (student): +1. Find all `op.student.course` records for this student +2. Get subjects linked to those courses +3. Exclude subjects already registered in confirmed registrations +4. Check unit load limits from `op.course` configuration +5. Return list with `min_unit_load`, `max_unit_load` + +--- + +## 11. Exam Engine (EnCoach AI) + +### 11.1 Model (`encoach.exam`) + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Exam title | +| `module` | Selection | `reading`, `writing`, `listening`, `speaking`, `math`, `it`, ... | +| `subject_id` | Many2one | Link to `encoach.subject` (taxonomy) | +| `topic_ids` | Many2many | Link to `encoach.topic` | +| `entity_id` | Many2one | Owning entity | +| `structure_id` | Many2one | Exam structure template | +| `rubric_id` | Many2one | Grading rubric | +| `exercises` | Text (JSON) | Generated exercises content | +| `is_public` | Boolean | Public access flag | +| `status` | Selection | `draft`, `published`, `archived` | + +### 11.2 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/exam/{module}` | JWT | List exams for module (paginated) | +| `GET` | `/api/exam/{module}/{id}` | JWT | Exam detail | +| `POST` | `/api/exam` | JWT | Create exam | +| `PATCH` | `/api/exam/{id}` | JWT | Update exam | +| `DELETE` | `/api/exam/{id}` | JWT | Delete exam | +| `PATCH` | `/api/exam/{id}/access` | JWT | Set public/private | +| `GET` | `/api/rubrics` | JWT | List rubrics (paginated) | +| `POST` | `/api/rubrics` | JWT | Create rubric | +| `GET` | `/api/rubric-groups` | JWT | List rubric groups | +| `GET` | `/api/exam-structures` | JWT | List exam structures | +| `POST` | `/api/exam-structures` | JWT | Create exam structure | +| `DELETE` | `/api/exam-structures/{id}` | JWT | Delete structure | +| `GET` | `/api/exam/avatars` | JWT | List ELAI avatars | +| `POST` | `/api/exam/{module}/generate` | JWT | Generate exercises from existing exam | +| `POST` | `/api/exam/{module}/generate/scratch` | JWT | Generate full exam from scratch | + +### 11.3 Generation Logic + +Uses OpenAI GPT-4o to generate exam content. Prompt templates vary by module: +- **Reading/Listening:** Passage + comprehension questions +- **Writing:** Task description + sample topics +- **Speaking:** Dialogue prompts + follow-up questions +- **Math:** Problem sets with numerical answers, configurable difficulty +- **IT:** Code completion, debugging, conceptual questions + +--- + +## 12. Institutional Exams (OpenEduCat) + +### 12.1 Overview + +Traditional institutional exams (midterms, finals) managed through OpenEduCat. Separate from EnCoach AI exams. + +### 12.2 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/inst-exam-sessions` | JWT | List exam sessions | +| `POST` | `/api/inst-exam-sessions` | JWT | Create session | +| `GET` | `/api/inst-exam-sessions/{id}` | JWT | Session detail with exams | +| `PATCH` | `/api/inst-exam-sessions/{id}` | JWT | Update session | +| `DELETE` | `/api/inst-exam-sessions/{id}` | JWT | Delete session | +| `POST` | `/api/inst-exam-sessions/{id}/schedule` | JWT | Schedule session | +| `POST` | `/api/inst-exam-sessions/{id}/done` | JWT | Mark session done | +| `POST` | `/api/inst-exams` | JWT | Add exam to session | +| `PATCH` | `/api/inst-exams/{id}` | JWT | Update exam | +| `POST` | `/api/inst-exams/{id}/attendees` | JWT | Add attendees to exam | +| `PATCH` | `/api/inst-exams/{id}/marks` | JWT | Enter marks for attendees | +| `GET` | `/api/exam-types` | JWT | List exam types | +| `POST` | `/api/exam-types` | JWT | Create exam type | +| `GET` | `/api/grade-config` | JWT | List grade configurations | +| `POST` | `/api/grade-config` | JWT | Create grade config | +| `GET` | `/api/result-templates` | JWT | List result templates | +| `POST` | `/api/result-templates` | JWT | Create result template | +| `POST` | `/api/result-templates/{id}/generate` | JWT | Generate marksheets | +| `GET` | `/api/marksheets` | JWT | List marksheets | +| `GET` | `/api/marksheets/{id}` | JWT | Marksheet detail with student results | +| `POST` | `/api/marksheets/{id}/validate` | JWT | Validate marksheet | + +### 12.3 Enter Marks Request + +```json +{ + "attendees": [ + { "student_id": 1, "marks": 85 }, + { "student_id": 2, "marks": 72 } + ] +} +``` + +### 12.4 Generate Marksheets Logic + +1. Create `op.marksheet.register` from `op.result.template` +2. For each student in the batch: + - Create `op.marksheet.line` + - For each exam in the session: create `op.result.line` with marks from `op.exam.attendees` + - Compute total marks, percentage + - If evaluation_type is `grade`: lookup `op.grade.configuration` to assign grade + - Compute pass/fail from `min_marks` on each exam +3. Compute `total_pass` and `total_failed` on register + +--- + +## 13. Assignment System (EnCoach AI) + +### 13.1 Model (`encoach.assignment`) + +Exam-wrapper assignments where an EnCoach exam is assigned to students/classrooms. + +### 13.2 Enhanced Fields (Late Submission + Plagiarism) + +Add to `encoach.assignment`: + +| Field | Type | Description | +|-------|------|-------------| +| `late_deadline` | Datetime | Final late submission cutoff | +| `penalty_type` | Selection | `none`, `percentage`, `fixed_deduction` | +| `penalty_value` | Float | Penalty amount | +| `max_submissions` | Integer | Maximum allowed submissions (0 = unlimited) | +| `allow_extensions` | Boolean | Student extension requests | +| `plagiarism_enabled` | Boolean | Enable GPTZero plagiarism check | +| `plagiarism_max_checks` | Integer | Max plagiarism checks per submission | +| `reminder_count` | Integer | Number of reminders | +| `reminder_frequency` | Selection | `once`, `daily`, `custom` | + +### 13.3 Extension Request Model (`encoach.extension.request`) + +| Field | Type | Description | +|-------|------|-------------| +| `student_id` | Many2one (`res.users`) | Requesting student | +| `assignment_id` | Many2one | Target assignment | +| `reason` | Text | Justification | +| `requested_date` | Datetime | New deadline | +| `status` | Selection | `pending`, `approved`, `rejected` | +| `approved_by` | Many2one | Approving teacher | +| `response_note` | Text | Teacher response | + +### 13.4 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/assignments` | JWT | Paginated assignments | +| `GET` | `/api/assignments/{id}` | JWT | Assignment detail | +| `POST` | `/api/assignments` | JWT | Create assignment (includes late submission fields) | +| `PATCH` | `/api/assignments/{id}` | JWT | Update assignment | +| `DELETE` | `/api/assignments/{id}` | JWT | Delete assignment | +| `POST` | `/api/assignments/{id}/archive` | JWT | Archive assignment | +| `POST` | `/api/assignments/{id}/start` | JWT | Start assignment (student) | +| `POST` | `/api/assignments/{id}/request-extension` | JWT (student) | Request deadline extension | +| `GET` | `/api/assignments/{id}/extension-requests` | JWT (teacher) | List extension requests | +| `POST` | `/api/extension-requests/{id}/respond` | JWT (teacher) | Approve/reject extension | + +--- + +## 14. Course Assignment Submissions (OpenEduCat) + +### 14.1 Overview + +Traditional file-based assignments where students upload work and teachers grade it. Uses OpenEduCat models. + +### 14.2 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/course-assignments` | JWT | List course assignments (filter: `course_id`, `batch_id`, `state`) | +| `POST` | `/api/course-assignments` | JWT | Create course assignment | +| `GET` | `/api/course-assignments/{id}` | JWT | Assignment detail with submissions | +| `PATCH` | `/api/course-assignments/{id}` | JWT | Update assignment | +| `POST` | `/api/course-assignments/{id}/publish` | JWT | Publish assignment | +| `POST` | `/api/course-assignments/{id}/finish` | JWT | Close assignment | +| `GET` | `/api/course-assignments/{id}/submissions` | JWT | List student submissions | +| `POST` | `/api/course-assignments/{id}/submit` | JWT | Student file upload (multipart/form-data) | +| `PATCH` | `/api/submissions/{id}` | JWT | Grade submission (marks, feedback, status) | +| `GET` | `/api/assignment-types` | JWT | List assignment types | +| `POST` | `/api/assignment-types` | JWT | Create assignment type | + +### 14.3 File Upload + +Student submission accepts `multipart/form-data`: +- `file`: Binary file attachment +- `description`: Optional text description + +Files are stored as `ir.attachment` records linked to `op.assignment.sub.line`. + +### 14.4 Grading Request + +```json +{ + "marks": 85, + "state": "accept", + "note": "Well researched paper. Minor formatting issues." +} +``` + +--- + +## 15. Classroom and Group Management + +### 15.1 Model (`encoach.classroom.group`) + +Virtual classrooms for grouping students within entities. + +### 15.2 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/groups` | JWT | Paginated groups | +| `GET` | `/api/groups/{id}` | JWT | Group detail with members | +| `POST` | `/api/groups` | JWT | Create group | +| `DELETE` | `/api/groups/{id}` | JWT | Delete group | +| `POST` | `/api/groups/transfer` | JWT | Transfer students between groups | +| `POST` | `/api/groups/{id}/members` | JWT | Add members | +| `POST` | `/api/groups/{id}/members/remove` | JWT | Remove members | + +--- + +## 16. Subject Taxonomy Engine + +### 16.1 Models + +**`encoach.subject`** (distinct from `op.subject`) + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Subject name (e.g., "IELTS", "Mathematics", "Information Technology") | +| `code` | Char | Unique code | +| `description` | Text | Description | +| `icon` | Char | Icon identifier | +| `active` | Boolean | Active flag | +| `domain_ids` | One2many | Child domains | + +**`encoach.domain`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Domain name (e.g., "Algebra", "Networking") | +| `subject_id` | Many2one | Parent subject | +| `topic_ids` | One2many | Child topics | + +**`encoach.topic`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Topic name | +| `domain_id` | Many2one | Parent domain | +| `subject_id` | Many2one (related) | Subject via domain | +| `difficulty` | Selection | `beginner`, `intermediate`, `advanced` | +| `prerequisite_ids` | Many2many | Prerequisite topics | +| `learning_objective_ids` | One2many | Learning objectives | + +**`encoach.learning.objective`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Objective description | +| `topic_id` | Many2one | Parent topic | +| `bloom_level` | Selection | `remember`, `understand`, `apply`, `analyze`, `evaluate`, `create` | + +### 16.2 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/subjects` | JWT | List subjects | +| `GET` | `/api/subjects/{id}` | JWT | Subject detail | +| `POST` | `/api/subjects` | JWT | Create subject | +| `PATCH` | `/api/subjects/{id}` | JWT | Update subject | +| `DELETE` | `/api/subjects/{id}` | JWT | Delete subject | +| `GET` | `/api/subjects/{subjectId}/taxonomy` | JWT | Full taxonomy tree (domains → topics → objectives) | +| `POST` | `/api/subjects/{subjectId}/taxonomy/import` | JWT | Import taxonomy from file (multipart) | +| `GET` | `/api/domains` | JWT | List domains (filter: `subject_id`) | +| `POST` | `/api/domains` | JWT | Create domain | +| `PATCH` | `/api/domains/{id}` | JWT | Update domain | +| `DELETE` | `/api/domains/{id}` | JWT | Delete domain | +| `POST` | `/api/domains/{domainId}/ai-suggest` | JWT | AI-suggest topics for domain | +| `GET` | `/api/topics` | JWT | List topics (filter: `domain_id`, `subject_id`) | +| `POST` | `/api/topics` | JWT | Create topic | +| `PATCH` | `/api/topics/{id}` | JWT | Update topic | +| `DELETE` | `/api/topics/{id}` | JWT | Delete topic | + +--- + +## 17. Adaptive Learning Engine + +### 17.1 Models + +**`encoach.proficiency`** + +| Field | Type | Description | +|-------|------|-------------| +| `student_id` | Many2one | Student user | +| `subject_id` | Many2one | Subject | +| `topic_id` | Many2one | Topic | +| `mastery_score` | Float | 0.0 to 1.0 | +| `confidence` | Float | Statistical confidence | +| `last_assessed` | Datetime | Last assessment time | +| `assessment_count` | Integer | Number of assessments | + +**`encoach.learning.plan`** + +| Field | Type | Description | +|-------|------|-------------| +| `student_id` | Many2one | Student | +| `subject_id` | Many2one | Subject | +| `status` | Selection | `active`, `paused`, `completed` | +| `items` | One2many | Plan items (topics in order) | +| `generated_by` | Selection | `ai`, `manual` | +| `progress` | Float | Computed completion percentage | + +**`encoach.learning.plan.item`** + +| Field | Type | Description | +|-------|------|-------------| +| `plan_id` | Many2one | Parent plan | +| `topic_id` | Many2one | Topic | +| `sequence` | Integer | Order in plan | +| `status` | Selection | `locked`, `available`, `in_progress`, `completed` | +| `estimated_hours` | Float | Estimated time | +| `mastery_threshold` | Float | Required mastery to complete | + +**`encoach.diagnostic.session`** + +| Field | Type | Description | +|-------|------|-------------| +| `student_id` | Many2one | Student | +| `subject_id` | Many2one | Subject | +| `status` | Selection | `in_progress`, `completed` | +| `questions_answered` | Integer | Count | +| `result_data` | Text (JSON) | Topic-level results | + +**`encoach.content.cache`** + +| Field | Type | Description | +|-------|------|-------------| +| `topic_id` | Many2one | Topic | +| `content_type` | Selection | `explanation`, `practice`, `quiz` | +| `content` | Text (JSON) | Cached AI content | +| `generated_at` | Datetime | Generation time | +| `ttl_hours` | Integer | Cache TTL | + +### 17.2 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `POST` | `/api/diagnostic/start` | JWT | Start diagnostic for subject | +| `POST` | `/api/diagnostic/answer` | JWT | Submit diagnostic answer (adaptive next question) | +| `GET` | `/api/diagnostic/{sessionId}/result` | JWT | Get diagnostic result | +| `GET` | `/api/proficiency` | JWT | Get proficiency records (filter: `subject_id`, `student_id`) | +| `GET` | `/api/proficiency/summary` | JWT | Aggregate proficiency summary | +| `GET` | `/api/proficiency/class` | JWT | Class-wide proficiency | +| `GET` | `/api/learning-plan` | JWT | Get learning plan (filter: `subject_id`) | +| `POST` | `/api/learning-plan/generate` | JWT | AI-generate learning plan | +| `PATCH` | `/api/learning-plan/{id}` | JWT | Update plan | +| `POST` | `/api/learning-plan/{id}/pause` | JWT | Pause plan | +| `POST` | `/api/learning-plan/{id}/resume` | JWT | Resume plan | +| `GET` | `/api/topics/{topicId}/content` | JWT | Get topic learning content | +| `POST` | `/api/topics/{topicId}/generate-content` | JWT | AI-generate topic content | +| `POST` | `/api/topics/{topicId}/practice` | JWT | Generate practice questions | +| `POST` | `/api/topics/{topicId}/practice/grade` | JWT | Grade practice answers | +| `POST` | `/api/topics/{topicId}/mastery-quiz` | JWT | Start mastery quiz | +| `POST` | `/api/topics/{topicId}/mastery-quiz/submit` | JWT | Submit mastery quiz and update proficiency | + +### 17.3 Diagnostic Algorithm + +Computer Adaptive Testing (CAT): +1. Start with medium-difficulty questions +2. If correct → harder question; if incorrect → easier question +3. Uses Item Response Theory (IRT) to estimate ability +4. Covers multiple topics within the subject +5. Terminates after sufficient confidence or max questions (20-30) +6. Produces per-topic mastery scores + +### 17.4 Learning Plan Generation + +AI-generated study plan: +1. Read student's proficiency profile +2. Identify weak topics (mastery < threshold) +3. Respect prerequisite graph (topological sort) +4. Estimate time per topic based on gap +5. Order topics: prerequisites first, then weakest areas +6. Return ordered list of `plan_items` + +--- + +## 18. Learning Resources + +### 18.1 Model (`encoach.resource`) + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Resource title | +| `type` | Selection | `video`, `document`, `link`, `interactive` | +| `subject_id` | Many2one | Subject | +| `topic_ids` | Many2many | Topics | +| `file` | Binary | Uploaded file | +| `url` | Char | External URL | +| `difficulty` | Selection | `beginner`, `intermediate`, `advanced` | +| `duration_minutes` | Integer | Estimated duration | +| `active` | Boolean | Soft-delete flag | + +### 18.2 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/resources` | JWT | Paginated resources (filter: `subject_id`, `topic_id`, `type`, `difficulty`) | +| `POST` | `/api/resources` | JWT | Upload resource (multipart) | +| `PATCH` | `/api/resources/{id}` | JWT | Update resource metadata | +| `DELETE` | `/api/resources/{id}` | JWT | Soft-delete resource | +| `POST` | `/api/resources/{id}/complete` | JWT | Mark resource as completed by student | +| `POST` | `/api/resources/{id}/rate` | JWT | Rate resource (1-5) | +| `GET` | `/api/resources/{id}/download` | JWT | Download resource file | + +--- + +## 19. AI Services + +### 19.1 AI Coaching + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `POST` | `/api/coach/chat` | JWT | General AI chat (context-aware) | +| `POST` | `/api/coach/hint` | JWT | Hint for topic/question | +| `POST` | `/api/coach/explain` | JWT | Explain scores or concepts | +| `POST` | `/api/coach/suggest` | JWT | Study suggestions | +| `POST` | `/api/coach/writing-help` | JWT | Writing feedback with improved text | +| `GET` | `/api/coach/tip` | JWT | Context-aware tip (FAISS similarity) | + +### 19.2 AI Evaluation + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `POST` | `/api/evaluate/writing` | JWT | Evaluate writing (IELTS band scoring / rubric-based) | +| `POST` | `/api/evaluate/speaking` | JWT | Evaluate speaking (audio → transcribe → grade) | +| `POST` | `/api/grading/multiple` | JWT | Grade multiple-choice / numerical answers | +| `POST` | `/api/transcribe` | JWT | Audio transcription (Whisper, multipart upload) | + +### 19.3 AI Generation + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `POST` | `/api/exam/{module}/generate` | JWT | Generate exam exercises from template | +| `POST` | `/api/exam/{module}/generate/scratch` | JWT | Generate full exam from scratch | + +### 19.4 Media Generation + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `POST` | `/api/exam/listening/media` | JWT | Generate listening audio (AWS Polly TTS) | +| `POST` | `/api/exam/speaking/media` | JWT | Generate speaking video (ELAI) | +| `GET` | `/api/exam/avatars` | JWT | List ELAI avatars with voice metadata | + +### 19.5 AI Analytics + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `POST` | `/api/ai/search` | JWT | AI-powered semantic search | +| `POST` | `/api/ai/insights` | JWT | AI-generated insights from data | +| `GET` | `/api/ai/alerts` | JWT | AI-detected alerts (at-risk students, anomalies) | +| `POST` | `/api/ai/report-narrative` | JWT | AI narrative for reports | +| `POST` | `/api/ai/batch-optimize` | JWT | Batch optimization suggestions | +| `POST` | `/api/ai/grade-suggest` | JWT | AI grading suggestion | + +### 19.6 AI Service Configuration + +All AI services read configuration from `ir.config_parameter`: + +| Parameter Key | Description | Default | +|--------------|-------------|---------| +| `encoach.openai_api_key` | OpenAI API key | Required | +| `encoach.openai_model` | Default model | `gpt-4o` | +| `encoach.openai_model_light` | Light model for simple tasks | `gpt-3.5-turbo` | +| `encoach.aws_access_key_id` | AWS access key | Required | +| `encoach.aws_secret_access_key` | AWS secret key | Required | +| `encoach.aws_region` | AWS region | `eu-west-1` | +| `encoach.polly_voice_id` | Default Polly voice | `Joanna` | +| `encoach.polly_engine` | Polly engine | `neural` | +| `encoach.whisper_model` | Whisper model size | `base` | +| `encoach.whisper_workers` | Whisper worker threads | `4` | +| `encoach.elai_api_key` | ELAI API key | Required | +| `encoach.gptzero_api_key` | GPTZero API key | Required | +| `encoach.faiss_embedding_model` | Sentence transformer model | `all-MiniLM-L6-v2` | + +--- + +## 20. Training Content + +### 20.1 Models + +**`encoach.training.tip`** + +| Field | Type | Description | +|-------|------|-------------| +| `title` | Char | Tip title | +| `content` | Text | Tip content | +| `subject_id` | Many2one | Subject | +| `module` | Char | Module tag | +| `embedding` | Binary(attachment=False) | FAISS embedding vector | + +**`encoach.training.walkthrough`** + +| Field | Type | Description | +|-------|------|-------------| +| `title` | Char | Walkthrough title | +| `steps` | Text (JSON) | Step-by-step content | +| `module` | Char | Module tag | + +### 20.2 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/training` | JWT | Training records (filter: `entity_id`, `user_id`, `module`) | +| `GET` | `/api/training/tips` | JWT | Training tips | +| `GET` | `/api/training/walkthrough` | JWT | Walkthroughs (filter: `module`) | + +--- + +## 21. Analytics and Statistics + +### 21.1 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/sessions` | JWT | Exam sessions | +| `GET` | `/api/stats` | JWT | Exam statistics | +| `GET` | `/api/statistical` | JWT | Aggregated statistical data | +| `GET` | `/api/stats/performance` | JWT | Performance metrics | +| `GET` | `/api/analytics/student` | JWT | Student analytics (filter: `student_id`, `subject_id`, `date_range`) | +| `GET` | `/api/analytics/class` | JWT | Class analytics (filter: `batch_id`, `course_id`) | +| `GET` | `/api/analytics/subject` | JWT | Subject analytics (filter: `subject_id`) | +| `GET` | `/api/analytics/content-gaps` | JWT | Content gap analysis | + +--- + +## 22. Subscription and Payments + +### 22.1 Models + +**`encoach.package`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Package name | +| `description` | Text | Description | +| `price` | Float | Price | +| `currency` | Char | Currency code | +| `duration_days` | Integer | Access duration | +| `subject_ids` | Many2many | Included subjects | +| `features` | Text (JSON) | Feature list | +| `active` | Boolean | Available for purchase | + +**`encoach.payment`** + +| Field | Type | Description | +|-------|------|-------------| +| `user_id` | Many2one | Paying user | +| `entity_id` | Many2one | Entity (if institutional) | +| `package_id` | Many2one | Package | +| `amount` | Float | Payment amount | +| `currency` | Char | Currency | +| `provider` | Selection | `stripe`, `paypal`, `paymob`, `invoice` | +| `status` | Selection | `pending`, `completed`, `failed`, `refunded` | +| `provider_ref` | Char | External reference | +| `created_at` | Datetime | Payment date | + +**`encoach.discount`** + +| Field | Type | Description | +|-------|------|-------------| +| `code` | Char | Discount code | +| `percentage` | Float | Discount percentage | +| `valid_from` | Datetime | Start date | +| `valid_to` | Datetime | End date | +| `max_uses` | Integer | Maximum uses | +| `current_uses` | Integer | Current use count | + +### 22.2 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/packages` | JWT | List packages | +| `GET` | `/api/payments` | JWT | Paginated payments | +| `POST` | `/api/stripe/checkout` | JWT | Create Stripe checkout session, return URL | +| `POST` | `/api/paypal/checkout` | JWT | Create PayPal order, return approval URL | +| `POST` | `/api/paymob/checkout` | JWT | Create Paymob payment, return URL | +| `GET` | `/api/discounts` | JWT | List discounts | +| `POST` | `/api/discounts` | JWT | Create discount | +| `DELETE` | `/api/discounts/{id}` | JWT | Delete discount | + +### 22.3 Webhook Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `POST` | `/api/stripe/webhook` | Webhook signature | Stripe payment events | +| `POST` | `/api/paypal/webhook` | Webhook signature | PayPal payment events | +| `POST` | `/api/paymob/webhook` | Webhook HMAC | Paymob transaction callback | + +--- + +## 23. Support Tickets + +### 23.1 Model (`encoach.ticket`) + +| Field | Type | Description | +|-------|------|-------------| +| `subject` | Char | Ticket subject | +| `description` | Text | Description | +| `type` | Selection | `bug`, `feature`, `support`, `feedback` | +| `status` | Selection | `open`, `in_progress`, `resolved`, `closed` | +| `reporter_id` | Many2one | Reporter user | +| `assignee_id` | Many2one | Assigned staff | +| `entity_id` | Many2one | Entity context | +| `source` | Selection | `platform`, `webpage` | + +### 23.2 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/tickets` | JWT | Paginated tickets (filter: `status`, `type`, `assignee_id`, `source`) | +| `POST` | `/api/tickets` | JWT | Create ticket | +| `PATCH` | `/api/tickets/{id}` | JWT | Update ticket | +| `GET` | `/api/tickets/assignedToUser` | JWT | Tickets assigned to current user | + +--- + +## 24. File Storage + +### 24.1 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `POST` | `/api/storage/upload` | JWT | Upload file (multipart/form-data), return attachment ID and URL | +| `GET` | `/api/storage/url` | JWT | Resolve download URL for filename | + +Files are stored as `ir.attachment` records. For production, configure Odoo to use S3-compatible storage. + +--- + +## 25. Approval Workflows (Enhanced) + +### 25.1 Model (`encoach.approval.workflow`) + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Workflow name | +| `type` | Selection | `exam_publish`, `assignment_publish`, `content_publish`, `material_publish` | +| `stage_ids` | One2many | Approval stages (ordered) | +| `entity_id` | Many2one | Entity | +| `allow_bypass` | Boolean | Whether bypass is allowed | +| `active` | Boolean | Active flag | + +### 25.2 Model (`encoach.approval.stage`) + +| Field | Type | Description | +|-------|------|-------------| +| `workflow_id` | Many2one | Parent workflow | +| `sequence` | Integer | Stage order | +| `approver_id` | Many2one | Assigned approver (`res.users`) | +| `max_days` | Integer | Maximum days before auto-escalation | +| `auto_escalate` | Boolean | Whether to auto-escalate on timeout | +| `notification_email` | Char | Email for stage notifications | +| `status` | Selection | `pending`, `approved`, `rejected`, `escalated`, `bypassed` | +| `comment` | Text | Reviewer comment | +| `acted_at` | Datetime | When action was taken | + +### 25.3 Model (`encoach.approval.request`) + +| Field | Type | Description | +|-------|------|-------------| +| `workflow_id` | Many2one | Workflow template | +| `res_model` | Char | Target model (e.g., `encoach.exam`) | +| `res_id` | Integer | Target record ID | +| `current_stage_id` | Many2one | Current active stage | +| `requester_id` | Many2one | User who submitted for approval | +| `state` | Selection | `in_progress`, `approved`, `rejected`, `bypassed` | +| `bypass_reason` | Text | Justification if bypassed | +| `created_at` | Datetime | Request creation time | + +### 25.4 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/approval-workflows` | JWT | Paginated workflows | +| `POST` | `/api/approval-workflows` | JWT | Create workflow with stages | +| `GET` | `/api/approval-workflows/{id}` | JWT | Get workflow with stages | +| `PATCH` | `/api/approval-workflows/{id}` | JWT | Update workflow and stages | +| `DELETE` | `/api/approval-workflows/{id}` | JWT | Delete workflow | +| `POST` | `/api/approval-requests` | JWT | Submit item for approval | +| `GET` | `/api/approval-requests` | JWT | List approval requests (filter: state, type) | +| `POST` | `/api/approval-requests/{id}/approve` | JWT | Approve current stage | +| `POST` | `/api/approval-requests/{id}/reject` | JWT | Reject at current stage | +| `POST` | `/api/approval-requests/{id}/bypass` | JWT | Bypass approval (requires justification) | +| `POST` | `/api/approval-requests/{id}/return` | JWT | Return to specific stage | + +### 25.5 Cron: Auto-Escalation + +A server cron runs daily to check approval stages that have exceeded `max_days`. For stages with `auto_escalate = True`, the system automatically advances to the next stage and sends a notification email to the new approver with escalation reason. + +--- + +## 26. Courseware and Content Delivery + +**Module:** `encoach_courseware` +**Dependencies:** `encoach_core`, `openeducat_core`, `encoach_ai` + +### 26.1 Model (`encoach.course.chapter`) + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char (required) | Chapter title | +| `course_id` | Many2one (`op.course`) | Parent course | +| `sequence` | Integer | Display order | +| `description` | Text | Chapter description | +| `start_date` | Datetime | Scheduled start date | +| `end_date` | Datetime | Optional end date | +| `unlock_mode` | Selection | `auto_date`, `manual`, `prerequisite` | +| `is_unlocked` | Boolean | Current unlock status | +| `topic_id` | Many2one (`encoach.topic`) | Bridge to adaptive engine | +| `material_ids` | One2many | Chapter materials | +| `assignment_ids` | Many2many (`encoach.assignment`) | Linked assignments | +| `exam_ids` | Many2many (`encoach.exam`) | Linked exams/quizzes | +| `active` | Boolean | Soft-delete flag | + +### 26.2 Model (`encoach.chapter.material`) + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char (required) | Material title | +| `chapter_id` | Many2one | Parent chapter | +| `type` | Selection | `pdf`, `document`, `video`, `audio`, `image`, `link`, `article` | +| `file` | Binary (attachment=True) | Uploaded file | +| `url` | Char | External URL | +| `description` | Text | Description | +| `sequence` | Integer | Display order | +| `allow_download` | Boolean | Student download permission | +| `is_book` | Boolean | Course book flag | +| `book_chapters` | Text | JSON book chapter structure | +| `active` | Boolean | Soft-delete flag | + +### 26.3 Model (`encoach.chapter.progress`) + +| Field | Type | Description | +|-------|------|-------------| +| `student_id` | Many2one (`res.users`) | Student | +| `chapter_id` | Many2one | Chapter | +| `status` | Selection | `not_started`, `in_progress`, `completed` | +| `started_at` | Datetime | First access time | +| `completed_at` | Datetime | Completion time | +| `materials_completed` | Integer | Count of materials viewed | +| `materials_total` | Integer | Computed total materials | + +### 26.4 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/courses/{courseId}/chapters` | JWT | List chapters (ordered by sequence) | +| `POST` | `/api/courses/{courseId}/chapters` | JWT (teacher) | Create chapter | +| `GET` | `/api/chapters/{id}` | JWT | Chapter detail with material count | +| `PATCH` | `/api/chapters/{id}` | JWT (teacher) | Update chapter | +| `DELETE` | `/api/chapters/{id}` | JWT (teacher) | Soft-delete chapter | +| `POST` | `/api/chapters/{id}/unlock` | JWT (teacher) | Manually unlock | +| `POST` | `/api/chapters/{id}/lock` | JWT (teacher) | Manually lock | +| `PATCH` | `/api/courses/{courseId}/chapters/reorder` | JWT (teacher) | Reorder (body: `{ids: []}`) | +| `GET` | `/api/chapters/{id}/progress` | JWT | Student progress | +| `POST` | `/api/chapters/{id}/progress/complete` | JWT (student) | Mark chapter completed | +| `GET` | `/api/chapters/{chapterId}/materials` | JWT | List materials | +| `POST` | `/api/chapters/{chapterId}/materials` | JWT (teacher) | Upload material (multipart) | +| `PATCH` | `/api/materials/{id}` | JWT (teacher) | Update material metadata | +| `DELETE` | `/api/materials/{id}` | JWT (teacher) | Delete material | +| `GET` | `/api/materials/{id}/download` | JWT | Download file (streaming response) | +| `POST` | `/api/materials/{id}/viewed` | JWT (student) | Record material view | +| `PATCH` | `/api/chapters/{chapterId}/materials/reorder` | JWT (teacher) | Reorder materials | + +### 26.5 AI Workbench Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `POST` | `/api/workbench/generate-outline` | JWT (teacher) | AI generates course outline from requirements (topic, objectives, complexity) | +| `POST` | `/api/workbench/generate-chapter` | JWT (teacher) | AI generates content for a specific chapter | +| `POST` | `/api/workbench/generate-rubric` | JWT (teacher) | AI generates grading rubric | +| `POST` | `/api/workbench/regenerate` | JWT (teacher) | Regenerate specific section | +| `POST` | `/api/workbench/suggest-materials` | JWT (teacher) | AI suggests supplementary materials based on student performance profiles | +| `POST` | `/api/workbench/publish` | JWT (teacher) | Publish generated content to course chapters (may trigger approval workflow) | + +AI Workbench uses GPT-4o (temp 0.7 for generation) and calls `encoach_ai` service layer. + +### 26.6 Cron: Auto-Unlock Chapters + +Server cron runs every hour. For chapters with `unlock_mode = 'auto_date'` and `start_date <= now()` and `is_unlocked = False`, set `is_unlocked = True` and trigger notification. + +--- + +## 27. Communication System + +**Module:** `encoach_communication` +**Dependencies:** `encoach_core`, `openeducat_core` + +### 27.1 Model (`encoach.discussion.board`) + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char (required) | Board title | +| `course_id` | Many2one (`op.course`) | Associated course | +| `batch_id` | Many2one (`op.batch`) | Associated batch (optional) | +| `chapter_id` | Many2one (`encoach.course.chapter`) | Associated chapter (optional) | +| `assignment_id` | Many2one | Associated assignment (optional) | +| `is_enabled` | Boolean | Teacher toggle | +| `allow_student_posts` | Boolean | Student thread creation permission | +| `post_count` | Integer | Computed count of posts | + +### 27.2 Model (`encoach.discussion.post`) + +| Field | Type | Description | +|-------|------|-------------| +| `board_id` | Many2one | Parent board | +| `parent_id` | Many2one (self) | Parent post for threading | +| `author_id` | Many2one (`res.users`) | Author | +| `title` | Char | Thread title (root posts only) | +| `content` | Text | Post body (markdown) | +| `attachment_ids` | Many2many (`ir.attachment`) | File attachments | +| `is_pinned` | Boolean | Teacher pin | +| `is_resolved` | Boolean | Resolved flag (Q&A mode) | +| `reply_count` | Integer | Computed child count | +| `created_at` | Datetime | Post timestamp | + +### 27.3 Model (`encoach.announcement`) + +| Field | Type | Description | +|-------|------|-------------| +| `title` | Char (required) | Announcement title | +| `content` | Text | Body (markdown) | +| `author_id` | Many2one (`res.users`) | Author | +| `course_id` | Many2one (`op.course`) | Target course (null = system-wide) | +| `batch_id` | Many2one (`op.batch`) | Target batch (null = all batches) | +| `priority` | Selection | `normal`, `important`, `urgent` | +| `is_published` | Boolean | Published status | +| `published_at` | Datetime | Publish timestamp | +| `expires_at` | Datetime | Expiry time | +| `send_email` | Boolean | Also send via email | +| `attachment_ids` | Many2many (`ir.attachment`) | Attachments | + +### 27.4 Model (`encoach.message`) + +| Field | Type | Description | +|-------|------|-------------| +| `sender_id` | Many2one (`res.users`) | Sender | +| `recipient_id` | Many2one (`res.users`) | Recipient | +| `subject` | Char | Subject line | +| `content` | Text | Message body | +| `is_read` | Boolean | Read flag | +| `read_at` | Datetime | Read timestamp | +| `attachment_ids` | Many2many (`ir.attachment`) | Attachments | +| `send_email_copy` | Boolean | Send email copy | +| `created_at` | Datetime | Sent time | + +### 27.5 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/discussion-boards` | JWT | List boards (filter: `course_id`, `batch_id`) | +| `POST` | `/api/discussion-boards` | JWT (teacher) | Create board | +| `PATCH` | `/api/discussion-boards/{id}` | JWT (teacher) | Update settings | +| `GET` | `/api/discussion-boards/{id}/posts` | JWT | Paginated posts (threaded) | +| `POST` | `/api/discussion-boards/{id}/posts` | JWT | Create post/reply | +| `PATCH` | `/api/posts/{id}` | JWT | Update own post | +| `DELETE` | `/api/posts/{id}` | JWT (teacher/admin) | Delete post | +| `POST` | `/api/posts/{id}/pin` | JWT (teacher) | Pin/unpin toggle | +| `POST` | `/api/posts/{id}/resolve` | JWT (teacher) | Mark as resolved | +| `GET` | `/api/announcements` | JWT | List announcements (filter: `course_id`, `priority`) | +| `POST` | `/api/announcements` | JWT (teacher/admin) | Create announcement | +| `PATCH` | `/api/announcements/{id}` | JWT | Update | +| `DELETE` | `/api/announcements/{id}` | JWT | Delete | +| `POST` | `/api/announcements/{id}/publish` | JWT | Publish | +| `GET` | `/api/messages` | JWT | Inbox (filter: `is_read`) | +| `GET` | `/api/messages/sent` | JWT | Sent messages | +| `POST` | `/api/messages` | JWT | Send message | +| `GET` | `/api/messages/{id}` | JWT | Message detail (auto-marks read) | +| `DELETE` | `/api/messages/{id}` | JWT | Delete message | +| `GET` | `/api/messages/unread-count` | JWT | Unread count `{count: N}` | + +### 27.6 Email Integration + +When `send_email = True` on announcements or `send_email_copy = True` on messages, the module uses Odoo's `mail.thread` mixin to send emails through the configured outgoing mail server. + +--- + +## 28. Notification Engine + +**Module:** `encoach_notification` +**Dependencies:** `encoach_core` + +### 28.1 Model (`encoach.notification`) + +| Field | Type | Description | +|-------|------|-------------| +| `user_id` | Many2one (`res.users`) | Recipient | +| `title` | Char | Notification title | +| `message` | Text | Body | +| `type` | Selection | `deadline`, `chapter_unlock`, `result_release`, `announcement`, `assignment`, `exam`, `message`, `system` | +| `action_url` | Char | Frontend URL to navigate to | +| `is_read` | Boolean | Read status | +| `read_at` | Datetime | Read timestamp | +| `channel` | Selection | `in_app`, `email`, `both` | +| `created_at` | Datetime | Created time | + +### 28.2 Model (`encoach.notification.rule`) + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Rule name | +| `event_type` | Selection | `assignment_due`, `exam_due`, `chapter_unlock`, `result_release`, `submission_graded`, `extension_response` | +| `days_before` | Integer | Days before event to trigger | +| `frequency` | Selection | `once`, `daily`, `custom` | +| `custom_intervals` | Text (JSON) | Custom intervals array (e.g., `[7, 3, 1]`) | +| `channel` | Selection | `in_app`, `email`, `both` | +| `entity_id` | Many2one | Entity scope | +| `active` | Boolean | Active flag | + +### 28.3 Model (`encoach.notification.preferences`) + +| Field | Type | Description | +|-------|------|-------------| +| `user_id` | Many2one (`res.users`) | One per user | +| `email_enabled` | Boolean | Master email toggle | +| `assignment_alerts` | Boolean | Assignment notifications | +| `exam_alerts` | Boolean | Exam notifications | +| `chapter_alerts` | Boolean | Chapter unlock notifications | +| `announcement_alerts` | Boolean | Announcement notifications | +| `message_alerts` | Boolean | Message notifications | + +### 28.4 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/notifications` | JWT | Paginated list (filter: `type`, `is_read`) | +| `POST` | `/api/notifications/{id}/read` | JWT | Mark as read | +| `POST` | `/api/notifications/read-all` | JWT | Mark all as read | +| `GET` | `/api/notifications/unread-count` | JWT | `{count: N}` | +| `GET` | `/api/notification-rules` | JWT (admin) | List rules | +| `POST` | `/api/notification-rules` | JWT (admin) | Create rule | +| `PATCH` | `/api/notification-rules/{id}` | JWT (admin) | Update rule | +| `DELETE` | `/api/notification-rules/{id}` | JWT (admin) | Delete rule | +| `GET` | `/api/notification-preferences` | JWT | Get user preferences | +| `PATCH` | `/api/notification-preferences` | JWT | Update preferences | + +### 28.5 Crons + +1. **Deadline Reminders:** Runs daily. Checks all active rules, matches upcoming events (assignments, exams) within `days_before`, creates notifications and sends emails per user preferences. +2. **Chapter Unlock Notifications:** Triggered by the courseware cron when chapters are auto-unlocked. + +--- + +## 29. FAQ System + +**Module:** `encoach_faq` +**Dependencies:** `encoach_core` + +### 29.1 Model (`encoach.faq.category`) + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Category name | +| `sequence` | Integer | Display order | +| `icon` | Char | Icon identifier | +| `audience` | Selection | `student`, `entity`, `both` | +| `active` | Boolean | Active flag | + +### 29.2 Model (`encoach.faq.item`) + +| Field | Type | Description | +|-------|------|-------------| +| `question` | Char | Question text | +| `answer` | Text | Answer (markdown, embedded images/video) | +| `category_id` | Many2one | Parent category | +| `audience` | Selection | `student`, `entity`, `both` | +| `image` | Binary | Optional image | +| `video_url` | Char | Optional video URL | +| `sequence` | Integer | Display order | +| `active` | Boolean | Active flag | + +### 29.3 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `GET` | `/api/faq/categories` | Public/JWT | List categories (filter: `audience`) | +| `POST` | `/api/faq/categories` | JWT (admin) | Create category | +| `PATCH` | `/api/faq/categories/{id}` | JWT (admin) | Update category | +| `DELETE` | `/api/faq/categories/{id}` | JWT (admin) | Delete category | +| `GET` | `/api/faq/items` | Public/JWT | List items (filter: `category_id`, `audience`, `search`) | +| `POST` | `/api/faq/items` | JWT (admin) | Create item | +| `PATCH` | `/api/faq/items/{id}` | JWT (admin) | Update item | +| `DELETE` | `/api/faq/items/{id}` | JWT (admin) | Delete item | + +--- + +## 30. Plagiarism Detection + +**Module enhancement:** `encoach_ai_grading` (add plagiarism sub-service) + +### 30.1 Plagiarism Report Storage + +Add to `encoach.submission` or create `encoach.plagiarism.report`: + +| Field | Type | Description | +|-------|------|-------------| +| `submission_id` | Many2one | Target submission | +| `overall_score` | Float | AI probability score (0-1) | +| `per_sentence` | Text (JSON) | Per-sentence analysis from GPTZero | +| `report_pdf` | Binary | Generated PDF report | +| `checked_at` | Datetime | When check was run | + +### 30.2 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `POST` | `/api/plagiarism/check` | JWT (teacher) | Submit text for GPTZero analysis | +| `GET` | `/api/plagiarism/report/{submissionId}` | JWT | Get plagiarism report | +| `GET` | `/api/plagiarism/report/{submissionId}/download` | JWT | Download PDF report | + +### 30.3 Integration + +- Uses GPTZero `v2/predict/text` endpoint (already configured in `encoach_ai_grading`) +- Can be enabled/disabled per assignment via `plagiarism_enabled` boolean on `encoach.assignment` +- Configurable max submissions for plagiarism check via `plagiarism_max_checks` integer + +--- + +## 31. Official Exam Access + +**Module enhancement:** `encoach_exam` (add official access modes) + +### 31.1 Model Extensions + +Add to `encoach.exam`: + +| Field | Type | Description | +|-------|------|-------------| +| `is_exercise` | Boolean | Exercise (practice, no journey tracking) vs Exam | +| `is_official` | Boolean | Official exam flag | +| `access_mode` | Selection | `normal`, `link`, `landing_page`, `separate_login` | +| `access_token` | Char | Unique access token (auto-generated) | +| `access_code` | Char | Exam access code | +| `activation_start` | Datetime | Exam start time | +| `activation_end` | Datetime | Exam end time | +| `generate_unique_per_student` | Boolean | AI generates unique variant per student | +| `reminder_count` | Integer | Number of reminders to send | +| `reminder_frequency` | Selection | `once`, `daily`, `custom` | + +### 31.2 API Endpoints + +| Method | Path | Auth | Description | +|--------|------|------|-------------| +| `POST` | `/api/exam/{id}/generate-link` | JWT (teacher) | Generate unique access token/URL | +| `GET` | `/api/exam/access/{token}` | Public | Access exam via token (validates token, returns exam info) | +| `POST` | `/api/exam/official-login` | Public | Login with exam code + credentials | +| `POST` | `/api/exam/{id}/suspend` | JWT (teacher) | Suspend exam | +| `POST` | `/api/exam/{id}/revoke` | JWT (teacher) | Revoke exam access | + +--- + +## 32. Non-Functional Requirements + +### 32.1 Performance + +| ID | Requirement | +|----|-------------| +| NFR-PERF-01 | API response time < 500ms for CRUD endpoints | +| NFR-PERF-02 | AI endpoints may take up to 30s (use async job for long operations) | +| NFR-PERF-03 | Pagination: default `size=20`, max `size=100` | + +### 32.2 Security + +| ID | Requirement | +|----|-------------| +| NFR-SEC-01 | JWT tokens expire after 24 hours | +| NFR-SEC-02 | All endpoints validate entity-scoped permissions | +| NFR-SEC-03 | Rate limiting on AI endpoints (configurable) | +| NFR-SEC-04 | CORS configured for frontend origin | +| NFR-SEC-05 | File upload size limit: 50MB | +| NFR-SEC-06 | API keys stored in `ir.config_parameter`, never in code | + +### 32.3 Scalability + +| ID | Requirement | +|----|-------------| +| NFR-SCALE-01 | Support 10,000+ concurrent students | +| NFR-SCALE-02 | Support 50+ subjects, 500+ topics per subject, 1000+ resources per subject | +| NFR-SCALE-03 | Database indices on all foreign keys and frequently filtered fields | + +### 32.4 Reliability + +| ID | Requirement | +|----|-------------| +| NFR-REL-01 | AI service failures return graceful error (never 500) | +| NFR-REL-02 | Webhook processing is idempotent | +| NFR-REL-03 | Soft-delete for resources (preserve completion records) | + +### 32.5 API Conventions + +| Convention | Detail | +|-----------|--------| +| Date format | ISO 8601 (`YYYY-MM-DD` or `YYYY-MM-DDTHH:MM:SS`) | +| Pagination | `?page=1&size=20` returns `{ "items": [...], "total": N, "page": 1, "size": 20 }` | +| Error shape | `{ "error": "message", "code": "ERROR_CODE" }` with HTTP status | +| ID fields | Many2one serialized as `{field}_id` (int) + `{field}_name` (str) | +| List fields | Many2many serialized as `{field}_ids` (int[]) + `{field}_names` (str[]) | +| Binary fields | Base64-encoded strings or separate download endpoint | +| Auth header | `Authorization: Bearer ` | + +--- + +## 33. Implementation Priority + +| Priority | Modules | Rationale | +|----------|---------|-----------| +| **P0** | `encoach_core`, `encoach_api` (auth, users, entities, permissions) | Foundation — blocks everything | +| **P0** | `openeducat_core` (port to v19), `encoach_lms_api` (courses, batches, basic serialization) | LMS foundation | +| **P1** | `encoach_taxonomy`, `encoach_adaptive`, `encoach_adaptive_api`, `encoach_adaptive_ai` | Core adaptive learning loop | +| **P1** | `encoach_exam`, `encoach_ai_generation`, `encoach_ai_grading` | Exam engine | +| **P1** | `encoach_resources` | Learning content | +| **P2** | `encoach_courseware` (chapters, materials, progress, AI workbench) | Structured course delivery | +| **P2** | `encoach_communication` (discussions, announcements, messaging) | Collaboration | +| **P2** | `openeducat_timetable`, `openeducat_attendance`, `openeducat_classroom` (port to v19) | LMS timetable/attendance | +| **P2** | `openeducat_admission` (port to v19) + admission endpoints | Enrollment workflow | +| **P2** | Academic years/terms, departments endpoints | Institutional calendar | +| **P2** | `encoach_ai`, `encoach_ai_media` | AI services + media | +| **P2** | `encoach_assignment`, `encoach_classroom` | Assignments + groups | +| **P3** | `encoach_notification` (rules, email delivery, preferences) | User engagement | +| **P3** | Enhanced approval workflows (stages, escalation, bypass) | Governance | +| **P3** | Plagiarism detection (GPTZero integration) | Academic integrity | +| **P3** | Official exam access modes (link, landing, separate login) | Exam security | +| **P3** | Late submission handling, extension requests | Assignment workflow | +| **P3** | `openeducat_exam` (port to v19) + institutional exam endpoints | Institutional assessment | +| **P3** | `openeducat_assignment` (port to v19) + submission endpoints | Homework workflow | +| **P3** | Subject registration endpoints | Student subject selection | +| **P3** | `encoach_training`, analytics endpoints | Training + analytics | +| **P3** | `encoach_sis`, `encoach_branding` | University integration | +| **P4** | `encoach_faq` (categories, items, role-filtered) | User support | +| **P4** | `encoach_subscription` (Stripe, PayPal, Paymob) | Payments | +| **P4** | `encoach_ticket` | Support | +| **P4** | Storage | Operational features | + +--- + +## Appendix A: Complete Endpoint Summary + +Total API endpoints: **280+** + +| Service Area | Endpoint Count | +|-------------|---------------| +| Auth & Users | 10 | +| Entities & Permissions | 9 | +| LMS (Courses, Batches, Timetable, Attendance, Grades) | 16 | +| Academic Years, Terms, Departments | 14 | +| Admissions | 12 | +| Subject Registration | 6 | +| EnCoach Exams (AI) | 15 | +| Institutional Exams | 21 | +| EnCoach Assignments | 7 | +| Course Assignments & Submissions | 11 | +| Classrooms & Groups | 7 | +| Taxonomy | 16 | +| Adaptive Learning | 17 | +| Resources | 7 | +| AI Coaching | 6 | +| AI Evaluation | 4 | +| AI Generation | 2 | +| AI Media | 3 | +| AI Analytics | 6 | +| Training | 3 | +| Statistics | 4 | +| Subscriptions & Payments | 8 + 3 webhooks | +| Tickets | 4 | +| Storage | 2 | +| Approval Workflows (Enhanced) | 11 | +| **Courseware (Chapters + Materials + Workbench)** | **23** | +| **Discussion Boards + Posts** | **9** | +| **Announcements** | **5** | +| **Messaging** | **6** | +| **Notifications + Rules + Preferences** | **10** | +| **FAQ (Categories + Items)** | **8** | +| **Plagiarism Detection** | **3** | +| **Official Exam Access** | **5** | + +--- + +## Appendix B: Model Relationship Diagram + +``` +res.users ──extends──> encoach.user + │ │ + │ ├── entity_ids ──> encoach.entity + │ │ └── role_ids ──> encoach.role + │ │ └── permission_ids ──> encoach.permission + │ │ + │ ├── op_student_id ──> op.student ──> op.student.course ──> op.course + │ │ ├── op.batch + │ │ ├── op.subject + │ │ └── op.department + │ │ + │ └── op_faculty_id ──> op.faculty + │ + ├── encoach.exam ──> encoach.subject (taxonomy) + │ ├── encoach.domain + │ │ └── encoach.topic + │ │ ├── encoach.learning.objective + │ │ ├── encoach.proficiency + │ │ └── encoach.resource + │ │ + │ └── encoach.learning.plan + │ └── encoach.learning.plan.item ──> encoach.topic + │ + ├── op.academic.year ──> op.academic.term + │ + ├── op.admission.register ──> op.admission ──> op.student + │ + ├── op.exam.session ──> op.exam ──> op.exam.attendees + │ └── op.marksheet.register ──> op.marksheet.line + │ + ├── op.assignment ──> op.assignment.sub.line (submissions) + │ + ├── encoach.course.chapter ──> op.course + │ ├── encoach.chapter.material + │ ├── encoach.chapter.progress ──> res.users + │ └── encoach.topic (bridge to adaptive) + │ + ├── encoach.discussion.board ──> op.course / op.batch / encoach.course.chapter + │ └── encoach.discussion.post (self-referencing for threads) + │ + ├── encoach.announcement ──> op.course / op.batch + │ + ├── encoach.message ──> res.users (sender/recipient) + │ + ├── encoach.notification ──> res.users + │ └── encoach.notification.rule (event triggers) + │ + ├── encoach.faq.category ──> encoach.faq.item + │ + ├── encoach.approval.workflow ──> encoach.approval.stage + │ └── encoach.approval.request + │ + └── encoach.plagiarism.report ──> submission +``` + +--- + +*This SRS is the definitive backend specification for the EnCoach platform on Odoo 19. It covers all 280+ REST API endpoints expected by the React frontend, 35 Odoo modules (8 OpenEduCat + 27 custom), and all AI service integrations.* diff --git a/docs/ENCOACH_PRODUCT_DESCRIPTION.md b/docs/ENCOACH_PRODUCT_DESCRIPTION.md new file mode 100644 index 0000000..805912a --- /dev/null +++ b/docs/ENCOACH_PRODUCT_DESCRIPTION.md @@ -0,0 +1,186 @@ +# EnCoach -- Product Description + +**Prepared for:** UTAS University Management +**Date:** March 24, 2026 +**Version:** 1.0 +**Classification:** Client-Facing + +--- + +## 1. Executive Summary + +EnCoach is an AI-powered adaptive learning platform designed to deliver personalized education across multiple academic subjects. The platform automatically assesses each student's current knowledge level, generates a tailored learning plan, delivers the right content at the right time, and continuously adjusts as the student progresses. EnCoach serves two distinct audiences -- **UTAS-enrolled students** who follow university curriculum with AI-enhanced guidance, and **freelance learners** worldwide who access fully AI-driven self-paced programs. The platform launches with three subjects -- **IELTS/English, Mathematics, and Information Technology** -- and is designed to accommodate any additional subject without rebuilding the system. + +--- + +## 2. Product Vision + +### The Problem + +Traditional learning platforms deliver the same material to every student regardless of their existing knowledge. Students waste time reviewing topics they already understand, while critical gaps in their foundation go unaddressed. Teachers lack visibility into individual student needs at scale, and institutions struggle to provide personalized learning outside the classroom. + +### The Solution + +EnCoach combines a proven Learning Management System with an intelligent adaptive engine that treats every student as an individual. The platform: + +- **Discovers what each student knows** through an AI-driven diagnostic assessment +- **Builds a personalized roadmap** that prioritizes weak areas while respecting how topics build on each other +- **Delivers the right content** -- human-curated materials when available, AI-generated explanations when not +- **Adapts in real time** -- as students learn faster or struggle, the plan adjusts automatically +- **Provides an AI coaching companion** available on every page for hints, explanations, and study advice + +### Strategic Value for UTAS + +| Value | Description | +|-------|-------------| +| **Scalable personalization** | Every UTAS student receives an individualized learning experience without increasing teaching staff | +| **Multi-subject from day one** | English, Math, and IT share a single platform; new subjects can be added by defining a topic structure | +| **Revenue expansion** | Freelance students outside UTAS generate subscription revenue on the same platform | +| **Data-driven insights** | Real-time analytics show administrators exactly where students succeed or struggle, per topic, per class, per department | +| **Quality assurance** | AI-generated content is supplementary -- academic staff control the primary learning materials and approve AI outputs | + +--- + +## 3. Key Capabilities + +### 3.1 Adaptive Learning Engine + +The core innovation of EnCoach. When a student begins a new subject, the platform runs an intelligent diagnostic that adapts in real time -- asking harder questions when answers are correct and easier ones when they are not. Within minutes, the system maps the student's strengths and weaknesses across every topic in the subject. + +From this assessment, the AI generates a **personalized learning plan**: a sequenced path through topics the student needs to study, ordered so that foundational concepts are learned before advanced ones. As the student works through the plan, short mastery quizzes confirm understanding before moving on. If a student struggles, the system provides additional resources and intensifies AI coaching. If they progress quickly, the plan accelerates. + +**For UTAS students**, the learning plan aligns with the university's curriculum and semester schedule. Teachers can view and override individual plans. **For freelance students**, the AI generates the complete plan independently based on the student's goals and timeline. + +### 3.2 Multi-Subject Support + +EnCoach is not a single-purpose English testing tool -- it is a universal education platform. Every subject is organized into the same clear hierarchy: + +- **Subject** (e.g., Mathematics) + - **Domain** (e.g., Algebra) + - **Topic** (e.g., Linear Equations) + +This structure supports any academic discipline. The platform launches with: + +| Subject | Coverage | +|---------|----------| +| **IELTS / English** | Reading, Listening, Writing, Speaking, Grammar, Vocabulary, Pronunciation | +| **Mathematics** | Arithmetic, Algebra, Geometry, Statistics & Probability, Calculus | +| **Information Technology** | Computer Fundamentals, Networking, Databases, Programming, Cybersecurity | + +Adding a new subject (e.g., Arabic, Physics, Business) requires only defining its topic structure -- the adaptive engine, exam system, grading, and analytics apply automatically. + +### 3.3 Learning Management System + +A full-featured LMS for structured academic delivery: + +- **Course management** -- Create courses with modules and lessons, assign instructors, set enrollment limits +- **Student enrollment** -- UTAS students enrolled automatically via SIS sync; freelance students self-enroll +- **Batches** -- Group students for cohort-based learning and shared schedules +- **Timetable** -- Schedule and display class sessions for students, teachers, and administrators +- **Attendance** -- Teachers record attendance; students view their own records; administrators monitor patterns +- **Gradebook** -- Centralized grade management with AI-generated narrative reports for academic reviews + +### 3.4 Exam Engine + +A powerful assessment system that goes far beyond multiple-choice: + +- **AI-generated exams** -- The platform creates new exam content on demand for any subject and difficulty level. English exams include reading passages, listening scripts, writing tasks, and speaking prompts. Math exams include numerical problems, word problems, and multi-step worked problems. IT exams include code completion, scenario-based questions, and true/false items. +- **AI-powered grading** -- Writing and speaking responses are graded automatically against detailed rubrics. Math answers are checked with numerical tolerance. IT code answers are evaluated for correctness and approach. All AI grades can be reviewed and approved by teachers through an approval workflow. +- **AI writing detection** -- Every written submission is scanned for AI-generated content, providing per-sentence confidence scores. +- **Multiple delivery modes** -- Practice exams, timed official exams, scheduled assignments, diagnostic assessments, and mastery quizzes. + +### 3.5 AI Assistant + +An intelligent companion embedded throughout the platform: + +| What It Does | Where | +|-------------|-------| +| **Answers questions** in natural language about any topic | Available on every page via a chat drawer | +| **Gives hints** during practice exercises without revealing the answer | Practice and study pages | +| **Explains grades** so students understand what to improve | After exam results | +| **Suggests what to study next** based on progress and weaknesses | Student dashboard | +| **Generates study tips** personalized to the student's current topic | Topic learning pages | +| **Helps teachers create content** -- course outlines, assignments, rubrics | Teacher course builder | +| **Produces report narratives** for academic reviews | Admin reports | +| **Flags at-risk students** based on attendance, grades, and engagement patterns | Teacher and admin dashboards | + +### 3.6 Administration and Reporting + +Comprehensive tools for managing the platform at every level: + +- **User management** -- Create, search, filter, and export student, teacher, and corporate accounts +- **Multi-tenant organizations** -- Each institution or company operates in its own space with its own roles, permissions, and branding +- **Classroom management** -- Create student groups, transfer students between classes +- **Assignment scheduling** -- Schedule exams with start/end dates, assign to classrooms or individual students, track completion +- **Permission system** -- Granular control over who can view, create, edit, or delete content, organized by subject +- **Analytics dashboards** -- Real-time metrics on student performance, subject completion rates, AI usage, content gaps, and resource utilization +- **Support ticketing** -- Built-in helpdesk for students and staff to report issues +- **Payment management** -- Institutional licensing for UTAS, individual subscriptions for freelance students, with support for multiple payment providers + +--- + +## 4. User Experience + +### The Student Experience + +A student logs in and sees their personalized dashboard: current subjects, learning plan progress, upcoming assignments, and a study streak counter. They select a subject and see their mastery profile -- a visual map showing which topics they have mastered, which they are working on, and which are locked until prerequisites are completed. Clicking a topic opens the learning page with curated materials (PDFs, videos, articles) and AI-generated explanations. After studying, a short mastery quiz confirms understanding. Throughout the experience, the AI coach is always available for hints, explanations, and encouragement. The student can also attend scheduled classes, view their timetable, check grades, and track attendance -- all from a single, unified interface. + +### The Teacher Experience + +A teacher logs in to see their class dashboard with insights at a glance: which students are progressing, which are at risk, and where content gaps exist. They can create courses using the AI course builder that generates outlines from a topic description. When grading, the AI Grading Assistant suggests marks and provides feedback drafts that the teacher can accept, modify, or override. Teachers can view any student's learning plan, adjust it if needed, and monitor mastery across their entire class through a heatmap visualization. Attendance recording and timetable management are integrated directly into their workflow. + +### The Administrator Experience + +An administrator has full visibility across the entire platform. The LMS dashboard shows enrollment numbers, completion rates, and subject-level performance across all courses. The platform dashboard provides user counts, entity statistics, and system health. Administrators manage organizations, roles, and permissions; they create exam structures, configure approval workflows, and oversee the content library. AI-powered reports generate narrative summaries for academic reviews, and the batch optimizer suggests class compositions for balanced learning outcomes. + +--- + +## 5. How AI Powers the Platform + +EnCoach integrates six specialized AI capabilities, each designed for a specific educational purpose: + +| Capability | What It Does for Users | +|-----------|----------------------| +| **Intelligent Conversation** | Powers the AI Assistant, the study coach, grade explanations, writing help, and content generation. Understands context -- it knows what page you are on, what topic you are studying, and what your recent performance looks like. | +| **Speech Recognition** | Converts student voice recordings into text for speaking exam grading. Supports multiple accents and speaking styles. | +| **Text-to-Speech** | Generates natural-sounding audio for English listening exams. Supports 11 distinct voices with regional accents for authentic test preparation. | +| **AI Video Avatars** | Creates video-based speaking prompts with realistic virtual presenters, making speaking practice more engaging and exam-like. | +| **Content Authenticity** | Scans written submissions to detect AI-generated text, ensuring academic integrity with per-sentence confidence analysis. | +| **Smart Recommendations** | Finds the most relevant training tips, study materials, and content recommendations based on semantic understanding of each student's needs -- not just keyword matching. | + +All AI-generated content is supplementary. Academic staff control primary learning materials, and AI outputs can be routed through approval workflows before students see them. + +--- + +## 6. Integration with UTAS + +| Integration Area | How It Works | +|-----------------|-------------| +| **Student Information System (SIS)** | Student enrollment data syncs automatically from UTAS SIS. New students appear in EnCoach without manual data entry. Student records stay synchronized throughout the semester. | +| **Curriculum Alignment** | Learning plans for UTAS students follow the university's curriculum. The topic taxonomy maps to UTAS course structures, ensuring adaptive learning enhances rather than replaces the academic program. | +| **Institutional Licensing** | UTAS operates under an institutional license covering all enrolled students and staff. No individual subscriptions needed for university members. | +| **Teacher and Admin Oversight** | UTAS teachers see their students' AI-generated learning plans and can adjust them. Administrators have full visibility into performance analytics across all departments and subjects. | +| **Branding** | The platform can display UTAS branding (logo, colors) for an institution-native experience. | + +--- + +## 7. Platform at a Glance + +| Dimension | Details | +|-----------|---------| +| **Subjects** | IELTS/English, Mathematics, Information Technology (extensible to any subject) | +| **User Roles** | Student, Teacher, Admin, Corporate, Master Corporate, Agent, Developer | +| **Student Modes** | UTAS Institutional (SIS-synced, curriculum-aligned) and Freelance (self-registered, AI-guided) | +| **AI Capabilities** | Adaptive diagnostics, personalized learning plans, content generation, automated grading, real-time coaching, writing integrity detection | +| **LMS Features** | Courses, batches, timetable, attendance, gradebook, reporting | +| **Exam Types** | Practice, official, assignment-based, diagnostic, mastery quiz | +| **Content Model** | Hybrid -- human-uploaded resources prioritized, AI-generated content fills gaps | +| **Payment Options** | Institutional license, individual subscription, bundled packages | +| **Payment Providers** | Stripe, PayPal, Paymob | +| **Security** | Server-side authorization, role-based access control, encrypted authentication, data isolation between organizations | +| **Deployment** | Cloud-hosted, containerized architecture, automated scaling | +| **Accessibility** | Responsive design (desktop and mobile), accessible form controls, screen reader support | + +--- + +*This document describes the EnCoach platform as specified in the Unified Platform SRS (v1.0, March 2026). For detailed technical specifications, refer to ENCOACH_UNIFIED_SRS.md.* diff --git a/docs/ENCOACH_UNIFIED_SRS.md b/docs/ENCOACH_UNIFIED_SRS.md new file mode 100644 index 0000000..ebf819c --- /dev/null +++ b/docs/ENCOACH_UNIFIED_SRS.md @@ -0,0 +1,2471 @@ +# EnCoach Unified Platform -- Software Requirements Specification + +**Document Version:** 1.0 +**Date:** March 24, 2026 +**Status:** Draft -- Architect Review +**Supersedes:** `ielts-ui/SRS-EnCoach.md` (v2.0), `MATH_IT_ADAPTIVE_LEARNING_SRS.md` (v1.0) +**Author:** EnCoach Engineering Team + +--- + +## Table of Contents + +**Part I -- Platform Foundation** +1. [Introduction](#1-introduction) +2. [System Architecture](#2-system-architecture) +3. [User Roles and Multi-Tenancy](#3-user-roles-and-multi-tenancy) +4. [Authentication and Authorization](#4-authentication-and-authorization) +5. [Global UI Shell](#5-global-ui-shell) + +**Part II -- Universal Subject Engine** +6. [Subject Taxonomy](#6-subject-taxonomy) +7. [Diagnostic Assessment](#7-diagnostic-assessment) +8. [Proficiency Profile](#8-proficiency-profile) +9. [Learning Plan Generation](#9-learning-plan-generation) +10. [Hybrid Content Delivery](#10-hybrid-content-delivery) +11. [Progress Tracking and Mastery](#11-progress-tracking-and-mastery) + +**Part III -- LMS Module** +12. [Course Management](#12-course-management) +13. [Batch and Enrollment](#13-batch-and-enrollment) +14. [Timetable and Attendance](#14-timetable-and-attendance) +15. [Gradebook and Reports](#15-gradebook-and-reports) + +**Part IV -- Exam Engine** +16. [Exam Management](#16-exam-management) +17. [AI Content Generation](#17-ai-content-generation) +18. [Exam Delivery](#18-exam-delivery) +19. [AI Grading](#19-ai-grading) + +**Part V -- AI Services** +20. [AI Services Catalog](#20-ai-services-catalog) +21. [AI Integration in Frontend](#21-ai-integration-in-frontend) + +**Part VI -- Administration** +22. [User Management](#22-user-management) +23. [Entity Management](#23-entity-management) +24. [Classroom Management](#24-classroom-management) +25. [Assignment Management](#25-assignment-management) +26. [Permission Management](#26-permission-management) + +**Part VII -- Support and Commercial** +27. [Ticketing System](#27-ticketing-system) +28. [Subscriptions and Payments](#28-subscriptions-and-payments) +29. [Training Content](#29-training-content) + +**Part VIII -- Institutional LMS (OpenEduCat)** +30. [Academic Year and Term Management](#30-academic-year-and-term-management) +31. [Department Management](#31-department-management) +32. [Admission and Enrollment](#32-admission-and-enrollment) +33. [Subject Registration](#33-subject-registration) +34. [Institutional Exam Sessions](#34-institutional-exam-sessions) +35. [Assignment File Submissions](#35-assignment-file-submissions) + +**Part IX -- Courseware and Content Delivery** +36. [Course Chapters](#36-course-chapters) +37. [Chapter Materials](#37-chapter-materials) +38. [AI Workbench for Course Content](#38-ai-workbench-for-course-content) + +**Part X -- Communication** +39. [Discussion Boards](#39-discussion-boards) +40. [Announcements](#40-announcements) +41. [Messaging](#41-messaging) + +**Part XI -- Notifications and FAQ** +42. [Notification Engine](#42-notification-engine) +43. [FAQ System](#43-faq-system) + +**Part XII -- Technical Specifications** +44. [Data Models](#44-data-models) +45. [REST API Specification](#45-rest-api-specification) +46. [Frontend Page Inventory](#46-frontend-page-inventory) +47. [Non-Functional Requirements](#47-non-functional-requirements) + +--- + +# Part I -- Platform Foundation + +## 1. Introduction + +### 1.1 Purpose + +This document is the definitive SRS for the EnCoach platform rebuild. It specifies all functional and non-functional requirements for a unified AI-powered education platform that serves: + +- **UTAS students** (institutional, SIS-synced, curriculum-aligned learning paths) +- **Freelance students** (self-registered, AI-generated learning plans, subscription-based) + +The platform supports multiple subjects (IELTS/English, Mathematics, Information Technology, and future subjects) through a universal adaptive learning engine. + +### 1.2 Scope + +**In scope:** +- All production features from the existing EnCoach platform (behavioural parity) +- Universal adaptive learning engine (diagnostic, proficiency, learning plans, mastery) +- Multi-subject support (IELTS, Math, IT -- extensible to any subject) +- LMS module (OpenEduCat-backed courses, batches, timetable, attendance) +- Multi-tenant operation (UTAS institutional + freelance self-service) +- AI services integration (GPT-4o, Whisper, Polly, ELAI, GPTZero, FAISS) +- New React frontend with real AI integration (replacing simulated components) +- Odoo 19 backend with REST API + +**Out of scope:** +- Mobile native applications (iOS/Android) +- Pixel-perfect recreation of old UI (new UI/UX takes precedence) +- Database internals beyond Odoo model specifications +- Hosting SLAs and legal/commercial terms + +### 1.3 Definitions + +| Term | Definition | +|------|-----------| +| **Subject** | Top-level academic discipline (IELTS/English, Mathematics, IT). Subjects are the root of the taxonomy. | +| **Domain** | Major area within a subject (e.g., Algebra, Networking, Writing). | +| **Topic** | Specific teachable unit within a domain (e.g., Linear Equations, TCP/IP). | +| **Learning Objective** | Measurable skill a student should gain from a topic. | +| **Entity** | Tenant/organization with licenses, roles, and scoped permissions. UTAS is an entity. | +| **Classroom** | User group with an admin and participants, scoped to an entity. | +| **Assignment** | Scheduled set of exams for assignees; deep link `/exam?assignment={id}`. | +| **Skill Module** | Legacy term for IELTS skill areas (reading, listening, writing, speaking, level). In the new system, skill modules are topics within the English subject. | +| **Mastery Level** | Numeric score (0-100) indicating proficiency on a topic. | +| **Learning Plan** | AI-generated, sequenced list of topics for a student to study. | +| **Resource** | Human-uploaded learning material (PDF, video, link) tagged to topics. | +| **UTAS Student** | Student enrolled through UTAS SIS sync, following institutional curriculum. | +| **Freelance Student** | Self-registered student with AI-generated learning plans, individual subscription. | + +### 1.4 Key Architectural Decisions + +| # | Decision | Rationale | +|---|----------|-----------| +| AD-1 | **Universal Subject Engine replaces hardcoded IELTS** | The exam module's `MODULE_SELECTION` becomes dynamic, driven by subject taxonomy. "Reading, Listening, Writing, Speaking" become skill types within the English subject, not hardcoded platform concepts. This allows Math, IT, and future subjects to use the same engine. | +| AD-2 | **Two student modes** | UTAS students follow curriculum + adaptive learning with SIS sync. Freelance students get fully AI-generated learning plans with no curriculum dependency. Both share the same platform. | +| AD-3 | **AI components become real** | Each of the 15 simulated AI components in the new frontend maps to specific backend AI services. No simulation in production. | +| AD-4 | **OpenEduCat as LMS backbone** | Course, batch, timetable, and attendance models come from OpenEduCat Odoo modules. A REST API bridge exposes them to the React frontend. | +| AD-5 | **Permission model extended for multi-subject** | Current hardcoded permissions (`generate_reading`, `view_writing`, etc.) are replaced with subject-parameterized permissions (`generate_exam:{subject}`, `view_exam:{subject}`). | + +--- + +## 2. System Architecture + +### 2.1 Architecture Overview + +```mermaid +graph TB + subgraph clients ["Client Layer"] + Browser["React 18 SPA
Vite + TypeScript + shadcn/ui
50+ pages"] + end + + subgraph gateway ["API Gateway"] + Nginx["Nginx
SSL Termination
Route Proxy"] + end + + subgraph backend ["Backend -- Odoo 19"] + API["REST API Controllers"] + Core["Core Modules
Users, Entities, Roles"] + Adaptive["Adaptive Engine
Taxonomy, Diagnostic,
Proficiency, Learning Plans"] + Exam["Exam Engine
Universal multi-subject"] + LMS["OpenEduCat LMS
Courses, Batches,
Timetable, Attendance"] + AImod["AI Modules
Generation, Grading,
Media, Coaching"] + Biz["Business Modules
Subscriptions, Tickets,
Registration, Assignments"] + end + + subgraph ai ["AI Services"] + GPT["OpenAI GPT-4o"] + Whisper["Whisper STT
(local)"] + Polly["AWS Polly TTS"] + ELAI_svc["ELAI Avatars"] + GPTZero_svc["GPTZero"] + FAISS_svc["FAISS + SentenceTransformers"] + end + + subgraph data ["Data"] + PG["PostgreSQL 16"] + end + + subgraph external ["External"] + SIS["UTAS SIS"] + Stripe_svc["Stripe"] + PayPal_svc["PayPal"] + Paymob_svc["Paymob"] + end + + Browser -->|HTTPS| Nginx + Nginx -->|"/app/*"| Browser + Nginx -->|"/api/*"| API + API --> Core + API --> Adaptive + API --> Exam + API --> LMS + API --> AImod + API --> Biz + AImod --> GPT + AImod --> Whisper + AImod --> Polly + AImod --> ELAI_svc + AImod --> GPTZero_svc + AImod --> FAISS_svc + Core --> PG + Adaptive --> PG + Exam --> PG + LMS --> PG + Biz --> PG + API <-->|"REST sync"| SIS + Biz --> Stripe_svc + Biz --> PayPal_svc + Biz --> Paymob_svc +``` + +### 2.2 Technology Stack + +| Layer | Technology | +|-------|-----------| +| **Frontend** | React 18, TypeScript, Vite 5, React Router v6, TanStack Query | +| **UI** | shadcn/ui (Radix primitives), Tailwind CSS 3, Recharts, Lucide icons | +| **Forms** | react-hook-form + Zod validation | +| **Backend** | Odoo 19, Python 3.11 | +| **Database** | PostgreSQL 16 | +| **LMS** | OpenEduCat (Odoo-native modules) | +| **AI** | OpenAI GPT-4o/3.5-turbo, Whisper (local base model), AWS Polly Neural, ELAI, GPTZero, FAISS + all-MiniLM-L6-v2 | +| **Deployment** | Docker Compose, Nginx reverse proxy | +| **Version Control** | Gitea | + +### 2.3 Multi-Tenant Model + +```mermaid +graph TB + subgraph tenants ["Tenant Types"] + UTAS["UTAS Entity
Institutional license
SIS-synced students
Curriculum-bound"] + Freelance["Freelance
No entity / self-entity
Self-registered
AI-generated plans
Individual subscription"] + Corp["Corporate Entities
Bulk licenses
Managed enrollment"] + end + + subgraph shared ["Shared Platform"] + SubjectEngine["Universal Subject Engine"] + ExamEngine["Exam Engine"] + AIServices["AI Services"] + LMSmod["LMS Module"] + end + + UTAS --> SubjectEngine + Freelance --> SubjectEngine + Corp --> SubjectEngine + SubjectEngine --> ExamEngine + SubjectEngine --> AIServices + SubjectEngine --> LMSmod +``` + +| Mode | Registration | Learning Plan | Content | Billing | +|------|-------------|---------------|---------|---------| +| **UTAS Student** | SIS sync or admin batch import | AI-generated, curriculum-aligned (topics from UTAS syllabus) | Manual resources from UTAS staff + AI supplementary | Institutional license | +| **Freelance Student** | Self-registration | Fully AI-generated (topic selection from global taxonomy) | AI-generated primary + curated community resources | Individual subscription (Stripe/PayPal/Paymob) | +| **Corporate Student** | Admin batch import or code-based | Teacher/admin assigned + adaptive | Entity-managed resources + AI supplementary | Corporate license | + +--- + +## 3. User Roles and Multi-Tenancy + +### 3.1 User Types + +| Type | Access | Key Capabilities | +|------|--------|-----------------| +| `student` | Student portal | Take exams, follow learning plans, view grades, attend classes, receive AI coaching | +| `teacher` | Teacher portal | Create courses, manage assignments, grade students, upload resources, view class analytics | +| `admin` | Full admin portal | Manage users/entities/classrooms, configure platform, generate exams, manage workflows | +| `corporate` | Corporate dashboard | Manage entity members, view entity statistics, bulk operations | +| `mastercorporate` | Multi-entity corporate | Cross-entity management and reporting | +| `agent` | Sales agent | Visible on landing page, sales operations | +| `developer` | Developer tools | System diagnostics, advanced configuration | + +### 3.2 Entity-Scoped Permissions + +All data access is scoped by entity membership. A user may belong to multiple entities with different roles in each. Permission checks combine **global user type** + **entity role permissions**. + +--- + +## 4. Authentication and Authorization + +### 4.1 Authentication + +| Method | Detail | +|--------|--------| +| **Primary** | Odoo JWT (HS256). Login returns access token; all API calls include `Authorization: Bearer `. | +| **Session** | Token stored in httpOnly cookie or localStorage (frontend decision). | +| **Registration** | Self-registration (freelance), batch import (institutional), code-based (corporate). | +| **Password Reset** | Email-based verification flow via `/api/reset` and `/api/reset/sendVerification`. | + +### 4.2 Authorization -- Entity Role Permissions + +77 entity-scoped permissions organized by category: + +| Category | Permissions | +|----------|-----------| +| **User Management** | `view_students`, `edit_students`, `delete_students`, `view_teachers`, `edit_teachers`, `delete_teachers`, `view_corporates`, `edit_corporates`, `delete_corporates`, `view_mastercorporates`, `edit_mastercorporates`, `delete_mastercorporates`, `create_user`, `create_user_batch` | +| **Exam Management** | `generate_{module}`, `view_{module}`, `delete_{module}` for each subject skill. Legacy: reading/listening/writing/speaking/level. New: parameterized by subject and skill via subject taxonomy. | +| **Classroom** | `view_classrooms`, `create_classroom`, `rename_classrooms`, `add_to_classroom`, `remove_from_classroom`, `delete_classroom`, `upload_classroom` | +| **Entity** | `view_entities`, `rename_entity`, `add_to_entity`, `remove_from_entity`, `delete_entity`, `view_entity_roles`, `create_entity_role`, `rename_entity_role`, `edit_role_permissions`, `assign_to_role`, `delete_entity_role`, `view_entity_statistics` | +| **Assignment** | `view_assignments`, `create_assignment`, `edit_assignment`, `delete_assignment`, `start_assignment`, `archive_assignment` | +| **Content** | `create_code`, `create_code_batch`, `view_code_list`, `delete_code`, `edit_grading_system` | +| **Reporting** | `view_statistics`, `download_statistics_report`, `view_student_performance`, `view_student_record`, `download_student_record`, `download_user_list` | +| **Financial** | `pay_entity`, `view_payment_record` | +| **Workflow** | `view_workflows`, `configure_workflows`, `edit_workflow`, `delete_workflow`, `view_approval_workflows`, `update_exam_privacy`, `view_confidential_exams`, `create_confidential_exams`, `create_public_exams` | + +### 4.3 Global Permissions + +Global permissions control page-level access independent of entity: + +| Topic | Permissions | +|-------|-----------| +| Manage Corporate | `viewCorporate`, `editCorporate`, `deleteCorporate`, `createCodeCorporate` | +| Manage Admin | `viewAdmin`, `editAdmin`, `deleteAdmin`, `createCodeAdmin` | +| Manage Student | `viewStudent`, `editStudent`, `deleteStudent`, `createCodeStudent` | +| Manage Teacher | `viewTeacher`, `editTeacher`, `deleteTeacher`, `createCodeTeacher` | +| Manage Exams | `createReadingExam`, `createListeningExam`, `createWritingExam`, `createSpeakingExam`, `createLevelExam` -- **extended per subject** | +| View Pages | `viewExams`, `viewExercises`, `viewRecords`, `viewStats`, `viewTickets`, `viewPaymentRecords` | +| Manage Groups | `viewGroup`, `editGroup`, `deleteGroup`, `createGroup` | +| Manage Codes | `viewCodes`, `deleteCodes`, `createCodes` | +| Super | `all` | + +### 4.4 Permission Extension for Multi-Subject (AD-5) + +The current permission model is IELTS-hardcoded (`generate_reading`, `createWritingExam`, etc.). For multi-subject support: + +**Strategy:** Add subject-parameterized permissions while maintaining backward compatibility. + +| Current (IELTS-only) | New (Universal) | Mapping | +|----------------------|----------------|---------| +| `generate_reading` | `generate_exam:english:reading` | Existing English exams auto-map | +| `generate_writing` | `generate_exam:english:writing` | Same | +| (new) | `generate_exam:math:algebra` | New subject permissions | +| (new) | `generate_exam:it:networking` | New subject permissions | +| (new) | `manage_taxonomy:{subject}` | Taxonomy administration per subject | +| (new) | `manage_resources:{subject}` | Resource upload per subject | +| (new) | `view_adaptive:{subject}` | View adaptive learning data per subject | + +--- + +## 5. Global UI Shell + +### 5.1 Navbar + +| ID | Requirement | Source | +|----|-------------|--------| +| FR-GNAV-01 | Brand/logo links to role-appropriate dashboard | Production | +| FR-GNAV-02 | Student: subject progress indicators (mastery % per enrolled subject) | New (replaces IELTS-only skill indicators) | +| FR-GNAV-03 | Help button opens ticket submission with page context | Production | +| FR-GNAV-04 | Subscription/expiry indicator; link to payment when applicable | Production | +| FR-GNAV-05 | Profile link to `/profile` | Production | +| FR-GNAV-06 | Mobile-responsive menu | Production | +| FR-GNAV-07 | AI Search Bar (global) -- keyword search with AI-powered suggestions, route to relevant pages | New frontend | +| FR-GNAV-08 | AI Assistant Drawer -- chat-style AI help accessible from any page | New frontend | + +### 5.2 Sidebar Navigation + +| ID | Requirement | +|----|-------------| +| FR-SIDE-01 | Entries appear only when permitted (user type + entity permissions) | +| FR-SIDE-02 | Sidebar minimize preference persisted locally | +| FR-SIDE-03 | Logout ends session and clears state | +| FR-SIDE-04 | Ticket badge shows assigned count | + +**Student sidebar:** Dashboard, Subjects, Courses, Subject Registration, Assignments, Grades, Attendance, Timetable, Discussions, Messages, Announcements, Journey, Profile + +**Teacher sidebar:** Dashboard, Courses, Assignments, Attendance, Students, Timetable, Discussions, Announcements, Profile + +**Admin sidebar (grouped):** + +| Group | Items | +|-------|-------| +| **LMS** | Dashboard, Courses, Students, Teachers, Batches, Timetable, Reports, Settings | +| **Platform** | Platform Dashboard | +| **Institutional** | Academic Years, Departments, Admissions, Exam Sessions, Marksheets | +| **Academic** | Assignments, Exams List, Exam Structures, Rubrics, Generation, Approval Workflows | +| **Management** | Users, Entities, Classrooms, Taxonomy Manager, Resource Manager | +| **Reports** | Student Performance, Stats Corporate, Record | +| **Training** | Vocabulary, Grammar | +| **Support** | Payment Record, Tickets, Settings | + +### 5.3 Breadcrumbs + +Inner pages show: Home > Section > Nested segments (e.g., Assignments > Creator, Training > Vocabulary). + +--- + +# Part II -- Universal Subject Engine + +## 6. Subject Taxonomy + +### 6.1 Hierarchy + +``` +Subject (e.g., Mathematics) +└── Domain (e.g., Algebra) + └── Topic (e.g., Linear Equations) + └── Learning Objective (e.g., "Solve 2-variable systems") +``` + +Topics form a directed acyclic graph via prerequisite relationships. A student cannot begin a topic until all prerequisites reach Proficient (mastery >= 60%). + +### 6.2 IELTS / English Taxonomy + +The existing IELTS skills map into the universal taxonomy: + +``` +English / IELTS +├── Reading +│ ├── Skimming and Scanning (prerequisites: none) +│ ├── Detail Comprehension (prerequisites: Skimming) +│ ├── Inference and Deduction (prerequisites: Detail Comprehension) +│ └── Academic Reading (prerequisites: Inference) +├── Listening +│ ├── Section 1-2: Social/Everyday (prerequisites: none) +│ ├── Section 3-4: Academic (prerequisites: Section 1-2) +│ └── Note/Summary Completion (prerequisites: Section 1-2) +├── Writing +│ ├── Task 1 General: Letter (prerequisites: none) +│ ├── Task 1 Academic: Data Description (prerequisites: none) +│ └── Task 2: Essay (prerequisites: Task 1 General or Task 1 Academic) +├── Speaking +│ ├── Part 1: Introduction (prerequisites: none) +│ ├── Part 2: Long Turn (prerequisites: Part 1) +│ └── Part 3: Discussion (prerequisites: Part 2) +└── General English + ├── Grammar Foundations (prerequisites: none) + ├── Vocabulary Building (prerequisites: none) + └── Pronunciation (prerequisites: none) +``` + +### 6.3 Mathematics Taxonomy + +``` +Mathematics +├── Arithmetic +│ ├── Number Operations (prerequisites: none) +│ ├── Fractions and Decimals (prerequisites: Number Operations) +│ └── Ratios and Proportions (prerequisites: Fractions) +├── Algebra +│ ├── Algebraic Expressions (prerequisites: Number Operations) +│ ├── Linear Equations (prerequisites: Algebraic Expressions) +│ ├── Quadratic Equations (prerequisites: Linear Equations) +│ └── Polynomials (prerequisites: Quadratic Equations) +├── Geometry +│ ├── Basic Shapes (prerequisites: Number Operations) +│ ├── Angles and Triangles (prerequisites: Basic Shapes) +│ ├── Coordinate Geometry (prerequisites: Linear Equations, Basic Shapes) +│ └── Trigonometry (prerequisites: Angles, Coordinate Geometry) +├── Statistics and Probability +│ ├── Data Representation (prerequisites: Number Operations) +│ ├── Central Tendency (prerequisites: Data Representation) +│ └── Basic Probability (prerequisites: Fractions) +└── Calculus + ├── Limits (prerequisites: Polynomials, Coordinate Geometry) + ├── Derivatives (prerequisites: Limits) + └── Integrals (prerequisites: Derivatives) +``` + +### 6.4 Information Technology Taxonomy + +``` +Information Technology +├── Computer Fundamentals +│ ├── Hardware Components (prerequisites: none) +│ ├── Operating Systems (prerequisites: Hardware) +│ └── Number Systems (prerequisites: none) +├── Networking +│ ├── Network Basics (prerequisites: Hardware) +│ ├── TCP/IP Model (prerequisites: Network Basics) +│ ├── IP Addressing (prerequisites: TCP/IP, Number Systems) +│ └── Network Security (prerequisites: IP Addressing) +├── Databases +│ ├── Database Concepts (prerequisites: Operating Systems) +│ ├── SQL Fundamentals (prerequisites: Database Concepts) +│ ├── Database Design (prerequisites: SQL Fundamentals) +│ └── Advanced SQL (prerequisites: Database Design) +├── Programming +│ ├── Programming Logic (prerequisites: none) +│ ├── Python Basics (prerequisites: Programming Logic) +│ ├── Data Structures (prerequisites: Python Basics) +│ └── Object-Oriented Programming (prerequisites: Data Structures) +└── Cybersecurity + ├── Security Fundamentals (prerequisites: Network Security) + └── Cryptography Basics (prerequisites: Security Fundamentals, Number Systems) +``` + +### 6.5 Taxonomy Management + +| Action | Actor | API | +|--------|-------|-----| +| Create/edit subjects | Admin | `POST/PATCH /api/subjects` | +| Create/edit domains | Admin / Staff | `POST/PATCH /api/domains` | +| Create/edit topics with prerequisites | Staff | `POST/PATCH /api/topics` | +| Create/edit learning objectives | Staff | Nested in topic API | +| Bulk import taxonomy (JSON/CSV) | Admin | `POST /api/subjects/{id}/taxonomy/import` | +| AI-suggest sub-topics for a domain | Staff | `POST /api/domains/{id}/ai-suggest` | + +--- + +## 7. Diagnostic Assessment + +### 7.1 Purpose + +When a student begins a new subject, a diagnostic assessment determines their per-topic proficiency. This is the input for learning plan generation. For English, this replaces/extends the existing Level Test. + +### 7.2 Adaptive Algorithm + +The diagnostic uses Computer Adaptive Testing: starts at medium difficulty, adjusts up on correct answers, down on incorrect. Cycles through domains round-robin. + +| Parameter | Default | Configurable | +|-----------|---------|-------------| +| `questions_per_domain` | 4 | Yes (per subject) | +| `total_question_cap` | 25 | Yes | +| `time_limit_minutes` | 45 | Yes | +| `starting_difficulty` | `medium` | Yes | +| `mastery_per_correct` | +25 | Yes | +| `mastery_per_incorrect` | -10 | Yes | + +### 7.3 Question Types per Subject + +| Subject | Question Types | +|---------|---------------| +| **English** | Multiple choice, fill blanks, short answer, essay (writing), oral (speaking) | +| **Math** | Multiple choice, numerical (tolerance-graded), short answer, fill blanks, worked problem (multi-step) | +| **IT** | Multiple choice, true/false, short answer, code completion, scenario-based | + +### 7.4 Integration with Existing Exam Model + +Diagnostics reuse `encoach.exam` with `is_diagnostic = True` and a new `subject_id` field. `MODULE_SELECTION` extended with `math_diagnostic`, `it_diagnostic`. The existing `level` module maps to `english_diagnostic`. + +--- + +## 8. Proficiency Profile + +### 8.1 Mastery Levels + +| Level | Score Range | Color | +|-------|-----------|-------| +| Not Started | 0-19% | Grey | +| Beginner | 20-39% | Red | +| Developing | 40-59% | Orange | +| Proficient | 60-79% | Yellow | +| Mastered | 80-100% | Green | + +### 8.2 Profile Updates + +| Trigger | Update Logic | +|---------|-------------| +| Diagnostic | Initial scores set per topic | +| Practice exercises | +5 correct, -2 incorrect | +| Mastery quiz | Pass (>= threshold): topic mastered. Fail: weighted average recalculation. | +| Time decay | -5% per week of inactivity after 30 days, floor at last quiz score minus 20% | + +--- + +## 9. Learning Plan Generation + +### 9.1 Two Modes + +| Mode | UTAS Student | Freelance Student | +|------|-------------|-------------------| +| **Scope** | Topics from UTAS curriculum for enrolled courses | All topics in selected subject | +| **Constraints** | Semester dates, course schedule | Self-set target date or open-ended | +| **Content** | UTAS-uploaded resources + AI supplementary | AI-generated primary + community resources | +| **Prerequisite enforcement** | Yes, with teacher override | Yes, no override | +| **Plan visibility** | Student + assigned teacher + admin | Student only | + +### 9.2 Algorithm + +1. **Topological sort** -- order topics respecting prerequisites +2. **Filter mastered** -- exclude topics with mastery >= threshold +3. **Prioritize** -- lowest mastery first, balanced across domains +4. **Estimate duration** -- based on topic complexity and current mastery +5. **AI refinement** -- GPT-4o generates motivational summary and specific advice + +### 9.3 Plan Adjustments + +| Trigger | Action | +|---------|--------| +| Faster mastery than estimated | Unlock next topic early | +| 3+ failed mastery quizzes | Additional resources, AI coaching intensified | +| Teacher override (UTAS) | Reorder, add/remove topics | +| 7+ days inactive | Notification; 14+ days pauses plan | + +--- + +## 10. Hybrid Content Delivery + +### 10.1 Content Resolution Order + +1. **Human-uploaded resources** tagged to the topic (PDFs, videos, links) +2. **AI-generated content** if no human resources exist (explanations, worked examples, summaries) +3. **Content gap flag** if neither is available -- notifies admin + +### 10.2 Resource Types + +| Type | Format | Upload | +|------|--------|--------| +| PDF | `.pdf` | File upload | +| Video | URL (YouTube, Vimeo) or file upload | URL or multipart | +| External Link | Any URL | URL field | +| Document | `.docx`, `.pptx` | File upload | +| Interactive | Embedded HTML | URL field | + +### 10.3 AI Coaching + +| Action | Backend Service | Trigger | +|--------|----------------|---------| +| Answer explanation | GPT-4o | After each practice question | +| Hint | GPT-4o | Student requests during practice | +| Study suggestion | GPT-4o | After completing a topic section | +| Weakness analysis | GPT-4o | After failing mastery quiz | +| Formula reference (Math) | Static + GPT-4o | On demand | +| Motivational nudge | GPT-4o | 3+ days inactive | + +--- + +## 11. Progress Tracking and Mastery + +### 11.1 Mastery Quiz + +| Parameter | Value | +|-----------|-------| +| Questions | 5-10 (configurable per subject) | +| Time limit | 15 minutes (configurable) | +| Pass threshold | 80% (configurable per subject) | +| Attempts | Unlimited, new questions each time | +| Cooldown | 1 hour between attempts | +| On pass | Topic completed, next unlocked | +| On fail | Mastery recalculated, AI coaching triggered | + +### 11.2 Spaced Repetition + +| Days Since Mastery | Review | +|-------------------|--------| +| 7 | 3 quick-recall questions | +| 30 | 5 questions at original difficulty | +| 90 | Full mastery quiz equivalent | + +### 11.3 Analytics + +**Student:** Overall mastery %, domain radar chart, plan progress, study streak, upcoming reviews. + +**Teacher:** Class mastery heatmap, at-risk students, content gap report, time per topic vs estimate. + +**Admin:** Subject-level stats (enrollments, completion rates, avg mastery), AI usage metrics, resource utilization. + +--- + +# Part III -- LMS Module + +## 12. Course Management + +### 12.1 Overview + +Courses are managed through OpenEduCat models exposed via REST API. The frontend provides student, teacher, and admin course views. + +### 12.2 Functional Requirements + +| ID | Requirement | Route | Role | +|----|-------------|-------|------| +| FR-CRS-01 | List enrolled courses with progress | `/student/courses` | Student | +| FR-CRS-02 | View course detail with modules and lessons | `/student/courses/:id` | Student | +| FR-CRS-03 | List managed courses | `/teacher/courses` | Teacher | +| FR-CRS-04 | Create new course with modules and lessons | `/teacher/courses/new` | Teacher | +| FR-CRS-05 | Edit existing course | `/teacher/courses/:id/edit` | Teacher | +| FR-CRS-06 | Admin course management (all courses, all entities) | `/admin/courses` | Admin | + +### 12.3 Course Data Model + +| Field | Type | Description | +|-------|------|-------------| +| title | String | Course title | +| code | String | Course code (e.g., "MATH101") | +| subject_id | Reference | Link to subject taxonomy | +| instructor_id | Reference | Assigned teacher | +| description | Text | Course description | +| level | Selection | Beginner, Intermediate, Advanced | +| modules | One2many | Course modules (units) | +| max_capacity | Integer | Enrollment limit | +| start_date / end_date | Date | Course period | +| status | Selection | draft, active, archived | + +--- + +## 13. Batch and Enrollment + +| ID | Requirement | Route | +|----|-------------|-------| +| FR-BATCH-01 | List batches with student counts | `/admin/batches` | +| FR-BATCH-02 | View batch detail with enrolled students | `/admin/batches/:id` | +| FR-BATCH-03 | Create batch, assign students and courses | Admin | +| FR-BATCH-04 | Enrollment: student self-enrollment (freelance) or admin assignment (UTAS) | API | + +--- + +## 14. Timetable and Attendance + +| ID | Requirement | Route | Role | +|----|-------------|-------|------| +| FR-TT-01 | View personal timetable | `/student/timetable` | Student | +| FR-TT-02 | View teaching timetable | `/teacher/timetable` | Teacher | +| FR-TT-03 | Manage timetable (create, edit sessions) | `/admin/timetable` | Admin | +| FR-ATT-01 | View personal attendance | `/student/attendance` | Student | +| FR-ATT-02 | Record attendance for class | `/teacher/attendance` | Teacher | + +--- + +## 15. Gradebook and Reports + +| ID | Requirement | Route | Role | +|----|-------------|-------|------| +| FR-GRD-01 | View personal grades across courses | `/student/grades` | Student | +| FR-GRD-02 | Grade student submissions | `/teacher/assignments/:id` | Teacher | +| FR-RPT-01 | Academic reports with charts | `/admin/reports` | Admin | +| FR-RPT-02 | AI-generated report narratives | `/admin/reports` (AiReportNarrative) | Admin | + +--- + +# Part IV -- Exam Engine + +## 16. Exam Management + +### 16.1 Exam CRUD (Production Parity) + +| ID | Requirement | Source | +|----|-------------|--------| +| FR-EX-01 | Filter exams by module (extended: by subject and skill) | Production | +| FR-EX-02 | Load exam by Exam ID | Production | +| FR-EX-03 | Text search | Production | +| FR-EX-04 | Pagination and page size | Production | +| FR-EX-05 | Columns: title, creator, module, rubrics, difficulty, exercises, timer, access, created at | Production | +| FR-EX-06 | Row actions: set public/private, edit, load, delete | Production | +| FR-EX-07 | **NEW:** Subject filter (English, Math, IT) alongside module filter | New | +| FR-EX-08 | **NEW:** Exercise vs Exam differentiation -- `is_exercise` flag; exercises are self-paced practice (no journey tracking), exams are official graded assessments | Client | +| FR-EX-09 | **NEW:** `is_official` flag on exams -- official exams track to student journey and support special access modes | Client | +| FR-EX-10 | **NEW:** Official exam access modes: (1) unique shareable link, (2) landing page access, (3) separate login screen | Client | +| FR-EX-11 | **NEW:** Exam activation control -- teacher sets start date, end date, activation status | Client | +| FR-EX-12 | **NEW:** Different exam for each student option (AI generates unique variants per student) | Client | +| FR-EX-13 | **NEW:** Configurable reminder frequency -- number of reminders, notification via email and system notification | Client | +| FR-EX-14 | **NEW:** Exam suspend/revoke actions | Client | +| FR-EX-15 | **NEW:** Student inquiry and extension requests on exams | Client | + +### 16.2 Official Exam Access (NEW) + +| Access Mode | Description | Route | +|-------------|-------------|-------| +| **Link Access** | Teacher generates a unique URL; students access exam via the link without full platform login | `/exam/access/{token}` | +| **Landing Page** | Exam appears on the public landing page; students authenticate with exam code + credentials | `/exam/official/{code}` | +| **Separate Login** | Dedicated login screen for the exam only; no access to other platform features | `/exam/login/{examId}` | + +### 16.4 Rubrics (Production Parity) + +| ID | Requirement | +|----|-------------| +| FR-RUB-01-05 | Search, pagination, create rubric, filter dropdown, metadata and edit | +| FR-RG-01-05 | Rubric groups: search, pagination, create, filter, edit/delete | + +### 16.5 Exam Structures (Production Parity) + +| ID | Requirement | +|----|-------------| +| FR-ES-01 | Entity selector | +| FR-ES-02 | Text search | +| FR-ES-03 | Create structure (extended: per subject) | +| FR-ES-04 | Delete structure(s) | +| FR-ES-05 | Pagination | + +--- + +## 17. AI Content Generation + +### 17.1 Generation per Subject + +| Subject | AI Generates | Prompt Model | +|---------|-------------|-------------| +| **English** | Reading passages, listening scripts, writing tasks, speaking questions, level test exercises | GPT-4o (temp 0.7 for generation) | +| **Math** | Questions per topic (MCQ, numerical, word problems, worked problems) | GPT-4o with LaTeX output | +| **IT** | Questions per topic (MCQ, true/false, code completion, scenarios) | GPT-4o with code block output | + +### 17.2 Generation Workflow + +| ID | Requirement | Source | +|----|-------------|--------| +| FR-GEN-01 | Select title, label, entity, subject, and skill/module | Production (extended) | +| FR-GEN-02 | AI generates exam content via GPT-4o | Production | +| FR-GEN-03 | **NEW:** AI Creation Assistant -- modal flow for "Create with AI" for courses, exams, rubrics, assignments | New frontend (AiCreationAssistant) | +| FR-GEN-04 | **NEW:** AI Generator Modal -- configurable generation parameters | New frontend (AiGeneratorModal) | + +--- + +## 18. Exam Delivery + +### 18.1 Delivery Modes + +| Mode | Route | Chrome | +|------|-------|--------| +| Practice | `/exam` | Full UI with navigation | +| Assignment | `/exam?assignment={id}` | Reduced chrome | +| Official | `/official-exam` | Minimal chrome, strict timer | +| Diagnostic | `/student/diagnostic/:subjectId` | Adaptive, one question at a time | +| Mastery Quiz | `/student/mastery-quiz/:topicId` | Standard quiz, fresh questions | + +### 18.2 Media Integration + +| Media | Service | Usage | +|-------|---------|-------| +| Listening audio | AWS Polly TTS | English listening sections (11 neural voices) | +| Speaking video | ELAI avatars | English speaking prompts (7 avatars) | +| Speaking transcription | Whisper STT | Student audio transcription for grading | + +--- + +## 19. AI Grading + +### 19.1 Grading per Subject + +| Subject | Grading Type | Method | +|---------|-------------|--------| +| English Writing | Rubric-based (IELTS band scoring) | GPT-4o (temp 0.1) evaluates Task Achievement, Coherence, Lexical Resource, Grammar | +| English Speaking | Rubric-based (IELTS band scoring) | Whisper transcription + GPT-4o grading | +| English Short Answer | Passage-based | GPT-4o evaluates against correct answers | +| Math MCQ | Exact match | Direct comparison | +| Math Numerical | Tolerance-based | `abs(student - correct) <= tolerance` | +| Math Worked Problem | Step evaluation | GPT-4o evaluates methodology and answer | +| IT MCQ / True-False | Exact match | Direct comparison | +| IT Code Completion | AI evaluation | GPT-4o evaluates correctness, approach, quality | +| IT Scenario | AI evaluation | GPT-4o evaluates against rubric | +| All Writing | AI detection | GPTZero per-sentence analysis | + +### 19.2 Plagiarism Detection (NEW) + +| ID | Requirement | Source | +|----|-------------|--------| +| FR-PLAG-01 | Enable/disable plagiarism check per assignment or exam | Client | +| FR-PLAG-02 | Automatic GPTZero analysis on submission | Client | +| FR-PLAG-03 | Downloadable plagiarism report (PDF) per submission | Client | +| FR-PLAG-04 | Configurable number of allowed submissions with plagiarism check | Client | +| FR-PLAG-05 | Teacher views plagiarism score and per-sentence analysis in grading interface | Client | +| FR-PLAG-06 | Aggregate plagiarism overview for assignment (flagged submissions count) | Client | + +**API Endpoints:** + +| Method | Path | Description | +|--------|------|-------------| +| `POST` | `/api/plagiarism/check` | Run plagiarism check on text/submission | +| `GET` | `/api/plagiarism/report/{submissionId}` | Get plagiarism report | +| `GET` | `/api/plagiarism/report/{submissionId}/download` | Download report as PDF | + +### 19.3 Approval Workflows (Enhanced) + +| ID | Requirement | Source | +|----|-------------|--------| +| FR-AWF-01 | List/filter workflows | Production | +| FR-AWF-02 | Create templates / add workflow | Production | +| FR-AWF-03 | **NEW:** AI Grading Assistant on workflow page | New frontend | +| FR-AWF-04 | **NEW:** Configurable approval stages with number of days per stage (shown as calendar) | Client | +| FR-AWF-05 | **NEW:** Auto-escalation -- if time passes, automatically move to next authority with highlighted reason | Client | +| FR-AWF-06 | **NEW:** Bypass option -- terminate approval flow with mandatory justification sent to final authority | Client | +| FR-AWF-07 | **NEW:** Comments saved through the approval process | Client | +| FR-AWF-08 | **NEW:** Status view of approval progress (first reviewer, rejected, final reviewer, etc.) | Client | +| FR-AWF-09 | **NEW:** Final authority can choose who to pass back the exam to | Client | +| FR-AWF-10 | **NEW:** Configurable email notifications per approval stage | Client | +| FR-AWF-11 | **NEW:** Approval applies to both exams and course materials | Client | + +**Approval Stage Model:** + +| Field | Type | Description | +|-------|------|-------------| +| `workflow_id` | Many2one | Parent workflow | +| `sequence` | Integer | Stage order | +| `approver_id` | Many2one | Approver user | +| `max_days` | Integer | Maximum days before auto-escalation | +| `notification_email` | Char | Email for notifications | +| `status` | Selection | `pending`, `approved`, `rejected`, `escalated`, `bypassed` | +| `comment` | Text | Reviewer comment | +| `acted_at` | Datetime | When action was taken | + +--- + +# Part V -- AI Services + +## 20. AI Services Catalog + +| Service | Model | Config | Usage | +|---------|-------|--------|-------| +| **OpenAI GPT-4o** | gpt-4o (primary), gpt-3.5-turbo (secondary) | Temp: 0.1 grading, 0.7 generation, 0.2 summaries. Max tokens: 4,097. JSON format. | Exam generation, grading, evaluation, training tips, learning plans, coaching, content generation | +| **Whisper** | base (local, ~1GB) | 4 instances, round-robin, 16kHz mono, 30s chunks | Speaking transcription, audio-to-text | +| **AWS Polly** | Neural engine | 11 voices, MP3, 3,000 char chunks | Listening exam audio | +| **ELAI** | 7 avatars | ElevenLabs + Azure voices, fade_in animation | Speaking exam video, virtual tutoring | +| **GPTZero** | v2/predict/text | Per-sentence analysis, confidence scoring | Writing AI detection | +| **FAISS** | IndexFlatL2 + all-MiniLM-L6-v2 | Top-5, per-subject indices | Training tips, content recommendations | + +--- + +## 21. AI Integration in Frontend + +Each simulated AI component in the new frontend maps to a real backend service: + +| Frontend Component | Mock Behavior | Real Backend Integration | +|-------------------|--------------|--------------------------| +| `AiAssistantDrawer` | Canned responses via `mockResponses` map | GPT-4o conversational API. Context: current page, student profile, recent activity. Endpoint: `POST /api/coach/chat` | +| `AiSearchBar` | Keyword-to-route mapping | GPT-4o semantic search + FAISS. Returns relevant content, pages, and actions. Endpoint: `POST /api/ai/search` | +| `AiCreationAssistant` | Simulated creation flows | GPT-4o generates course outlines, exam content, rubrics, assignments based on type parameter. Endpoints: existing `/api/exam/*/generate` + new `/api/courses/ai-generate` | +| `AiGeneratorModal` | Simulated with setTimeout | Real generation call to GPT-4o with progress streaming. Endpoint: existing generation endpoints | +| `AiGradingAssistant` | Fixed suggested marks | Real grading via `POST /api/evaluate/writing` or `/api/evaluate/speaking` or `/api/grading/multiple`. Returns scores + feedback | +| `AiWritingHelper` | `useAiSimulation` delay | GPT-4o writing assistance. Endpoint: `POST /api/coach/writing-help` | +| `AiGradeExplainer` | Static explanation | GPT-4o explains grade breakdown. Endpoint: `POST /api/coach/explain` | +| `AiStudyCoach` | Rotating static tips | Real adaptive engine: proficiency profile + FAISS tips + GPT-4o recommendations. Endpoint: `POST /api/coach/suggest` | +| `AiInsightsPanel` | Static insight cards | GPT-4o analysis of student/class data. Endpoint: `POST /api/ai/insights` | +| `AiTipBanner` | Static tips | Context-aware tips from FAISS + GPT-4o. Endpoint: `GET /api/coach/tip?context={page}` | +| `AiAlertBanner` | Static alerts | Rule-based alerts (attendance, grades) + GPT-4o severity assessment. Endpoint: `GET /api/ai/alerts` | +| `AiReportNarrative` | Static narrative | GPT-4o generates report narrative from analytics data. Endpoint: `POST /api/ai/report-narrative` | +| `AiRiskBadge` | Heuristic from mock data | Risk calculation from attendance + grades + engagement. Endpoint: included in student profile API | +| `AiBatchOptimizer` | Static suggestions | GPT-4o analyzes batch composition and suggests optimizations. Endpoint: `POST /api/ai/batch-optimize` | +| `useAiSimulation` | setTimeout + canned response | Replaced by real TanStack Query mutations to backend APIs | + +--- + +# Part VI -- Administration + +## 22. User Management (Production Parity) + +| ID | Requirement | Route | +|----|-------------|-------| +| FR-USR-01 | Filter by entity | `/users?type=student\|teacher\|corporate\|mastercorporate` | +| FR-USR-02 | Text search (name/email) | Same | +| FR-USR-03 | Download/export | Same | +| FR-USR-04 | Pagination and page size | Same | +| FR-USR-05 | Type-specific columns (name, email, type, entities, classrooms, student ID, verified) | Same | +| FR-USR-06 | **NEW:** Subject enrollment status per student | New | + +--- + +## 23. Entity Management (Production Parity) + +| ID | Requirement | +|----|-------------| +| FR-ENT-01 | Search and pagination | +| FR-ENT-02 | Create entity (label, licenses/capacity, member selection) | +| FR-ENT-03 | Cards: usage/capacity, role counts | +| FR-ENT-04 | Role and permission management per entity | + +--- + +## 24. Classroom Management (Production Parity) + +| ID | Requirement | +|----|-------------| +| FR-CL-01 | Entity filter and search | +| FR-CL-02 | Cards: name, admin, entity, participant count | +| FR-CL-03 | Create classroom | +| FR-CL-04 | Transfer students across classrooms | +| FR-CL-05 | Delete / bulk delete | + +--- + +## 25. Assignment Management (Production Parity) + +| ID | Requirement | +|----|-------------| +| FR-ASG-01 | Tabs: Active, Planned, Past, Start Expired, Archived with counts | +| FR-ASG-02 | Create assignment (entity, dates, classrooms, assignees, exams) | +| FR-ASG-03 | Search and pagination (`state`, `page`, `size`) | +| FR-ASG-04 | Breadcrumb navigation | +| FR-ASG-05 | Assignment execution via `/exam?assignment={id}` | +| FR-ASG-06 | **NEW:** Subject-scoped assignments (assign Math exams, IT exams, not just IELTS) | +| FR-ASG-07 | **NEW:** Late submission handling -- configurable late submission date/time with penalty structure | Client | +| FR-ASG-08 | **NEW:** Extension requests -- students can request deadline extensions through the platform | Client | +| FR-ASG-09 | **NEW:** Submission tracking -- status flow (start date, extension granted, submitted, in review, graded) | Client | +| FR-ASG-10 | **NEW:** Configurable number of allowed submissions per assignment | Client | +| FR-ASG-11 | **NEW:** Revision history -- track all submission versions per student | Client | +| FR-ASG-12 | **NEW:** Reminder notifications -- configurable frequency, sent via email and system notification | Client | + +### 25.2 Late Submission Policy + +| Field | Type | Description | +|-------|------|-------------| +| `late_deadline` | Datetime | Final late submission cutoff | +| `penalty_type` | Selection | `none`, `percentage`, `fixed_deduction` | +| `penalty_value` | Float | Penalty amount (e.g., 10 = 10% or 10 points) | +| `max_submissions` | Integer | Maximum allowed submissions (0 = unlimited) | +| `allow_extensions` | Boolean | Whether students can request extensions | + +### 25.3 Extension Request + +| Field | Type | Description | +|-------|------|-------------| +| `student_id` | Many2one | Requesting student | +| `assignment_id` | Many2one | Target assignment | +| `reason` | Text | Justification | +| `requested_date` | Datetime | Requested new deadline | +| `status` | Selection | `pending`, `approved`, `rejected` | +| `approved_by` | Many2one | Approving teacher | +| `response_note` | Text | Teacher response | + +--- + +## 26. Permission Management (Production Parity + Extension) + +| ID | Requirement | +|----|-------------| +| FR-PERM-01 | Navigate permission types at `/permissions` | +| FR-PERM-02 | View/edit permission details at `/permissions/:id` | +| FR-PERM-03 | **NEW:** Subject-parameterized permissions in UI (select subject, then skill permissions) | + +--- + +# Part VII -- Support and Commercial + +## 27. Ticketing System (Production Parity) + +| ID | Requirement | +|----|-------------| +| FR-TCK-01 | Filters: Status, Type, Assignee, Source (All/Webpage/Platform) | +| FR-TCK-02 | Sort by date | +| FR-TCK-03 | Columns: ID, Type, Reporter, Source, Date, Subject, Status, Assignee, Corporate | +| FR-TCK-04 | Pagination | + +--- + +## 28. Subscriptions and Payments + +### 28.1 Billing Models + +| Model | Description | Payment | +|-------|-------------|---------| +| **Institutional License** | UTAS or corporate entity purchases bulk licenses | Invoice-based or Stripe/PayPal | +| **Individual Subscription** | Freelance student purchases access per subject or platform-wide | Stripe, PayPal, or Paymob | +| **Package** | Predefined bundles (e.g., "IELTS Complete", "Math + IT Bundle") | Per-package pricing | + +### 28.2 Functional Requirements (Production Parity) + +| ID | Requirement | Route | +|----|-------------|-------| +| FR-PAY-01 | Payment page with entity context | `/payment` | +| FR-PAY-02 | Payment record / ledger | `/payment-record` | +| FR-PAY-03 | Package listing | `/api/packages` | +| FR-PAY-04 | Stripe checkout flow | `/api/stripe` | +| FR-PAY-05 | PayPal checkout flow | `/api/paypal` | +| FR-PAY-06 | Paymob checkout flow | `/api/paymob` | +| FR-PAY-07 | Webhook handling (Stripe, PayPal, Paymob) | `/api/*/webhook` | + +--- + +## 29. Training Content + +### 29.1 Existing (Production Parity) + +| ID | Requirement | Route | +|----|-------------|-------| +| FR-TRN-01 | Training hub with entity/user/time filters | `/training` | +| FR-TRN-02 | Vocabulary training (progress, recommended, sections) | `/training/vocabulary` | +| FR-TRN-03 | Grammar training (parallel structure) | `/training/grammar` | +| FR-TRN-04 | Record view with entity/user/time/assignment filters | `/record` | + +### 29.2 New (Subject-Specific Tips) + +| ID | Requirement | +|----|-------------| +| FR-TRN-05 | **NEW:** Math-specific training tips via FAISS (algebra, geometry, statistics indices) | +| FR-TRN-06 | **NEW:** IT-specific training tips via FAISS (networking, databases, programming indices) | +| FR-TRN-07 | **NEW:** Personalized post-exam tips using subject-specific FAISS + GPT-4o selection | + +--- + +# Part VIII -- Institutional LMS (OpenEduCat) + +All LMS features in this part are backed by OpenEduCat community modules (ported to Odoo 19). The `encoach_lms_api` module extends these models and exposes them via REST API to the React frontend. + +--- + +## 30. Academic Year and Term Management + +### 30.1 Overview + +Academic years define the institutional calendar. Each year contains terms (semesters, quarters) that govern course scheduling, batch periods, and exam sessions. + +### 30.2 Data Models (OpenEduCat) + +**`op.academic.year`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Academic year name (e.g., "2026-2027") | +| `start_date` | Date | Year start | +| `end_date` | Date | Year end | +| `term_structure` | Selection | `two_sem`, `two_sem_qua`, `three_sem`, `four_Quarter`, `final_year`, `others` | +| `academic_term_ids` | One2many | Terms within this year | + +**`op.academic.term`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Term name (e.g., "Semester 1") | +| `term_start_date` | Date | Term start | +| `term_end_date` | Date | Term end | +| `academic_year_id` | Many2one | Parent academic year | +| `parent_term` | Many2one | Parent term (for quarters within semesters) | + +### 30.3 Functional Requirements + +| ID | Requirement | Route | Role | +|----|-------------|-------|------| +| FR-AY-01 | List academic years with terms | `/admin/academic-years` | Admin | +| FR-AY-02 | Create academic year with term structure selection | `/admin/academic-years` | Admin | +| FR-AY-03 | Auto-generate terms based on selected structure | `/admin/academic-years` | Admin | +| FR-AY-04 | Edit/delete academic years and terms | `/admin/academic-years` | Admin | +| FR-AY-05 | Link batches and courses to academic terms | Related pages | Admin | + +### 30.4 API Endpoints + +| Method | Path | Description | +|--------|------|-------------| +| `GET` | `/api/academic-years` | List academic years | +| `POST` | `/api/academic-years` | Create academic year | +| `GET` | `/api/academic-years/{id}` | Get year with terms | +| `PATCH` | `/api/academic-years/{id}` | Update year | +| `DELETE` | `/api/academic-years/{id}` | Delete year | +| `POST` | `/api/academic-years/{id}/generate-terms` | Auto-generate terms from structure | +| `GET` | `/api/academic-terms` | List terms (filter by year) | +| `POST` | `/api/academic-terms` | Create term | +| `PATCH` | `/api/academic-terms/{id}` | Update term | +| `DELETE` | `/api/academic-terms/{id}` | Delete term | + +--- + +## 31. Department Management + +### 31.1 Overview + +Departments organize faculty, courses, and subjects into academic units (e.g., "Department of Mathematics", "Department of IT"). + +### 31.2 Data Model (OpenEduCat) + +**`op.department`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Department name | +| `code` | Char | Department code | +| `parent_id` | Many2one | Parent department (for hierarchy) | + +### 31.3 Functional Requirements + +| ID | Requirement | Route | Role | +|----|-------------|-------|------| +| FR-DEPT-01 | List departments | `/admin/departments` | Admin | +| FR-DEPT-02 | Create/edit department | `/admin/departments` | Admin | +| FR-DEPT-03 | Delete department | `/admin/departments` | Admin | +| FR-DEPT-04 | Assign department to courses and faculty | Related pages | Admin | + +### 31.4 API Endpoints + +| Method | Path | Description | +|--------|------|-------------| +| `GET` | `/api/departments` | List departments | +| `POST` | `/api/departments` | Create department | +| `PATCH` | `/api/departments/{id}` | Update department | +| `DELETE` | `/api/departments/{id}` | Delete department | + +--- + +## 32. Admission and Enrollment + +### 32.1 Overview + +The admission workflow manages student applications from submission through confirmation to enrollment. Admission registers define open enrollment windows. + +### 32.2 Data Models (OpenEduCat) + +**`op.admission.register`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Register name (e.g., "Fall 2026 Admissions") | +| `course_id` | Many2one | Target course | +| `start_date` | Date | Application window start | +| `end_date` | Date | Application window end | +| `min_count` | Integer | Minimum applications to proceed | +| `max_count` | Integer | Maximum applications accepted | +| `state` | Selection | `draft`, `confirm`, `cancel`, `done` | +| `product_id` | Many2one | Fee product for admission | + +**`op.admission`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Applicant name | +| `application_number` | Char | Auto-generated application number | +| `register_id` | Many2one | Admission register | +| `course_id` | Many2one | Applied course | +| `batch_id` | Many2one | Target batch | +| `first_name` | Char | First name | +| `middle_name` | Char | Middle name | +| `last_name` | Char | Last name | +| `email` | Char | Email | +| `phone` | Char | Phone | +| `birth_date` | Date | Date of birth | +| `gender` | Selection | `m`, `f`, `o` | +| `nationality` | Many2one | Country | +| `state` | Selection | `draft`, `submit`, `confirm`, `admission`, `reject`, `cancel`, `done` | +| `fees` | Float | Admission fee amount | +| `image` | Binary | Applicant photo | +| `student_id` | Many2one | Created student record (after admission) | + +### 32.3 Functional Requirements + +| ID | Requirement | Route | Role | +|----|-------------|-------|------| +| FR-ADM-01 | List admission registers with status | `/admin/admission-register` | Admin | +| FR-ADM-02 | Create/edit admission register (course, dates, capacity) | `/admin/admission-register` | Admin | +| FR-ADM-03 | Open/close admission register | `/admin/admission-register` | Admin | +| FR-ADM-04 | List admissions with filters (status, course, register) | `/admin/admissions` | Admin | +| FR-ADM-05 | View admission detail | `/admin/admissions/:id` | Admin | +| FR-ADM-06 | Transition admission status (submit, confirm, admit, reject) | `/admin/admissions/:id` | Admin | +| FR-ADM-07 | On admit: auto-create `op.student` and `op.student.course` records | Backend | System | +| FR-ADM-08 | Public admission application form | `/apply` | Public/Student | +| FR-ADM-09 | Applicant status tracking | `/apply/status` | Public | + +### 32.4 API Endpoints + +| Method | Path | Description | +|--------|------|-------------| +| `GET` | `/api/admission-registers` | List registers | +| `POST` | `/api/admission-registers` | Create register | +| `PATCH` | `/api/admission-registers/{id}` | Update register | +| `POST` | `/api/admission-registers/{id}/confirm` | Confirm register | +| `POST` | `/api/admission-registers/{id}/close` | Close register | +| `GET` | `/api/admissions` | List admissions | +| `GET` | `/api/admissions/{id}` | Get admission detail | +| `POST` | `/api/admissions` | Submit admission application | +| `POST` | `/api/admissions/{id}/submit` | Submit for review | +| `POST` | `/api/admissions/{id}/confirm` | Confirm admission | +| `POST` | `/api/admissions/{id}/admit` | Admit applicant (creates student) | +| `POST` | `/api/admissions/{id}/reject` | Reject admission | + +--- + +## 33. Subject Registration + +### 33.1 Overview + +Within enrolled courses, students register for specific subjects. This is required for timetable, attendance, and exam eligibility. + +### 33.2 Data Model (OpenEduCat) + +**`op.subject.registration`** + +| Field | Type | Description | +|-------|------|-------------| +| `student_id` | Many2one | Student | +| `course_id` | Many2one | Course | +| `batch_id` | Many2one | Batch | +| `subject_ids` | Many2many | Selected subjects | +| `min_unit_load` | Float | Minimum units from course config | +| `max_unit_load` | Float | Maximum units from course config | +| `state` | Selection | `draft`, `confirm`, `reject`, `done` | + +### 33.3 Functional Requirements + +| ID | Requirement | Route | Role | +|----|-------------|-------|------| +| FR-SR-01 | Students view available subjects for enrolled courses | `/student/subject-registration` | Student | +| FR-SR-02 | Students select subjects within unit load limits | `/student/subject-registration` | Student | +| FR-SR-03 | Submit registration for approval | `/student/subject-registration` | Student | +| FR-SR-04 | Admin/teacher view and approve/reject registrations | `/admin/students` | Admin | +| FR-SR-05 | Confirmed registration updates `op.student.course.subject_ids` | Backend | System | + +### 33.4 API Endpoints + +| Method | Path | Description | +|--------|------|-------------| +| `GET` | `/api/subject-registrations` | List registrations (filter by student, course, status) | +| `POST` | `/api/subject-registrations` | Create registration | +| `PATCH` | `/api/subject-registrations/{id}` | Update subjects | +| `POST` | `/api/subject-registrations/{id}/confirm` | Confirm registration | +| `POST` | `/api/subject-registrations/{id}/reject` | Reject registration | +| `GET` | `/api/subject-registrations/available` | Get available subjects for current student | + +--- + +## 34. Institutional Exam Sessions + +### 34.1 Overview + +Institutional exam sessions group traditional exams (midterms, finals) for a course/batch. These are separate from EnCoach AI-powered exams. They use the OpenEduCat exam, marksheet, and grading system. + +### 34.2 Data Models (OpenEduCat) + +**`op.exam.session`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Session name (e.g., "Fall 2026 Midterms") | +| `course_id` | Many2one | Course | +| `batch_id` | Many2one | Batch | +| `exam_code` | Char | Session code | +| `start_date` | Date | Session start | +| `end_date` | Date | Session end | +| `exam_type` | Many2one | Exam type (midterm, final, quiz) | +| `evaluation_type` | Selection | `normal` or `grade` | +| `venue` | Many2one | Venue partner | +| `state` | Selection | `draft`, `schedule`, `held`, `cancel`, `done` | +| `exam_ids` | One2many | Exams in this session | + +**`op.exam` (institutional)** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Exam name | +| `session_id` | Many2one | Parent session | +| `subject_id` | Many2one | Subject being examined | +| `exam_code` | Char | Exam code | +| `start_time` | Datetime | Exam start | +| `end_time` | Datetime | Exam end | +| `total_marks` | Integer | Maximum marks | +| `min_marks` | Integer | Passing marks | +| `state` | Selection | `draft`, `schedule`, `held`, `result_updated`, `cancel`, `done` | +| `responsible_id` | Many2many | Responsible faculty | +| `attendees_line` | One2many | Exam attendees with marks | + +**`op.exam.type`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Type name (Midterm, Final, Quiz, Lab) | + +**`op.exam.room`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Room name | +| `classroom_id` | Many2one | Linked classroom | +| `capacity` | Integer | Room capacity | + +**`op.exam.attendees`** + +| Field | Type | Description | +|-------|------|-------------| +| `exam_id` | Many2one | Exam | +| `student_id` | Many2one | Student | +| `room_id` | Many2one | Assigned room | +| `marks` | Integer | Obtained marks | +| `status` | Selection | `pass`, `fail` (computed from marks vs min_marks) | + +**`op.marksheet.register`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Register name | +| `exam_session_id` | Many2one | Exam session | +| `marksheet_line` | One2many | Marksheet lines per student | +| `result_template_id` | Many2one | Result template | +| `state` | Selection | `draft`, `validated`, `cancelled` | +| `total_pass` | Integer | Computed pass count | +| `total_failed` | Integer | Computed fail count | + +**`op.marksheet.line`** + +| Field | Type | Description | +|-------|------|-------------| +| `student_id` | Many2one | Student | +| `marksheet_reg_id` | Many2one | Parent register | +| `result_line` | One2many | Per-exam results | +| `total_marks` | Integer | Computed total | +| `percentage` | Float | Computed percentage | +| `grade` | Char | Computed grade (if grade evaluation) | +| `status` | Selection | `pass`, `fail` (computed) | + +**`op.result.line`** + +| Field | Type | Description | +|-------|------|-------------| +| `marksheet_line_id` | Many2one | Parent marksheet line | +| `exam_id` | Many2one | Exam | +| `student_id` | Many2one | Student | +| `marks` | Integer | Marks obtained | +| `grade` | Char | Computed grade | +| `status` | Selection | `pass`, `fail` (computed from marks vs min_marks) | + +**`op.result.template`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Template name | +| `exam_session_id` | Many2one | Exam session | +| `grade_ids` | Many2many | Grade configuration rules | +| `result_date` | Date | Result publication date | +| `state` | Selection | `draft`, `result_generated` | + +**`op.grade.configuration`** + +| Field | Type | Description | +|-------|------|-------------| +| `min_per` | Integer | Minimum percentage | +| `max_per` | Integer | Maximum percentage | +| `result` | Char | Grade display (e.g., "A", "B+", "Pass") | + +### 34.3 Functional Requirements + +| ID | Requirement | Route | Role | +|----|-------------|-------|------| +| FR-IEX-01 | List exam sessions with status filters | `/admin/exam-sessions` | Admin | +| FR-IEX-02 | Create exam session (course, batch, dates, type) | `/admin/exam-sessions` | Admin | +| FR-IEX-03 | Add exams to session (subject, time, marks) | `/admin/exam-sessions` | Admin | +| FR-IEX-04 | Schedule and manage session state transitions | `/admin/exam-sessions` | Admin | +| FR-IEX-05 | Enter marks for exam attendees | `/admin/exam-sessions` | Admin/Teacher | +| FR-IEX-06 | Configure grade scales | `/admin/marksheets` | Admin | +| FR-IEX-07 | Create result templates and generate marksheets | `/admin/marksheets` | Admin | +| FR-IEX-08 | View marksheet results (pass/fail, grades, percentages) | `/admin/marksheets` | Admin | +| FR-IEX-09 | Students view institutional exam results | `/student/grades` | Student | + +### 34.4 API Endpoints + +| Method | Path | Description | +|--------|------|-------------| +| `GET` | `/api/inst-exam-sessions` | List exam sessions | +| `POST` | `/api/inst-exam-sessions` | Create session | +| `GET` | `/api/inst-exam-sessions/{id}` | Get session with exams | +| `PATCH` | `/api/inst-exam-sessions/{id}` | Update session | +| `DELETE` | `/api/inst-exam-sessions/{id}` | Delete session | +| `POST` | `/api/inst-exam-sessions/{id}/schedule` | Schedule session | +| `POST` | `/api/inst-exam-sessions/{id}/done` | Mark session done | +| `POST` | `/api/inst-exams` | Add exam to session | +| `PATCH` | `/api/inst-exams/{id}` | Update exam | +| `POST` | `/api/inst-exams/{id}/attendees` | Add attendees | +| `PATCH` | `/api/inst-exams/{id}/marks` | Enter marks | +| `GET` | `/api/exam-types` | List exam types | +| `POST` | `/api/exam-types` | Create exam type | +| `GET` | `/api/grade-config` | List grade configurations | +| `POST` | `/api/grade-config` | Create grade config | +| `GET` | `/api/result-templates` | List result templates | +| `POST` | `/api/result-templates` | Create result template | +| `POST` | `/api/result-templates/{id}/generate` | Generate marksheets | +| `GET` | `/api/marksheets` | List marksheets | +| `GET` | `/api/marksheets/{id}` | Get marksheet with results | +| `POST` | `/api/marksheets/{id}/validate` | Validate marksheet | + +--- + +## 35. Assignment File Submissions + +### 35.1 Overview + +Traditional course assignments where students submit files and teachers grade them. Coexists with EnCoach exam-wrapper assignments (`encoach.assignment`). + +### 35.2 Data Models (OpenEduCat) + +**`grading.assignment.type`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Type name (Homework, Project, Lab Report, Presentation) | + +**`grading.assignment`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Assignment title | +| `course_id` | Many2one | Course | +| `subject_id` | Many2one | Subject | +| `issued_date` | Datetime | Issue date | +| `assignment_type` | Many2one | Assignment type | +| `faculty_id` | Many2one | Issuing faculty | +| `point` | Float | Maximum points | + +**`op.assignment` (extends `grading.assignment`)** + +| Field | Type | Description | +|-------|------|-------------| +| `batch_id` | Many2one | Batch | +| `marks` | Float | Maximum marks | +| `description` | Text | Assignment description | +| `state` | Selection | `draft`, `publish`, `finish`, `cancel` | +| `submission_date` | Datetime | Submission deadline | +| `allocation_ids` | Many2many | Allocated students | +| `assignment_sub_line` | One2many | Student submissions | +| `reviewer` | Many2one | Reviewing faculty | + +**`op.assignment.sub.line`** + +| Field | Type | Description | +|-------|------|-------------| +| `assignment_id` | Many2one | Parent assignment | +| `student_id` | Many2one | Submitting student | +| `description` | Text | Submission notes | +| `submission_date` | Datetime | Actual submission time | +| `attachment_ids` | Many2many | Uploaded files | +| `marks` | Float | Awarded marks | +| `state` | Selection | `draft`, `submit`, `accept`, `reject`, `change_req` | +| `faculty_id` | Many2one | Grading faculty | +| `note` | Text | Faculty feedback | + +### 35.3 Functional Requirements + +| ID | Requirement | Route | Role | +|----|-------------|-------|------| +| FR-SUB-01 | Teacher creates course assignment with description, deadline, files | `/teacher/assignments` | Teacher | +| FR-SUB-02 | Teacher publishes assignment (visible to allocated students) | `/teacher/assignments` | Teacher | +| FR-SUB-03 | Student views assigned course assignments with deadlines | `/student/assignments` | Student | +| FR-SUB-04 | Student uploads files as submission | `/student/assignments` | Student | +| FR-SUB-05 | Teacher views submissions per assignment | `/teacher/assignments/:id` | Teacher | +| FR-SUB-06 | Teacher grades submission (marks, feedback, accept/reject/change request) | `/teacher/assignments/:id` | Teacher | +| FR-SUB-07 | Admin views all course assignments across batches | `/admin/assignments` | Admin | + +### 35.4 API Endpoints + +| Method | Path | Description | +|--------|------|-------------| +| `GET` | `/api/course-assignments` | List course assignments | +| `POST` | `/api/course-assignments` | Create assignment | +| `GET` | `/api/course-assignments/{id}` | Get assignment with submissions | +| `PATCH` | `/api/course-assignments/{id}` | Update assignment | +| `POST` | `/api/course-assignments/{id}/publish` | Publish assignment | +| `POST` | `/api/course-assignments/{id}/finish` | Close assignment | +| `GET` | `/api/course-assignments/{id}/submissions` | List submissions | +| `POST` | `/api/course-assignments/{id}/submit` | Student submits (multipart file upload) | +| `PATCH` | `/api/submissions/{id}` | Grade submission (marks, feedback, status) | +| `GET` | `/api/assignment-types` | List assignment types | +| `POST` | `/api/assignment-types` | Create assignment type | + +--- + +# Part IX -- Courseware and Content Delivery + +This part covers the Moodle-style structured course delivery system: chapter-based content organization, material management, and AI-powered course content generation. + +--- + +## 36. Course Chapters + +### 36.1 Overview + +Courses are divided into chapters (modules). Teachers create chapters with scheduled start dates, content materials, and lock/unlock controls. Students progress through chapters sequentially or as unlocked by the teacher. + +### 36.2 Data Model (`encoach.course.chapter`) + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Chapter title | +| `course_id` | Many2one | Parent course (`op.course`) | +| `sequence` | Integer | Display order | +| `description` | Text | Chapter description | +| `start_date` | Datetime | Scheduled start date | +| `end_date` | Datetime | Optional end date | +| `unlock_mode` | Selection | `auto_date` (unlock when start_date reached), `manual` (teacher clicks), `prerequisite` (previous chapter completed) | +| `is_unlocked` | Boolean | Current unlock status | +| `topic_id` | Many2one | Optional link to `encoach.topic` (bridges to adaptive engine) | +| `material_ids` | One2many | Chapter materials | +| `assignment_ids` | Many2many | Linked assignments | +| `exam_ids` | Many2many | Linked exams/quizzes | +| `active` | Boolean | Soft-delete flag | + +### 36.3 Chapter Progress Model (`encoach.chapter.progress`) + +| Field | Type | Description | +|-------|------|-------------| +| `student_id` | Many2one | Student | +| `chapter_id` | Many2one | Chapter | +| `status` | Selection | `not_started`, `in_progress`, `completed` | +| `started_at` | Datetime | When student first accessed | +| `completed_at` | Datetime | When marked complete | +| `materials_completed` | Integer | Count of materials viewed/downloaded | +| `materials_total` | Integer | Total materials in chapter | + +### 36.4 Functional Requirements + +| ID | Requirement | Route | Role | +|----|-------------|-------|------| +| FR-CH-01 | Teacher creates chapters for a course with name, description, sequence | `/teacher/courses/:id/chapters` | Teacher | +| FR-CH-02 | Teacher sets chapter start date and unlock mode (auto/manual/prerequisite) | `/teacher/courses/:id/chapters` | Teacher | +| FR-CH-03 | Teacher reorders chapters via drag-and-drop | `/teacher/courses/:id/chapters` | Teacher | +| FR-CH-04 | Teacher manually unlocks/locks a chapter | `/teacher/courses/:id/chapters` | Teacher | +| FR-CH-05 | System auto-unlocks chapters when start_date is reached (cron job) | Backend | System | +| FR-CH-06 | Student sees unlocked chapters on course detail page | `/student/courses/:id` | Student | +| FR-CH-07 | Student views chapter content and materials | `/student/courses/:id/chapters/:chapterId` | Student | +| FR-CH-08 | System tracks per-student chapter progress | Backend | System | +| FR-CH-09 | Chapter completion notification sent to student | Backend | System | +| FR-CH-10 | Teacher views chapter progress per student | `/teacher/courses/:id/chapters` | Teacher | + +### 36.5 API Endpoints + +| Method | Path | Description | +|--------|------|-------------| +| `GET` | `/api/courses/{courseId}/chapters` | List chapters for course | +| `POST` | `/api/courses/{courseId}/chapters` | Create chapter | +| `GET` | `/api/chapters/{id}` | Get chapter detail with materials | +| `PATCH` | `/api/chapters/{id}` | Update chapter | +| `DELETE` | `/api/chapters/{id}` | Delete chapter | +| `POST` | `/api/chapters/{id}/unlock` | Manually unlock chapter | +| `POST` | `/api/chapters/{id}/lock` | Manually lock chapter | +| `PATCH` | `/api/courses/{courseId}/chapters/reorder` | Reorder chapters | +| `GET` | `/api/chapters/{id}/progress` | Get student progress for chapter | +| `POST` | `/api/chapters/{id}/progress/complete` | Mark chapter as completed | + +--- + +## 37. Chapter Materials + +### 37.1 Overview + +Each chapter contains materials: uploaded files (PDFs, documents), videos, audio, images, hyperlinks, and articles. Teachers control download permissions per material. + +### 37.2 Data Model (`encoach.chapter.material`) + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Material title | +| `chapter_id` | Many2one | Parent chapter | +| `type` | Selection | `pdf`, `document`, `video`, `audio`, `image`, `link`, `article` | +| `file` | Binary | Uploaded file (for pdf, document, video, audio, image) | +| `url` | Char | External URL (for link, article, or external video) | +| `description` | Text | Material description | +| `sequence` | Integer | Display order | +| `allow_download` | Boolean | Whether students can download the file | +| `is_book` | Boolean | Whether this material is a course book (multi-book support) | +| `book_chapters` | Text (JSON) | Book chapter structure (if following original book chapters) | +| `active` | Boolean | Soft-delete flag | + +### 37.3 Functional Requirements + +| ID | Requirement | Route | Role | +|----|-------------|-------|------| +| FR-MAT-01 | Teacher uploads materials (PDF, Word, video, audio, images) per chapter | `/teacher/courses/:id/chapters/:chapterId` | Teacher | +| FR-MAT-02 | Teacher adds external links, articles, hyperlinks | `/teacher/courses/:id/chapters/:chapterId` | Teacher | +| FR-MAT-03 | Teacher uploads books with chapter structure (follow original or custom) | `/teacher/courses/:id/chapters/:chapterId` | Teacher | +| FR-MAT-04 | Teacher sets download enable/disable per material | `/teacher/courses/:id/chapters/:chapterId` | Teacher | +| FR-MAT-05 | Teacher uploads teaching aids (video, audio, pictures, hyperlinks) | `/teacher/courses/:id/chapters/:chapterId` | Teacher | +| FR-MAT-06 | Student views materials for unlocked chapters | `/student/courses/:id/chapters/:chapterId` | Student | +| FR-MAT-07 | Student downloads materials if download is enabled | `/student/courses/:id/chapters/:chapterId` | Student | +| FR-MAT-08 | System tracks which materials a student has viewed/downloaded | Backend | System | + +### 37.4 API Endpoints + +| Method | Path | Description | +|--------|------|-------------| +| `GET` | `/api/chapters/{chapterId}/materials` | List materials | +| `POST` | `/api/chapters/{chapterId}/materials` | Upload material (multipart) | +| `PATCH` | `/api/materials/{id}` | Update material metadata | +| `DELETE` | `/api/materials/{id}` | Delete material | +| `GET` | `/api/materials/{id}/download` | Download material file | +| `POST` | `/api/materials/{id}/viewed` | Mark material as viewed by student | +| `PATCH` | `/api/chapters/{chapterId}/materials/reorder` | Reorder materials | + +--- + +## 38. AI Workbench for Course Content + +### 38.1 Overview + +Teachers use the AI Workbench to generate course content automatically. The AI generates chapters, materials, exercises, and grading rubrics based on high-level requirements input by the teacher. + +### 38.2 AI Workbench Flow + +1. Teacher inputs: topic name, objectives, complexity level, target audience +2. AI generates: chapter structure with learning outcomes, reading content, exercises, multimedia suggestions +3. Teacher reviews generated content +4. Teacher can: modify, regenerate specific sections, add additional context +5. Teacher approves and publishes (follows approval workflow if configured) +6. AI can suggest additional materials based on selected student performance profiles + +### 38.3 Functional Requirements + +| ID | Requirement | Route | Role | +|----|-------------|-------|------| +| FR-WB-01 | Teacher opens AI Workbench from course page | `/teacher/courses/:id/workbench` | Teacher | +| FR-WB-02 | Teacher inputs high-level requirements (topic, objectives, complexity) | `/teacher/courses/:id/workbench` | Teacher | +| FR-WB-03 | AI generates course outline with chapters and learning outcomes | `/teacher/courses/:id/workbench` | Teacher | +| FR-WB-04 | AI generates reading content, exercises, and multimedia for each chapter | `/teacher/courses/:id/workbench` | Teacher | +| FR-WB-05 | AI generates grading rubrics based on assignment/exam complexity | `/teacher/courses/:id/workbench` | Teacher | +| FR-WB-06 | Teacher reviews and modifies AI-generated content | `/teacher/courses/:id/workbench` | Teacher | +| FR-WB-07 | Teacher can prompt AI to regenerate specific sections | `/teacher/courses/:id/workbench` | Teacher | +| FR-WB-08 | Teacher selects student profiles for AI to suggest additional materials based on performance | `/teacher/courses/:id/workbench` | Teacher | +| FR-WB-09 | Generated content follows approval workflow before publishing | Backend | System | + +### 38.4 API Endpoints + +| Method | Path | Description | +|--------|------|-------------| +| `POST` | `/api/workbench/generate-outline` | Generate course outline from requirements | +| `POST` | `/api/workbench/generate-chapter` | Generate content for a specific chapter | +| `POST` | `/api/workbench/generate-rubric` | Generate grading rubric | +| `POST` | `/api/workbench/regenerate` | Regenerate a specific section | +| `POST` | `/api/workbench/suggest-materials` | AI suggests materials based on student profiles | +| `POST` | `/api/workbench/publish` | Publish generated content to course chapters | + +--- + +# Part X -- Communication + +## 39. Discussion Boards + +### 39.1 Overview + +Per-class discussion boards enable student-to-student and student-to-teacher communication. Discussion boards can be attached to courses, chapters, or assignments. + +### 39.2 Data Models + +**`encoach.discussion.board`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Board title | +| `course_id` | Many2one | Associated course | +| `batch_id` | Many2one | Associated batch (optional) | +| `chapter_id` | Many2one | Associated chapter (optional) | +| `assignment_id` | Many2one | Associated assignment (optional) | +| `is_enabled` | Boolean | Whether teacher has enabled discussions | +| `allow_student_posts` | Boolean | Whether students can create new threads | +| `post_count` | Integer | Computed post count | + +**`encoach.discussion.post`** + +| Field | Type | Description | +|-------|------|-------------| +| `board_id` | Many2one | Parent board | +| `parent_id` | Many2one | Parent post (for replies, nested threads) | +| `author_id` | Many2one | Author user | +| `title` | Char | Post title (for root posts) | +| `content` | Text | Post content (supports markdown) | +| `attachment_ids` | Many2many | File attachments | +| `is_pinned` | Boolean | Pinned by teacher | +| `is_resolved` | Boolean | Marked as resolved (for Q&A) | +| `created_at` | Datetime | Post time | + +### 39.3 Functional Requirements + +| ID | Requirement | Route | Role | +|----|-------------|-------|------| +| FR-DISC-01 | Teacher enables/disables discussion board per course or chapter | `/teacher/courses/:id/discussions` | Teacher | +| FR-DISC-02 | Students create discussion threads | `/student/discussions` | Student | +| FR-DISC-03 | Students and teachers reply to threads (nested replies) | `/student/discussions`, `/teacher/courses/:id/discussions` | Both | +| FR-DISC-04 | Teacher pins important posts | `/teacher/courses/:id/discussions` | Teacher | +| FR-DISC-05 | Teacher marks posts as resolved | `/teacher/courses/:id/discussions` | Teacher | +| FR-DISC-06 | Students view other participants within the same class | `/student/discussions` | Student | +| FR-DISC-07 | File attachments on posts | Both pages | Both | + +### 39.4 API Endpoints + +| Method | Path | Description | +|--------|------|-------------| +| `GET` | `/api/discussion-boards` | List boards (filter: course_id, batch_id) | +| `POST` | `/api/discussion-boards` | Create board | +| `PATCH` | `/api/discussion-boards/{id}` | Update board settings | +| `GET` | `/api/discussion-boards/{id}/posts` | List posts for board (paginated) | +| `POST` | `/api/discussion-boards/{id}/posts` | Create post/reply | +| `PATCH` | `/api/posts/{id}` | Update post | +| `DELETE` | `/api/posts/{id}` | Delete post | +| `POST` | `/api/posts/{id}/pin` | Pin/unpin post | +| `POST` | `/api/posts/{id}/resolve` | Mark as resolved | + +--- + +## 40. Announcements + +### 40.1 Overview + +Teachers broadcast announcements to classes. System-wide announcements can be created by administrators. + +### 40.2 Data Model (`encoach.announcement`) + +| Field | Type | Description | +|-------|------|-------------| +| `title` | Char | Announcement title | +| `content` | Text | Announcement body (supports markdown) | +| `author_id` | Many2one | Author | +| `course_id` | Many2one | Target course (null = system-wide) | +| `batch_id` | Many2one | Target batch (null = all batches in course) | +| `priority` | Selection | `normal`, `important`, `urgent` | +| `is_published` | Boolean | Published status | +| `published_at` | Datetime | Publish time | +| `expires_at` | Datetime | Expiry time (optional) | +| `send_email` | Boolean | Also send via email | +| `attachment_ids` | Many2many | File attachments | + +### 40.3 Functional Requirements + +| ID | Requirement | Route | Role | +|----|-------------|-------|------| +| FR-ANN-01 | Teacher creates announcement for class/batch | `/teacher/announcements` | Teacher | +| FR-ANN-02 | Teacher sends announcement via platform and/or email | `/teacher/announcements` | Teacher | +| FR-ANN-03 | Admin creates system-wide announcements | `/admin/announcements` | Admin | +| FR-ANN-04 | Students view announcements on dashboard and dedicated page | `/student/announcements` | Student | +| FR-ANN-05 | Priority-based display (urgent announcements highlighted) | All dashboards | All | + +### 40.4 API Endpoints + +| Method | Path | Description | +|--------|------|-------------| +| `GET` | `/api/announcements` | List announcements (filter: course_id, priority) | +| `POST` | `/api/announcements` | Create announcement | +| `PATCH` | `/api/announcements/{id}` | Update announcement | +| `DELETE` | `/api/announcements/{id}` | Delete announcement | +| `POST` | `/api/announcements/{id}/publish` | Publish announcement | + +--- + +## 41. Messaging + +### 41.1 Overview + +Direct messaging between platform users. Teachers can message students individually. Students can message other students within the same class (if allowed). Platform can send emails through linked accounts. + +### 41.2 Data Model (`encoach.message`) + +| Field | Type | Description | +|-------|------|-------------| +| `sender_id` | Many2one | Sender user | +| `recipient_id` | Many2one | Recipient user | +| `subject` | Char | Message subject | +| `content` | Text | Message body | +| `is_read` | Boolean | Read status | +| `read_at` | Datetime | When read | +| `attachment_ids` | Many2many | File attachments | +| `send_email_copy` | Boolean | Also send copy via email | +| `created_at` | Datetime | Sent time | + +### 41.3 Functional Requirements + +| ID | Requirement | Route | Role | +|----|-------------|-------|------| +| FR-MSG-01 | Users send direct messages to other users | `/student/messages`, `/teacher/messages` | All | +| FR-MSG-02 | Inbox with read/unread filtering | `/student/messages` | All | +| FR-MSG-03 | Option to send email copy through the platform | Both pages | All | +| FR-MSG-04 | File attachments on messages | Both pages | All | +| FR-MSG-05 | Students see other participants within same class | `/student/messages` | Student | + +### 41.4 API Endpoints + +| Method | Path | Description | +|--------|------|-------------| +| `GET` | `/api/messages` | List messages (inbox, filter: unread) | +| `GET` | `/api/messages/sent` | List sent messages | +| `POST` | `/api/messages` | Send message | +| `GET` | `/api/messages/{id}` | Get message detail (marks as read) | +| `DELETE` | `/api/messages/{id}` | Delete message | +| `GET` | `/api/messages/unread-count` | Get unread message count | + +--- + +# Part XI -- Notifications and FAQ + +## 42. Notification Engine + +### 42.1 Overview + +Centralized notification system supporting both in-app and email notifications. Notifications are triggered by system events (deadlines, chapter unlocks, result releases, announcements) and can be configured by teachers and admins. + +### 42.2 Data Models + +**`encoach.notification`** + +| Field | Type | Description | +|-------|------|-------------| +| `user_id` | Many2one | Recipient user | +| `title` | Char | Notification title | +| `message` | Text | Notification body | +| `type` | Selection | `deadline`, `chapter_unlock`, `result_release`, `announcement`, `assignment`, `exam`, `message`, `system` | +| `action_url` | Char | URL to redirect to when clicked | +| `is_read` | Boolean | Read status | +| `read_at` | Datetime | When read | +| `channel` | Selection | `in_app`, `email`, `both` | +| `created_at` | Datetime | Created time | + +**`encoach.notification.rule`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Rule name | +| `event_type` | Selection | `assignment_due`, `exam_due`, `chapter_unlock`, `result_release`, `submission_graded`, `extension_response` | +| `days_before` | Integer | Days before event to send notification | +| `frequency` | Selection | `once`, `daily`, `custom` | +| `custom_intervals` | Text (JSON) | Custom reminder intervals (e.g., [7, 3, 1] days before) | +| `channel` | Selection | `in_app`, `email`, `both` | +| `entity_id` | Many2one | Entity scope | +| `active` | Boolean | Active flag | + +**`encoach.notification.preferences`** + +| Field | Type | Description | +|-------|------|-------------| +| `user_id` | Many2one | User | +| `email_enabled` | Boolean | Receive email notifications | +| `assignment_alerts` | Boolean | Assignment deadline alerts | +| `exam_alerts` | Boolean | Exam alerts | +| `chapter_alerts` | Boolean | Chapter unlock alerts | +| `announcement_alerts` | Boolean | Announcement alerts | +| `message_alerts` | Boolean | New message alerts | + +### 42.3 Functional Requirements + +| ID | Requirement | Route | Role | +|----|-------------|-------|------| +| FR-NOT-01 | In-app notification bell with unread count (existing NotificationDropdown enhanced) | All layouts | All | +| FR-NOT-02 | Email notifications for configured events | Backend | System | +| FR-NOT-03 | Admin configures notification rules (event type, timing, frequency) | `/admin/notification-rules` | Admin | +| FR-NOT-04 | Teacher sets reminder frequency for assignments and exams | Assignment/exam creation forms | Teacher | +| FR-NOT-05 | Students receive deadline alerts, chapter unlock alerts, result release alerts | Dashboard | Student | +| FR-NOT-06 | Users configure personal notification preferences | Profile pages | All | +| FR-NOT-07 | Notification action button redirects to relevant page | All layouts | All | + +### 42.4 API Endpoints + +| Method | Path | Description | +|--------|------|-------------| +| `GET` | `/api/notifications` | List notifications (paginated, filter: type, is_read) | +| `POST` | `/api/notifications/{id}/read` | Mark as read | +| `POST` | `/api/notifications/read-all` | Mark all as read | +| `GET` | `/api/notifications/unread-count` | Get unread count | +| `GET` | `/api/notification-rules` | List rules | +| `POST` | `/api/notification-rules` | Create rule | +| `PATCH` | `/api/notification-rules/{id}` | Update rule | +| `DELETE` | `/api/notification-rules/{id}` | Delete rule | +| `GET` | `/api/notification-preferences` | Get user preferences | +| `PATCH` | `/api/notification-preferences` | Update user preferences | + +--- + +## 43. FAQ System + +### 43.1 Overview + +Interactive FAQ system editable by super admin. FAQ items are organized by categories and filtered by target audience (student, entity, or both). Supports text, images, and video content. + +### 43.2 Data Models + +**`encoach.faq.category`** + +| Field | Type | Description | +|-------|------|-------------| +| `name` | Char | Category name | +| `sequence` | Integer | Display order | +| `icon` | Char | Icon identifier | +| `audience` | Selection | `student`, `entity`, `both` | +| `active` | Boolean | Active flag | + +**`encoach.faq.item`** + +| Field | Type | Description | +|-------|------|-------------| +| `question` | Char | Question text | +| `answer` | Text | Answer (supports markdown, embedded images/video) | +| `category_id` | Many2one | Parent category | +| `audience` | Selection | `student`, `entity`, `both` | +| `image` | Binary | Optional image | +| `video_url` | Char | Optional video URL | +| `sequence` | Integer | Display order | +| `active` | Boolean | Active flag | + +### 43.3 Functional Requirements + +| ID | Requirement | Route | Role | +|----|-------------|-------|------| +| FR-FAQ-01 | Super admin manages FAQ categories and items | `/admin/faq` | Admin | +| FR-FAQ-02 | Admin adds text, images, and video to FAQ answers | `/admin/faq` | Admin | +| FR-FAQ-03 | Admin sets audience filter per category/item (student, entity, both) | `/admin/faq` | Admin | +| FR-FAQ-04 | Students and entity users view FAQs filtered by their role | `/faq` | All | +| FR-FAQ-05 | Search bar to find FAQ items by keyword | `/faq` | All | +| FR-FAQ-06 | Interactive accordion-style display (click question to expand answer) | `/faq` | All | + +### 43.4 API Endpoints + +| Method | Path | Description | +|--------|------|-------------| +| `GET` | `/api/faq/categories` | List categories (filter: audience) | +| `POST` | `/api/faq/categories` | Create category | +| `PATCH` | `/api/faq/categories/{id}` | Update category | +| `DELETE` | `/api/faq/categories/{id}` | Delete category | +| `GET` | `/api/faq/items` | List items (filter: category_id, audience, search) | +| `POST` | `/api/faq/items` | Create item | +| `PATCH` | `/api/faq/items/{id}` | Update item | +| `DELETE` | `/api/faq/items/{id}` | Delete item | + +--- + +# Part XII -- Technical Specifications + +## 44. Data Models + +### 44.1 Existing Models (from `ielts-be-v0`) + +| Model | Module | Purpose | +|-------|--------|---------| +| `res.users` (extended) | `encoach_core` | User accounts with EnCoach fields | +| `encoach.entity` | `encoach_core` | Tenant organizations | +| `encoach.role` | `encoach_core` | Entity roles | +| `encoach.permission` | `encoach_core` | Role permissions | +| `encoach.code` | `encoach_core` | Registration codes | +| `encoach.invite` | `encoach_core` | User invitations | +| `encoach.exam` | `encoach_exam` | Exam definitions (extended with `subject_id`, `topic_ids`) | +| `encoach.approval.workflow` | `encoach_exam` | Exam approval workflows | +| `encoach.assignment` | `encoach_assignment` | Exam assignments | +| `encoach.group` | `encoach_classroom` | Classroom groups | +| `encoach.session` | `encoach_stats` | Exam session state | +| `encoach.stat` | `encoach_stats` | Per-exercise statistics (extended with `topic_id`, `subject_id`) | +| `encoach.evaluation` | `encoach_evaluation` | Writing/speaking evaluation results | +| `encoach.ai.job` | `encoach_evaluation` | Background AI job tracking | +| `encoach.training` | `encoach_training` | Training content records | +| `encoach.training.tip` | `encoach_training` | Training tips with FAISS embeddings | +| `encoach.walkthrough` | `encoach_training` | Module walkthroughs | +| `encoach.package` | `encoach_subscription` | Subscription packages | +| `encoach.subscription.payment` | `encoach_subscription` | Payment records | +| `encoach.discount` | `encoach_subscription` | Discount codes | +| `encoach.ticket` | `encoach_ticket` | Support tickets | +| `encoach.elai.avatar` | `encoach_ai_media` | ELAI avatar profiles | +| `encoach.registration` | `encoach_registration` | Batch registration mixin | + +### 44.2 New Models (Adaptive Learning Engine) + +| Model | Module | Purpose | Key Fields | +|-------|--------|---------|------------| +| `encoach.subject` | `encoach_taxonomy` | Top-level subjects | `name`, `code`, `is_active`, `diagnostic_config` (JSON), `mastery_threshold`, `grading_scale`, `grading_scale_config` (JSON) | +| `encoach.domain` | `encoach_taxonomy` | Subject domains | `name`, `code`, `subject_id`, `sequence` | +| `encoach.topic` | `encoach_taxonomy` | Topics with prerequisites | `name`, `code`, `domain_id`, `estimated_hours`, `difficulty_level`, `prerequisite_ids` (M2M self-ref), `question_type_weights` (JSON) | +| `encoach.learning.objective` | `encoach_taxonomy` | Measurable objectives | `name`, `topic_id`, `bloom_level`, `sequence` | +| `encoach.resource` | `encoach_resources` | Human-uploaded materials | `name`, `resource_type`, `file`/`url`, `topic_ids` (M2M), `author_id`, `is_published`, `review_status` | +| `encoach.proficiency` | `encoach_adaptive` | Per-student per-topic mastery | `student_id`, `topic_id`, `mastery` (float 0-100), `mastery_level`, `last_assessed`, `time_spent_minutes` | +| `encoach.learning.plan` | `encoach_adaptive` | Personalized study plan | `student_id`, `subject_id`, `status`, `ai_summary`, `overall_progress`, `target_completion` | +| `encoach.learning.plan.item` | `encoach_adaptive` | Plan items | `plan_id`, `topic_id`, `sequence`, `status` (locked/available/in_progress/completed), `estimated_hours`, `actual_hours` | +| `encoach.resource.completion` | `encoach_adaptive` | Resource viewing tracking | `student_id`, `resource_id`, `viewed`, `time_spent_minutes`, `rating` | +| `encoach.ai.content.cache` | `encoach_adaptive` | Cached AI-generated content | `topic_id`, `content_type`, `difficulty_level`, `content`, `model_used`, `review_status` | + +### 44.3 New Models (SIS Integration) + +| Model | Module | Purpose | +|-------|--------|---------| +| `encoach.sis.sync` | `encoach_sis` | SIS sync job tracking | +| `encoach.sis.mapping` | `encoach_sis` | Field mapping between SIS and EnCoach | + +### 44.4 New Models (Branding) + +| Model | Module | Purpose | +|-------|--------|---------| +| `encoach.branding` | `encoach_branding` | Tenant branding configuration (logo, colors, fonts) | + +--- + +## 45. REST API Specification + +### 45.1 Existing Endpoints (81+) + +All existing endpoints from the Odoo 19 backend remain. Key groups: + +| Group | Endpoints | Count | +|-------|-----------|-------| +| Auth | `/api/login`, `/api/logout`, `/api/reset`, `/api/reset/sendVerification` | 4 | +| Users | `/api/user`, `/api/users/update`, `/api/users/list`, `/api/users/{id}` | 6 | +| Entities & Roles | `/api/entities`, `/api/roles`, `/api/permissions` | 7 | +| Exams | `/api/exam`, `/api/exam/{module}`, `/api/exam/{module}/{id}`, `/api/exam/avatars` | 7 | +| AI Generation | `/api/exam/reading/*`, `/api/exam/listening/*`, `/api/exam/writing/*`, `/api/exam/speaking/*`, `/api/exam/level/*` | 12 | +| Media | `/api/exam/listening/media`, `/api/exam/speaking/media`, `/api/transcribe` | 6 | +| Evaluations | `/api/evaluate/writing`, `/api/evaluate/speaking`, `/api/grading/multiple` | 6 | +| Classrooms | `/api/groups` | 3 | +| Assignments | `/api/assignments` | 8 | +| Sessions & Stats | `/api/sessions`, `/api/stats`, `/api/statistical` | 5 | +| Training | `/api/training`, `/api/training/tips`, `/api/training/walkthrough` | 4 | +| Subscriptions | `/api/packages`, `/api/stripe`, `/api/paypal`, `/api/paymob` + webhooks | 7 | +| Registration | `/api/register`, `/api/code/{code}`, `/api/batch_users` | 4 | +| Tickets | `/api/tickets` | 3 | +| Storage | `/api/storage` | 2 | +| Approvals | `/api/approval-workflows` | 3 | + +### 45.2 New Endpoints (Adaptive Learning Engine, 40+) + +| Group | Method | Path | Description | +|-------|--------|------|-------------| +| **Taxonomy** | `GET` | `/api/subjects` | List subjects | +| | `GET` | `/api/subjects/{id}` | Get subject detail | +| | `POST` | `/api/subjects` | Create subject | +| | `PATCH` | `/api/subjects/{id}` | Update subject | +| | `DELETE` | `/api/subjects/{id}` | Delete subject | +| | `GET` | `/api/subjects/{id}/taxonomy` | Full taxonomy tree | +| | `POST` | `/api/subjects/{id}/taxonomy/import` | Bulk import | +| | `GET/POST/PATCH/DELETE` | `/api/domains`, `/api/topics` | Domain and topic CRUD | +| **Resources** | `GET` | `/api/resources` | List (filter by topic, type) | +| | `POST` | `/api/resources` | Upload resource (multipart) | +| | `PATCH` | `/api/resources/{id}` | Update metadata | +| | `DELETE` | `/api/resources/{id}` | Delete | +| | `GET` | `/api/resources/{id}/download` | Download file | +| | `POST` | `/api/resources/{id}/complete` | Mark viewed | +| | `POST` | `/api/resources/{id}/rate` | Rate (1-5) | +| **Diagnostic** | `POST` | `/api/diagnostic/start` | Start adaptive diagnostic | +| | `POST` | `/api/diagnostic/answer` | Submit answer, get next question | +| | `GET` | `/api/diagnostic/{id}/result` | Get diagnostic results | +| **Proficiency** | `GET` | `/api/proficiency` | Student's profile (by subject) | +| | `GET` | `/api/proficiency/summary` | Cross-subject summary | +| | `GET` | `/api/proficiency/class` | Class-level (teacher/admin) | +| **Learning Plan** | `GET` | `/api/learning-plan` | Active plan (by subject) | +| | `POST` | `/api/learning-plan/generate` | Generate/regenerate | +| | `PATCH` | `/api/learning-plan/{id}` | Teacher override | +| | `POST` | `/api/learning-plan/{id}/pause` | Pause plan | +| | `POST` | `/api/learning-plan/{id}/resume` | Resume plan | +| **Content** | `GET` | `/api/topics/{id}/content` | Get learning content (hybrid) | +| | `POST` | `/api/topics/{id}/generate-content` | Force AI generation | +| | `POST` | `/api/topics/{id}/practice` | Generate practice questions | +| | `POST` | `/api/topics/{id}/practice/grade` | Grade practice answers | +| | `POST` | `/api/topics/{id}/mastery-quiz` | Start mastery quiz | +| | `POST` | `/api/topics/{id}/mastery-quiz/submit` | Submit mastery quiz | +| **AI Coaching** | `POST` | `/api/coach/chat` | AI assistant conversation | +| | `POST` | `/api/coach/hint` | Request hint | +| | `POST` | `/api/coach/explain` | Request explanation | +| | `POST` | `/api/coach/suggest` | Study suggestions | +| | `POST` | `/api/coach/writing-help` | Writing assistance | +| | `GET` | `/api/coach/tip` | Contextual tip | +| **AI Utilities** | `POST` | `/api/ai/search` | Semantic search | +| | `POST` | `/api/ai/insights` | Data insights | +| | `GET` | `/api/ai/alerts` | Risk alerts | +| | `POST` | `/api/ai/report-narrative` | Report narrative | +| | `POST` | `/api/ai/batch-optimize` | Batch optimization | +| **Analytics** | `GET` | `/api/analytics/student` | Student analytics | +| | `GET` | `/api/analytics/class` | Class analytics | +| | `GET` | `/api/analytics/subject` | Subject analytics | +| | `GET` | `/api/analytics/content-gaps` | Content gap report | + +### 45.3 New Endpoints (LMS API Bridge) + +| Method | Path | Description | +|--------|------|-------------| +| `GET/POST` | `/api/courses` | List/create courses | +| `GET/PATCH/DELETE` | `/api/courses/{id}` | Course CRUD | +| `POST` | `/api/courses/ai-generate` | AI-generate course outline | +| `GET/POST` | `/api/batches` | List/create batches | +| `GET/PATCH/DELETE` | `/api/batches/{id}` | Batch CRUD | +| `GET/POST` | `/api/timetable` | Timetable sessions | +| `GET/POST` | `/api/attendance` | Attendance records | +| `GET` | `/api/grades` | Gradebook | + +### 45.4 New Endpoints (SIS Integration) + +| Method | Path | Description | +|--------|------|-------------| +| `POST` | `/api/sis/sync` | Trigger SIS sync | +| `GET` | `/api/sis/status` | Sync status | +| `GET` | `/api/sis/mappings` | Field mappings | +| `PATCH` | `/api/sis/mappings` | Update mappings | + +### 45.5 New Endpoints (OpenEduCat Institutional LMS, 60+) + +| Group | Method | Path | Description | +|-------|--------|------|-------------| +| **Academic Years** | `GET/POST` | `/api/academic-years` | List/create years | +| | `GET/PATCH/DELETE` | `/api/academic-years/{id}` | Year CRUD | +| | `POST` | `/api/academic-years/{id}/generate-terms` | Auto-generate terms | +| | `GET/POST` | `/api/academic-terms` | List/create terms | +| | `PATCH/DELETE` | `/api/academic-terms/{id}` | Term CRUD | +| **Departments** | `GET/POST` | `/api/departments` | List/create | +| | `PATCH/DELETE` | `/api/departments/{id}` | CRUD | +| **Admissions** | `GET/POST` | `/api/admission-registers` | List/create registers | +| | `PATCH` | `/api/admission-registers/{id}` | Update | +| | `POST` | `/api/admission-registers/{id}/confirm` | Confirm register | +| | `POST` | `/api/admission-registers/{id}/close` | Close register | +| | `GET/POST` | `/api/admissions` | List/create admissions | +| | `GET` | `/api/admissions/{id}` | Admission detail | +| | `POST` | `/api/admissions/{id}/submit` | Submit for review | +| | `POST` | `/api/admissions/{id}/confirm` | Confirm | +| | `POST` | `/api/admissions/{id}/admit` | Admit (creates student) | +| | `POST` | `/api/admissions/{id}/reject` | Reject | +| **Subject Registration** | `GET/POST` | `/api/subject-registrations` | List/create | +| | `PATCH` | `/api/subject-registrations/{id}` | Update subjects | +| | `POST` | `/api/subject-registrations/{id}/confirm` | Confirm | +| | `POST` | `/api/subject-registrations/{id}/reject` | Reject | +| | `GET` | `/api/subject-registrations/available` | Available subjects | +| **Inst. Exam Sessions** | `GET/POST` | `/api/inst-exam-sessions` | List/create | +| | `GET/PATCH/DELETE` | `/api/inst-exam-sessions/{id}` | CRUD | +| | `POST` | `/api/inst-exam-sessions/{id}/schedule` | Schedule | +| | `POST` | `/api/inst-exam-sessions/{id}/done` | Mark done | +| | `POST` | `/api/inst-exams` | Add exam | +| | `PATCH` | `/api/inst-exams/{id}` | Update exam | +| | `POST` | `/api/inst-exams/{id}/attendees` | Add attendees | +| | `PATCH` | `/api/inst-exams/{id}/marks` | Enter marks | +| | `GET/POST` | `/api/exam-types` | List/create types | +| | `GET/POST` | `/api/grade-config` | Grade configuration | +| | `GET/POST` | `/api/result-templates` | Result templates | +| | `POST` | `/api/result-templates/{id}/generate` | Generate marksheets | +| | `GET` | `/api/marksheets` | List marksheets | +| | `GET` | `/api/marksheets/{id}` | Marksheet detail | +| | `POST` | `/api/marksheets/{id}/validate` | Validate | +| **Course Assignments** | `GET/POST` | `/api/course-assignments` | List/create | +| | `GET/PATCH` | `/api/course-assignments/{id}` | CRUD | +| | `POST` | `/api/course-assignments/{id}/publish` | Publish | +| | `POST` | `/api/course-assignments/{id}/finish` | Close | +| | `GET` | `/api/course-assignments/{id}/submissions` | List submissions | +| | `POST` | `/api/course-assignments/{id}/submit` | Student submits | +| | `PATCH` | `/api/submissions/{id}` | Grade submission | +| | `GET/POST` | `/api/assignment-types` | Assignment types | + +--- + +### 45.6 New Endpoints (Courseware, Communication, Notifications, FAQ, 60+) + +| Group | Method | Path | Description | +|-------|--------|------|-------------| +| **Chapters** | `GET` | `/api/courses/{courseId}/chapters` | List chapters | +| | `POST` | `/api/courses/{courseId}/chapters` | Create chapter | +| | `GET` | `/api/chapters/{id}` | Chapter detail | +| | `PATCH` | `/api/chapters/{id}` | Update chapter | +| | `DELETE` | `/api/chapters/{id}` | Delete chapter | +| | `POST` | `/api/chapters/{id}/unlock` | Unlock chapter | +| | `POST` | `/api/chapters/{id}/lock` | Lock chapter | +| | `PATCH` | `/api/courses/{courseId}/chapters/reorder` | Reorder | +| | `GET` | `/api/chapters/{id}/progress` | Progress | +| | `POST` | `/api/chapters/{id}/progress/complete` | Complete | +| **Materials** | `GET` | `/api/chapters/{chapterId}/materials` | List | +| | `POST` | `/api/chapters/{chapterId}/materials` | Upload | +| | `PATCH` | `/api/materials/{id}` | Update | +| | `DELETE` | `/api/materials/{id}` | Delete | +| | `GET` | `/api/materials/{id}/download` | Download | +| | `POST` | `/api/materials/{id}/viewed` | Mark viewed | +| **Workbench** | `POST` | `/api/workbench/generate-outline` | Generate outline | +| | `POST` | `/api/workbench/generate-chapter` | Generate chapter | +| | `POST` | `/api/workbench/generate-rubric` | Generate rubric | +| | `POST` | `/api/workbench/regenerate` | Regenerate section | +| | `POST` | `/api/workbench/suggest-materials` | Suggest materials | +| | `POST` | `/api/workbench/publish` | Publish content | +| **Discussions** | `GET/POST` | `/api/discussion-boards` | List/create boards | +| | `PATCH` | `/api/discussion-boards/{id}` | Update board | +| | `GET/POST` | `/api/discussion-boards/{id}/posts` | List/create posts | +| | `PATCH/DELETE` | `/api/posts/{id}` | Update/delete post | +| | `POST` | `/api/posts/{id}/pin` | Pin post | +| | `POST` | `/api/posts/{id}/resolve` | Resolve post | +| **Announcements** | `GET/POST` | `/api/announcements` | List/create | +| | `PATCH/DELETE` | `/api/announcements/{id}` | Update/delete | +| | `POST` | `/api/announcements/{id}/publish` | Publish | +| **Messages** | `GET` | `/api/messages` | Inbox | +| | `GET` | `/api/messages/sent` | Sent | +| | `POST` | `/api/messages` | Send | +| | `GET` | `/api/messages/{id}` | Detail | +| | `DELETE` | `/api/messages/{id}` | Delete | +| | `GET` | `/api/messages/unread-count` | Unread count | +| **Notifications** | `GET` | `/api/notifications` | List | +| | `POST` | `/api/notifications/{id}/read` | Mark read | +| | `POST` | `/api/notifications/read-all` | Read all | +| | `GET` | `/api/notifications/unread-count` | Count | +| | `GET/POST` | `/api/notification-rules` | Rules | +| | `PATCH/DELETE` | `/api/notification-rules/{id}` | Rule CRUD | +| | `GET/PATCH` | `/api/notification-preferences` | User prefs | +| **FAQ** | `GET/POST` | `/api/faq/categories` | Categories | +| | `PATCH/DELETE` | `/api/faq/categories/{id}` | Category CRUD | +| | `GET/POST` | `/api/faq/items` | Items | +| | `PATCH/DELETE` | `/api/faq/items/{id}` | Item CRUD | +| **Plagiarism** | `POST` | `/api/plagiarism/check` | Check text | +| | `GET` | `/api/plagiarism/report/{submissionId}` | Get report | +| | `GET` | `/api/plagiarism/report/{submissionId}/download` | Download PDF | +| **Exam Access** | `POST` | `/api/exam/{id}/generate-link` | Generate access link | +| | `GET` | `/api/exam/access/{token}` | Access via link | +| | `POST` | `/api/exam/official-login` | Official exam login | + +--- + +## 46. Frontend Page Inventory + +### 46.1 Auth Pages (3) + +| Route | Page | API Dependencies | +|-------|------|-----------------| +| `/login` | Login | `POST /api/login` | +| `/register` | Register | `POST /api/register` | +| `/forgot-password` | Forgot Password | `POST /api/reset/sendVerification` | + +### 46.2 Student Pages (18+) + +| Route | Page | Key APIs | AI Components | +|-------|------|----------|---------------| +| `/student/dashboard` | Student Dashboard | `/api/user`, `/api/proficiency/summary`, `/api/learning-plan` | AiStudyCoach, AiTipBanner | +| `/student/subjects` | **NEW:** Subject Selection | `/api/subjects`, `/api/proficiency/summary` | -- | +| `/student/diagnostic/:subjectId` | **NEW:** Diagnostic Test | `/api/diagnostic/start`, `/api/diagnostic/answer` | -- | +| `/student/proficiency/:subjectId` | **NEW:** Proficiency Profile | `/api/proficiency?subjectId=` | -- | +| `/student/plan/:subjectId` | **NEW:** Learning Plan | `/api/learning-plan?subjectId=` | AiStudyCoach | +| `/student/topic/:topicId` | **NEW:** Topic Learning | `/api/topics/{id}/content`, `/api/resources` | AiCoach (hints, explanations) | +| `/student/courses` | Course List | `/api/courses` | AiTipBanner | +| `/student/courses/:id` | Course Detail | `/api/courses/{id}` | -- | +| `/student/assignments` | Assignments | `/api/assignments` | -- | +| `/student/grades` | Grades | `/api/grades` | AiGradeExplainer | +| `/student/attendance` | Attendance | `/api/attendance` | -- | +| `/student/timetable` | Timetable | `/api/timetable` | -- | +| `/student/profile` | Profile | `/api/user` | -- | +| `/student/subject-registration` | **NEW:** Subject Registration | `/api/subject-registrations/available`, `/api/subject-registrations` | -- | +| `/student/courses/:id/chapters/:chapterId` | **NEW:** Chapter View | `/api/chapters/{id}`, `/api/chapters/{chapterId}/materials` | -- | +| `/student/discussions` | **NEW:** Discussion Board | `/api/discussion-boards`, `/api/discussion-boards/{id}/posts` | -- | +| `/student/announcements` | **NEW:** Announcements | `/api/announcements` | -- | +| `/student/messages` | **NEW:** Messages | `/api/messages`, `/api/messages/unread-count` | -- | +| `/student/journey` | **NEW:** Student Journey | `/api/analytics/student`, `/api/proficiency` | -- | + +### 46.3 Teacher Pages (15+) + +| Route | Page | Key APIs | AI Components | +|-------|------|----------|---------------| +| `/teacher/dashboard` | Teacher Dashboard | `/api/user`, `/api/analytics/class` | AiInsightsPanel, AiAlertBanner | +| `/teacher/courses` | Courses | `/api/courses` | -- | +| `/teacher/courses/new` | Course Builder | `/api/courses`, `/api/subjects/{id}/taxonomy` | AiCreationAssistant | +| `/teacher/courses/:id/edit` | Edit Course | `/api/courses/{id}` | AiCreationAssistant | +| `/teacher/assignments` | Assignments | `/api/assignments` | AiCreationAssistant | +| `/teacher/assignments/:id` | Assignment Detail / Grading | `/api/assignments/{id}`, `/api/evaluate/*` | AiGradingAssistant | +| `/teacher/attendance` | Attendance | `/api/attendance` | AiRiskBadge | +| `/teacher/students` | Students | `/api/users/list?type=student` | AiRiskBadge | +| `/teacher/timetable` | Timetable | `/api/timetable` | -- | +| `/teacher/profile` | Profile | `/api/user` | -- | +| `/teacher/courses/:id/chapters` | **NEW:** Course Chapters | `/api/courses/{courseId}/chapters` | -- | +| `/teacher/courses/:id/chapters/:chapterId` | **NEW:** Chapter Detail | `/api/chapters/{id}`, `/api/chapters/{chapterId}/materials` | -- | +| `/teacher/courses/:id/workbench` | **NEW:** AI Workbench | `/api/workbench/*` | AiCreationAssistant | +| `/teacher/courses/:id/discussions` | **NEW:** Discussion Board | `/api/discussion-boards`, `/api/discussion-boards/{id}/posts` | -- | +| `/teacher/announcements` | **NEW:** Announcements | `/api/announcements` | -- | + +### 46.4 Public Pages (4+) + +| Route | Page | Key APIs | AI Components | +|-------|------|----------|---------------| +| `/apply` | **NEW:** Admission Application | `/api/admissions`, `/api/admission-registers` | -- | +| `/apply/status` | **NEW:** Application Status | `/api/admissions/{id}` | -- | +| `/exam/access/{token}` | **NEW:** Official Exam Access (Link) | `/api/exam/access/{token}` | -- | +| `/exam/official/{code}` | **NEW:** Official Exam Access (Landing) | `/api/exam/official-login` | -- | +| `/exam/login/{examId}` | **NEW:** Official Exam Login | `/api/exam/official-login` | -- | +| `/faq` | **NEW:** FAQ | `/api/faq/categories`, `/api/faq/items` | -- | + +### 46.5 Admin Pages (42+) + +| Route | Page | Key APIs | AI Components | +|-------|------|----------|---------------| +| `/admin/dashboard` | LMS Dashboard | `/api/analytics/subject`, `/api/courses` | AiInsightsPanel, AiAlertBanner | +| `/admin/platform` | Platform Dashboard | `/api/users/list`, entity counts | AiInsightsPanel | +| `/admin/courses` | Course Management | `/api/courses` | AiCreationAssistant | +| `/admin/students` | Student Management | `/api/users/list?type=student` | AiRiskBadge | +| `/admin/teachers` | Teacher Management | `/api/users/list?type=teacher` | -- | +| `/admin/batches` | Batch Management | `/api/batches` | AiBatchOptimizer | +| `/admin/batches/:id` | Batch Detail | `/api/batches/{id}` | AiBatchOptimizer | +| `/admin/timetable` | Timetable Admin | `/api/timetable` | -- | +| `/admin/reports` | Reports / Analytics | `/api/analytics/*` | AiReportNarrative | +| `/admin/settings` | LMS Settings | Configuration APIs | -- | +| `/admin/assignments` | Assignments | `/api/assignments` | AiCreationAssistant | +| `/admin/examsList` | Exams List + Rubrics | `/api/exam` | -- | +| `/admin/exam-structures` | Exam Structures | `/api/exam-structures` | -- | +| `/admin/rubrics` | Rubrics | `/api/rubrics` | AiCreationAssistant | +| `/admin/generation` | Exam Generation | `/api/exam/*/generate` | AiGeneratorModal | +| `/admin/approval-workflows` | Approval Workflows | `/api/approval-workflows` | AiGradingAssistant | +| `/admin/users` | User Management | `/api/users/list` | -- | +| `/admin/entities` | Entity Management | `/api/entities` | -- | +| `/admin/classrooms` | Classroom Management | `/api/groups` | -- | +| `/admin/taxonomy` | **NEW:** Taxonomy Manager | `/api/subjects`, `/api/domains`, `/api/topics` | -- | +| `/admin/resources` | **NEW:** Resource Manager | `/api/resources`, `/api/analytics/content-gaps` | -- | +| `/admin/adaptive-analytics` | **NEW:** Adaptive Analytics | `/api/analytics/subject`, `/api/analytics/content-gaps` | AiInsightsPanel | +| `/admin/student-performance` | Student Performance | `/api/proficiency/class` | AiStudyCoach, AiGradeExplainer | +| `/admin/stats-corporate` | Corporate Stats | `/api/statistical` | -- | +| `/admin/record` | Record | `/api/stats` | -- | +| `/admin/training/vocabulary` | Vocabulary | `/api/training`, FAISS tips | -- | +| `/admin/training/grammar` | Grammar | `/api/training`, FAISS tips | -- | +| `/admin/payment-record` | Payment Record | `/api/packages`, payment APIs | -- | +| `/admin/tickets` | Tickets | `/api/tickets` | -- | +| `/admin/settings-platform` | Platform Settings | Settings APIs | -- | +| `/admin/exam` | Exam Runner | `/api/exam`, `/api/sessions` | -- | +| `/admin/profile` | Admin Profile | `/api/user` | -- | +| `/admin/academic-years` | **NEW:** Academic Year Manager | `/api/academic-years`, `/api/academic-terms` | -- | +| `/admin/departments` | **NEW:** Department Manager | `/api/departments` | -- | +| `/admin/admissions` | **NEW:** Admission List | `/api/admissions` | -- | +| `/admin/admissions/:id` | **NEW:** Admission Detail | `/api/admissions/{id}` | -- | +| `/admin/admission-register` | **NEW:** Admission Register | `/api/admission-registers` | -- | +| `/admin/exam-sessions` | **NEW:** Institutional Exam Sessions | `/api/inst-exam-sessions`, `/api/inst-exams` | -- | +| `/admin/marksheets` | **NEW:** Marksheet Manager | `/api/marksheets`, `/api/result-templates`, `/api/grade-config` | -- | +| `/admin/faq` | **NEW:** FAQ Manager | `/api/faq/categories`, `/api/faq/items` | -- | +| `/admin/notification-rules` | **NEW:** Notification Rules | `/api/notification-rules` | -- | +| `/admin/approval-config` | **NEW:** Approval Workflow Config | `/api/approval-workflows` | -- | + +--- + +## 47. Non-Functional Requirements + +| ID | Requirement | +|----|-------------| +| NFR-SEC-01 | Authorize on server/API; do not rely on hiding UI alone | +| NFR-SEC-02 | Students can only access their own proficiency and learning plan data | +| NFR-SEC-03 | AI prompts never include student personal data | +| NFR-SEC-04 | Resource uploads validated for file type (no executables) | +| NFR-PERF-01 | Pagination and server-side filtering for all list views | +| NFR-PERF-02 | Diagnostic question generation < 3 seconds | +| NFR-PERF-03 | AI grading response < 10 seconds (writing/speaking < 60 seconds) | +| NFR-PERF-04 | Learning plan generation < 10 seconds | +| NFR-PERF-05 | AI content generation < 15 seconds | +| NFR-PERF-06 | API response time < 2 seconds for standard CRUD | +| NFR-SCALE-01 | 200 concurrent students per subject | +| NFR-SCALE-02 | 500 topics per subject | +| NFR-SCALE-03 | 1,000 resources per subject | +| NFR-UX-01 | Consistent search/filter/pagination patterns; empty states; loading feedback | +| NFR-UX-02 | Math content rendered with KaTeX; IT code rendered with syntax highlighting | +| NFR-A11Y-01 | Icon-only actions have accessible names | +| NFR-A11Y-02 | All forms have proper labels and validation messages | +| NFR-DATA-01 | Proficiency scores use weighted averages (never direct overwrite) | +| NFR-DATA-02 | Learning plan changes are logged with user ID and timestamp | +| NFR-DATA-03 | Resource deletions are soft-delete to preserve completion records | + +--- + +## Appendix A: Odoo Module Inventory + +| # | Module | Status | Description | +|---|--------|--------|-------------| +| 1 | `encoach_core` | Existing | Users, entities, roles, permissions, codes, invites | +| 2 | `encoach_ai` | Existing | OpenAI service, constants, blacklist, token counting | +| 3 | `encoach_ai_media` | Existing | TTS (Polly), STT (Whisper), ELAI avatars | +| 4 | `encoach_ai_generation` | Existing | Exam content generation (extend for Math/IT prompts) | +| 5 | `encoach_ai_grading` | Existing | Writing/speaking grading (extend for Math/IT rubrics) | +| 6 | `encoach_exam` | Existing | Exam model (extend with `subject_id`, `topic_ids`) | +| 7 | `encoach_assignment` | Existing | Assignment management | +| 8 | `encoach_evaluation` | Existing | Evaluation and AI job tracking | +| 9 | `encoach_stats` | Existing | Sessions and statistics (extend with `topic_id`, `subject_id`) | +| 10 | `encoach_training` | Existing | Training tips and walkthroughs (extend with `subject_id`) | +| 11 | `encoach_classroom` | Existing | Classroom groups | +| 12 | `encoach_subscription` | Existing | Packages, payments, discounts | +| 13 | `encoach_registration` | Existing | User registration and batch import | +| 14 | `encoach_ticket` | Existing | Support tickets | +| 15 | `encoach_api` | Existing | REST API controllers (extend with new endpoints) | +| 16 | `encoach_taxonomy` | **NEW** | Subject, domain, topic, learning objective models | +| 17 | `encoach_resources` | **NEW** | Learning resource library | +| 18 | `encoach_adaptive` | **NEW** | Proficiency, learning plans, progress tracking, content cache | +| 19 | `encoach_adaptive_api` | **NEW** | REST controllers for adaptive learning | +| 20 | `encoach_adaptive_ai` | **NEW** | AI services for diagnostics, plans, coaching, content | +| 21 | `encoach_lms_api` | **NEW** | REST API bridge for OpenEduCat models (extends `op.course`, `op.batch`, adds missing fields) | +| 22 | `encoach_sis` | **NEW** | UTAS SIS integration (sync, mapping) | +| 23 | `encoach_branding` | **NEW** | Whitelabeling configuration | +| 24 | `openeducat_core` | **OpenEduCat (port to v19)** | `op.course`, `op.batch`, `op.student`, `op.faculty`, `op.subject`, `op.department`, `op.category`, `op.academic.year`, `op.academic.term`, `op.student.course`, `op.subject.registration` | +| 25 | `openeducat_timetable` | **OpenEduCat (port to v19)** | `op.session`, `op.timing` | +| 26 | `openeducat_attendance` | **OpenEduCat (port to v19)** | `op.attendance.register`, `op.attendance.sheet`, `op.attendance.line`, `op.attendance.type` | +| 27 | `openeducat_classroom` | **OpenEduCat (port to v19)** | `op.classroom` (physical rooms) | +| 28 | `openeducat_exam` | **OpenEduCat (port to v19)** | `op.exam.session`, `op.exam`, `op.exam.type`, `op.exam.attendees`, `op.exam.room`, `op.marksheet.register`, `op.marksheet.line`, `op.result.line`, `op.result.template`, `op.grade.configuration` | +| 29 | `openeducat_assignment` | **OpenEduCat (port to v19)** | `op.assignment`, `op.assignment.sub.line`, `grading.assignment`, `grading.assignment.type` | +| 30 | `openeducat_admission` | **OpenEduCat (port to v19)** | `op.admission`, `op.admission.register` | +| 31 | `openeducat_facility` | **OpenEduCat (port to v19)** | `op.facility`, `op.facility.line` (dependency of classroom) | + +| 32 | `encoach_courseware` | **NEW** | Course chapters, chapter materials, chapter progress, AI workbench | +| 33 | `encoach_communication` | **NEW** | Discussion boards, posts, announcements, messaging | +| 34 | `encoach_notification` | **NEW** | Notification engine, notification rules, reminders, preferences | +| 35 | `encoach_faq` | **NEW** | FAQ categories and items, role-filtered | + +**Total: 15 existing EnCoach + 12 new EnCoach + 8 OpenEduCat = 35 modules** + +--- + +## Appendix B: Implementation Priority + +| Priority | Components | Rationale | +|----------|-----------|-----------| +| **P0** | Auth, core user management, taxonomy models, resource model | Platform foundation; blocks everything | +| **P1** | Diagnostic engine, proficiency profile, learning plan generation | Core adaptive learning loop | +| **P1** | Exam engine with multi-subject support | Exam generation and delivery | +| **P2** | OpenEduCat porting (v17→v19), LMS API bridge, course/batch/timetable/attendance | LMS functionality | +| **P2** | Academic years/terms, departments, admission workflow | Institutional operations | +| **P2** | Content delivery (hybrid), practice questions, mastery quizzes | Learning content consumption | +| **P2** | AI components wiring (all 15 frontend components to real backend) | AI integration | +| **P3** | AI coaching (hints, explanations, study suggestions) | Learning enhancement | +| **P3** | Spaced repetition, analytics dashboards | Progress optimization | +| **P3** | Institutional exam sessions, marksheets, subject registration | Institutional assessment | +| **P3** | Course assignment submissions (file upload, grading) | Homework workflow | +| **P2** | Courseware module (chapters, materials, progress tracking) | Structured course delivery | +| **P2** | Communication module (discussions, announcements, messaging) | Collaboration | +| **P3** | Notification engine (rules, email integration, reminders) | User engagement | +| **P3** | Enhanced approval workflows (timed stages, escalation, bypass) | Governance | +| **P3** | Plagiarism detection (GPTZero integration) | Academic integrity | +| **P3** | Official exam access modes (link, landing page, separate login) | Exam security | +| **P4** | FAQ system (admin-managed, role-filtered) | User support | +| **P4** | AI Workbench for course content generation | Content automation | +| **P3** | SIS integration, whitelabeling | University integration | +| **P4** | Content gap detection, FAISS tips per subject, batch optimizer | Operational efficiency | +| **P4** | Payment system, subscription management | Commercial features | + +--- + +*This is the definitive SRS for the new EnCoach platform. All previous SRS documents (`SRS-EnCoach.md`, `MATH_IT_ADAPTIVE_LEARNING_SRS.md`, `ODOO_MIGRATION_SRS_v2.md`) are superseded by this document for new development.* diff --git a/docs/MATH_IT_ADAPTIVE_LEARNING_SRS.md b/docs/MATH_IT_ADAPTIVE_LEARNING_SRS.md new file mode 100644 index 0000000..e119682 --- /dev/null +++ b/docs/MATH_IT_ADAPTIVE_LEARNING_SRS.md @@ -0,0 +1,1410 @@ +# Math & IT Adaptive Learning System -- Software Requirements Specification + +**Document Version:** 1.0 +**Date:** March 16, 2026 +**Status:** Draft -- Architect Review +**Author:** EnCoach Engineering Team +**Audience:** Architect (initial review), then development team + +--- + +## Table of Contents + +1. [Introduction and Scope](#1-introduction-and-scope) +2. [System Overview](#2-system-overview) +3. [Subject Taxonomy and Knowledge Graph](#3-subject-taxonomy-and-knowledge-graph) +4. [Diagnostic Assessment Engine](#4-diagnostic-assessment-engine) +5. [Proficiency Profile](#5-proficiency-profile) +6. [Learning Plan Generation](#6-learning-plan-generation) +7. [Hybrid Content Delivery](#7-hybrid-content-delivery) +8. [Progress Tracking and Reassessment](#8-progress-tracking-and-reassessment) +9. [Data Models -- Odoo 19](#9-data-models----odoo-19) +10. [REST API Specification](#10-rest-api-specification) +11. [AI Integration Specification](#11-ai-integration-specification) +12. [Frontend Requirements](#12-frontend-requirements) +13. [Non-Functional Requirements](#13-non-functional-requirements) + +--- + +## 1. Introduction and Scope + +### 1.1 Purpose + +This document specifies the requirements for adding **Mathematics** and **Information Technology** adaptive learning modules to the EnCoach platform. The system implements a competency-based adaptive learning loop: diagnostic assessment determines a student's current level, an AI-generated personalized learning plan guides them through content, and continuous reassessment adjusts the path based on progress. + +### 1.2 Scope + +**In scope:** +- Subject taxonomy and knowledge graph for Math and IT +- Adaptive diagnostic assessment engine (level detection per topic) +- Student proficiency profiling (per-topic mastery tracking) +- AI-powered personalized learning plan generation +- Hybrid content delivery (human-uploaded resources + AI-generated content) +- Progress tracking with mastery-based advancement +- AI coaching (hints, explanations, study suggestions) +- Math-specific features (formula rendering, numerical grading) +- IT-specific features (code highlighting, scenario-based questions) + +**Out of scope:** +- English/IELTS module changes (stays as-is) +- Mobile native applications +- Live tutoring / video conferencing +- Payment or subscription changes +- OpenEduCat LMS integration (separate workstream) + +### 1.3 Relationship to Existing System + +The adaptive learning system is built **on top of** the existing EnCoach Odoo 19 backend. It reuses: + +| Existing Component | Reuse | +|-------------------|-------| +| `encoach.exam` model | Extended with `subject_id` and `topic_ids` for subject-scoped exams. `is_diagnostic` flag already exists. | +| `encoach.stat` model | Score tracking per exercise. Extended with `topic_id` for per-topic analytics. | +| `encoach.session` model | Exam session state tracking, reused as-is. | +| `encoach_ai_generation` service | AI generation patterns reused; new prompt templates for Math/IT. | +| `encoach_ai_grading` service | Grading patterns reused; new rubrics for numerical and keyword grading. | +| `EncoachOpenAIService` | Direct reuse for GPT-4o calls with subject-specific prompts. | +| `EncoachMixin` (API controllers) | Authentication, response formatting, error handling reused as-is. | +| Training tips + FAISS | Architecture reused; new subject-specific knowledge bases. | + +**New Odoo modules required:** + +| Module | Purpose | +|--------|---------| +| `encoach_taxonomy` | Subject, Domain, Topic, Learning Objective models | +| `encoach_adaptive` | Proficiency profile, learning plan, diagnostic engine, progress tracking | +| `encoach_resources` | Human-uploaded learning resources tagged to topics | +| `encoach_adaptive_api` | REST API controllers for all adaptive learning endpoints | +| `encoach_adaptive_ai` | AI services for diagnostic generation, content generation, plan generation, coaching | + +### 1.4 Definitions + +| Term | Definition | +|------|-----------| +| **Subject** | Top-level academic discipline (Mathematics, Information Technology) | +| **Domain** | Major area within a subject (e.g., Algebra, Networking) | +| **Topic** | Specific teachable unit within a domain (e.g., Linear Equations, TCP/IP Model) | +| **Learning Objective** | Measurable skill/knowledge a student should gain from a topic (e.g., "Solve two-variable linear systems") | +| **Mastery Level** | Numeric score (0-100) indicating proficiency on a topic | +| **Mastery Threshold** | Minimum mastery level required to advance (default: 80%) | +| **Diagnostic Assessment** | Adaptive test that determines initial proficiency across all topics in a subject | +| **Learning Plan** | AI-generated, sequenced list of topics for a student to study, respecting prerequisites | +| **Resource** | Human-uploaded learning material (PDF, video, link, document) tagged to one or more topics | +| **Prerequisite** | A topic that must be mastered before another topic becomes available | + +--- + +## 2. System Overview + +### 2.1 The Adaptive Learning Loop + +```mermaid +graph TB + subgraph loop ["Adaptive Learning Loop"] + A["1. Diagnostic Assessment
Adaptive test determines
per-topic proficiency"] --> B["2. Proficiency Profile
Map of student knowledge
gaps and strengths"] + B --> C["3. Learning Plan
AI generates personalized
topic sequence"] + C --> D["4. Content Delivery
Human resources + AI content
+ AI coaching"] + D --> E["5. Progress Tracking
Mastery quizzes, completion
tracking, reassessment"] + E -->|"Profile updated"| B + end + + Entry["Student enrolls
in Subject"] --> A + E -->|"All topics mastered"| Complete["Subject Complete
Certificate issued"] +``` + +### 2.2 Actors + +| Actor | Role in Adaptive Learning | +|-------|--------------------------| +| **Student** | Takes diagnostic assessment, follows learning plan, consumes content, completes mastery quizzes, receives AI coaching | +| **Teacher / Academic Staff** | Defines subject taxonomy (topics, prerequisites), uploads learning resources (PDFs, videos, links), reviews AI-generated content quality, overrides learning plans | +| **Admin** | Manages subjects and domains, configures diagnostic assessment parameters, monitors system analytics, manages resource library | +| **AI Engine** | Generates diagnostic questions, creates learning plans, produces supplementary content, grades assessments, provides contextual coaching | + +### 2.3 Architecture -- New Modules in Context + +```mermaid +graph TB + subgraph frontend ["React Frontend"] + DiagUI["Diagnostic Test UI"] + PlanUI["Learning Plan Dashboard"] + ContentUI["Content Viewer
PDF/Video/AI Content"] + ProgressUI["Progress Tracker"] + CoachUI["AI Coach Panel"] + AdminTaxUI["Taxonomy Admin"] + ResourceUI["Resource Manager"] + end + + subgraph newModules ["New Odoo Modules"] + TaxMod["encoach_taxonomy
Subject, Domain, Topic,
Learning Objective"] + AdaptMod["encoach_adaptive
Proficiency, Learning Plan,
Diagnostic Config"] + ResMod["encoach_resources
Resource Library"] + AdaptAPI["encoach_adaptive_api
REST Controllers"] + AdaptAI["encoach_adaptive_ai
AI Services"] + end + + subgraph existing ["Existing Odoo Modules"] + ExamMod["encoach_exam
Exam model"] + StatMod["encoach_stats
Session, Stat"] + AICore["encoach_ai
OpenAI Service"] + AIGen["encoach_ai_generation
Content Generation"] + AIGrade["encoach_ai_grading
Grading Service"] + Core["encoach_core
Users, Entities"] + end + + subgraph data ["Data Layer"] + PG["PostgreSQL 16"] + end + + subgraph ai ["AI Services"] + GPT["OpenAI GPT-4o"] + FAISS_DB["FAISS Index
per Subject"] + end + + frontend -->|"REST API"| AdaptAPI + AdaptAPI --> TaxMod + AdaptAPI --> AdaptMod + AdaptAPI --> ResMod + AdaptAPI --> AdaptAI + AdaptAI --> AICore + AdaptAI --> GPT + AdaptAI --> FAISS_DB + AdaptMod --> ExamMod + AdaptMod --> StatMod + TaxMod --> PG + AdaptMod --> PG + ResMod --> PG +``` + +--- + +## 3. Subject Taxonomy and Knowledge Graph + +### 3.1 Taxonomy Hierarchy + +The taxonomy is a four-level hierarchy that structures all learning content: + +``` +Subject (e.g., Mathematics) +└── Domain (e.g., Algebra) + └── Topic (e.g., Linear Equations) + └── Learning Objective (e.g., "Solve 2-variable linear systems using substitution") +``` + +Topics form a **directed acyclic graph (DAG)** via prerequisite relationships. A topic may have zero or more prerequisites, and a student cannot begin a topic until all prerequisites are at Proficient level (mastery >= 60%). + +### 3.2 Example Taxonomy -- Mathematics + +``` +Mathematics +├── Arithmetic +│ ├── Number Operations (prerequisites: none) +│ │ ├── LO: Perform addition, subtraction, multiplication, division on integers +│ │ └── LO: Apply order of operations (PEMDAS/BODMAS) +│ ├── Fractions and Decimals (prerequisites: Number Operations) +│ │ ├── LO: Convert between fractions, decimals, and percentages +│ │ └── LO: Perform arithmetic with fractions +│ └── Ratios and Proportions (prerequisites: Fractions and Decimals) +│ └── LO: Solve proportion problems +│ +├── Algebra +│ ├── Algebraic Expressions (prerequisites: Arithmetic/Number Operations) +│ │ ├── LO: Simplify algebraic expressions +│ │ └── LO: Evaluate expressions for given variable values +│ ├── Linear Equations (prerequisites: Algebraic Expressions) +│ │ ├── LO: Solve single-variable linear equations +│ │ └── LO: Solve two-variable systems using substitution and elimination +│ ├── Quadratic Equations (prerequisites: Linear Equations) +│ │ ├── LO: Solve quadratics by factoring +│ │ └── LO: Apply the quadratic formula +│ └── Polynomials (prerequisites: Quadratic Equations) +│ └── LO: Factor and divide polynomials +│ +├── Geometry +│ ├── Basic Shapes (prerequisites: Number Operations) +│ │ └── LO: Calculate area and perimeter of common shapes +│ ├── Angles and Triangles (prerequisites: Basic Shapes) +│ │ └── LO: Apply angle sum property, classify triangles +│ ├── Coordinate Geometry (prerequisites: Linear Equations, Basic Shapes) +│ │ └── LO: Plot points, calculate distance and midpoint +│ └── Trigonometry (prerequisites: Angles and Triangles, Coordinate Geometry) +│ └── LO: Apply sin, cos, tan to right-angled triangles +│ +├── Statistics and Probability +│ ├── Data Representation (prerequisites: Number Operations) +│ │ └── LO: Create and interpret bar charts, histograms, pie charts +│ ├── Measures of Central Tendency (prerequisites: Data Representation) +│ │ └── LO: Calculate mean, median, mode for data sets +│ └── Basic Probability (prerequisites: Fractions and Decimals) +│ └── LO: Calculate probability of simple and compound events +│ +└── Calculus (advanced, optional) + ├── Limits (prerequisites: Polynomials, Coordinate Geometry) + ├── Derivatives (prerequisites: Limits) + └── Integrals (prerequisites: Derivatives) +``` + +### 3.3 Example Taxonomy -- Information Technology + +``` +Information Technology +├── Computer Fundamentals +│ ├── Hardware Components (prerequisites: none) +│ │ └── LO: Identify and describe CPU, RAM, storage, I/O devices +│ ├── Operating Systems (prerequisites: Hardware Components) +│ │ └── LO: Explain OS functions, file systems, process management +│ └── Number Systems (prerequisites: none) +│ └── LO: Convert between binary, decimal, hexadecimal +│ +├── Networking +│ ├── Network Basics (prerequisites: Computer Fundamentals/Hardware) +│ │ └── LO: Describe LAN, WAN, MAN topologies +│ ├── TCP/IP Model (prerequisites: Network Basics) +│ │ └── LO: Explain the 4 layers of TCP/IP with protocols +│ ├── IP Addressing (prerequisites: TCP/IP Model, Number Systems) +│ │ └── LO: Calculate subnets, identify public/private addresses +│ └── Network Security (prerequisites: IP Addressing) +│ └── LO: Describe firewalls, encryption, VPN concepts +│ +├── Databases +│ ├── Database Concepts (prerequisites: Computer Fundamentals/OS) +│ │ └── LO: Explain RDBMS, tables, keys, relationships +│ ├── SQL Fundamentals (prerequisites: Database Concepts) +│ │ └── LO: Write SELECT, INSERT, UPDATE, DELETE queries +│ ├── Database Design (prerequisites: SQL Fundamentals) +│ │ └── LO: Apply normalization (1NF, 2NF, 3NF) +│ └── Advanced SQL (prerequisites: Database Design) +│ └── LO: Write JOINs, subqueries, aggregate functions +│ +├── Programming +│ ├── Programming Logic (prerequisites: none) +│ │ └── LO: Design algorithms using flowcharts and pseudocode +│ ├── Python Basics (prerequisites: Programming Logic) +│ │ └── LO: Write programs using variables, loops, conditionals +│ ├── Data Structures (prerequisites: Python Basics) +│ │ └── LO: Implement lists, stacks, queues, dictionaries +│ └── Object-Oriented Programming (prerequisites: Data Structures) +│ └── LO: Apply classes, inheritance, polymorphism +│ +└── Cybersecurity + ├── Security Fundamentals (prerequisites: Network Security) + │ └── LO: Identify common threats, vulnerabilities, attack vectors + └── Cryptography Basics (prerequisites: Security Fundamentals, Number Systems) + └── LO: Explain symmetric/asymmetric encryption, hashing +``` + +### 3.4 Prerequisite Graph Visualization + +```mermaid +graph LR + subgraph mathPrereqs ["Math Prerequisites (simplified)"] + NumOps["Number Operations"] --> FracDec["Fractions & Decimals"] + FracDec --> Ratios["Ratios & Proportions"] + NumOps --> AlgExpr["Algebraic Expressions"] + AlgExpr --> LinEq["Linear Equations"] + LinEq --> QuadEq["Quadratic Equations"] + QuadEq --> Poly["Polynomials"] + NumOps --> BasicShapes["Basic Shapes"] + BasicShapes --> Angles["Angles & Triangles"] + LinEq --> CoordGeom["Coordinate Geometry"] + BasicShapes --> CoordGeom + Angles --> Trig["Trigonometry"] + CoordGeom --> Trig + Poly --> Limits["Limits"] + CoordGeom --> Limits + Limits --> Deriv["Derivatives"] + Deriv --> Integ["Integrals"] + end +``` + +### 3.5 Taxonomy Management + +| Action | Actor | Method | +|--------|-------|--------| +| Create/edit subjects | Admin | Admin UI or API | +| Create/edit domains | Admin / Academic Staff | Admin UI or API | +| Create/edit topics | Academic Staff | Admin UI or API, including prerequisite mapping | +| Create/edit learning objectives | Academic Staff | Admin UI, attached to topics | +| Import taxonomy from CSV/JSON | Admin | Bulk import endpoint | +| AI-suggest sub-topics | Academic Staff | Given a domain, AI suggests topic breakdown; staff reviews and approves | + +--- + +## 4. Diagnostic Assessment Engine + +### 4.1 Purpose + +When a student begins a new subject, a diagnostic assessment determines their current proficiency across all domains and topics. This is the input for learning plan generation. + +### 4.2 Adaptive Assessment Algorithm + +The diagnostic uses a simplified **Computer Adaptive Testing (CAT)** approach: + +```mermaid +sequenceDiagram + participant Student + participant System as Diagnostic Engine + participant AI as GPT-4o + participant DB as Proficiency Store + + Student->>System: Start diagnostic for "Mathematics" + System->>System: Load topic list for Mathematics (all domains) + System->>System: Select first domain, set difficulty = MEDIUM + + loop For each domain (round-robin) + System->>AI: Generate question for topic X at difficulty MEDIUM + AI-->>System: Question + correct answer + rubric + System->>Student: Present question + Student->>System: Submit answer + System->>System: Grade answer (auto or AI) + + alt Correct + System->>System: Increase difficulty for this domain + System->>System: Add points to related topics + else Incorrect + System->>System: Decrease difficulty for this domain + System->>System: Mark gap in related topics + end + end + + System->>DB: Store per-topic mastery scores + System->>Student: Show proficiency profile summary +``` + +### 4.3 Algorithm Parameters + +| Parameter | Default | Configurable | Description | +|-----------|---------|-------------|-------------| +| `questions_per_domain` | 4 | Yes (admin) | Number of questions asked per domain | +| `total_question_cap` | 25 | Yes (admin) | Maximum total questions in diagnostic | +| `time_limit_minutes` | 45 | Yes (admin) | Time limit for full diagnostic | +| `starting_difficulty` | `medium` | Yes (admin) | Initial difficulty level | +| `difficulty_levels` | `[easy, medium, hard, advanced]` | No | Fixed scale | +| `mastery_per_correct` | +25 | Yes (admin) | Points added to topic mastery for correct answer | +| `mastery_per_incorrect` | -10 | Yes (admin) | Points subtracted for incorrect answer | +| `min_mastery` | 0 | No | Floor value | +| `max_mastery` | 100 | No | Ceiling value | + +### 4.4 Question Types per Subject + +**Mathematics:** + +| Question Type | Format | Example | Grading Method | +|--------------|--------|---------|---------------| +| `multiple_choice` | 4 options, 1 correct | "What is the slope of y = 3x + 2?" (a) 2 (b) 3 (c) 5 (d) 1 | Exact match | +| `numerical` | Student enters a number | "Solve for x: 2x + 6 = 14" → 4 | Numerical tolerance (default: 0.01) | +| `short_answer` | Student types answer | "Factor x² - 9" → "(x+3)(x-3)" | AI-graded (GPT-4o evaluates equivalence) | +| `fill_blanks` | Complete the equation | "The area of a circle is π___²" → r | Exact match (case-insensitive) | +| `worked_problem` | Multi-step solution | "Find the roots of 2x² + 5x - 3 = 0. Show your work." | AI-graded (GPT-4o evaluates steps and final answer) | + +**Information Technology:** + +| Question Type | Format | Example | Grading Method | +|--------------|--------|---------|---------------| +| `multiple_choice` | 4 options, 1 correct | "Which layer of TCP/IP handles routing?" (a) Application (b) Transport (c) Internet (d) Link | Exact match | +| `true_false` | True or False | "A primary key can contain NULL values." → False | Exact match | +| `short_answer` | Student types answer | "What SQL command retrieves data from a table?" → SELECT | Keyword match (case-insensitive, AI-assisted) | +| `code_completion` | Complete code snippet | "Write a Python function that returns the sum of a list" | AI-graded (GPT-4o evaluates correctness and approach) | +| `scenario` | Read scenario, answer question | "Given this network diagram, identify the subnet..." | AI-graded | + +### 4.5 Diagnostic Configuration Model + +Each subject has a diagnostic configuration that defines the assessment behavior: + +```python +# Diagnostic configuration per subject +{ + "subject_id": 1, # Mathematics + "questions_per_domain": 4, + "total_question_cap": 25, + "time_limit_minutes": 45, + "starting_difficulty": "medium", + "question_type_weights": { + "multiple_choice": 0.4, # 40% of questions + "numerical": 0.3, # 30% (Math-specific) + "short_answer": 0.2, # 20% + "fill_blanks": 0.1 # 10% + }, + "mastery_scoring": { + "correct_easy": 15, + "correct_medium": 25, + "correct_hard": 35, + "correct_advanced": 45, + "incorrect_penalty": -10 + } +} +``` + +### 4.6 Relationship to Existing Exam System + +The diagnostic assessment reuses the existing `encoach.exam` model: + +- `module` field: new values `math_diagnostic`, `it_diagnostic` added to `MODULE_SELECTION` +- `is_diagnostic` field: already exists, set to `True` +- `parts` field (JSON): stores the adaptive question set +- `encoach.stat`: records per-question scores, linked to `topic_id` +- `encoach.session`: wraps the full diagnostic session + +The key difference from regular exams: diagnostic questions are generated **on-the-fly** during the assessment (adaptive), not pre-generated as a fixed exam. The `parts` JSON is built dynamically as the student progresses. + +--- + +## 5. Proficiency Profile + +### 5.1 Overview + +Every student has a proficiency profile per subject -- a map of their mastery level for every topic in the subject's taxonomy. This profile is the core data structure that drives learning plan generation. + +### 5.2 Mastery Levels + +| Level | Score Range | Description | Visual | +|-------|-----------|-------------|--------| +| **Not Started** | 0-19% | Topic not yet assessed or extremely weak | Grey | +| **Beginner** | 20-39% | Basic awareness, significant gaps | Red | +| **Developing** | 40-59% | Partial understanding, needs practice | Orange | +| **Proficient** | 60-79% | Good understanding, minor gaps | Yellow | +| **Mastered** | 80-100% | Strong command, ready to advance | Green | + +### 5.3 Profile Updates + +The proficiency profile updates in these scenarios: + +| Trigger | Update Logic | +|---------|-------------| +| **Diagnostic assessment** | Initial scores set per topic based on diagnostic performance | +| **Practice exercises** | Mastery adjusts based on exercise results: +5 per correct, -2 per incorrect (smaller deltas than diagnostic) | +| **Mastery quiz** | Major update: if quiz score >= mastery threshold, topic moves to Mastered. If below, mastery recalculated as weighted average of current mastery and quiz score. | +| **Time decay** | If a student hasn't engaged with a topic for N days (configurable, default: 30), mastery decays by 5% per week of inactivity, down to a floor of the last quiz score minus 20%. Triggers review recommendation. | + +### 5.4 Profile Data Structure + +```python +# Per-student proficiency profile (stored per subject) +{ + "student_id": 42, + "subject_id": 1, # Mathematics + "overall_mastery": 54.2, # Weighted average across all topics + "last_diagnostic": "2026-04-15T10:30:00Z", + "topics": [ + { + "topic_id": 101, + "topic_name": "Number Operations", + "domain": "Arithmetic", + "mastery": 92, + "level": "mastered", + "last_assessed": "2026-04-15T10:30:00Z", + "assessment_count": 3, + "time_spent_minutes": 45, + "decay_due": "2026-05-15T10:30:00Z" + }, + { + "topic_id": 105, + "topic_name": "Linear Equations", + "domain": "Algebra", + "mastery": 35, + "level": "beginner", + "last_assessed": "2026-04-15T10:35:00Z", + "assessment_count": 1, + "time_spent_minutes": 0, + "prerequisites_met": true + }, + { + "topic_id": 106, + "topic_name": "Quadratic Equations", + "domain": "Algebra", + "mastery": 0, + "level": "not_started", + "last_assessed": null, + "assessment_count": 0, + "time_spent_minutes": 0, + "prerequisites_met": false, + "blocked_by": ["Linear Equations"] + } + ] +} +``` + +--- + +## 6. Learning Plan Generation + +### 6.1 Overview + +After the diagnostic assessment produces a proficiency profile, the AI generates a personalized learning plan. The plan is an ordered sequence of topics the student should study, respecting prerequisites and prioritizing the weakest areas. + +### 6.2 Plan Generation Algorithm + +```mermaid +graph TB + Input["Inputs:
1. Proficiency Profile
2. Prerequisite Graph
3. Time Constraints"] --> Sort["Topological Sort
Respect prerequisites"] + Sort --> Filter["Filter Out
Already Mastered topics
(mastery >= 80%)"] + Filter --> Prioritize["Prioritize by:
1. Prerequisite readiness
2. Lowest mastery first
3. Domain balance"] + Prioritize --> Estimate["Estimate Duration
per topic based on:
- Current mastery
- Topic complexity
- Historical data"] + Estimate --> AI["GPT-4o Refinement
Natural language plan
with study advice"] + AI --> Plan["Learning Plan
Ordered topic list
with milestones"] +``` + +### 6.3 Plan Generation Logic + +**Step 1: Topological Sort** +- Order all topics respecting prerequisite dependencies +- Topics with no unmet prerequisites come first + +**Step 2: Filter Mastered Topics** +- Exclude topics where mastery >= 80% (already mastered) +- Exclude topics where all learning objectives are met + +**Step 3: Prioritize** +- Among available topics (prerequisites met, not mastered): + 1. Lower mastery = higher priority + 2. Balance across domains (don't cluster all Algebra before any Geometry) + 3. Prerequisite chains: if mastering topic A unlocks 3 more topics, prioritize A + +**Step 4: Estimate Duration** +- Base estimate from topic's `estimated_hours` (set by academic staff) +- Adjusted by current mastery: if mastery is 60%, student needs ~40% of full topic time +- If mastery is 0%, student needs 100% of estimated time +- Historical data: if similar students averaged 2.5 hours, use that + +**Step 5: AI Refinement** +- GPT-4o receives the ordered topic list with mastery scores +- Generates a natural-language study plan with: + - Motivational framing ("You're already strong in Arithmetic, let's build on that...") + - Specific advice per topic ("Focus on the substitution method for Linear Equations") + - Milestone suggestions ("Complete Algebra foundations by Week 2") + +### 6.4 Plan Structure + +```python +# Learning Plan +{ + "plan_id": 1, + "student_id": 42, + "subject_id": 1, + "status": "active", # active, completed, paused + "created_at": "2026-04-15T11:00:00Z", + "target_completion": "2026-06-15T00:00:00Z", + "ai_summary": "Based on your diagnostic, you have a solid foundation in Arithmetic...", + "overall_progress": 23.5, # percentage + "items": [ + { + "sequence": 1, + "topic_id": 103, + "topic_name": "Fractions and Decimals", + "domain": "Arithmetic", + "status": "completed", # locked, available, in_progress, completed + "current_mastery": 85, + "target_mastery": 80, + "estimated_hours": 1.5, + "actual_hours": 1.2, + "started_at": "2026-04-16T09:00:00Z", + "completed_at": "2026-04-16T10:12:00Z" + }, + { + "sequence": 2, + "topic_id": 105, + "topic_name": "Linear Equations", + "domain": "Algebra", + "status": "in_progress", + "current_mastery": 45, + "target_mastery": 80, + "estimated_hours": 3.0, + "actual_hours": 1.1, + "started_at": "2026-04-17T14:00:00Z", + "completed_at": null + }, + { + "sequence": 3, + "topic_id": 106, + "topic_name": "Quadratic Equations", + "domain": "Algebra", + "status": "locked", + "current_mastery": 0, + "target_mastery": 80, + "estimated_hours": 4.0, + "blocked_by": ["Linear Equations"] + } + ] +} +``` + +### 6.5 Plan Adjustments + +| Trigger | Adjustment | +|---------|-----------| +| Student masters a topic faster than estimated | Next topic unlocks early; remaining estimates tightened | +| Student struggles with a topic (3+ failed mastery quizzes) | Additional resources surfaced; estimated time increased; AI coaching intensified | +| Student skips ahead (teacher override) | Prerequisites bypassed; warning logged | +| New topics added to taxonomy | Plan regenerated to include new topics if prerequisites are met | +| Student hasn't engaged for 7+ days | Notification sent; if 14+ days, plan paused and review recommended | + +### 6.6 Teacher Override + +Teachers can: +- Reorder topics in a student's plan +- Add or remove specific topics +- Override prerequisite locks ("allow student to skip to Quadratic Equations") +- Set custom target dates +- Force a plan regeneration + +All overrides are logged with the teacher's user ID and timestamp. + +--- + +## 7. Hybrid Content Delivery + +### 7.1 Content Resolution Order + +When a student reaches a topic in their learning plan, the system serves content in this priority order: + +```mermaid +graph TB + TopicStart["Student opens Topic"] --> CheckRes["Check: Human-uploaded
resources exist?"] + CheckRes -->|"Yes"| ServeHuman["Serve human resources
(PDFs, videos, links)"] + CheckRes -->|"No"| CheckAI["Check: AI can generate
for this topic?"] + CheckAI -->|"Yes"| GenAI["AI generates:
- Explanation
- Worked examples
- Summary"] + CheckAI -->|"No"| FlagGap["Flag content gap
Notify academic staff"] + ServeHuman --> SupplementAI["AI supplements with:
- Practice questions
- Quick summary
- Key takeaways"] + GenAI --> Practice["AI generates
practice exercises"] + SupplementAI --> Practice + Practice --> MasteryQuiz["Mastery Quiz
(AI-generated, 5-10 questions)"] +``` + +### 7.2 Human-Uploaded Resources + +| Attribute | Detail | +|-----------|--------| +| **Types** | PDF, video (URL or upload), external link, document (DOCX, PPTX), interactive (embedded HTML) | +| **Tagging** | Each resource is tagged to one or more topics and optionally to specific learning objectives | +| **Metadata** | Title, description, author, upload date, estimated reading/viewing time, difficulty level | +| **Ordering** | Academic staff sets display order within a topic (sequence field) | +| **Versioning** | Resources can be updated; previous versions retained | +| **Review** | Optional review workflow before resources are visible to students | + +### 7.3 AI-Generated Content + +When no human resources exist or as supplementary material, the AI generates: + +| Content Type | Generation Method | When Used | +|-------------|------------------|-----------| +| **Topic Explanation** | GPT-4o generates a comprehensive explanation of the topic, tailored to the student's proficiency level | When student first opens a topic | +| **Worked Examples** | GPT-4o generates 2-3 step-by-step worked examples relevant to the topic | After explanation, before practice | +| **Key Takeaways** | GPT-4o summarizes the most important points in 3-5 bullet points | After content consumption | +| **Practice Questions** | GPT-4o generates 5-10 questions at appropriate difficulty | After content, before mastery quiz | +| **Hint / Explanation** | GPT-4o explains why an answer is correct/incorrect | After each practice question | + +AI-generated content is **cached** on the first generation and served from cache on subsequent requests. Academic staff can review, edit, or replace cached AI content. + +### 7.4 AI Coaching + +The AI coach is an always-available assistant that provides contextual support: + +| Coaching Action | Trigger | AI Behavior | +|----------------|---------|-------------| +| **Answer explanation** | Student answers a practice question | Explains why the answer is correct or incorrect, references the relevant concept | +| **Hint** | Student requests a hint during practice | Provides a partial clue without giving the full answer | +| **Study suggestion** | Student completes a topic section | Suggests what to focus on next based on performance | +| **Motivational nudge** | Student has been inactive for 3+ days | Personalized message encouraging return to study | +| **Weakness analysis** | Student fails a mastery quiz | Identifies specific concepts within the topic that need more practice | +| **Formula reference** | Student is working on a Math problem (on demand) | Displays relevant formulas for the current topic | + +### 7.5 Content Gap Detection + +The system automatically identifies topics with insufficient learning materials: + +| Condition | Action | +|-----------|--------| +| Topic has 0 human resources and no AI content cached | Flag as "Content Gap -- Critical" and notify admin | +| Topic has human resources but they are >12 months old | Flag as "Review Needed" and notify academic staff | +| AI-generated content for a topic has been rated poorly by students (avg < 3/5) | Flag for human review/replacement | +| A domain has <50% resource coverage across its topics | Flag as "Domain Gap" on admin dashboard | + +--- + +## 8. Progress Tracking and Reassessment + +### 8.1 What Is Tracked + +| Metric | Granularity | Storage | +|--------|------------|---------| +| **Resource completion** | Per resource per student | Binary (viewed/not viewed) + timestamp + time spent | +| **Practice exercise results** | Per question per student | Score, answer given, correct answer, time taken | +| **Mastery quiz results** | Per topic per student | Score, pass/fail, attempt number | +| **Topic time spent** | Per topic per student | Cumulative minutes | +| **Learning plan progress** | Per plan per student | % of topics completed, % of total estimated hours completed | +| **Login frequency** | Per student | Days active, streak count | + +### 8.2 Mastery Quiz + +After a student consumes content for a topic, they take a **mastery quiz** to prove proficiency: + +| Parameter | Value | +|-----------|-------| +| **Questions** | 5-10 (configurable per subject) | +| **Question types** | Mix of types appropriate for the subject (see Section 4.4) | +| **Time limit** | 15 minutes (configurable) | +| **Pass threshold** | 80% (configurable -- "mastery threshold") | +| **Attempts** | Unlimited, but each attempt generates new questions | +| **Cooldown** | 1 hour between attempts (configurable) | +| **On pass** | Topic status → "completed", mastery updated, next topic unlocked | +| **On fail** | Mastery recalculated, AI coaching suggests what to review, additional resources recommended | + +### 8.3 Spaced Repetition + +To ensure long-term retention, mastered topics resurface for review: + +| Days Since Mastery | Review Action | +|-------------------|---------------| +| 7 days | Light review: 3 quick-recall questions | +| 30 days | Medium review: 5 questions at original difficulty | +| 90 days | Full review: equivalent to mastery quiz | + +If a student fails a spaced repetition review, the topic mastery is reduced and it re-enters the active learning plan. + +### 8.4 Analytics Dashboard + +The following analytics are available to different roles: + +**Student Dashboard:** +- Overall subject mastery (percentage, visual progress bar) +- Per-domain mastery breakdown (radar chart) +- Learning plan progress (completed / in progress / locked) +- Study streak and time invested +- Upcoming reviews (spaced repetition schedule) + +**Teacher Dashboard:** +- Class-level mastery distribution per topic (heatmap) +- Students at risk (low mastery, low engagement) +- Content gap report +- Average time per topic vs. estimate + +**Admin Dashboard:** +- Subject-level statistics (enrollments, completion rates, average mastery) +- AI content generation usage and quality metrics +- Resource utilization (most/least used resources) +- System-wide performance trends + +--- + +## 9. Data Models -- Odoo 19 + +### 9.1 New Module: `encoach_taxonomy` + +#### `encoach.subject` + +| Field | Type | Description | +|-------|------|-------------| +| `name` | `Char`, required | Subject name (e.g., "Mathematics", "Information Technology") | +| `code` | `Char`, required, unique | Short code (e.g., "MATH", "IT") | +| `description` | `Text` | Subject description | +| `is_active` | `Boolean`, default True | Whether subject is available to students | +| `icon` | `Char` | Icon identifier for frontend display | +| `domain_ids` | `One2many` → `encoach.domain` | Domains in this subject | +| `diagnostic_config` | `Json` | Diagnostic assessment configuration (see Section 4.5) | +| `mastery_threshold` | `Integer`, default 80 | Minimum mastery % to mark a topic as completed | +| `grading_scale` | `Selection`: `percentage`, `letter`, `custom` | How grades are displayed | +| `grading_scale_config` | `Json` | Custom grade boundaries (e.g., `{"A": 90, "B": 80, ...}`) | + +#### `encoach.domain` + +| Field | Type | Description | +|-------|------|-------------| +| `name` | `Char`, required | Domain name (e.g., "Algebra", "Networking") | +| `code` | `Char`, required | Short code | +| `subject_id` | `Many2one` → `encoach.subject`, required, ondelete=cascade | Parent subject | +| `sequence` | `Integer`, default 10 | Display order within subject | +| `description` | `Text` | Domain description | +| `topic_ids` | `One2many` → `encoach.topic` | Topics in this domain | + +#### `encoach.topic` + +| Field | Type | Description | +|-------|------|-------------| +| `name` | `Char`, required | Topic name (e.g., "Linear Equations") | +| `code` | `Char`, required | Short code | +| `domain_id` | `Many2one` → `encoach.domain`, required, ondelete=cascade | Parent domain | +| `sequence` | `Integer`, default 10 | Display order within domain | +| `description` | `Text` | Topic description | +| `estimated_hours` | `Float`, default 2.0 | Estimated study time in hours | +| `difficulty_level` | `Selection`: `beginner`, `intermediate`, `advanced` | Topic complexity | +| `prerequisite_ids` | `Many2many` → `encoach.topic` (self-referential, rel table `encoach_topic_prerequisite_rel`) | Topics that must be mastered before this one | +| `objective_ids` | `One2many` → `encoach.learning.objective` | Learning objectives | +| `resource_ids` | `Many2many` → `encoach.resource` | Tagged resources | +| `question_type_weights` | `Json` | Override default question type distribution for this topic | + +#### `encoach.learning.objective` + +| Field | Type | Description | +|-------|------|-------------| +| `name` | `Char`, required | Objective description (e.g., "Solve 2-variable linear systems") | +| `topic_id` | `Many2one` → `encoach.topic`, required, ondelete=cascade | Parent topic | +| `bloom_level` | `Selection`: `remember`, `understand`, `apply`, `analyze`, `evaluate`, `create` | Bloom's taxonomy level | +| `sequence` | `Integer`, default 10 | Order within topic | + +### 9.2 New Module: `encoach_resources` + +#### `encoach.resource` + +| Field | Type | Description | +|-------|------|-------------| +| `name` | `Char`, required | Resource title | +| `description` | `Text` | Resource description | +| `resource_type` | `Selection`: `pdf`, `video`, `link`, `document`, `interactive` | Content type | +| `file` | `Binary`, attachment=True | Uploaded file (for pdf, document) | +| `file_name` | `Char` | Original file name | +| `url` | `Char` | External URL (for video, link) | +| `topic_ids` | `Many2many` → `encoach.topic` (rel table `encoach_resource_topic_rel`) | Tagged topics | +| `objective_ids` | `Many2many` → `encoach.learning.objective` | Tagged objectives (optional, finer granularity) | +| `author_id` | `Many2one` → `res.users` | Who uploaded | +| `estimated_minutes` | `Integer` | Estimated consumption time | +| `difficulty_level` | `Selection`: `beginner`, `intermediate`, `advanced` | Resource difficulty | +| `sequence` | `Integer`, default 10 | Display order within topic | +| `is_published` | `Boolean`, default True | Visibility to students | +| `review_status` | `Selection`: `draft`, `reviewed`, `approved` | Review workflow status | + +### 9.3 New Module: `encoach_adaptive` + +#### `encoach.proficiency` + +| Field | Type | Description | +|-------|------|-------------| +| `student_id` | `Many2one` → `res.users`, required, ondelete=cascade, index=True | Student | +| `topic_id` | `Many2one` → `encoach.topic`, required, ondelete=cascade, index=True | Topic | +| `subject_id` | `Many2one` → `encoach.subject`, related='topic_id.domain_id.subject_id', store=True | Denormalized for filtering | +| `mastery` | `Float`, default 0 | Current mastery score (0-100) | +| `mastery_level` | `Selection`: `not_started`, `beginner`, `developing`, `proficient`, `mastered` | Computed from mastery score | +| `last_assessed` | `Datetime` | Last assessment date | +| `assessment_count` | `Integer`, default 0 | Number of assessments taken | +| `time_spent_minutes` | `Integer`, default 0 | Cumulative study time | +| `decay_due` | `Datetime` | When mastery decay is next applied | +| `last_quiz_score` | `Float` | Most recent mastery quiz score | + +**SQL constraint:** unique on `(student_id, topic_id)` + +**Computed field logic for `mastery_level`:** +```python +if mastery >= 80: return 'mastered' +elif mastery >= 60: return 'proficient' +elif mastery >= 40: return 'developing' +elif mastery >= 20: return 'beginner' +else: return 'not_started' +``` + +#### `encoach.learning.plan` + +| Field | Type | Description | +|-------|------|-------------| +| `student_id` | `Many2one` → `res.users`, required, ondelete=cascade, index=True | Student | +| `subject_id` | `Many2one` → `encoach.subject`, required, ondelete=cascade | Subject | +| `status` | `Selection`: `active`, `completed`, `paused`, `regenerating` | Plan status | +| `created_at` | `Datetime`, default now | Creation timestamp | +| `target_completion` | `Date` | Target completion date | +| `ai_summary` | `Text` | GPT-generated study plan summary | +| `overall_progress` | `Float`, default 0 | Percentage complete (computed) | +| `item_ids` | `One2many` → `encoach.learning.plan.item` | Ordered plan items | +| `override_by` | `Many2one` → `res.users` | If manually overridden, who did it | +| `override_at` | `Datetime` | Override timestamp | + +#### `encoach.learning.plan.item` + +| Field | Type | Description | +|-------|------|-------------| +| `plan_id` | `Many2one` → `encoach.learning.plan`, required, ondelete=cascade | Parent plan | +| `topic_id` | `Many2one` → `encoach.topic`, required | Topic to study | +| `sequence` | `Integer`, required | Order in the plan | +| `status` | `Selection`: `locked`, `available`, `in_progress`, `completed`, `skipped` | Item status | +| `target_mastery` | `Float`, default 80 | Mastery goal for this item | +| `current_mastery` | `Float`, related to proficiency record | Current mastery (denormalized) | +| `estimated_hours` | `Float` | AI-estimated study hours | +| `actual_hours` | `Float`, default 0 | Actual time spent | +| `started_at` | `Datetime` | When student started | +| `completed_at` | `Datetime` | When student completed | +| `quiz_attempts` | `Integer`, default 0 | Number of mastery quiz attempts | + +#### `encoach.resource.completion` + +| Field | Type | Description | +|-------|------|-------------| +| `student_id` | `Many2one` → `res.users`, required, ondelete=cascade | Student | +| `resource_id` | `Many2one` → `encoach.resource`, required, ondelete=cascade | Resource | +| `viewed` | `Boolean`, default False | Has student viewed/opened the resource | +| `viewed_at` | `Datetime` | When first viewed | +| `time_spent_minutes` | `Integer`, default 0 | Time spent on resource | +| `rating` | `Integer` | Student's rating (1-5 stars) | +| `feedback` | `Text` | Optional student feedback | + +#### `encoach.ai.content.cache` + +| Field | Type | Description | +|-------|------|-------------| +| `topic_id` | `Many2one` → `encoach.topic`, required, ondelete=cascade | Topic | +| `content_type` | `Selection`: `explanation`, `worked_example`, `key_takeaways`, `summary` | Type of AI content | +| `difficulty_level` | `Selection`: `beginner`, `intermediate`, `advanced` | Target difficulty | +| `content` | `Text` | Generated content (Markdown) | +| `content_html` | `Html` | Rendered HTML version | +| `generated_at` | `Datetime`, default now | Generation timestamp | +| `model_used` | `Char` | GPT model used (e.g., "gpt-4o") | +| `quality_rating` | `Float` | Average student rating | +| `review_status` | `Selection`: `auto`, `reviewed`, `approved`, `rejected` | Staff review status | +| `reviewed_by` | `Many2one` → `res.users` | Who reviewed | + +### 9.4 Extensions to Existing Models + +#### `encoach.exam` -- add fields + +| Field | Type | Description | +|-------|------|-------------| +| `subject_id` | `Many2one` → `encoach.subject` | Subject this exam belongs to (null for legacy English exams) | +| `topic_ids` | `Many2many` → `encoach.topic` | Topics covered by this exam | + +#### `encoach.stat` -- add fields + +| Field | Type | Description | +|-------|------|-------------| +| `topic_id` | `Many2one` → `encoach.topic` | Topic this stat relates to | +| `subject_id` | `Many2one` → `encoach.subject` | Subject (denormalized) | + +#### `MODULE_SELECTION` -- add values + +Add to the existing selection: `math`, `it`, `math_diagnostic`, `it_diagnostic`, `math_mastery`, `it_mastery` + +--- + +## 10. REST API Specification + +All endpoints follow existing patterns: `@http.route`, `auth='public'`, JWT via `_authenticate()`, responses via `_json_response()` / `_error_response()`. JSON body uses camelCase keys. + +### 10.1 Taxonomy Endpoints + +| Method | Path | Description | Auth | +|--------|------|-------------|------| +| `GET` | `/api/subjects` | List all active subjects | JWT | +| `GET` | `/api/subjects/` | Get subject with domains and topics | JWT | +| `POST` | `/api/subjects` | Create subject | JWT (admin) | +| `PATCH` | `/api/subjects/` | Update subject | JWT (admin) | +| `DELETE` | `/api/subjects/` | Delete subject | JWT (admin) | +| `GET` | `/api/subjects//taxonomy` | Get full taxonomy tree (domains > topics > objectives) | JWT | +| `POST` | `/api/subjects//taxonomy/import` | Bulk import taxonomy from JSON/CSV | JWT (admin) | + +| Method | Path | Description | Auth | +|--------|------|-------------|------| +| `GET` | `/api/domains` | List domains (filterable by `subjectId`) | JWT | +| `POST` | `/api/domains` | Create domain | JWT (admin/staff) | +| `PATCH` | `/api/domains/` | Update domain | JWT (admin/staff) | +| `DELETE` | `/api/domains/` | Delete domain | JWT (admin/staff) | + +| Method | Path | Description | Auth | +|--------|------|-------------|------| +| `GET` | `/api/topics` | List topics (filterable by `domainId`, `subjectId`) | JWT | +| `GET` | `/api/topics/` | Get topic with objectives and resources | JWT | +| `POST` | `/api/topics` | Create topic | JWT (admin/staff) | +| `PATCH` | `/api/topics/` | Update topic (including prerequisites) | JWT (admin/staff) | +| `DELETE` | `/api/topics/` | Delete topic | JWT (admin/staff) | + +### 10.2 Resource Endpoints + +| Method | Path | Description | Auth | +|--------|------|-------------|------| +| `GET` | `/api/resources` | List resources (filterable by `topicId`, `type`, `published`) | JWT | +| `GET` | `/api/resources/` | Get resource detail | JWT | +| `POST` | `/api/resources` | Upload resource (multipart for files) | JWT (staff) | +| `PATCH` | `/api/resources/` | Update resource metadata | JWT (staff) | +| `DELETE` | `/api/resources/` | Delete resource | JWT (staff) | +| `GET` | `/api/resources//download` | Download resource file | JWT | +| `POST` | `/api/resources//complete` | Mark resource as viewed/completed by current student | JWT | +| `POST` | `/api/resources//rate` | Rate resource (1-5 stars) | JWT | + +### 10.3 Diagnostic Assessment Endpoints + +| Method | Path | Description | Auth | +|--------|------|-------------|------| +| `POST` | `/api/diagnostic/start` | Start diagnostic for a subject. Body: `{ "subjectId": 1 }`. Returns first question batch. | JWT | +| `POST` | `/api/diagnostic/answer` | Submit answer, get next question. Body: `{ "diagnosticSessionId": "...", "questionId": "...", "answer": "..." }`. Returns: grading result + next question (or completion). | JWT | +| `GET` | `/api/diagnostic//result` | Get diagnostic result (proficiency profile). | JWT | +| `POST` | `/api/diagnostic/retake` | Retake diagnostic for a subject. Body: `{ "subjectId": 1 }`. | JWT | + +### 10.4 Proficiency Endpoints + +| Method | Path | Description | Auth | +|--------|------|-------------|------| +| `GET` | `/api/proficiency` | Get current student's proficiency profile. Query: `?subjectId=1`. | JWT | +| `GET` | `/api/proficiency/summary` | Get mastery summary across all subjects. | JWT | +| `GET` | `/api/proficiency/class` | Get class-level proficiency (teacher/admin). Query: `?subjectId=1&classroomId=5`. | JWT (teacher/admin) | + +### 10.5 Learning Plan Endpoints + +| Method | Path | Description | Auth | +|--------|------|-------------|------| +| `GET` | `/api/learning-plan` | Get current student's active plan. Query: `?subjectId=1`. | JWT | +| `POST` | `/api/learning-plan/generate` | Generate or regenerate plan. Body: `{ "subjectId": 1, "targetDate": "2026-06-15" }`. | JWT | +| `PATCH` | `/api/learning-plan/` | Update plan (teacher override). Body: `{ "items": [...] }`. | JWT (teacher) | +| `POST` | `/api/learning-plan//pause` | Pause plan. | JWT | +| `POST` | `/api/learning-plan//resume` | Resume plan. | JWT | +| `GET` | `/api/learning-plan//progress` | Get detailed plan progress. | JWT | + +### 10.6 Content and Coaching Endpoints + +| Method | Path | Description | Auth | +|--------|------|-------------|------| +| `GET` | `/api/topics//content` | Get learning content for a topic (human resources + AI-generated, resolved by priority). | JWT | +| `POST` | `/api/topics//generate-content` | Force AI content generation for a topic. Body: `{ "type": "explanation", "difficultyLevel": "intermediate" }`. | JWT (staff) | +| `POST` | `/api/topics//practice` | Generate practice questions. Body: `{ "count": 5, "questionTypes": ["multiple_choice", "numerical"] }`. Returns questions with IDs. | JWT | +| `POST` | `/api/topics//practice/grade` | Submit practice answers for grading. Body: `{ "answers": [{"questionId": "...", "answer": "..."}] }`. Returns grading results with explanations. | JWT | +| `POST` | `/api/topics//mastery-quiz` | Start mastery quiz. Returns question set. | JWT | +| `POST` | `/api/topics//mastery-quiz/submit` | Submit mastery quiz. Body: `{ "answers": [...] }`. Returns score, pass/fail, updated mastery. | JWT | +| `POST` | `/api/coach/hint` | Request a hint. Body: `{ "questionId": "...", "topicId": 105, "currentAnswer": "..." }`. Returns hint text. | JWT | +| `POST` | `/api/coach/explain` | Request explanation. Body: `{ "questionId": "...", "topicId": 105, "studentAnswer": "...", "correctAnswer": "..." }`. Returns detailed explanation. | JWT | +| `POST` | `/api/coach/suggest` | Get study suggestions. Body: `{ "subjectId": 1 }`. Returns personalized study advice. | JWT | + +### 10.7 Analytics Endpoints + +| Method | Path | Description | Auth | +|--------|------|-------------|------| +| `GET` | `/api/analytics/student` | Student's own analytics. Query: `?subjectId=1`. | JWT | +| `GET` | `/api/analytics/class` | Class-level analytics (teacher/admin). Query: `?subjectId=1&classroomId=5`. | JWT (teacher/admin) | +| `GET` | `/api/analytics/subject` | Subject-level analytics (admin). Query: `?subjectId=1`. | JWT (admin) | +| `GET` | `/api/analytics/content-gaps` | Content gap report (admin/staff). Query: `?subjectId=1`. | JWT (admin/staff) | + +--- + +## 11. AI Integration Specification + +### 11.1 New Odoo Module: `encoach_adaptive_ai` + +This module provides AI services for the adaptive learning system. It follows the same patterns as `encoach_ai_generation` and `encoach_ai_grading`: a service class that calls `EncoachOpenAIService` with subject-specific prompts. + +### 11.2 GPT-4o Prompt Templates + +#### 11.2.1 Diagnostic Question Generation + +**Math Example:** + +``` +System: You are a mathematics assessment expert. Generate an adaptive diagnostic question. + +Given: +- Subject: Mathematics +- Domain: {domain_name} +- Topic: {topic_name} +- Difficulty: {difficulty_level} (easy/medium/hard/advanced) +- Question type: {question_type} +- Learning objectives: {objectives_list} + +Generate a single question with: +1. "question": The question text (use LaTeX notation for formulas: $...$) +2. "options": Array of 4 options (for multiple_choice only) +3. "correct_answer": The correct answer +4. "explanation": Brief explanation of why the answer is correct +5. "grading_rubric": How to grade (for open-ended: key concepts to look for) +6. "difficulty_tag": The actual difficulty of the generated question + +Respond in JSON format only. +``` + +**IT Example:** + +``` +System: You are an Information Technology assessment expert. Generate an adaptive diagnostic question. + +Given: +- Subject: Information Technology +- Domain: {domain_name} +- Topic: {topic_name} +- Difficulty: {difficulty_level} +- Question type: {question_type} +- Learning objectives: {objectives_list} + +Generate a single question with: +1. "question": The question text (use ```code blocks``` for code snippets) +2. "options": Array of 4 options (for multiple_choice/true_false) +3. "correct_answer": The correct answer +4. "explanation": Brief explanation +5. "grading_rubric": How to grade +6. "difficulty_tag": Actual difficulty + +For code_completion type, include: +- "starter_code": Code with blanks/comments for student to complete +- "expected_output": What correct code should produce +- "evaluation_criteria": ["correctness", "approach", "efficiency"] + +Respond in JSON format only. +``` + +#### 11.2.2 Learning Plan Generation + +``` +System: You are an adaptive learning plan advisor. Create a personalized study plan. + +Given: +- Student proficiency profile: + {proficiency_json} +- Subject taxonomy with prerequisites: + {taxonomy_json} +- Target completion date: {target_date} +- Mastery threshold: {mastery_threshold}% + +Generate a study plan with: +1. "summary": A 2-3 sentence motivational overview of the plan, acknowledging strengths and addressing weaknesses +2. "recommended_sequence": Ordered list of topic IDs to study, respecting prerequisites +3. "estimated_hours_per_topic": Object mapping topic_id to estimated study hours (adjusted by current mastery) +4. "milestones": Array of milestone objects with {"name", "topic_ids", "target_date", "description"} +5. "focus_areas": Top 3 domains/topics that need the most attention +6. "study_advice": Specific tips for the student based on their profile + +Respond in JSON format only. +``` + +#### 11.2.3 Content Generation + +``` +System: You are an expert {subject_name} tutor. Generate learning content for the following topic. + +Given: +- Subject: {subject_name} +- Topic: {topic_name} +- Learning objectives: {objectives_list} +- Student mastery level: {mastery_level} ({mastery_percentage}%) +- Content type: {content_type} (explanation/worked_example/key_takeaways) +- Available context: {resource_summaries} (summaries of human-uploaded resources, if any) + +For "explanation": +Generate a clear, structured explanation of {topic_name} that: +- Starts from the student's current level ({mastery_level}) +- Covers all learning objectives +- Uses concrete examples +- For Math: uses LaTeX notation ($...$) for formulas +- For IT: uses ```language``` code blocks for code examples +- Ends with a brief summary + +For "worked_example": +Generate 2-3 step-by-step worked examples that: +- Progress from simple to complex +- Show every intermediate step +- Highlight common mistakes to avoid +- For Math: show formula transformations step by step +- For IT: show code evolution or decision reasoning + +For "key_takeaways": +Generate 3-5 bullet points summarizing the most important concepts, formulas, or patterns from this topic. + +Respond in Markdown format. +``` + +#### 11.2.4 AI Coaching -- Hint + +``` +System: You are a helpful {subject_name} tutor providing a hint to a student. + +The student is working on this question: +{question_text} + +Their current (incomplete or incorrect) answer: {student_answer} +The correct answer: {correct_answer} + +Provide a hint that: +- Does NOT reveal the full answer +- Points the student toward the right approach +- References relevant concepts or formulas +- Is encouraging and supportive +- Is 1-3 sentences long + +Respond with just the hint text. +``` + +#### 11.2.5 AI Coaching -- Explanation + +``` +System: You are a {subject_name} tutor explaining a question result. + +Question: {question_text} +Student's answer: {student_answer} +Correct answer: {correct_answer} +Was correct: {is_correct} + +Provide an explanation that: +- Acknowledges whether the student was correct or incorrect +- Explains WHY the correct answer is correct +- If the student was wrong, explains the specific misconception +- References the relevant concept/formula/principle +- Suggests what to review if the student was wrong +- For Math: shows the solution steps +- For IT: explains the underlying principle + +Respond in Markdown format (2-4 paragraphs). +``` + +### 11.3 Grading Logic per Question Type + +| Question Type | Grading Method | Implementation | +|--------------|---------------|----------------| +| `multiple_choice` | Exact match | Direct comparison: `student_answer == correct_answer` | +| `true_false` | Exact match | Direct comparison | +| `numerical` | Tolerance-based | `abs(student - correct) <= tolerance`. Default tolerance: 0.01. Configurable per topic. | +| `fill_blanks` | Normalized match | Strip whitespace, lowercase, compare. For Math: normalize LaTeX expressions. | +| `short_answer` | AI-graded | GPT-4o evaluates semantic equivalence. Prompt includes correct answer and acceptable variations. | +| `code_completion` | AI-graded | GPT-4o evaluates: (1) correctness of output, (2) approach validity, (3) code quality. Returns score 0-100 + feedback. | +| `worked_problem` | AI-graded | GPT-4o evaluates: (1) final answer correctness, (2) methodology, (3) step completeness. Returns score 0-100 + per-step feedback. | +| `scenario` | AI-graded | GPT-4o evaluates against rubric provided with the question. Returns score 0-100 + explanation. | + +### 11.4 FAISS Extension + +Create subject-specific FAISS indices for training tips: + +| Index | Category | Content Source | +|-------|----------|---------------| +| `math_algebra_tips` | Algebra tips and common mistakes | Curated + AI-generated | +| `math_geometry_tips` | Geometry tips and formulas | Curated + AI-generated | +| `math_statistics_tips` | Statistics tips and methods | Curated + AI-generated | +| `it_networking_tips` | Networking concepts and troubleshooting | Curated + AI-generated | +| `it_database_tips` | SQL tips and database design patterns | Curated + AI-generated | +| `it_programming_tips` | Coding tips and best practices | Curated + AI-generated | + +Each index uses `all-MiniLM-L6-v2` for embeddings (same as English), stored as `encoach.training.tip` records with a new `subject_id` field. + +--- + +## 12. Frontend Requirements + +### 12.1 New Pages + +| Page | Route | Role | Description | +|------|-------|------|-------------| +| **Subject Selection** | `/student/subjects` | Student | List available subjects, show overall mastery per subject, "Start Learning" button | +| **Diagnostic Test** | `/student/diagnostic/:subjectId` | Student | Adaptive test UI: one question at a time, progress indicator, timer, auto-advance on answer | +| **Proficiency Profile** | `/student/proficiency/:subjectId` | Student | Visual mastery map: domain radar chart, per-topic mastery bars, strengths/weaknesses | +| **Learning Plan** | `/student/plan/:subjectId` | Student | Topic sequence with status indicators (locked/available/in-progress/completed), progress bar, timeline | +| **Topic Learning** | `/student/topic/:topicId` | Student | Content viewer: resources list, AI content, practice section, mastery quiz trigger | +| **Practice Session** | `/student/practice/:topicId` | Student | Question-by-question practice with instant feedback, hints, explanations | +| **Mastery Quiz** | `/student/mastery-quiz/:topicId` | Student | Timed quiz, similar to existing exam UI, results with pass/fail and mastery update | +| **AI Coach** | Component (sidebar/modal) | Student | Contextual AI assistant: hint requests, explanations, study suggestions | +| **Taxonomy Manager** | `/admin/taxonomy` | Admin/Staff | CRUD for subjects, domains, topics, objectives, prerequisite mapping | +| **Resource Manager** | `/admin/resources` | Admin/Staff | Upload, tag, manage resources; content gap dashboard | +| **Adaptive Analytics** | `/admin/adaptive-analytics` | Admin | Subject-level analytics, class performance, content gaps | +| **Student Plan View** | `/teacher/student-plan/:studentId/:subjectId` | Teacher | View and override a student's learning plan | + +### 12.2 Math-Specific Components + +| Component | Technology | Purpose | +|-----------|-----------|---------| +| `MathRenderer` | KaTeX (via `react-katex` or `remark-math` + `rehype-katex`) | Render LaTeX formulas in questions, explanations, and content. Inline: `$x^2$`, block: `$$\frac{a}{b}$$` | +| `MathInput` | `mathlive` or custom LaTeX input | Student enters mathematical expressions as answers. Visual equation editor with keyboard shortcuts. | +| `FormulaReference` | KaTeX | Sidebar panel showing relevant formulas for the current topic | +| `GraphPlot` | `recharts` or `plotly.js` | Display mathematical graphs (for coordinate geometry, functions) | + +### 12.3 IT-Specific Components + +| Component | Technology | Purpose | +|-----------|-----------|---------| +| `CodeBlock` | `prism-react-renderer` or `react-syntax-highlighter` | Render code snippets with syntax highlighting in questions and content | +| `CodeEditor` | `@monaco-editor/react` (lightweight) or `codemirror` | Student writes/edits code for code_completion questions | +| `TerminalOutput` | Custom styled `
` | Display expected program output |
+| `NetworkDiagram` | `react-flow` or Mermaid | Display network topology diagrams for networking questions |
+
+### 12.4 Shared Components
+
+| Component | Purpose |
+|-----------|---------|
+| `MasteryBar` | Horizontal bar showing mastery level with color coding (grey/red/orange/yellow/green) |
+| `DomainRadar` | Radar chart showing mastery across all domains in a subject |
+| `TopicCard` | Card showing topic name, mastery, status (locked/available/completed), prerequisite indicator |
+| `PlanTimeline` | Vertical timeline of learning plan items with status icons |
+| `QuizTimer` | Countdown timer for mastery quizzes (reuse from existing exam timer) |
+| `ProgressRing` | Circular progress indicator for overall subject mastery |
+| `ResourceCard` | Card for learning resources with type icon, title, estimated time, completion checkbox |
+| `CoachBubble` | Chat-like bubble for AI coaching responses |
+
+---
+
+## 13. Non-Functional Requirements
+
+### 13.1 Performance
+
+| Metric | Target |
+|--------|--------|
+| Diagnostic question generation | < 3 seconds per question |
+| Practice question generation (batch of 5) | < 5 seconds |
+| AI grading (per answer) | < 5 seconds for auto-gradeable, < 10 seconds for AI-graded |
+| Learning plan generation | < 10 seconds |
+| AI content generation (explanation) | < 15 seconds |
+| AI coaching response (hint/explanation) | < 5 seconds |
+| Resource file upload | < 30 seconds for files up to 50 MB |
+| Proficiency profile load | < 1 second |
+| Taxonomy tree load | < 2 seconds |
+
+### 13.2 Scalability
+
+| Dimension | Target |
+|-----------|--------|
+| Concurrent students per subject | 200 |
+| Total topics per subject | 500 |
+| Total resources per subject | 1,000 |
+| AI content cache entries | 10,000 |
+| Proficiency records | 200 students x 500 topics = 100,000 records |
+
+### 13.3 Data Integrity
+
+- Proficiency scores are never overwritten -- all changes are additive (new assessment results update the score via weighted average, never direct replacement)
+- Learning plan changes are logged (who changed, when, what was before/after)
+- AI-generated content is cached and versioned; regeneration creates a new version, does not delete the old one
+- Resource deletions are soft-deletes (is_active = False) to preserve student completion records
+
+### 13.4 Security
+
+- All endpoints require JWT authentication (via existing `_authenticate()`)
+- Students can only access their own proficiency and learning plan data
+- Teachers can view (but not modify without explicit override) student data in their classrooms
+- Admin has full access
+- Resource uploads are scanned for file type validation (no executable uploads)
+- AI prompts never include student personal data (only anonymized performance metrics)
+
+---
+
+## Appendix A: Implementation Priority
+
+| Priority | Component | Rationale |
+|----------|-----------|-----------|
+| **P0** | Subject taxonomy models + CRUD API | Foundation for everything else |
+| **P0** | Resource model + upload API | Staff needs to start uploading content immediately |
+| **P1** | Diagnostic assessment engine + UI | Entry point for students |
+| **P1** | Proficiency profile model + API | Required by learning plan |
+| **P1** | Learning plan generation + UI | Core student experience |
+| **P2** | Content delivery (resource viewer + AI content) | Content consumption |
+| **P2** | Practice questions + grading | Practice before mastery quiz |
+| **P2** | Mastery quiz + progression | Advancement mechanism |
+| **P3** | AI coaching (hints, explanations) | Enhancement to learning experience |
+| **P3** | Spaced repetition | Long-term retention |
+| **P3** | Analytics dashboards | Monitoring and optimization |
+| **P4** | Content gap detection | Operational efficiency |
+| **P4** | FAISS training tips per subject | Advanced personalization |
+
+## Appendix B: Dependency Graph for Implementation
+
+```mermaid
+graph TB
+    TaxModels["P0: Taxonomy Models
(Subject, Domain, Topic, Objective)"] --> TaxAPI["P0: Taxonomy CRUD API"] + TaxModels --> ResModels["P0: Resource Model"] + ResModels --> ResAPI["P0: Resource Upload API"] + + TaxAPI --> DiagEngine["P1: Diagnostic Engine"] + TaxModels --> ProfModel["P1: Proficiency Model"] + DiagEngine --> ProfModel + ProfModel --> PlanGen["P1: Learning Plan Generation"] + TaxModels --> PlanGen + + ResAPI --> ContentDel["P2: Content Delivery"] + PlanGen --> ContentDel + ContentDel --> Practice["P2: Practice Questions"] + Practice --> MasteryQuiz["P2: Mastery Quiz"] + MasteryQuiz --> ProfModel + + Practice --> Coaching["P3: AI Coaching"] + MasteryQuiz --> SpacedRep["P3: Spaced Repetition"] + ProfModel --> Analytics["P3: Analytics"] + + ResAPI --> GapDetect["P4: Content Gap Detection"] + ProfModel --> FAISSTips["P4: FAISS Tips per Subject"] +``` + +--- + +*Document prepared for architect review. All data models, APIs, and specifications are draft and subject to refinement before handoff to the development team.* diff --git a/docs/ODOO_BACKEND_SRS_v3.md b/docs/ODOO_BACKEND_SRS_v3.md new file mode 100644 index 0000000..a6d26c6 --- /dev/null +++ b/docs/ODOO_BACKEND_SRS_v3.md @@ -0,0 +1,747 @@ +# EnCoach Odoo 19 Backend -- Developer SRS v3 + +**Document Version:** 3.0 +**Date:** March 11, 2026 +**Status:** Active -- Ready for Development +**Supersedes:** `ODOO_MIGRATION_SRS_v2.md` (v2.0) +**Master Reference:** `ENCOACH_UNIFIED_SRS.md` (v1.0) +**Author:** EnCoach Architecture Team + +--- + +## Purpose + +This document is the **backend implementation specification** for the Odoo 19 developer. It defines every API endpoint, data model, and module the frontend expects. The frontend is **fully built and wired** -- it makes real HTTP calls to these endpoints via TanStack Query. Your job is to ensure every endpoint listed here exists, returns the correct response shape, and connects to the correct Odoo models. + +**Source of truth for response shapes:** `encoach_frontend_new/src/types/*.ts` (14 files) +**Source of truth for endpoint paths:** `encoach_frontend_new/src/services/*.ts` (21 files) + +--- + +## Table of Contents + +1. [What Already Exists](#1-what-already-exists) +2. [What Needs to Be Built or Modified](#2-what-needs-to-be-built-or-modified) +3. [New Odoo Modules](#3-new-odoo-modules) +4. [Existing Module Modifications](#4-existing-module-modifications) +5. [Complete API Contract](#5-complete-api-contract) +6. [Data Model Specification](#6-data-model-specification) +7. [AI Service Integration](#7-ai-service-integration) +8. [Response Format Standards](#8-response-format-standards) +9. [Non-Functional Requirements](#9-non-functional-requirements) +10. [Implementation Priority](#10-implementation-priority) + +--- + +## 1. What Already Exists + +### 1.1 Existing Odoo Modules (15) + +These modules are built and deployed in `ielts-be-v0/`: + +| # | Module | Controller File | Endpoints | +|---|--------|----------------|-----------| +| 1 | `encoach_core` | -- | Users, entities, roles, permissions, codes, invites | +| 2 | `encoach_ai` | -- | OpenAI service wrapper, constants, blacklist | +| 3 | `encoach_ai_media` | `media.py` | TTS (Polly), STT (Whisper), ELAI avatars | +| 4 | `encoach_ai_generation` | `generation.py` | Exam content generation per module | +| 5 | `encoach_ai_grading` | `grading.py` | Writing/speaking AI grading | +| 6 | `encoach_exam` | `exams.py` | Exam CRUD, approval workflows | +| 7 | `encoach_assignment` | `assignments.py` | Assignment management | +| 8 | `encoach_evaluation` | `evaluations.py` | Evaluation results and AI jobs | +| 9 | `encoach_stats` | `sessions.py`, `stats.py` | Exam sessions and statistics | +| 10 | `encoach_training` | `training.py` | Training content, tips (FAISS), walkthroughs | +| 11 | `encoach_classroom` | `classrooms.py` | Classroom groups | +| 12 | `encoach_subscription` | `subscriptions.py`, `discounts.py` | Packages, payments, discounts | +| 13 | `encoach_registration` | `registration.py` | User registration, batch import | +| 14 | `encoach_ticket` | `tickets.py` | Support tickets | +| 15 | `encoach_api` | `auth.py`, `users.py`, `entities.py`, `storage.py`, `approvals.py` | REST API controllers (81+ endpoints) | + +### 1.2 Existing Endpoint Count by Group + +| Group | Estimated Count | Status | +|-------|----------------|--------| +| Auth (`/api/login`, `/api/logout`, etc.) | 4 | Built | +| Users (`/api/user`, `/api/users/*`) | 6 | Built | +| Entities & Roles (`/api/entities`, `/api/roles`, `/api/permissions`) | 7 | Built | +| Exams (`/api/exam/*`) | 7 | Built | +| AI Generation (`/api/exam/*/generate`) | 12 | Built | +| Media (`/api/exam/*/media`, `/api/transcribe`) | 6 | Built | +| Evaluations (`/api/evaluate/*`, `/api/grading/*`) | 6 | Built | +| Classrooms (`/api/groups`) | 3 | Built | +| Assignments (`/api/assignments`) | 8 | Built | +| Sessions & Stats (`/api/sessions`, `/api/stats`, `/api/statistical`) | 5 | Built | +| Training (`/api/training/*`) | 4 | Built | +| Subscriptions (`/api/packages`, `/api/stripe`, etc.) | 7 | Built | +| Registration (`/api/register`, `/api/code/*`) | 4 | Built | +| Tickets (`/api/tickets`) | 3 | Built | +| Storage (`/api/storage`) | 2 | Built | +| Approvals (`/api/approval-workflows`) | 3 | Built | +| **TOTAL EXISTING** | **~87** | | + +--- + +## 2. What Needs to Be Built or Modified + +### 2.1 New Endpoints Required (Frontend Expects These) + +The frontend calls the following endpoints that **do not exist yet**. You must create them. + +| Group | Count | Priority | +|-------|-------|----------| +| Taxonomy (subjects, domains, topics) | 14 | P0 | +| Adaptive Learning (diagnostic, proficiency, learning plans) | 16 | P0 | +| Resources (upload, manage, review) | 7 | P1 | +| AI Coaching (chat, suggest, explain, tips) | 6 | P1 | +| AI Utilities (search, insights, alerts, reports) | 5 | P2 | +| Analytics (student, class, subject, content gaps) | 4 | P2 | +| LMS Bridge (courses, batches, timetable, attendance, grades) | 13 | P1 | +| **TOTAL NEW** | **~65** | | + +### 2.2 Existing Modules Requiring Modification + +| Module | What to Change | +|--------|---------------| +| `encoach_exam` | Add `subject_id` (Many2one to `encoach.subject`) and `topic_ids` (Many2many to `encoach.topic`) fields to `encoach.exam` model | +| `encoach_stats` | Add `topic_id` and `subject_id` fields to `encoach.stat` model | +| `encoach_training` | Add `subject_id` field to `encoach.training.tip` for per-subject FAISS indices | +| `encoach_ai_generation` | Extend prompts to support Math (include LaTeX/KaTeX formatting) and IT (code blocks, syntax) question types | +| `encoach_ai_grading` | Add grading logic for numerical-tolerance (Math) and keyword/pattern (IT) answers | +| `encoach_subscription` | Add `subjects` field to `encoach.package` for subject-scoped subscriptions | +| `encoach_api` | Add new controller files for all new endpoint groups | + +--- + +## 3. New Odoo Modules + +Create these 8 new modules: + +### 3.1 `encoach_taxonomy` + +**Purpose:** Subject/domain/topic/learning-objective hierarchy. + +**Models:** + +| Model | Key Fields | +|-------|-----------| +| `encoach.subject` | `name` (Char), `code` (Char unique), `is_active` (Boolean), `diagnostic_config` (Text/JSON), `mastery_threshold` (Float default=80), `grading_scale` (Selection: percentage/band/letter), `grading_scale_config` (Text/JSON) | +| `encoach.domain` | `name` (Char), `code` (Char), `subject_id` (M2O encoach.subject), `sequence` (Integer) | +| `encoach.topic` | `name` (Char), `code` (Char), `domain_id` (M2O encoach.domain), `estimated_hours` (Float), `difficulty_level` (Selection: easy/medium/hard), `prerequisite_ids` (M2M self-ref), `question_type_weights` (Text/JSON) | +| `encoach.learning.objective` | `name` (Char), `topic_id` (M2O encoach.topic), `bloom_level` (Selection: remember/understand/apply/analyze/evaluate/create), `sequence` (Integer) | + +**Computed fields on `encoach.subject`:** `domain_count`, `topic_count` +**Computed fields on `encoach.domain`:** `topic_count` +**Computed fields on `encoach.topic`:** `objective_count`, `prerequisite_names` (list of names) + +### 3.2 `encoach_resources` + +**Purpose:** Human-uploaded learning materials tagged to topics. + +**Models:** + +| Model | Key Fields | +|-------|-----------| +| `encoach.resource` | `name` (Char), `resource_type` (Selection: pdf/video/link/document/interactive), `url` (Char), `file` (Binary), `file_name` (Char), `topic_ids` (M2M encoach.topic), `author_id` (M2O res.users), `is_published` (Boolean), `review_status` (Selection: pending/approved/rejected) | +| `encoach.resource.completion` | `student_id` (M2O res.users), `resource_id` (M2O encoach.resource), `viewed` (Boolean), `time_spent_minutes` (Integer), `rating` (Integer 1-5) | + +### 3.3 `encoach_adaptive` + +**Purpose:** Core adaptive learning engine -- proficiency tracking, learning plans, content cache. + +**Models:** + +| Model | Key Fields | +|-------|-----------| +| `encoach.proficiency` | `student_id` (M2O res.users), `topic_id` (M2O encoach.topic), `mastery` (Float 0-100), `mastery_level` (Selection: not_started/beginner/developing/proficient/mastered -- computed from mastery), `last_assessed` (Datetime), `time_spent_minutes` (Integer) | +| `encoach.learning.plan` | `student_id` (M2O res.users), `subject_id` (M2O encoach.subject), `status` (Selection: active/paused/completed), `ai_summary` (Text), `overall_progress` (Float -- computed), `target_completion` (Date) | +| `encoach.learning.plan.item` | `plan_id` (M2O encoach.learning.plan), `topic_id` (M2O encoach.topic), `sequence` (Integer), `status` (Selection: locked/available/in_progress/completed), `estimated_hours` (Float), `actual_hours` (Float), `mastery` (Float -- from proficiency) | +| `encoach.ai.content.cache` | `topic_id` (M2O encoach.topic), `content_type` (Char), `difficulty_level` (Char), `content` (Text/JSON), `model_used` (Char), `review_status` (Selection: auto/reviewed/rejected) | + +**Business logic:** +- `mastery_level` is computed: 0-19 = not_started, 20-39 = beginner, 40-59 = developing, 60-79 = proficient, 80-100 = mastered +- `overall_progress` is computed from item statuses (completed_count / total_count * 100) +- When a plan item is completed, unlock the next item(s) based on prerequisite graph + +### 3.4 `encoach_adaptive_api` + +**Purpose:** REST controllers for the adaptive learning engine. + +**Controller files to create:** +- `taxonomy.py` -- `/api/subjects`, `/api/domains`, `/api/topics`, `/api/subjects/{id}/taxonomy` +- `resources.py` -- `/api/resources` +- `diagnostic.py` -- `/api/diagnostic/start`, `/api/diagnostic/answer`, `/api/diagnostic/{id}/result` +- `proficiency.py` -- `/api/proficiency`, `/api/proficiency/summary`, `/api/proficiency/class` +- `learning_plan.py` -- `/api/learning-plan`, `/api/learning-plan/generate`, etc. +- `content.py` -- `/api/topics/{id}/content`, `/api/topics/{id}/practice`, `/api/topics/{id}/mastery-quiz` + +### 3.5 `encoach_adaptive_ai` + +**Purpose:** AI logic for diagnostics, plan generation, content generation, coaching. + +**Key services:** +- Diagnostic question selection (adaptive difficulty algorithm) +- Learning plan generation (topological sort of topics by prerequisites, weighted by proficiency gaps) +- AI content generation for topics (call OpenAI GPT-4o with topic context) +- Practice question generation per topic +- Mastery quiz generation and grading +- Coaching: chat, hints, explanations, study suggestions, writing help, contextual tips + +### 3.6 `encoach_lms_api` + +**Purpose:** REST API bridge exposing OpenEduCat models to the frontend. + +**Controller files to create:** +- `courses.py` -- `/api/courses`, `/api/courses/{id}`, `/api/courses/ai-generate` +- `batches.py` -- `/api/batches`, `/api/batches/{id}` +- `timetable.py` -- `/api/timetable` +- `attendance.py` -- `/api/attendance` +- `grades.py` -- `/api/grades` + +**Note:** These controllers wrap the existing OpenEduCat Odoo models (`op.course`, `op.batch`, `op.session`, `op.attendance.sheet`, etc.) behind a clean REST API. Do NOT duplicate the models -- use the OpenEduCat models directly. + +### 3.7 `encoach_sis` + +**Purpose:** UTAS Student Information System integration. + +**Models:** +- `encoach.sis.sync` -- sync job tracking (status, last_run, next_run, error_log) +- `encoach.sis.mapping` -- field mapping between SIS fields and EnCoach fields + +### 3.8 `encoach_branding` + +**Purpose:** Tenant whitelabeling. + +**Models:** +- `encoach.branding` -- `entity_id` (M2O encoach.entity), `logo` (Binary), `primary_color` (Char), `secondary_color` (Char), `font_family` (Char) + +--- + +## 4. Existing Module Modifications + +### 4.1 `encoach_exam` -- Add Subject/Topic Fields + +```python +# In encoach_exam/models/exam.py, add: +subject_id = fields.Many2one('encoach.subject', string='Subject') +topic_ids = fields.Many2many('encoach.topic', string='Topics') +is_diagnostic = fields.Boolean(string='Is Diagnostic Exam', default=False) +``` + +### 4.2 `encoach_stats` -- Add Subject/Topic Fields + +```python +# In encoach_stats/models/stat.py, add: +subject_id = fields.Many2one('encoach.subject', string='Subject') +topic_id = fields.Many2one('encoach.topic', string='Topic') +``` + +### 4.3 `encoach_training` -- Add Subject Field + +```python +# In encoach_training/models/training_tip.py, add: +subject_id = fields.Many2one('encoach.subject', string='Subject') +``` + +### 4.4 `encoach_subscription` -- Add Subject Scoping + +```python +# In encoach_subscription/models/package.py, add: +subject_ids = fields.Many2many('encoach.subject', string='Included Subjects') +``` + +### 4.5 `encoach_ai_generation` -- Multi-Subject Prompts + +Extend the generation prompts to handle: +- **Math:** Include LaTeX formatting instructions in prompts, numerical-tolerance answer checking +- **IT:** Include code block formatting, syntax highlighting hints, code-completion question types +- **Generic:** Accept `subject_id` and `topic_id` parameters, adjust prompt templates per subject + +### 4.6 `encoach_ai_grading` -- Multi-Subject Grading + +Extend grading logic: +- **IELTS:** Band scoring (existing) +- **Math:** Numerical tolerance (accept answers within +/- epsilon), step-by-step partial credit +- **IT:** Keyword matching, regex pattern matching, AI-graded code explanations + +--- + +## 5. Complete API Contract + +This is the definitive list of every endpoint the frontend calls. Each entry shows the HTTP method, path, request body (if POST/PATCH), and expected response shape. **The TypeScript type files in `encoach_frontend_new/src/types/` are the canonical response shapes.** + +### 5.1 Authentication (Existing -- `auth.service.ts`) + +| Method | Path | Request | Response | +|--------|------|---------|----------| +| `POST` | `/api/login` | `{ login: string, password: string }` | `{ token: string, user: User }` | +| `POST` | `/api/logout` | -- | `void` | +| `GET` | `/api/user` | -- | `User` | +| `POST` | `/api/reset/sendVerification` | `{ email: string }` | `{ success: boolean }` | + +**User shape:** See `src/types/auth.ts` -- must include: `id`, `name`, `email`, `login`, `user_type` (one of: student/teacher/admin/corporate/mastercorporate/agent/developer), `is_verified`, `entities` (array of {id, name, role}), `classrooms`. + +### 5.2 Users (Existing -- `users.service.ts`) + +| Method | Path | Request | Response | +|--------|------|---------|----------| +| `GET` | `/api/users/list` | Query: `type`, `entity_id`, `page`, `size`, `search`, `sort`, `order` | `PaginatedResponse` | +| `GET` | `/api/users/{id}` | -- | `User` | +| `PATCH` | `/api/users/update` | `{ id, ...fields }` | `User` | +| `POST` | `/api/users/create` | `Partial` | `User` | +| `POST` | `/api/batch_users` | `{ users: Partial[] }` | `{ success: boolean }` | + +**PaginatedResponse shape:** `{ items: T[], total: number, page: number, size: number, pages: number }` + +### 5.3 Entities (Existing -- `entities.service.ts`) + +| Method | Path | Response | +|--------|------|----------| +| `GET` | `/api/entities` | `PaginatedResponse` | +| `GET` | `/api/entities/{id}` | `Entity` | +| `POST` | `/api/entities` | `Entity` | +| `PATCH` | `/api/entities/{id}` | `Entity` | +| `DELETE` | `/api/entities/{id}` | `{ success: boolean }` | +| `GET` | `/api/entities/{id}/roles` | `EntityRole[]` | +| `POST` | `/api/entities/{id}/roles` | `EntityRole` | +| `PATCH` | `/api/roles/{id}/permissions` | `EntityRole` | +| `GET` | `/api/permissions?entity_id=` | `string[]` (list of permission keys for current user) | + +### 5.4 Exams (Existing -- `exams.service.ts`) + +| Method | Path | Response | +|--------|------|----------| +| `GET` | `/api/exam/{module}` | `PaginatedResponse` | +| `GET` | `/api/exam/{module}/{id}` | `Exam` | +| `POST` | `/api/exam` | `Exam` | +| `PATCH` | `/api/exam/{id}` | `Exam` | +| `DELETE` | `/api/exam/{id}` | `{ success: boolean }` | +| `PATCH` | `/api/exam/{id}/access` | `Exam` | +| `GET` | `/api/rubrics` | `PaginatedResponse` | +| `POST` | `/api/rubrics` | `Rubric` | +| `GET` | `/api/rubric-groups` | `PaginatedResponse` | +| `GET` | `/api/exam-structures` | `PaginatedResponse` | +| `POST` | `/api/exam-structures` | `ExamStructure` | +| `DELETE` | `/api/exam-structures/{id}` | `{ success: boolean }` | +| `GET` | `/api/exam/avatars` | `[{ id, name, thumbnail, voice }]` | + +**Note:** `Exam` response must now include optional `subject_id` and `topic_ids` fields. + +### 5.5 Assignments (Existing -- `assignments.service.ts`) + +| Method | Path | Response | +|--------|------|----------| +| `GET` | `/api/assignments` | `PaginatedResponse` | +| `GET` | `/api/assignments/{id}` | `Assignment` | +| `POST` | `/api/assignments` | `Assignment` | +| `PATCH` | `/api/assignments/{id}` | `Assignment` | +| `DELETE` | `/api/assignments/{id}` | `{ success: boolean }` | +| `POST` | `/api/assignments/{id}/archive` | `Assignment` | +| `POST` | `/api/assignments/{id}/start` | `Assignment` | + +### 5.6 Classrooms (Existing -- `classrooms.service.ts`) + +| Method | Path | Response | +|--------|------|----------| +| `GET` | `/api/groups` | `PaginatedResponse` | +| `GET` | `/api/groups/{id}` | `Classroom` | +| `POST` | `/api/groups` | `Classroom` | +| `DELETE` | `/api/groups/{id}` | `{ success: boolean }` | +| `POST` | `/api/groups/transfer` | `{ success: boolean }` | +| `POST` | `/api/groups/{id}/members` | `{ success: boolean }` | +| `POST` | `/api/groups/{id}/members/remove` | `{ success: boolean }` | + +### 5.7 Stats (Existing -- `stats.service.ts`) + +| Method | Path | Response | +|--------|------|----------| +| `GET` | `/api/sessions` | `ExamSession[]` | +| `GET` | `/api/stats` | `ExamStat[]` | +| `GET` | `/api/statistical` | `StatisticalData` | +| `GET` | `/api/stats/performance` | `unknown[]` | + +### 5.8 Evaluations (Existing -- `evaluations.service.ts`) + +| Method | Path | Request | Response | +|--------|------|---------|----------| +| `POST` | `/api/evaluate/writing` | `{ session_id, text, rubric_id? }` | `Evaluation` | +| `POST` | `/api/evaluate/speaking` | `{ session_id, audio_url, rubric_id? }` | `Evaluation` | +| `POST` | `/api/grading/multiple` | `{ session_id, answers: [{exercise_index, answer}] }` | `{ results: [{exercise_index, correct, score}] }` | +| `POST` | `/api/transcribe` | `FormData (audio file)` | `{ text: string }` | + +### 5.9 Generation (Existing -- `generation.service.ts`) + +| Method | Path | Request | Response | +|--------|------|---------|----------| +| `POST` | `/api/exam/{module}/generate` | `{ title, label?, entity_id?, subject_id?, topic_id?, difficulty?, count? }` | `{ exam_id, exercises: [] }` | +| `POST` | `/api/exam/{module}/generate/scratch` | Same as above | Same as above | + +**Note:** Must now accept `subject_id` and `topic_id` to scope generation to specific subjects/topics. + +### 5.10 Training, Subscriptions, Tickets, Storage, Approvals (Existing) + +These follow the existing patterns. See `training.service.ts`, `subscriptions.service.ts`, `tickets.service.ts`, `storage.service.ts`, `approvals.service.ts` for exact paths. + +--- + +### 5.11 Taxonomy (NEW -- `taxonomy.service.ts`) + +| Method | Path | Request/Params | Response | +|--------|------|---------------|----------| +| `GET` | `/api/subjects` | -- | `Subject[]` | +| `GET` | `/api/subjects/{id}` | -- | `Subject` | +| `POST` | `/api/subjects` | `Partial` | `Subject` | +| `PATCH` | `/api/subjects/{id}` | `Partial` | `Subject` | +| `DELETE` | `/api/subjects/{id}` | -- | `{ success: boolean }` | +| `GET` | `/api/subjects/{id}/taxonomy` | -- | `TaxonomyTree` (nested: subject + domains + topics + objectives) | +| `POST` | `/api/subjects/{id}/taxonomy/import` | `FormData (CSV/JSON)` | `{ success: boolean }` | +| `GET` | `/api/domains` | Query: `subject_id?` | `Domain[]` | +| `POST` | `/api/domains` | `Partial` | `Domain` | +| `PATCH` | `/api/domains/{id}` | `Partial` | `Domain` | +| `DELETE` | `/api/domains/{id}` | -- | `{ success: boolean }` | +| `POST` | `/api/domains/{id}/ai-suggest` | -- | `{ suggestions: Partial[] }` | +| `GET` | `/api/topics` | Query: `domain_id?`, `subject_id?` | `Topic[]` | +| `POST` | `/api/topics` | `Partial` | `Topic` | +| `PATCH` | `/api/topics/{id}` | `Partial` | `Topic` | +| `DELETE` | `/api/topics/{id}` | -- | `{ success: boolean }` | + +**TaxonomyTree shape:** +```json +{ + "subject": { "id": 1, "name": "IELTS", "code": "IELTS", ... }, + "domains": [ + { + "id": 1, "name": "Writing", "code": "W", "sequence": 1, + "topics": [ + { + "id": 1, "name": "Task 1", "difficulty_level": "medium", + "objectives": [ + { "id": 1, "name": "Describe trends", "bloom_level": "apply" } + ] + } + ] + } + ] +} +``` + +### 5.12 Resources (NEW -- `resources.service.ts`) + +| Method | Path | Request/Params | Response | +|--------|------|---------------|----------| +| `GET` | `/api/resources` | Query: `topic_id?`, `resource_type?`, `review_status?`, `page`, `size`, `search` | `PaginatedResponse` | +| `POST` | `/api/resources` | `FormData` (file + metadata) | `Resource` | +| `PATCH` | `/api/resources/{id}` | `Partial` | `Resource` | +| `DELETE` | `/api/resources/{id}` | -- | `{ success: boolean }` | +| `POST` | `/api/resources/{id}/complete` | -- | `ResourceCompletion` | +| `POST` | `/api/resources/{id}/rate` | `{ rating: number }` | `{ success: boolean }` | +| `GET` | `/api/resources/{id}/download` | -- | Binary file (stream) | + +### 5.13 Diagnostic Assessment (NEW -- `adaptive.service.ts`) + +| Method | Path | Request | Response | +|--------|------|---------|----------| +| `POST` | `/api/diagnostic/start` | `{ subject_id: number }` | `{ session: DiagnosticSession, first_question: DiagnosticQuestion }` | +| `POST` | `/api/diagnostic/answer` | `{ session_id, question_id, answer }` | `{ next_question?: DiagnosticQuestion, completed: boolean }` | +| `GET` | `/api/diagnostic/{id}/result` | -- | `DiagnosticResult` | + +**DiagnosticQuestion shape:** +```json +{ + "id": "q_uuid", + "topic_id": 5, + "topic_name": "Line Graphs", + "domain_name": "Writing", + "difficulty": "medium", + "question_type": "multiple_choice", + "question_text": "Which of the following...", + "options": ["A", "B", "C", "D"], + "time_limit_seconds": 120 +} +``` + +**Diagnostic algorithm:** +1. On `/start`: Create a diagnostic session. Pull topics from all domains. Start with `starting_difficulty` from subject's `diagnostic_config`. +2. On `/answer`: Grade the answer. If correct, increase difficulty and mastery estimate for that topic. If incorrect, decrease. Select the next question from a different domain/topic. Use Computer Adaptive Testing (CAT) principles. +3. Continue until `total_question_cap` reached or all domains have 2+ data points. +4. On completion: Write proficiency records for all assessed topics. + +### 5.14 Proficiency (NEW -- `adaptive.service.ts`) + +| Method | Path | Params | Response | +|--------|------|--------|----------| +| `GET` | `/api/proficiency` | Query: `subject_id?` | `Proficiency[]` | +| `GET` | `/api/proficiency/summary` | -- | `ProficiencySummary[]` | +| `GET` | `/api/proficiency/class` | Query: `subject_id?` | Class-level aggregation | + +**ProficiencySummary shape:** +```json +{ + "subject_id": 1, + "subject_name": "IELTS", + "overall_mastery": 65.5, + "domain_scores": [{ "domain_id": 1, "domain_name": "Writing", "mastery": 72 }], + "topics_mastered": 8, + "topics_total": 20 +} +``` + +### 5.15 Learning Plan (NEW -- `adaptive.service.ts`) + +| Method | Path | Request | Response | +|--------|------|---------|----------| +| `GET` | `/api/learning-plan` | Query: `subject_id` | `LearningPlan` | +| `POST` | `/api/learning-plan/generate` | `{ subject_id, target_completion? }` | `LearningPlan` | +| `PATCH` | `/api/learning-plan/{id}` | `Partial` | `LearningPlan` | +| `POST` | `/api/learning-plan/{id}/pause` | -- | `LearningPlan` | +| `POST` | `/api/learning-plan/{id}/resume` | -- | `LearningPlan` | + +**Plan generation algorithm:** +1. Get student's proficiency records for the subject. +2. Identify topics below mastery threshold. +3. Topologically sort topics by prerequisites. +4. Create plan items in sequence. First item = available, rest = locked. +5. Call GPT-4o to generate `ai_summary` (natural language description of the plan). +6. Set `estimated_hours` from topic definitions. + +### 5.16 Content Delivery (NEW -- `adaptive.service.ts`) + +| Method | Path | Request | Response | +|--------|------|---------|----------| +| `GET` | `/api/topics/{id}/content` | -- | `TopicContent` | +| `POST` | `/api/topics/{id}/generate-content` | -- | `TopicContent` | +| `POST` | `/api/topics/{id}/practice` | -- | `{ questions: [] }` | +| `POST` | `/api/topics/{id}/practice/grade` | `{ answers: [] }` | `{ results: [], mastery_update: number }` | +| `POST` | `/api/topics/{id}/mastery-quiz` | -- | `{ questions: [] }` | +| `POST` | `/api/topics/{id}/mastery-quiz/submit` | `{ answers: [] }` | `{ passed: boolean, score: number, mastery_update: number }` | + +**TopicContent shape:** +```json +{ + "topic_id": 5, + "topic_name": "Line Graphs", + "resources": [{ "id": 1, "name": "...", "resource_type": "pdf", "url": "..." }], + "ai_content": { + "explanation": "Line graphs show...", + "examples": ["Example 1...", "Example 2..."], + "key_points": ["Point 1", "Point 2"], + "model_used": "gpt-4o" + }, + "has_content_gap": true +} +``` + +**`has_content_gap`** = true when no human-uploaded resources exist for this topic, and AI content was generated to fill the gap. + +### 5.17 AI Coaching (NEW -- `coaching.service.ts`) + +| Method | Path | Request | Response | +|--------|------|---------|----------| +| `POST` | `/api/coach/chat` | `{ message, context?: { page?, topic_id?, subject_id? }, history?: AiChatMessage[] }` | `{ message: string, suggestions?: string[] }` | +| `POST` | `/api/coach/hint` | `{ topic_id, question_id }` | `{ hint: string }` | +| `POST` | `/api/coach/explain` | `{ context, scores? }` | `{ explanation: string }` | +| `POST` | `/api/coach/suggest` | `{ subject_id? }` | `{ suggestions: string[], study_plan_tips: string[] }` | +| `POST` | `/api/coach/writing-help` | `{ text, task_type }` | `{ feedback, improved, grammar_notes: string[] }` | +| `GET` | `/api/coach/tip` | Query: `context` | `{ title, content, category }` | + +All coaching endpoints use GPT-4o with appropriate system prompts. + +### 5.18 AI Utilities (NEW -- `analytics.service.ts`) + +| Method | Path | Request | Response | +|--------|------|---------|----------| +| `POST` | `/api/ai/search` | `{ query }` | `AiSearchResult[]` | +| `POST` | `/api/ai/insights` | `{ data: {} }` | `AiInsight[]` | +| `GET` | `/api/ai/alerts` | -- | `AiAlert[]` | +| `POST` | `/api/ai/report-narrative` | `{ report_type, data: {} }` | `{ narrative: string }` | +| `POST` | `/api/ai/batch-optimize` | `{ batch_id }` | `AiBatchOptimization[]` | +| `POST` | `/api/ai/grade-suggest` | `{ submission_id, text, rubric_id? }` | `AiGradingResult` | + +### 5.19 Analytics (NEW -- `analytics.service.ts`) + +| Method | Path | Params | Response | +|--------|------|--------|----------| +| `GET` | `/api/analytics/student` | Query params | Dashboard data | +| `GET` | `/api/analytics/class` | Query params | Class analytics | +| `GET` | `/api/analytics/subject` | Query params | Subject analytics | +| `GET` | `/api/analytics/content-gaps` | Query: `subject_id?` | `{ gaps: [{ topic_id, topic_name, resource_count }] }` | + +### 5.20 LMS Bridge (NEW -- `lms.service.ts`) + +| Method | Path | Request | Response | +|--------|------|---------|----------| +| `GET` | `/api/courses` | Query: `page`, `size`, `search`, `status` | `PaginatedResponse` | +| `GET` | `/api/courses/{id}` | -- | `Course` | +| `POST` | `/api/courses` | `CourseCreateRequest` | `Course` | +| `PATCH` | `/api/courses/{id}` | `Partial` | `Course` | +| `DELETE` | `/api/courses/{id}` | -- | `{ success: boolean }` | +| `POST` | `/api/courses/ai-generate` | `{ title, subject_id?, level? }` | `{ outline: {} }` | +| `GET` | `/api/batches` | Query: pagination | `PaginatedResponse` | +| `GET` | `/api/batches/{id}` | -- | `Batch` | +| `POST` | `/api/batches` | `Partial` | `Batch` | +| `PATCH` | `/api/batches/{id}` | `Partial` | `Batch` | +| `DELETE` | `/api/batches/{id}` | -- | `{ success: boolean }` | +| `GET` | `/api/timetable` | Query: `course_id?`, `teacher_id?`, `batch_id?` | `TimetableSession[]` | +| `POST` | `/api/timetable` | `Partial` | `TimetableSession` | +| `GET` | `/api/attendance` | Query: `course_id?`, `student_id?`, `date?` | `AttendanceRecord[]` | +| `POST` | `/api/attendance` | `{ course_id, date, records: [{student_id, status}] }` | `{ success: boolean }` | +| `GET` | `/api/grades` | Query: `course_id?`, `student_id?` | `GradeRecord[]` | + +**Course shape:** See `src/types/lms.ts` -- must include: `id`, `title`, `code`, `subject_id?`, `subject_name?`, `instructor_id`, `instructor_name`, `description`, `level`, `modules[]`, `enrolled`, `max_capacity`, `status`, `start_date`, `end_date`, `progress?`. + +--- + +## 6. Data Model Specification + +All data model details are in **Section 30 of `ENCOACH_UNIFIED_SRS.md`** (existing models: 30.1, new models: 30.2-30.4). Refer to that document for the complete field-level specification. + +**Key relationships:** +``` +Subject (1) → (N) Domain (1) → (N) Topic (1) → (N) LearningObjective +Topic (M) ↔ (M) Topic (prerequisites -- self-referencing M2M) +Topic (M) ↔ (M) Resource +Student (1) → (N) Proficiency (per topic) +Student (1) → (N) LearningPlan (per subject) → (N) LearningPlanItem (per topic) +Exam → Subject (optional M2O) +Exam → Topic[] (optional M2M) +``` + +--- + +## 7. AI Service Integration + +The following external AI services are already configured (API keys in `encoach_core/data/constants.xml` and server `.env`): + +| Service | Purpose | Config Key | +|---------|---------|-----------| +| OpenAI GPT-4o | Content generation, grading, coaching, plan generation | `encoach.openai_api_key` | +| OpenAI GPT-3.5-turbo | Lightweight tasks (tips, search, suggestions) | Same key | +| OpenAI Whisper (local) | Speech-to-text | Local model | +| AWS Polly (Neural) | Text-to-speech for listening exams | `encoach.aws_access_key_id`, `encoach.aws_secret_access_key` | +| ELAI | AI avatar video generation | `encoach.elai_api_key` | +| GPTZero | AI writing detection | `encoach.gptzero_api_key` | +| FAISS + SentenceTransformers | Semantic similarity for training tips | Local model (`all-MiniLM-L6-v2`) | + +**New AI tasks to implement:** + +| Task | Model | Endpoint | +|------|-------|----------| +| Diagnostic question generation | GPT-4o | `/api/diagnostic/start`, `/answer` | +| Learning plan generation | GPT-4o | `/api/learning-plan/generate` | +| Topic content generation | GPT-4o | `/api/topics/{id}/generate-content` | +| Practice question generation | GPT-4o | `/api/topics/{id}/practice` | +| Mastery quiz generation | GPT-4o | `/api/topics/{id}/mastery-quiz` | +| AI coaching chat | GPT-4o | `/api/coach/chat` | +| Study suggestions | GPT-3.5-turbo | `/api/coach/suggest` | +| Writing feedback | GPT-4o | `/api/coach/writing-help` | +| Grade explanation | GPT-4o | `/api/coach/explain` | +| Contextual tips | GPT-3.5-turbo | `/api/coach/tip` | +| Semantic search | FAISS | `/api/ai/search` | +| Report narrative | GPT-4o | `/api/ai/report-narrative` | +| Data insights | GPT-4o | `/api/ai/insights` | +| Topic suggestion | GPT-4o | `/api/domains/{id}/ai-suggest` | +| Course outline generation | GPT-4o | `/api/courses/ai-generate` | +| Batch optimization | GPT-3.5-turbo | `/api/ai/batch-optimize` | + +--- + +## 8. Response Format Standards + +### 8.1 Paginated Responses + +All list endpoints that support pagination must return: + +```json +{ + "items": [...], + "total": 150, + "page": 1, + "size": 20, + "pages": 8 +} +``` + +Query parameters: `page` (1-based), `size` (default 20), `search` (text filter), `sort` (field name), `order` (asc/desc). + +### 8.2 Error Responses + +```json +{ + "error": "Human-readable error message", + "code": "ERROR_CODE", + "details": {} +} +``` + +HTTP status codes: 400 (validation), 401 (unauthorized), 403 (forbidden), 404 (not found), 500 (server error). + +### 8.3 Success Responses + +For write operations that don't return an entity: + +```json +{ + "success": true, + "message": "Optional message" +} +``` + +### 8.4 JWT Token + +- Token returned on login as `{ token: "...", user: {...} }` +- Frontend sends `Authorization: Bearer ` on every request +- 401 response = token expired, frontend redirects to login + +--- + +## 9. Non-Functional Requirements + +| Requirement | Specification | +|-------------|--------------| +| API response time (CRUD) | < 2 seconds | +| Diagnostic question generation | < 3 seconds | +| AI grading (writing/speaking) | < 60 seconds | +| Learning plan generation | < 10 seconds | +| AI content generation | < 15 seconds | +| Concurrent students per subject | 200 | +| Topics per subject | 500 | +| Resources per subject | 1,000 | +| Pagination on all list endpoints | Required | +| Server-side search/filter | Required | +| Soft delete for resources | Required (preserve completion records) | +| Proficiency weighted averages | Required (never direct overwrite) | +| Math content | LaTeX/KaTeX formatting in question text | +| IT content | Code blocks with language hints in question text | + +--- + +## 10. Implementation Priority + +| Phase | Modules | Endpoints | Estimated Effort | +|-------|---------|-----------|-----------------| +| **P0** | `encoach_taxonomy`, modify `encoach_exam`/`encoach_stats`/`encoach_training` | Taxonomy CRUD (14), Subject/Topic fields on existing models | 1 week | +| **P1** | `encoach_adaptive`, `encoach_adaptive_api`, `encoach_adaptive_ai` | Diagnostic (3), Proficiency (3), Learning Plan (5), Content (6) | 2 weeks | +| **P1** | `encoach_resources` | Resource CRUD (7) | 3 days | +| **P1** | `encoach_lms_api` | LMS bridge (13) | 1 week | +| **P2** | `encoach_adaptive_ai` (coaching) | AI Coaching (6), AI Utilities (5) | 1 week | +| **P2** | Analytics controllers | Analytics (4) | 3 days | +| **P3** | `encoach_sis`, `encoach_branding` | SIS (4), Branding | 1 week | +| **P3** | Multi-subject prompts/grading | Modify generation & grading modules | 3 days | +| **TOTAL** | 8 new modules + 7 modified | ~65 new endpoints | ~7 weeks | + +--- + +## Appendix: File Handoff Checklist + +| File/Folder | Purpose | Location | +|-------------|---------|----------| +| This document | Backend SRS | `ODOO_BACKEND_SRS_v3.md` | +| Product SRS | Full platform specification | `ENCOACH_UNIFIED_SRS.md` | +| TypeScript types | Response shape contracts | `encoach_frontend_new/src/types/*.ts` | +| Service layer | Endpoint path contracts | `encoach_frontend_new/src/services/*.ts` | +| Existing modules | Already-built backend | `ielts-be-v0/` | +| Developer feedback | Review of existing work | `ielts-be-v0/DEVELOPER_FEEDBACK.md` | +| AI keys & config | Service credentials | `ielts-be-v0/encoach_core/data/constants.xml` | + +--- + +*This document supersedes `ODOO_MIGRATION_SRS_v2.md`. The Odoo developer should treat this as the definitive backend specification. All endpoint paths, response shapes, and data models are aligned with the production frontend at `encoach_frontend_new/`.* diff --git a/docs/ODOO_MIGRATION_SRS_v2.md b/docs/ODOO_MIGRATION_SRS_v2.md new file mode 100644 index 0000000..ade8095 --- /dev/null +++ b/docs/ODOO_MIGRATION_SRS_v2.md @@ -0,0 +1,1292 @@ +# EnCoach Platform -- Odoo 19 Full Migration SRS (v2) + +## Software Requirements Specification + +**Version:** 2.0 +**Date:** March 11, 2026 +**Status:** Draft +**Supersedes:** ODOO_MIGRATION_SRS.md (v1) +**Key change from v1:** The ielts-be (FastAPI) microservice is fully eliminated. All AI/ML functionality is absorbed into custom Odoo modules. + +--- + +## Table of Contents + +1. [Executive Summary](#1-executive-summary) +2. [Odoo Module Plan](#2-odoo-module-plan) +3. [Data Models](#3-data-models-odoo-models) +4. [REST API Specification](#4-rest-api-specification) +5. [Authentication & Authorization](#5-authentication--authorization) +6. [AI/ML Services Integration](#6-aiml-services-integration) +7. [Payment Integration](#7-payment-integration) +8. [Business Rules & Workflows](#8-business-rules--workflows) +9. [Data Migration Plan](#9-data-migration-plan) +10. [Non-Functional Requirements](#10-non-functional-requirements) + +--- + +## 1. Executive Summary + +### 1.1 Platform Overview + +EnCoach is an IELTS preparation and English proficiency testing platform serving students, teachers, corporate clients, and administrators. The platform provides: + +- Full IELTS exam simulation (Reading, Listening, Writing, Speaking, Level) +- AI-powered grading of writing and speaking responses (OpenAI GPT-4o) +- AI-powered exam content generation (OpenAI GPT-4o) +- AI-generated audio for listening exams (AWS Polly) +- AI-generated video for speaking exams (ELAI) +- Speech-to-text transcription (OpenAI Whisper) +- AI plagiarism/detection for writing (GPTZero) +- Personalized training recommendations (FAISS + sentence-transformers + GPT) +- Multi-tenant entity (organization) management +- Classroom and assignment management +- Subscription-based access with multiple payment providers +- Support ticket system + +### 1.2 Migration Scope + +**Everything moves to Odoo 19.** Both backend systems are replaced: + +1. **ielts-ui API routes** (Node.js, MongoDB, iron-session, Firebase Auth) -- 108 API route files, 22 MongoDB collections +2. **ielts-be** (Python, FastAPI, OpenAI, Whisper, AWS Polly, ELAI, GPTZero, FAISS) -- all AI/ML workloads + +**What stays unchanged:** + +- ielts-ui browser/frontend code (React components, Zustand stores, pages) +- Strapi CMS (encoachcms) +- Landing page (encoach-landing-page) + +### 1.3 Target Architecture + +``` +ielts-ui (Next.js 14) + └── Browser UI (unchanged) + │ + ▼ +Odoo 19 (Python + PostgreSQL) + ├── REST API Controllers (JSON) + ├── Business Logic (custom modules) + ├── AI/ML Modules + │ ├── OpenAI GPT-4o (grading + content generation) + │ ├── OpenAI Whisper (speech-to-text, local model) + │ ├── AWS Polly (text-to-speech for listening) + │ ├── ELAI (AI video for speaking) + │ ├── GPTZero (AI detection for writing) + │ └── FAISS + sentence-transformers (training search) + ├── PostgreSQL (all data) + ├── Odoo Attachments (file storage) + └── Payment Providers (Stripe, PayPal, Paymob) +``` + +There is no separate microservice. Odoo is the sole backend. + +--- + +## 2. Odoo Module Plan + +### 2.1 Standard Odoo Modules to Leverage + +| Odoo Module | Usage | +|-------------|-------| +| `base` / `res.users` / `res.partner` | User accounts, extended with EnCoach-specific fields | +| `payment` | Payment provider framework for Stripe, PayPal, Paymob | +| `product` | Subscription packages as products | +| `mail` | Email notifications (password reset, verification, invites) | +| `queue_job` (OCA) or `ir.cron` | Background task processing for async AI grading | + +### 2.2 Custom Modules to Develop + +| Module | Depends On | Complexity | Description | +|--------|------------|------------|-------------| +| `encoach_core` | `base`, `mail` | Medium | User type extensions, entity management, roles, permissions, codes, invites | +| `encoach_exam` | `encoach_core` | High | Exam models for 5 modules with complex nested exercise structures | +| `encoach_classroom` | `encoach_core` | Low | Group/classroom management with participant tracking | +| `encoach_assignment` | `encoach_core`, `encoach_exam` | Medium | Assignment lifecycle (create, start, release, archive) | +| `encoach_stats` | `encoach_core`, `encoach_exam` | Medium | Exam sessions, per-exercise statistics, score tracking | +| `encoach_evaluation` | `encoach_core`, `encoach_exam`, `encoach_ai` | Medium | Async grading records for writing/speaking | +| `encoach_training` | `encoach_core`, `encoach_ai` | Medium | Training content, walkthrough, FAISS semantic search | +| `encoach_subscription` | `encoach_core`, `product`, `payment` | Medium | Packages, discounts, subscription management, Stripe/PayPal/Paymob | +| `encoach_registration` | `encoach_core` | Medium | Multi-path registration (individual, corporate), codes, invites | +| `encoach_ticket` | `encoach_core` | Low | Support tickets | +| `encoach_ai` | `base` | **Very High** | Core AI services: OpenAI client, Whisper, AWS Polly, ELAI, GPTZero, FAISS | +| `encoach_ai_grading` | `encoach_ai`, `encoach_exam` | High | Writing/speaking grading logic, rubrics, prompt templates | +| `encoach_ai_generation` | `encoach_ai`, `encoach_exam` | High | Exam content generation for all 5 modules | +| `encoach_ai_media` | `encoach_ai` | High | Audio (Polly TTS), video (ELAI), transcription (Whisper) | +| `encoach_api` | All above | High | All REST JSON controllers for frontend consumption (~60 endpoints) | + +### 2.3 Module Dependency Graph + +``` +encoach_api + ├── encoach_core + │ ├── base / res.users / res.partner + │ └── mail + ├── encoach_exam + │ └── encoach_core + ├── encoach_classroom + │ └── encoach_core + ├── encoach_assignment + │ ├── encoach_core + │ └── encoach_exam + ├── encoach_stats + │ ├── encoach_core + │ └── encoach_exam + ├── encoach_evaluation + │ ├── encoach_core + │ ├── encoach_exam + │ └── encoach_ai + ├── encoach_training + │ ├── encoach_core + │ └── encoach_ai + ├── encoach_subscription + │ ├── encoach_core + │ ├── product + │ └── payment + ├── encoach_registration + │ └── encoach_core + ├── encoach_ticket + │ └── encoach_core + ├── encoach_ai (core AI services) + │ └── base + ├── encoach_ai_grading + │ ├── encoach_ai + │ └── encoach_exam + ├── encoach_ai_generation + │ ├── encoach_ai + │ └── encoach_exam + └── encoach_ai_media + └── encoach_ai +``` + +--- + +## 3. Data Models (Odoo Models) + +All models from v1 remain unchanged. This section adds the AI/ML-related models that were previously managed by ielts-be. + +> **Note:** For the full specification of the following models, refer to Section 3 of the v1 document (`ODOO_MIGRATION_SRS.md`). They are identical: +> `encoach.user`, `encoach.user.entity.rel`, `encoach.entity`, `encoach.role`, `encoach.group`, `encoach.exam`, `encoach.assignment`, `encoach.session`, `encoach.stat`, `encoach.evaluation`, `encoach.package`, `encoach.payment`, `encoach.subscription.payment`, `encoach.ticket`, `encoach.code`, `encoach.invite`, `encoach.permission`, `encoach.discount`, `encoach.walkthrough`, `encoach.approval.workflow` + +The following models are new or significantly expanded in v2: + +### 3.1 `encoach.training` (expanded) + +**Source:** MongoDB `training` collection (previously managed by ielts-be) + +| Field | Type | Required | Description | +|-------|------|----------|-------------| +| `user_id` | Many2one(`res.users`) | Yes | Student | +| `created_at` | Datetime | Yes | Training generation date | +| `exams` | Text (JSON) | No | JSON array of exam performance summaries: `[{ "id", "date", "performance_comment", "detailed_summary" }]` | +| `tips` | Text (JSON) | No | JSON object with categorized tips from FAISS search | +| `weak_areas` | Text (JSON) | No | JSON array: `[{ "area": "...", "comment": "..." }]` | +| `legacy_id` | Char | No | Original MongoDB ID | + +### 3.2 `encoach.training.tip` (new) + +**Source:** ielts-be `pathways_2_rw_with_ids.json` tips data + +| Field | Type | Required | Description | +|-------|------|----------|-------------| +| `tip_id` | Char | Yes | Original tip identifier | +| `category` | Selection | Yes | `ct_focus`, `language_for_writing`, `reading_skill`, `strategy`, `writing_skill`, `word_link`, `word_partners` | +| `content` | Text | Yes | Tip text content | +| `embedding` | Binary | No | Pre-computed embedding vector (float32 array) | + +### 3.3 `encoach.ai.job` (new) + +Tracks async AI jobs (grading, video generation). + +| Field | Type | Required | Description | +|-------|------|----------|-------------| +| `job_type` | Selection | Yes | `writing_grading`, `speaking_grading`, `video_generation` | +| `status` | Selection | Yes | `pending`, `in_progress`, `completed`, `error`. Default: `pending` | +| `user_id` | Many2one(`res.users`) | No | Requesting user | +| `evaluation_id` | Many2one(`encoach.evaluation`) | No | Related evaluation record | +| `input_data` | Text (JSON) | No | Serialized input for the AI task | +| `result_data` | Text (JSON) | No | Serialized result from the AI task | +| `error_message` | Text | No | Error details if failed | +| `created_at` | Datetime | Yes | Job creation time | +| `completed_at` | Datetime | No | Job completion time | +| `retry_count` | Integer | No | Number of retries. Default: 0 | + +### 3.4 `encoach.elai.avatar` (new) + +| Field | Type | Required | Description | +|-------|------|----------|-------------| +| `name` | Char | Yes | Avatar display name | +| `avatar_code` | Char | Yes | ELAI avatar code | +| `avatar_url` | Char | No | Avatar preview image URL | +| `gender` | Selection | No | `male`, `female` | +| `canvas` | Char | No | ELAI canvas ID | +| `voice_id` | Char | No | ELAI voice ID | +| `voice_provider` | Char | No | Voice provider name | + +### 3.5 Exam `parts` JSON Structure + +Identical to v1. See v1 document Section 3.6.1 for the full JSON schema for Reading, Listening, Writing, Speaking, and Level exam parts. + +### 3.6 Evaluation `result` JSON Structure + +Identical to v1. See v1 document Section 3.10.1 for the writing and speaking grading result schemas. + +--- + +## 4. REST API Specification + +All endpoints from v1 remain unchanged in path and request/response format. The key difference is that endpoints previously marked as "proxy to ielts-be" are now handled directly by Odoo. + +> **Note:** For the full specification of all non-AI endpoints, refer to Section 4 of the v1 document. They are identical: Auth (4.1), Users (4.2), Registration/Codes (4.3), Entities (4.12), Groups (4.11), Roles (4.13), Permissions (4.14), Invites (4.7), Codes (4.8), Assignments (4.10), Sessions (4.11), Stats (4.12), Payments (4.15), Packages (4.16), Discounts (4.17), Tickets (4.18), Storage (4.19), Approval Workflows (4.21). + +The following endpoints were previously "proxy to ielts-be" and are now handled directly by Odoo: + +### 4.1 Exam Generation Endpoints + +#### `GET /api/exam/reading/{passage}` + +Generate a reading passage using AI. + +**Path params:** `passage` = `1` | `2` | `3` + +**Query params:** `topic` (optional), `word_count` (optional, default ~500) + +**Response (200):** +```json +{ + "title": "The Impact of Urbanization", + "text": "Full passage text..." +} +``` + +**Implementation:** Call OpenAI GPT-4o with passage-specific prompt (see Section 6.3.1). + +#### `POST /api/exam/reading/` + +Generate reading exercises from a passage. + +**Request:** +```json +{ + "text": "passage text", + "exercises": [ + { "type": "multipleChoice", "quantity": 5 }, + { "type": "trueFalse", "quantity": 4 }, + { "type": "fillBlanks", "quantity": 3, "num_random_words": 1, "max_words": 3 } + ], + "difficulty": ["B1", "B2"] +} +``` + +**Response (200):** `{ "exercises": [...] }` + +#### `GET /api/exam/listening/{section}` + +Generate a listening dialog/monologue. + +**Path params:** `section` = `1` | `2` | `3` | `4` + +**Query params:** `topic` (optional), `difficulty` (optional) + +**Response (200):** +```json +{ + "dialog": { + "conversation": [ + { "name": "Sarah", "gender": "female", "text": "Hello..." }, + { "name": "James", "gender": "male", "text": "Hi..." } + ] + } +} +``` + +Sections 1 and 3 return `conversation` (dialog). Sections 2 and 4 return `monologue`. + +#### `POST /api/exam/listening/media` + +Generate MP3 audio from a dialog/monologue using AWS Polly TTS. + +**Request:** +```json +{ + "conversation": [ + { "name": "Sarah", "gender": "female", "text": "Hello...", "voice": "Ruth" } + ] +} +``` + +Or for monologue: +```json +{ + "monologue": "Full monologue text..." +} +``` + +**Response:** MP3 binary data (`Content-Type: audio/mpeg`) + +**Implementation:** Call AWS Polly with neural engine (see Section 6.4). + +#### `POST /api/exam/listening/transcribe` + +Transcribe audio using Whisper. + +**Request:** Multipart form with `audio` file + +**Response (200):** Dialog object (conversation or monologue text) + +**Implementation:** Run Whisper model locally, then use GPT-4o to clean overlapping segments (see Section 6.5). + +#### `POST /api/exam/listening/instructions` + +Generate MP3 for listening instructions text. + +**Request:** `{ "text": "instructions text" }` + +**Response:** MP3 binary data + +#### `POST /api/exam/listening/` + +Generate listening exercises from a dialog. + +**Request:** +```json +{ + "text": "transcript text", + "exercises": [ + { "type": "multipleChoice", "quantity": 3 }, + { "type": "writeBlanksFill", "quantity": 5 } + ], + "difficulty": ["B1"] +} +``` + +**Response (200):** `{ "exercises": [...] }` + +#### `GET /api/exam/speaking/{task}` + +Generate a speaking task prompt. + +**Path params:** `task` = `1` | `2` | `3` + +**Query params:** `topic`, `first_topic`, `second_topic`, `difficulty` + +**Response (200):** Speaking part content (prompts array for Part 1/3, text block for Part 2) + +#### `POST /api/exam/speaking/media` + +Generate AI avatar video using ELAI. + +**Request:** +```json +{ + "text": "Question text to speak", + "avatar": "avatar_code" +} +``` + +**Response (200):** `{ "status": "STARTED", "result": null }` (async -- poll for completion) + +#### `GET /api/exam/speaking/media/{vid_id}` + +Poll for video generation status. + +**Response (200):** +```json +{ + "status": "COMPLETED", + "result": "https://elai-video-url..." +} +``` + +Possible statuses: `STARTED`, `IN_PROGRESS`, `COMPLETED`, `ERROR` + +#### `GET /api/exam/speaking/avatars` + +List available ELAI avatars. + +**Response (200):** `[ { "name": "...", "avatar_code": "...", "avatar_url": "...", "gender": "..." } ]` + +#### `GET /api/exam/writing/{task}` + +Generate a writing task prompt. + +**Path params:** `task` = `1` | `2` + +**Query params:** `topic`, `difficulty` + +**Response (200):** Writing task prompt text + +#### `POST /api/exam/writing/{task}/attachment` + +Generate an academic writing Task 1 with image attachment. + +**Request:** Multipart form with `file` (chart/image) and optional `difficulty` + +**Response (200):** Writing task prompt with image analysis + +#### `POST /api/exam/level/` + +Generate level test exercises. + +**Request:** +```json +{ + "exercises": [ + { "type": "multipleChoice", "quantity": 10, "difficulty": "B1" }, + { "type": "fillBlanks", "quantity": 5, "text_size": 200, "topic": "education" } + ], + "difficulty": ["A2", "B1", "B2"] +} +``` + +**Response (200):** Generated exercises + +#### `GET /api/exam/level/` + +Get a pre-built level exam. + +#### `GET /api/exam/level/utas` + +Get a UTAS-format level exam. + +#### `POST /api/exam/level/import/` + +Import a level exam from file. + +**Request:** Multipart form with `exercises` and optional `solutions` files + +**Response (200):** Parsed exam object + +#### `POST /api/exam/level/custom/` + +Generate a custom level exam from JSON specification. + +#### `POST /api/exam/reading/import` + +Import a reading exam from Word/Excel file. + +**Request:** Multipart form with `exercises` and optional `solutions` files + +**Response (200):** Parsed exam object + +#### `POST /api/exam/listening/import` + +Import a listening exam from file. + +### 4.2 Grading Endpoints + +#### `POST /api/evaluate/writing` + +Submit a writing answer for AI grading. + +**Request:** +```json +{ + "userId": 1, + "sessionId": 20, + "exerciseId": "uuid", + "question": "Write about...", + "answer": "Student's essay text...", + "task": 1, + "attachment": "optional-image-url" +} +``` + +**Response (200):** `{ "ok": true }` (grading happens asynchronously) + +**Implementation:** Creates `encoach.evaluation` and `encoach.ai.job`, then runs grading in a background thread (see Section 6.2). + +#### `POST /api/evaluate/speaking` + +Submit speaking audio for AI grading. + +**Request:** Multipart form with `userId`, `sessionId`, `exerciseId`, `task`, and audio files (`audio_1`, `audio_2`, etc.) with corresponding `question_N` fields. + +**Response (200):** `{ "ok": true }` (grading happens asynchronously) + +**Implementation:** Whisper transcribes each audio, then GPT-4o grades the transcript (see Section 6.2). + +#### `POST /api/evaluate/interactiveSpeaking` + +Submit interactive speaking (multiple Q&A pairs) for grading. + +**Request:** Same as speaking but with `question_N` and `audio_N` pairs. + +#### `GET /api/evaluate/{sessionId}/{exerciseId}` + +Poll for evaluation result. + +**Response (200):** +```json +{ + "status": "completed", + "result": { "...grading result..." } +} +``` + +#### `POST /api/grading/multiple` + +Grade multiple short-answer exercises. + +**Request:** +```json +{ + "text": "passage text", + "questions": ["Q1", "Q2"], + "answers": ["A1", "A2"] +} +``` + +**Response (200):** `{ "exercises": [{ "id": "...", "correct": true, "correct_answer": "..." }] }` + +**Implementation:** GPT-4o evaluates each answer against the passage. + +#### `POST /api/exam/grade/summary` + +Generate a grading summary for a full exam session. + +**Request:** +```json +{ + "sections": [ + { "code": "reading", "name": "Reading", "grade": 6.5 }, + { "code": "writing", "name": "Writing", "grade": 7.0 } + ] +} +``` + +**Response (200):** +```json +{ + "sections": [ + { + "code": "reading", + "name": "Reading", + "grade": 6.5, + "evaluation": "Detailed evaluation text...", + "suggestions": "Improvement suggestions...", + "bullet_points": ["Focus on skimming", "Practice time management"] + } + ] +} +``` + +### 4.3 Training Endpoints + +#### `POST /api/training` + +Generate personalized training content. + +**Request:** +```json +{ + "userID": 1, + "stats": [{ "exam_id": "...", "date": 1710000000, "performance_comment": "...", "detailed_summary": "..." }] +} +``` + +**Response (200):** `{ "id": "training-record-id" }` + +**Implementation:** Uses FAISS to find relevant tips, GPT to generate personalized recommendations (see Section 6.6). + +#### `POST /api/training/tips` + +Fetch contextual tips. + +**Request:** +```json +{ + "context": "reading passage about climate change", + "question": "What does the author suggest?", + "answer": "student's wrong answer", + "correct_answer": "the correct answer" +} +``` + +**Response (200):** `{ "tips": "Personalized tip text..." }` + +#### `POST /api/transcribe` + +Transcribe audio file. + +**Request:** Multipart form with audio file + +**Response (200):** Transcript text or dialog object + +#### `POST /api/batch_users` + +Bulk import users. + +**Request:** `{ "makerID": "admin-id", "users": [{ ...userDTO }] }` + +**Response (200):** `{ "ok": true }` + +**Implementation:** In v1 this was handled by ielts-be (which imported into Firebase Auth + MongoDB). In v2, Odoo creates users directly in `res.users`. No Firebase import needed. + +--- + +## 5. Authentication & Authorization + +Identical to v1 document Section 5. Summary: + +- **Recommended:** Odoo native auth with JWT tokens for API access +- **7 user roles** mapped to Odoo security groups with `ir.rule` record rules: student, teacher, corporate, admin, developer, agent, mastercorporate + +--- + +## 6. AI/ML Services Integration + +This is the new Section 6, replacing v1's "ielts-be Integration Specification." Odoo calls all external AI services directly. + +### 6.1 External Service Overview + +| Service | Purpose | API Type | Auth | Odoo Module | +|---------|---------|----------|------|-------------| +| **OpenAI GPT-4o** | Grading, content generation, text correction | REST API | API Key (`Authorization: Bearer`) | `encoach_ai` | +| **OpenAI GPT-3.5-turbo** | Secondary tasks (fixed text, perfect answers, summaries) | REST API | Same key | `encoach_ai` | +| **OpenAI Whisper** | Speech-to-text transcription | **Local model** (Python library) | N/A | `encoach_ai_media` | +| **AWS Polly** | Text-to-speech for listening exams | AWS SDK (boto3) | AWS Access Key + Secret | `encoach_ai_media` | +| **ELAI** | AI avatar video generation for speaking | REST API | Bearer token | `encoach_ai_media` | +| **GPTZero** | AI-generated text detection for writing | REST API | API Key (`x-api-key`) | `encoach_ai_grading` | +| **FAISS** | Semantic search over training tips | **Local library** (Python) | N/A | `encoach_training` | +| **sentence-transformers** | Embedding generation for FAISS | **Local model** (Python) | N/A | `encoach_training` | + +### 6.2 Background Task Architecture + +AI grading operations (writing and speaking) take 10-60 seconds. They must run asynchronously. + +**Recommended approach:** Use Python threading within Odoo or the OCA `queue_job` module. + +**Flow:** + +1. Frontend calls `POST /api/evaluate/writing` (or speaking) +2. Odoo controller creates `encoach.evaluation` record with `status = 'pending'` +3. Odoo controller creates `encoach.ai.job` record and launches a background thread +4. Controller returns `200 OK` immediately to the frontend +5. Background thread: + a. Calls OpenAI GPT-4o for grading (and GPTZero for AI detection in parallel) + b. Updates `encoach.evaluation` with `status = 'completed'` and `result` JSON + c. Updates `encoach.ai.job` with `status = 'completed'` +6. Frontend polls `GET /api/evaluate/{sessionId}/{exerciseId}` until status is `completed` + +**Threading pattern (Odoo-compatible):** + +```python +import threading +from odoo import api, SUPERUSER_ID + +def _run_grading_in_background(dbname, evaluation_id, input_data): + with api.Environment.manage(): + registry = odoo.registry(dbname) + with registry.cursor() as cr: + env = api.Environment(cr, SUPERUSER_ID, {}) + service = env['encoach.ai.grading'] + service.execute_grading(evaluation_id, input_data) + +# In the controller: +thread = threading.Thread( + target=_run_grading_in_background, + args=(request.env.cr.dbname, evaluation.id, input_data) +) +thread.start() +``` + +**Alternative:** Use OCA `queue_job` for production-grade async processing with retry, monitoring, and worker management. + +### 6.3 OpenAI Integration + +#### 6.3.1 Client Configuration + +Create a service class `EncoachOpenAIService` in `encoach_ai`: + +| Parameter | Value | +|-----------|-------| +| **Library** | `openai` (Python package) | +| **Client** | `AsyncOpenAI(api_key=api_key)` or synchronous `OpenAI` | +| **API Key** | Odoo system parameter `encoach.openai_api_key` | +| **Response format** | `response_format={"type": "json_object"}` | + +#### 6.3.2 Models Used + +| Task | Model | Temperature | +|------|-------|-------------| +| Writing grading | `gpt-4o` | 0.1 | +| Speaking grading | `gpt-4o` | 0.1 | +| Short answer grading | `gpt-4o` | 0.1 | +| Fixed text / perfect answer | `gpt-3.5-turbo` | 0.1 | +| Grading summary | `gpt-3.5-turbo` | 0.1 | +| Reading passage generation | `gpt-4o` | 0.7 | +| Listening dialog generation | `gpt-4o` | 0.7 | +| Writing task generation | `gpt-4o` | 0.7 | +| Speaking task generation | `gpt-4o` | 0.7 | +| Level exercise generation | `gpt-4o` | 0.7 | +| Training tips | `gpt-4o` | 0.2 | +| Whisper overlap cleanup | `gpt-4o` | 0.1 | + +#### 6.3.3 Writing Grading Prompts + +**System message:** + +`You are a helpful assistant designed to output JSON on this format: {template}` + +Where `{template}` is: + +```json +{ + "comment": "comment about student's response quality", + "overall": 0.0, + "task_response": { + "Task Achievement": { "grade": 0.0, "comment": "..." }, + "Coherence and Cohesion": { "grade": 0.0, "comment": "..." }, + "Lexical Resource": { "grade": 0.0, "comment": "..." }, + "Grammatical Range and Accuracy": { "grade": 0.0, "comment": "..." } + } +} +``` + +**User message (Task 2):** + +`Evaluate the given Writing Task {task} response based on the IELTS grading system, ensuring a strict assessment that penalizes errors. Deduct points for deviations from the task, and assign a score of 0 if the response fails to address the question. Additionally, provide a detailed commentary highlighting both strengths and weaknesses in the response.\nQuestion: "{question}"\nAnswer: "{answer}"` + +**User message (Task 1 General):** + +Same as Task 2 plus: `Refer to the parts of the letter as: "Greeting Opener", "bullet 1", "bullet 2", "bullet 3", "closer (restate the purpose of the letter)", "closing greeting"` + +**User message (Task 1 Academic with image):** + +The image is sent as base64 in the message content using the vision API. + +**Additional parallel tasks for writing grading:** + +| Task | Model | Prompt | +|------|-------|--------| +| Perfect answer | `gpt-3.5-turbo` | `Write a perfect answer for this IELTS writing task: "{question}"` | +| Fixed text | `gpt-3.5-turbo` | `Fix the grammatical and spelling errors in this text, keeping the original meaning: "{answer}"` | +| AI detection | GPTZero API | See Section 6.7 | + +#### 6.3.4 Speaking Grading Prompts + +**System message:** + +`You are a helpful assistant designed to output JSON on this format: {template}` + +Where `{template}` is: + +```json +{ + "comment": "extensive comment about answer quality", + "overall": 0.0, + "task_response": { + "Fluency and Coherence": { "grade": 0.0, "comment": "extensive comment..." }, + "Lexical Resource": { "grade": 0.0, "comment": "..." }, + "Grammatical Range and Accuracy": { "grade": 0.0, "comment": "..." }, + "Pronunciation": { "grade": 0.0, "comment": "..." } + } +} +``` + +**User message:** + +`Evaluate the given Speaking Part {task} response based on the IELTS grading system, ensuring a strict assessment that penalizes errors. Deduct points for deviations from the task, and assign a score of 0 if the response fails to address the question. Additionally, provide detailed commentary highlighting both strengths and weaknesses in the response.` + +Followed by question/answer pairs from transcription. + +**Task-specific instructions:** + +- Task 1: `Address the student as "you". If the answers are not 2 or 3 sentences long, warn the student that they should be.` +- Task 2: `Address the student as "you"` +- Task 3: `Address the student as "you" and pay special attention to coherence between the answers.` + +**Speaking grading flow:** + +1. Whisper transcribes each audio file +2. GPT-4o grades the full transcript against the rubric +3. GPT-3.5-turbo generates fixed text and perfect answer (for Task 2) +4. Results combined into the evaluation record + +#### 6.3.5 Reading Passage Generation Prompts + +**System message:** + +`You are a helpful assistant designed to output JSON on this format: {"title": "title of the text", "text": "generated text"}` + +**User message (Passage 1):** + +`Generate an extensive text for IELTS Reading Passage 1, of at least {word_count} words, on the topic of "{topic}". The passage should offer a substantial amount of information relevant to the chosen subject matter. It should be fairly easy and consist of multiple paragraphs. Make sure that the generated text does not contain forbidden subjects in muslim countries.` + +**User message (Passage 2):** + +Same structure but: `fairly hard and consist of multiple paragraphs` + +**User message (Passage 3):** + +Same structure but: `very hard, present different points or theories, cite different sources, and consist of multiple paragraphs` + +#### 6.3.6 Listening Dialog Generation Prompts + +**Section 1 (conversation, 2 people):** + +System: `{"conversation": [{"name": "name", "gender": "gender", "text": "text"}]}` + +User: `Compose an authentic conversation between two individuals on the topic of "{topic}". Please include random names and genders. Include misleading discourse (dates, colors, etc.) and spelling of names. Make sure that the generated conversation does not contain forbidden subjects in muslim countries.` + +**Section 2 (monologue, social):** + +System: `{"monologue": "monologue"}` + +User: `Generate a comprehensive monologue set in the social context of "{topic}". Make sure that the generated monologue does not contain forbidden subjects in muslim countries.` + +**Section 3 (conversation, up to 4 people):** + +User: `Compose an authentic and elaborate conversation between up to four individuals on the topic of "{topic}". Please include random names and genders. Make sure that the generated conversation does not contain forbidden subjects in muslim countries.` + +**Section 4 (monologue, academic):** + +User: `Generate a comprehensive and complex monologue on the academic subject of "{topic}". Make sure that the generated monologue does not contain forbidden subjects in muslim countries.` + +#### 6.3.7 Writing Task Generation Prompts + +**General Task 1:** + +`Craft a prompt for an IELTS Writing Task 1 General Training exercise that instructs the student to compose a letter based on the topic of "{topic}" of {difficulty} CEFR level difficulty. The prompt should end with "In the letter you should" followed by 3 bullet points. Make sure it does not contain forbidden subjects in muslim countries.` + +**General Task 2:** + +`Craft a comprehensive question of {difficulty} CEFR level difficulty like the ones for IELTS Writing Task 2 General Training that directs the candidate to delve into an in-depth analysis of contrasting perspectives on the topic of "{topic}". The question should lead to an answer with either "theories", "complicated information" or be "very descriptive" on the topic.` + +**Academic Task 1 (with image):** + +`Analyze the uploaded image and create a detailed IELTS Writing Task 1 Academic prompt. Describe the visual type, context, and create a prompt at {difficulty} CEFR level.` + +#### 6.3.8 Speaking Task Generation Prompts + +**Part 1:** + +`Craft 5 simple and single questions of easy difficulty for IELTS Speaking Part 1 that encourages candidates to delve deeply into personal experiences, preferences, or insights on the topic of "{first_topic}" and the topic of "{second_topic}". The questions should lead to the usage of 4 verb tenses (present perfect, present, past and future). Make sure that the generated question does not contain forbidden subjects in muslim countries.` + +**Part 2:** + +`Create a question of medium difficulty for IELTS Speaking Part 2 that encourages candidates to narrate a personal experience or story related to the topic of "{topic}". Include 3 prompts that guide the candidate. The prompts must not be questions. Also include a suffix like the ones in the IELTS exams that start with "And explain why". Make sure that the generated question does not contain forbidden subjects in muslim countries.` + +**Part 3:** + +`Formulate a set of 5 single questions of hard difficulty for IELTS Speaking Part 3 that encourage candidates to engage in a meaningful discussion on the topic of "{topic}". They must be 1 single question each and not be double-barreled questions. Make sure that the generated question does not contain forbidden subjects in muslim countries.` + +#### 6.3.9 Level Exercise Generation Prompts + +**Multiple Choice:** + +`Generate {quantity} multiple choice questions of 4 options for an english level exam of {difficulty} CEFR level. Ensure that the questions cover a range of topics such as verb tense, subject-verb agreement, pronoun usage, sentence structure, and punctuation. Make sure every question only has 1 correct answer.` + +**Fill Blanks:** + +`Generate a text of at least {size} words about the topic {topic}. From the generated text choose exactly {quantity} words (cannot be sequential words), replace each with {{id}}, and generate a JSON object containing: the modified text, solutions array, words array with four options per blank.` + +#### 6.3.10 Retry and Validation Logic + +- Retry up to 2 times if response contains blacklisted words or missing required fields +- Blacklisted words include topics related to religion, politics, explicit content, and culturally sensitive subjects (stored in constants) +- Token limit: `4097 - input_token_count - 300` for max_tokens +- All responses expected in JSON format via `response_format={"type": "json_object"}` + +### 6.4 AWS Polly Integration (TTS) + +Implemented in `encoach_ai_media` module. + +| Parameter | Value | +|-----------|-------| +| **Library** | `boto3` / `aioboto3` | +| **Service** | `polly` | +| **Engine** | `neural` | +| **Output format** | `mp3` | +| **Auth** | `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY` (Odoo system parameters) | + +**Available voices:** + +| Voice | Gender | Accent | +|-------|--------|--------| +| Danielle | Female | US | +| Gregory | Male | US | +| Kevin | Male | US | +| Ruth | Female | US | +| Stephen | Male | US | +| Arthur | Male | GB | +| Olivia | Female | GB | +| Ayanda | Female | ZA | +| Aria | Female | NZ | +| Kajal | Female | IN | +| Niamh | Female | IE | + +**Conversation audio generation:** + +1. For each dialog line, call Polly `synthesize_speech()` with the assigned voice +2. Chunk text at sentence boundaries if > 3000 characters +3. Concatenate all MP3 segments +4. Append final message: `"This audio recording, for the listening exercise, has finished."` (voice: Stephen) + +**Monologue audio generation:** + +1. Select a random voice +2. Chunk text at sentence boundaries if > 3000 characters +3. Synthesize each chunk and concatenate + +### 6.5 Whisper Integration (STT) + +Implemented in `encoach_ai_media` module. + +| Parameter | Value | +|-----------|-------| +| **Library** | `openai-whisper` (local Python package) | +| **Model size** | `base` (~1 GB, or configurable) | +| **Model instances** | 4 (for parallel transcription) | +| **Thread pool** | `ThreadPoolExecutor(max_workers=4)` | +| **Audio resampling** | 16 kHz, normalized | +| **Chunk size** | 30 seconds (480,000 samples) with 1/4 overlap | +| **Options** | `fp16=False`, `language='English'`, `verbose=False` | +| **Retries** | 3 attempts via tenacity | + +**Long audio handling:** + +1. Split audio into 30-second chunks with 25% overlap +2. Transcribe each chunk independently +3. Use GPT-4o to remove duplicated words at chunk boundaries +4. Join cleaned segments into final transcript + +**Audio-to-dialog conversion:** + +After transcription, use GPT-4o to determine whether the transcript is a conversation or monologue and output structured JSON: + +``` +You are a helpful assistant designed to output JSON on either one of these formats: +1 - {"dialog": [{"name": "name", "gender": "gender", "text": "text"}]} +2 - {"dialog": "text"} + +A transcription of an audio file will be provided to you. Based on that transcription you will need to determine whether the transcription is a conversation or a monologue. If it is a conversation, output format 1. If it is a monologue, output format 2. +``` + +### 6.6 ELAI Integration (AI Video) + +Implemented in `encoach_ai_media` module. + +| Parameter | Value | +|-----------|-------| +| **Base URL** | `https://apis.elai.io/api/v1/videos` | +| **Auth** | Bearer token (Odoo system parameter `encoach.elai_token`) | + +**Video generation flow:** + +1. `POST /api/v1/videos` -- Create video with avatar, text, voice +2. `POST /api/v1/videos/render/{video_id}` -- Start rendering +3. Poll `GET /api/v1/videos/{video_id}` -- Check status (`ready`, `failed`, or in progress) +4. Return video URL when `ready` + +**Avatar configuration:** Stored in `encoach.elai.avatar` model (avatar codes, voice IDs, voice providers). + +### 6.7 GPTZero Integration (AI Detection) + +Implemented in `encoach_ai_grading` module. + +| Parameter | Value | +|-----------|-------| +| **Endpoint** | `https://api.gptzero.me/v2/predict/text` | +| **Auth** | `x-api-key` header (Odoo system parameter `encoach.gptzero_api_key`) | + +**Request:** +```json +{ + "document": "student's writing text", + "version": "", + "multilingual": false +} +``` + +**Response fields used:** +- `class_probabilities` -- probability scores for human/AI/mixed +- `predicted_class` -- `human`, `ai`, or `mixed` +- `sentences[].highlight_sentence_for_ai` -- boolean per sentence + +**Result stored in evaluation:** `"ai_detection": { "probability": 0.12, "predicted_class": "human" }` + +### 6.8 FAISS + Sentence-Transformers (Training) + +Implemented in `encoach_training` module. + +| Parameter | Value | +|-----------|-------| +| **Embeddings model** | `sentence-transformers/all-MiniLM-L6-v2` | +| **Index type** | `faiss.IndexFlatL2` (one per category) | +| **Top-K results** | 5 | + +**Categories:** + +| Category | Description | +|----------|-------------| +| `ct_focus` | Critical thinking focus tips | +| `language_for_writing` | Language for writing tips | +| `reading_skill` | Reading skills tips | +| `strategy` | Test strategy tips | +| `writing_skill` | Writing skills tips | +| `word_link` | Word linking tips | +| `word_partners` | Word partner/collocation tips | + +**Index files:** Store as Odoo attachments or on disk: +- `{category}_tips_index.faiss` -- FAISS index file per category +- `tips_metadata.pkl` -- Metadata mapping index positions to tip content + +**Query flow:** + +1. Encode user query using sentence-transformers: `embedding = model.encode([query])` +2. Search FAISS index: `distances, indices = index.search(embedding, top_k=5)` +3. Retrieve tip content from metadata +4. Pass tips + user performance data to GPT for personalized recommendations + +**Training content generation flow:** + +1. Receive user's exam stats (performance comments, detailed summaries) +2. Use GPT to identify weak areas and generate training queries +3. For each query, search FAISS index to find relevant tips +4. Use GPT to generate personalized recommendations based on tips + performance +5. Store result in `encoach.training` + +### 6.9 Topic and Content Constants + +Maintain in `encoach_ai` module as constants or configuration records: + +**Topics for content generation:** + +- `TOPICS` -- General IELTS topics (education, technology, environment, health, etc.) +- `TWO_PEOPLE_SCENARIOS` -- Listening Section 1 scenarios +- `SOCIAL_MONOLOGUE_CONTEXTS` -- Listening Section 2 contexts +- `FOUR_PEOPLE_SCENARIOS` -- Listening Section 3 scenarios +- `ACADEMIC_SUBJECTS` -- Listening Section 4 subjects + +**Difficulty levels:** `["A1", "A2", "B1", "B2", "C1", "C2"]` + +**Blacklisted words:** List of culturally sensitive terms that trigger retry if found in AI-generated content (religion, politics, explicit content, etc.) + +### 6.10 Python Dependencies + +Add to the Odoo server's Python environment: + +| Package | Version | Purpose | +|---------|---------|---------| +| `openai` | >= 1.50 | OpenAI API client (GPT-4o, GPT-3.5) | +| `openai-whisper` | latest | Local Whisper model for STT | +| `boto3` | >= 1.34 | AWS SDK for Polly TTS | +| `faiss-cpu` | >= 1.7 | FAISS vector search | +| `sentence-transformers` | >= 3.0 | Embeddings for FAISS | +| `httpx` | >= 0.27 | HTTP client for ELAI, GPTZero | +| `tiktoken` | >= 0.7 | Token counting for OpenAI | +| `librosa` | >= 0.10 | Audio processing for Whisper | +| `soundfile` | >= 0.12 | Audio file I/O | +| `numpy` | >= 1.26 | Numerical operations | +| `tenacity` | >= 8.2 | Retry logic for API calls | +| `torch` | >= 2.0 | Required by Whisper and sentence-transformers | + +**Server requirements for Whisper:** The Odoo server needs at least 4 GB RAM for the Whisper base model and sentence-transformers model. Consider running Whisper on a GPU for better performance, or use the OpenAI Whisper API instead of local inference. + +### 6.11 Configuration (Odoo System Parameters) + +| Parameter Key | Description | Example | +|--------------|-------------|---------| +| `encoach.openai_api_key` | OpenAI API key | `sk-...` | +| `encoach.aws_access_key_id` | AWS access key | `AKIA...` | +| `encoach.aws_secret_access_key` | AWS secret key | `wJal...` | +| `encoach.elai_token` | ELAI API token | `Bearer ...` | +| `encoach.gptzero_api_key` | GPTZero API key | `...` | +| `encoach.whisper_model_size` | Whisper model size | `base` (or `small`, `medium`, `large`) | +| `encoach.whisper_workers` | Number of Whisper worker threads | `4` | +| `encoach.grading_temperature` | Temperature for grading prompts | `0.1` | +| `encoach.generation_temperature` | Temperature for content generation | `0.7` | +| `encoach.tips_temperature` | Temperature for training tips | `0.2` | + +--- + +## 7. Payment Integration + +Identical to v1 document Section 7. Summary: + +- **Stripe:** Checkout session creation, webhook handling, subscription extension +- **PayPal:** Order creation, capture, subscription update +- **Paymob:** Intention creation, transaction webhook verification +- Subscription logic: extend `subscriptionExpirationDate` on successful payment; propagate to entity members for corporate + +--- + +## 8. Business Rules & Workflows + +Identical to v1 document Section 8, with one addition: + +### 8.1-8.7 (Unchanged from v1) + +See v1 for: Registration flow, Subscription management, Entity licensing, Assignment lifecycle, Grading polling, Corporate payment activation, User change propagation. + +### 8.8 AI Content Moderation (New) + +All AI-generated content must be validated before being returned to the user: + +1. **Blacklist check:** Scan generated text against the blacklisted words list +2. **Retry logic:** If blacklisted words are found, regenerate with the same prompt (up to 2 retries) +3. **JSON validation:** Verify the AI response is valid JSON with all required fields +4. **Score validation:** For grading, verify all scores are between 0.0 and 9.0 +5. **Content length:** For passages, verify minimum word count is met + +### 8.9 Batch User Import (Updated) + +In v1, batch import was proxied to ielts-be (which imported into Firebase Auth). In v2: + +1. Admin uploads CSV/Excel with user data +2. Odoo parses the file and creates `res.users` records directly +3. Generates temporary passwords and sends welcome emails +4. Creates registration codes and group assignments +5. No Firebase Auth involvement + +--- + +## 9. Data Migration Plan + +### 9.1 Migration Strategy + +Perform a one-time data migration from both data sources: + +1. **MongoDB** (used by ielts-ui) -> PostgreSQL +2. **MongoDB** (used by ielts-be) -> PostgreSQL (evaluation records, training data) +3. **Firebase Auth** users -> Odoo `res.users` + +### 9.2 Collection-to-Model Mapping + +Identical to v1 Section 9.2, with additional ielts-be collections: + +| ielts-be MongoDB Collection | Odoo Model | Notes | +|----------------------------|------------|-------| +| `evaluation` | `encoach.evaluation` | Grading records with result JSON | +| `training` | `encoach.training` | Training content | + +### 9.3 Additional Migration: AI Assets + +| Asset | Source | Target | +|-------|--------|--------| +| FAISS index files | ielts-be `./faiss/` directory | Odoo server filesystem or `ir.attachment` | +| Tips metadata | `tips_metadata.pkl` | `encoach.training.tip` model records | +| Tips source data | `pathways_2_rw_with_ids.json` | `encoach.training.tip` model records | +| Avatar config | `conf.json`, `avatars.json` | `encoach.elai.avatar` model records | +| Whisper model | Downloaded at runtime | Odoo server filesystem | + +### 9.4 Migration Script Requirements & Import Order + +Identical to v1 Section 9.3 and 9.4, with the addition of: + +22. `encoach.training.tip` (from tips JSON) +23. `encoach.elai.avatar` (from avatar config JSON) +24. FAISS index rebuild (re-embed tips into FAISS after import) + +--- + +## 10. Non-Functional Requirements + +### 10.1-10.6 (Unchanged from v1) + +See v1 for: API response format, CORS, file storage, performance targets, scalability, security. + +### 10.7 AI/ML Performance Requirements (New) + +| Operation | Target Response Time | Notes | +|-----------|---------------------|-------| +| Reading passage generation | < 15s | Single GPT-4o call | +| Listening dialog generation | < 15s | Single GPT-4o call | +| Listening MP3 generation | < 30s | Multiple Polly calls + concatenation | +| Writing task generation | < 10s | Single GPT-4o call | +| Speaking task generation | < 10s | Single GPT-4o call | +| Level exercise generation | < 20s | Multiple GPT-4o calls | +| Writing grading (async) | < 30s total | Parallel: GPT-4o grading + GPTZero + perfect answer + fixed text | +| Speaking grading (async) | < 60s total | Sequential: Whisper transcription + GPT-4o grading | +| Short answer grading | < 10s | Single GPT-4o call | +| Transcription (1 min audio) | < 15s | Local Whisper | +| FAISS query | < 1s | Local computation | +| Video generation (async) | 1-5 min | ELAI rendering; poll for completion | + +### 10.8 AI/ML Scalability (New) + +- Whisper model requires ~1 GB RAM per instance (4 instances = 4 GB) +- sentence-transformers model requires ~500 MB RAM +- FAISS indices are small (< 100 MB total) +- OpenAI API has rate limits -- implement request queuing if needed +- AWS Polly has a 3000-character limit per request -- chunking is already handled +- Consider GPU acceleration for Whisper if transcription volume is high + +### 10.9 AI/ML Monitoring (New) + +- Log all OpenAI API calls with model, token usage, response time, and cost +- Log all Polly synthesis calls with character count +- Log all ELAI video generation requests with status and duration +- Log all Whisper transcription jobs with audio duration and processing time +- Alert on repeated grading failures (> 3 consecutive errors) +- Track OpenAI API spend against budget thresholds + +### 10.10 Logging, Testing (Unchanged from v1) + +See v1 Sections 10.7 and 10.8. + +--- + +## Appendix A: Exercise Type Reference + +Identical to v1 Appendix A. + +## Appendix B: Grading Rubric Details + +Identical to v1 Appendix B. + +## Appendix C: Environment Variables + +Updated to include all AI/ML service credentials: + +| Variable | Description | Example | +|----------|-------------|---------| +| `ENCOACH_JWT_SECRET` | JWT signing secret | Random 256-bit string | +| `OPENAI_API_KEY` | OpenAI API key | `sk-...` | +| `AWS_ACCESS_KEY_ID` | AWS access key for Polly | `AKIA...` | +| `AWS_SECRET_ACCESS_KEY` | AWS secret key for Polly | `wJal...` | +| `ELAI_TOKEN` | ELAI API bearer token | `...` | +| `GPT_ZERO_API_KEY` | GPTZero API key | `...` | +| `WHISPER_MODEL_SIZE` | Whisper model size | `base` | +| `STRIPE_SECRET_KEY` | Stripe secret key | `sk_live_...` | +| `STRIPE_WEBHOOK_SECRET` | Stripe webhook signing secret | `whsec_...` | +| `PAYPAL_CLIENT_ID` | PayPal client ID | `AX...` | +| `PAYPAL_CLIENT_SECRET` | PayPal client secret | `EL...` | +| `PAYPAL_ACCESS_TOKEN_URL` | PayPal OAuth URL | `https://api.paypal.com/v1/oauth2/token` | +| `PAYMOB_API_KEY` | Paymob API key | `ZXlK...` | +| `PAYMOB_SECRET` | Paymob webhook secret | `...` | + +## Appendix D: Glossary + +Identical to v1 Appendix D, with additions: + +| Term | Definition | +|------|-----------| +| **Whisper** | OpenAI's speech-to-text model, run locally on the Odoo server | +| **Polly** | AWS text-to-speech service for generating listening exam audio | +| **ELAI** | AI video generation service for creating speaking exam avatar videos | +| **GPTZero** | AI text detection service for identifying AI-generated writing submissions | +| **FAISS** | Facebook AI Similarity Search -- vector search library for finding relevant training tips | +| **sentence-transformers** | Python library for generating text embeddings used with FAISS | + +## Appendix E: Custom Odoo Module Summary + +| Module | Complexity | Key Models | Key Services | External APIs | +|--------|------------|------------|-------------- |---------------| +| `encoach_core` | Medium | User extensions, Entity, Role, Permission, Code, Invite | Registration, entity management | -- | +| `encoach_exam` | High | Exam (5 modules), Exercise structures | Exam CRUD, import/export | -- | +| `encoach_classroom` | Low | Group | Group management | -- | +| `encoach_assignment` | Medium | Assignment | Assignment lifecycle | -- | +| `encoach_stats` | Medium | Session, Stat | Stats tracking, PDF export | -- | +| `encoach_evaluation` | Medium | Evaluation, AI Job | Async grading coordination | -- | +| `encoach_training` | Medium | Training, Training Tip | FAISS search, tip generation | -- | +| `encoach_subscription` | Medium | Package, Payment, Subscription Payment, Discount | Subscription management | Stripe, PayPal, Paymob | +| `encoach_registration` | Medium | Code, Invite | Multi-path registration | -- | +| `encoach_ticket` | Low | Ticket | Ticket CRUD | -- | +| `encoach_ai` | **Very High** | -- | OpenAI client, prompt management, retry logic | OpenAI API | +| `encoach_ai_grading` | High | -- | Writing grading, speaking grading, short answer grading | OpenAI, GPTZero | +| `encoach_ai_generation` | High | -- | Reading/listening/writing/speaking/level generation | OpenAI | +| `encoach_ai_media` | High | ELAI Avatar | Polly TTS, Whisper STT, ELAI video | AWS Polly, ELAI, Whisper (local) | +| `encoach_api` | High | -- | REST JSON controllers (~60 endpoints) | -- | diff --git a/docs/UTAS_MASTER_PLAN.md b/docs/UTAS_MASTER_PLAN.md new file mode 100644 index 0000000..65b0615 --- /dev/null +++ b/docs/UTAS_MASTER_PLAN.md @@ -0,0 +1,727 @@ +# EnCoach -- UTAS University Deployment Master Plan + +**Document Version:** 1.0 +**Date:** March 16, 2026 +**Classification:** Confidential -- EnCoach & UTAS Internal +**Prepared by:** EnCoach Engineering Team + +--- + +## Table of Contents + +1. [Executive Summary](#1-executive-summary) +2. [Project Scope and Objectives](#2-project-scope-and-objectives) +3. [System Architecture](#3-system-architecture) +4. [Feature Modules Breakdown](#4-feature-modules-breakdown) +5. [Development Phases](#5-development-phases) +6. [University Integration Plan](#6-university-integration-plan) +7. [Master Timeline](#7-master-timeline) +8. [Testing and Rollout Strategy](#8-testing-and-rollout-strategy) +9. [Team and Responsibilities](#9-team-and-responsibilities) +10. [Risk Register](#10-risk-register) +11. [Assumptions and Prerequisites](#11-assumptions-and-prerequisites) + +--- + +## 1. Executive Summary + +EnCoach is deploying a comprehensive AI-powered education platform for the University of Technology and Applied Sciences (UTAS). The platform delivers nine integrated modules spanning self-paced English learning, AI-graded examinations, Mathematics and IT courses with AI-assisted assessment, a full Learning Management System, university SIS integration, institutional whitelabeling, AI virtual tutors, and a support ticketing system. + +### Platform at a Glance + +| Dimension | Detail | +|-----------|--------| +| **Modules** | 9 (English Self Learning, Examinations, Math, IT, LMS, Whitelabeling, Humanisation, SIS Integration, Ticketing) | +| **AI Services** | 6 (OpenAI GPT-4o, Whisper STT, AWS Polly TTS, ELAI Avatars, GPTZero Detection, FAISS Semantic Search) | +| **Backend** | Odoo 19 -- 15 custom modules, 70+ REST API endpoints, PostgreSQL | +| **Frontend** | React 18 SPA -- 55+ pages, TypeScript, Tailwind CSS, shadcn/ui | +| **LMS Engine** | OpenEduCat (Odoo-native modules) | +| **Team** | 1 Solution Architect, 1 Senior Developer (AI-assisted), 1 Full-Stack Developer (AI-assisted) | + +### Key Milestones + +| Milestone | Target Date | +|-----------|-------------| +| Project Kickoff | April 1, 2026 | +| Staging Demo to UTAS | April 24, 2026 | +| English Self Learning + Examinations -- GO LIVE | June 12, 2026 | +| Math + IT + LMS + Ticketing -- GO LIVE | July 24, 2026 | +| Full Platform GO LIVE (SIS, Whitelabeling, Humanisation) | August 21, 2026 | + +### Current State of Development + +The platform is not starting from zero. Significant engineering has already been completed: + +- **Backend (Odoo 19):** 15 custom modules fully developed, covering exams, AI grading, content generation, media services, training, assignments, classrooms, subscriptions, registration, and ticketing. All AI services (OpenAI, Whisper, Polly, ELAI, GPTZero, FAISS) are integrated and configured. The backend is deployed and running on a staging server. +- **Frontend (React):** A complete UI prototype with 55+ pages across student, teacher, and admin portals. Role-based routing, layouts, and forms are built. Currently using mock data -- API integration is the primary remaining work. +- **Infrastructure:** Docker Compose deployment with PostgreSQL, staging environment operational at the current staging server. + +--- + +## 2. Project Scope and Objectives + +### 2.1 Objectives + +1. **Deliver a production-ready AI-powered education platform** for UTAS covering English, Mathematics, and IT subjects. +2. **Integrate with UTAS's existing Student Information System (SIS)** for seamless student enrollment, grade sync, and attendance tracking. +3. **Provide institutional whitelabeling** with UTAS branding, colors, and identity. +4. **Deploy AI virtual tutors** (Humanisation) to enhance the student learning experience across subjects. +5. **Establish a scalable LMS** built on OpenEduCat for course management, timetabling, and academic administration. + +### 2.2 Module Scope + +| # | Module | Description | Acceptance Criteria | +|---|--------|-------------|---------------------| +| 1 | **English Self Learning** | AI-powered IELTS preparation: Reading, Listening, Writing, Speaking practice with AI grading, personalized training tips, and progress tracking. | Students can complete full practice sessions in all 4 skills; AI grading returns scores within 60 seconds; training tips are personalized to weaknesses. | +| 2 | **Examinations** | Full exam lifecycle: AI-generated exam content, timed exam sessions, automated grading, results dashboard, and teacher approval workflows. | Teachers can generate, review, and assign exams; students complete timed exams; grading is automated with band scores and feedback. | +| 3 | **Mathematics** | Math courses and AI-assisted exams: course content delivery, formula-based question generation, automated grading for numerical and short-answer responses. | Students access Math courses; AI generates Math questions at configurable difficulty levels; automated grading handles numerical and short-answer formats. | +| 4 | **Information Technology** | IT courses and AI-assisted exams: course content delivery, conceptual and practical question generation, automated grading for MCQ and short-answer formats. | Students access IT courses; AI generates IT questions across topics; automated grading covers MCQ, true/false, and short answers. | +| 5 | **LMS (OpenEduCat)** | Course management, enrollment, timetabling, attendance tracking, batch management, gradebook, and academic reporting via OpenEduCat Odoo modules. | Admin manages courses, batches, and timetables; teachers record attendance and grades; students view schedules and progress. | +| 6 | **Whitelabeling** | UTAS institutional branding: customizable logo, color palette, fonts, login screen, email templates, and report headers. | Platform displays UTAS branding throughout; branding is configurable via admin settings without code changes. | +| 7 | **Humanisation** | AI-powered virtual tutors using ELAI avatar technology: video-based tutoring, interactive speaking practice, and subject-specific AI guidance. | AI avatars present content and interact with students across subjects; avatar selection is available; videos generate within 2 minutes. | +| 8 | **SIS Integration** | Bidirectional integration with UTAS's existing Student Information System: student enrollment sync, grade export, attendance sync, and course catalog mapping. | Student data syncs from SIS to EnCoach on enrollment; grades and attendance export back to SIS; data is consistent within 15-minute sync cycles. | +| 9 | **Ticketing** | Support ticket system for students and staff: ticket creation, categorization, assignment, status tracking, and resolution workflow. | Users submit tickets; staff can categorize, assign, and resolve; status updates are visible to the reporter. | + +### 2.3 Out of Scope (This Engagement) + +- Mobile native applications (iOS/Android) +- Content creation for Math and IT courses (content to be provided by UTAS or generated via AI) +- UTAS internal network infrastructure changes +- Marketing website / landing page redesign +- Payment gateway integration for UTAS (institutional licensing assumed) + +--- + +## 3. System Architecture + +### 3.1 Architecture Overview + +```mermaid +graph TB + subgraph frontend ["Frontend Layer"] + ReactApp["React 18 SPA
TypeScript + Tailwind + shadcn/ui
55+ pages, role-based routing"] + end + + subgraph backend ["Backend Layer -- Odoo 19"] + API["REST API Controllers
70+ JSON endpoints"] + Core["Core Modules
Users, Entities, Roles, Permissions"] + Exam["Exam Engine
Reading, Listening, Writing, Speaking, Level"] + LMS["OpenEduCat LMS
Courses, Batches, Timetable, Attendance"] + AI["AI Modules
Generation, Grading, Media, Training"] + Sub["Business Modules
Subscriptions, Tickets, Registration"] + end + + subgraph aiServices ["AI Services"] + GPT["OpenAI GPT-4o
Content Generation + Grading"] + Whisper["OpenAI Whisper
Speech-to-Text (local)"] + Polly["AWS Polly
Text-to-Speech (neural)"] + ELAI["ELAI
AI Avatar Video"] + GPTZero["GPTZero
AI Writing Detection"] + FAISS["FAISS + SentenceTransformers
Semantic Search"] + end + + subgraph dataLayer ["Data Layer"] + PG["PostgreSQL 16"] + end + + subgraph external ["External Systems"] + SIS["UTAS SIS
Student Information System"] + end + + ReactApp -->|"JWT Auth + REST API"| API + API --> Core + API --> Exam + API --> LMS + API --> AI + API --> Sub + AI --> GPT + AI --> Whisper + AI --> Polly + AI --> ELAI + AI --> GPTZero + AI --> FAISS + Core --> PG + Exam --> PG + LMS --> PG + Sub --> PG + API <-->|"REST API Sync"| SIS +``` + +### 3.2 Technology Stack + +| Layer | Technology | Details | +|-------|-----------|---------| +| **Frontend** | React 18, TypeScript, Vite 5 | SPA with TanStack Query, React Router v6, Zod validation | +| **UI Framework** | shadcn/ui, Tailwind CSS | Radix UI primitives, responsive design, dark mode capable | +| **Backend** | Odoo 19, Python 3.11 | 15 custom modules, ORM-based data access, background job processing | +| **Database** | PostgreSQL 16 | Odoo-managed schema, full-text search, JSONB for flexible data | +| **LMS** | OpenEduCat | Odoo-native education modules: courses, batches, attendance, timetable | +| **AI -- Text Generation** | OpenAI GPT-4o, GPT-3.5-turbo | Exam content generation, grading, evaluation, training tips | +| **AI -- Speech-to-Text** | OpenAI Whisper (local, base model) | 4 instances, round-robin, 30s chunked transcription | +| **AI -- Text-to-Speech** | AWS Polly (Neural) | 11 English voices, MP3 output, sentence-boundary chunking | +| **AI -- Video** | ELAI | 7 AI avatars (male/female), ElevenLabs + Azure voices | +| **AI -- Detection** | GPTZero | AI-generated writing detection per submission | +| **AI -- Search** | FAISS + all-MiniLM-L6-v2 | Semantic similarity search over training tips knowledge base | +| **Deployment** | Docker Compose | Odoo + PostgreSQL containers, Nginx reverse proxy | +| **Version Control** | Gitea | Private repositories for frontend and backend | + +### 3.3 Deployment Architecture + +```mermaid +graph LR + subgraph production ["Production Server"] + Nginx["Nginx
Reverse Proxy
SSL Termination"] + FrontendContainer["Frontend Container
React SPA
Port 3000"] + OdooContainer["Odoo 19 Container
Python 3.11
Port 8069"] + DBContainer["PostgreSQL 16
Port 5432"] + end + + Browser["Browser"] -->|"HTTPS"| Nginx + Nginx -->|"/app/*"| FrontendContainer + Nginx -->|"/api/*"| OdooContainer + OdooContainer --> DBContainer + FrontendContainer -->|"REST API"| OdooContainer +``` + +### 3.4 Existing Assets Inventory + +| Asset | Count | Status | +|-------|-------|--------| +| Odoo custom modules | 15 | Deployed on staging | +| Backend REST API endpoints | 70+ | Functional, English/IELTS focused | +| Frontend pages (React) | 55+ | UI complete, mock data only | +| AI service integrations | 6 | Configured and tested | +| ELAI avatar profiles | 7 | Seeded in database | +| Training tips (FAISS) | 80 | Imported with embeddings | +| Odoo data models | 20+ | Schema deployed | + +--- + +## 4. Feature Modules Breakdown + +### 4.1 English Self Learning + +| Aspect | Detail | +|--------|--------| +| **Current State** | Backend complete: AI-powered generation for Reading, Listening, Writing, Speaking. Grading via GPT-4o with IELTS rubric. Polly TTS for listening audio. ELAI avatars for speaking. FAISS-based personalized training tips. Frontend UI built (mocked). | +| **Work Required** | Replace mock authentication with Odoo JWT. Wire all student-facing pages to backend APIs. Integrate AI grading display (scores, feedback, AI detection). Connect training/tips module. | +| **Dependencies** | Stable Odoo API (Phase 1 complete). Frontend auth working. | +| **Effort** | 6 person-weeks | +| **Risk** | Low -- both backend and frontend exist; integration is the main task. | + +### 4.2 Examinations + +| Aspect | Detail | +|--------|--------| +| **Current State** | Backend complete: exam CRUD, 5 module types (reading, listening, writing, speaking, level), AI generation endpoints, approval workflows. Frontend: exam editor, exam list, generation page, approval workflows (all mocked). | +| **Work Required** | Wire admin exam management pages to APIs. Connect AI generation UI to real endpoints. Implement exam-taking flow with timer and state persistence. Connect grading pipeline and results display. | +| **Dependencies** | English Self Learning module (shared components). | +| **Effort** | Included in English Self Learning estimate (shared codebase). | +| **Risk** | Low -- core exam engine is proven. | + +### 4.3 Mathematics + +| Aspect | Detail | +|--------|--------| +| **Current State** | No backend module exists. No frontend pages exist. The AI exam engine (GPT-based generation + grading) provides a reusable foundation. | +| **Work Required** | **Backend:** Create `encoach_math` Odoo module with Math-specific exam models, AI prompt templates for formula-based questions, numerical grading logic, and multi-format question types (MCQ, fill-in, short answer, calculation). **Frontend:** Create Math course pages, Math exam taking interface with formula rendering (KaTeX/MathJax), Math-specific grading display. | +| **Dependencies** | Core exam engine must be stable. AI prompts require testing with GPT-4o for mathematical accuracy. | +| **Effort** | 5 person-weeks | +| **Risk** | Medium -- AI generation of math questions requires careful prompt engineering for accuracy. Formula rendering on frontend adds complexity. | + +### 4.4 Information Technology + +| Aspect | Detail | +|--------|--------| +| **Current State** | No backend module exists. No frontend pages exist. Similar to Math, the exam engine provides a foundation. | +| **Work Required** | **Backend:** Create `encoach_it` Odoo module with IT-specific exam models, AI prompt templates for conceptual and practical IT questions (networking, databases, programming concepts, security), grading logic for MCQ and short-answer. **Frontend:** Create IT course pages, IT exam interface, IT-specific grading display. | +| **Dependencies** | Core exam engine must be stable. | +| **Effort** | 4 person-weeks | +| **Risk** | Low-Medium -- IT subjects are text-based (no formula complexity). AI generation of IT questions is straightforward with GPT-4o. | + +### 4.5 LMS (OpenEduCat) + +| Aspect | Detail | +|--------|--------| +| **Current State** | OpenEduCat modules will be provided and installed into Odoo 19. Frontend LMS pages exist and are fully built: student dashboard, courses, course detail, assignments, grades, attendance, timetable (student); courses, course builder, assignments, attendance, students, timetable (teacher); dashboard, courses, students, teachers, batches, batch detail, timetable, reports, settings (admin). All pages use mock data. | +| **Work Required** | **Backend:** Install OpenEduCat modules. Create REST API controller layer (`encoach_lms_api`) to expose OpenEduCat models as JSON endpoints matching the frontend's data expectations. Map OpenEduCat models to frontend data interfaces (Course, Module, Lesson, Batch, Timetable, Attendance, Grade). **Frontend:** Replace mock data imports with API calls using TanStack Query. Wire forms to create/update APIs. | +| **Dependencies** | OpenEduCat modules provided and compatible with Odoo 19. | +| **Effort** | 3 person-weeks | +| **Risk** | Medium -- OpenEduCat model compatibility with Odoo 19 must be verified. API mapping between OpenEduCat's data structures and the frontend's interfaces requires careful alignment. | + +### 4.6 Whitelabeling + +| Aspect | Detail | +|--------|--------| +| **Current State** | No whitelabeling support. Frontend uses CSS variables for theming (Tailwind + shadcn/ui) with `darkMode: ["class"]` configured but not activated. No branding configuration. | +| **Work Required** | **Backend:** Create `encoach_branding` model in Odoo for tenant branding settings (logo, primary color, secondary color, font, favicon, login background, email header). Expose branding API endpoint. **Frontend:** Create a branding provider that fetches configuration on app load and applies CSS variables dynamically. Configure logo, colors, and fonts from API. Add admin UI for branding management. | +| **Dependencies** | UTAS provides brand assets (logo, color palette, fonts). | +| **Effort** | 2 person-weeks | +| **Risk** | Low -- CSS variable-based theming is well-established. | + +### 4.7 Humanisation (AI Virtual Tutors) + +| Aspect | Detail | +|--------|--------| +| **Current State** | ELAI integration exists for speaking exam avatar videos. 7 avatars configured (Gia, Vadim, Orhan, Flora, Scarlett, Parker, Ethan) with ElevenLabs and Azure voices. Currently limited to presenting speaking exam questions. | +| **Work Required** | **Backend:** Extend ELAI integration to support tutoring mode -- avatars explain concepts, provide feedback narration, and guide students through exercises. Create endpoints for on-demand tutoring video generation per subject. **Frontend:** Build tutor interaction UI -- avatar selector, video player with synchronized content, interactive Q&A flow. Integrate across English, Math, and IT modules. | +| **Dependencies** | ELAI API capacity and cost model for increased video generation. Subject-specific scripts/prompts. | +| **Effort** | 3 person-weeks | +| **Risk** | Medium -- ELAI video generation time (1-3 minutes per video) affects real-time tutoring UX. Cost scales with usage. | + +### 4.8 SIS Integration + +| Aspect | Detail | +|--------|--------| +| **Current State** | No SIS integration exists. UTAS has an existing Student Information System that we must integrate with via API. | +| **Work Required** | **Discovery:** Obtain UTAS SIS API documentation, authentication method, and data schemas. **Backend:** Create `encoach_sis` Odoo module with SIS sync models, scheduled sync jobs (cron), and conflict resolution. Implement: student enrollment import, grade export, attendance sync, course catalog mapping. **Frontend:** SIS sync status dashboard for admin. Sync logs and error reporting. | +| **Dependencies** | UTAS provides SIS API documentation, test environment access, and a technical contact. | +| **Effort** | 4 person-weeks | +| **Risk** | High -- entirely dependent on UTAS SIS API quality, documentation completeness, and test environment availability. This is the single highest-risk module. | + +### 4.9 Ticketing + +| Aspect | Detail | +|--------|--------| +| **Current State** | Backend complete: `encoach_ticket` Odoo module with full CRUD, categorization, and status workflow. API endpoints exist (`/api/tickets`). Frontend: Tickets page exists in admin portal (mocked). | +| **Work Required** | Wire frontend tickets page to backend API. Add ticket creation flow for students and teachers. Add ticket assignment and resolution workflow for admin. | +| **Dependencies** | None -- self-contained module. | +| **Effort** | 1 person-week | +| **Risk** | Low -- both backend and frontend exist. | + +### 4.10 Effort Summary + +| Module | Person-Weeks | Wave | +|--------|-------------|------| +| English Self Learning + Examinations | 6 | Wave 1 | +| Mathematics | 5 | Wave 2 | +| Information Technology | 4 | Wave 2 | +| LMS (OpenEduCat) | 3 | Wave 2 | +| Ticketing | 1 | Wave 2 | +| Whitelabeling | 2 | Wave 3 | +| Humanisation | 3 | Wave 3 | +| SIS Integration | 4 | Wave 3 | +| **Total** | **28 person-weeks** | | + +With a team of 3 producing approximately 3 person-weeks per calendar week, the raw work is approximately 9-10 calendar weeks. Adding UAT cycles, amendments, and buffer, the overall calendar duration is 20 weeks (April 1 -- August 21). + +--- + +## 5. Development Phases + +The project is structured into three overlapping waves. Each wave follows a build-test-deploy cycle and produces a production-ready deliverable. + +### 5.1 Wave 1 -- Foundation (April 1 -- June 12) + +**Goal:** English Self Learning and Examinations modules live in production with real UTAS users. + +This wave transforms the existing backend and frontend from separate prototypes into an integrated, production-ready platform. + +#### Sprint Breakdown + +| Sprint | Dates | Focus | Deliverables | +|--------|-------|-------|-------------| +| **S1** | Apr 1-11 | **Stabilization & Auth** | Fix remaining backend bugs. Replace mock auth with Odoo JWT in React frontend. Set up API service layer. Configure production deployment pipeline. | +| **S2** | Apr 12-18 | **Core API Integration** | Wire student dashboard, courses, and profile pages. Implement exam list and exam detail APIs. Connect user management and entity management. | +| **S3** | Apr 19-25 | **Exam Engine Integration** | Wire exam-taking flow (reading, listening, writing, speaking). Connect AI generation endpoints to exam editor. Integrate timer, state persistence, and submission. **Staging demo to UTAS (Apr 24-25).** | +| **S4** | Apr 26 -- May 9 | **AI Features & Grading** | Wire AI grading pipeline (writing evaluation, speaking evaluation). Connect TTS audio playback. Connect ELAI avatar videos. Integrate training tips and personalized recommendations. Connect AI detection display. | +| **S5** | May 10-23 | **UAT Round 1** | Deploy to UTAS staging. Conduct UAT with UTAS staff and selected students. Collect feedback. Bug fixes and amendments. | +| **S6** | May 24 -- Jun 6 | **UAT Round 2 & Hardening** | Address UAT feedback. Performance optimization. Security review. Documentation. | +| **S7** | Jun 7-12 | **GO LIVE** | Production deployment. Monitoring setup. Handover to UTAS for English + Examinations. Post-launch support begins. | + +#### Wave 1 Exit Criteria + +- Students can register, log in, and complete full English practice sessions +- AI grading returns accurate band scores with detailed feedback for writing and speaking +- Teachers can generate, review, approve, and assign exams +- Admin can manage users, entities, classrooms, and assignments +- Training tips are personalized based on exam performance +- Platform is stable under expected UTAS load + +### 5.2 Wave 2 -- Expansion (May 17 -- July 24) + +**Goal:** Mathematics, Information Technology, LMS, and Ticketing modules live in production. + +Wave 2 begins during Wave 1's UAT phase, leveraging developers freed from active feature work. + +#### Sprint Breakdown + +| Sprint | Dates | Focus | Deliverables | +|--------|-------|-------|-------------| +| **S8** | May 17-30 | **Math & IT Backend** | Create `encoach_math` and `encoach_it` Odoo modules. Develop AI prompt templates for Math question generation (numerical, formula-based, word problems). Develop AI prompt templates for IT questions (conceptual, practical). Implement grading logic for non-essay formats. | +| **S9** | May 31 -- Jun 13 | **OpenEduCat & LMS API** | Install and configure OpenEduCat modules in Odoo 19. Create `encoach_lms_api` controller layer. Map OpenEduCat models to frontend data interfaces. Wire LMS admin pages (courses, batches, timetable, attendance). | +| **S10** | Jun 14-27 | **Math & IT Frontend + LMS Wiring** | Build Math exam interface with formula rendering. Build IT exam interface. Wire student and teacher LMS pages. Wire ticketing module. | +| **S11** | Jun 28 -- Jul 11 | **UAT Round 1** | Deploy Math, IT, LMS, Ticketing to staging. UAT with UTAS staff. Math AI accuracy testing. LMS workflow validation. | +| **S12** | Jul 12-18 | **Amendments** | Address UAT feedback. Fix Math/IT grading edge cases. LMS refinements. | +| **S13** | Jul 19-24 | **GO LIVE** | Production deployment of Math, IT, LMS, Ticketing. Post-launch support begins. | + +#### Wave 2 Exit Criteria + +- Math and IT exams generate accurately via AI with appropriate difficulty levels +- LMS (OpenEduCat) fully functional: courses, enrollment, attendance, timetable, gradebook +- Ticketing system operational for students and staff +- All modules integrated with Wave 1 platform (single sign-on, unified navigation) + +### 5.3 Wave 3 -- Integration (July 1 -- August 21) + +**Goal:** Whitelabeling, SIS integration, and Humanisation modules complete. Full platform go-live. + +Wave 3 begins during Wave 2's frontend phase, with SIS discovery starting earlier. + +#### Sprint Breakdown + +| Sprint | Dates | Focus | Deliverables | +|--------|-------|-------|-------------| +| **S14** | Jul 1-11 | **Whitelabeling + SIS Discovery** | Implement branding configuration backend and frontend. Apply UTAS brand assets. Begin SIS API discovery and documentation review with UTAS IT team. | +| **S15** | Jul 12-25 | **SIS Integration Development** | Build `encoach_sis` Odoo module. Implement student enrollment import. Implement grade export. Implement attendance sync. Build admin SIS dashboard. | +| **S16** | Jul 26 -- Aug 1 | **Humanisation** | Extend ELAI integration for tutoring mode. Build tutor interaction UI. Generate subject-specific avatar tutoring content. | +| **S17** | Aug 2-8 | **Integration Testing** | End-to-end testing of all 9 modules together. SIS sync validation with UTAS test data. Performance testing under load. Security audit. | +| **S18** | Aug 9-15 | **Final UAT** | Full platform UAT with UTAS. All modules tested together. Final amendments. | +| **S19** | Aug 16-21 | **Full Platform GO LIVE** | Production deployment of complete platform. All 9 modules active. Monitoring and support in place. | + +#### Wave 3 Exit Criteria + +- Platform displays UTAS branding throughout +- SIS syncs student enrollment, grades, and attendance bidirectionally +- AI virtual tutors available across English, Math, and IT +- All 9 modules function as an integrated platform +- Performance meets production requirements under expected load + +--- + +## 6. University Integration Plan + +### 6.1 Integration Architecture + +```mermaid +sequenceDiagram + participant SIS as UTAS SIS + participant Odoo as EnCoach Odoo 19 + participant React as EnCoach Frontend + participant Student as Student + + Note over SIS,Odoo: Enrollment Sync (SIS → EnCoach) + SIS->>Odoo: Student enrollment data (scheduled sync) + Odoo->>Odoo: Create/update student records + Odoo->>Odoo: Assign to courses and batches + + Note over Student,React: Daily Usage + Student->>React: Login, take courses, complete exams + React->>Odoo: API calls (exam, grading, attendance) + Odoo->>Odoo: Record grades, attendance, progress + + Note over Odoo,SIS: Grade & Attendance Export (EnCoach → SIS) + Odoo->>SIS: Grade export (scheduled sync) + Odoo->>SIS: Attendance export (scheduled sync) +``` + +### 6.2 Data Exchange Specification + +| Data Flow | Direction | Frequency | Format | +|-----------|-----------|-----------|--------| +| Student enrollment | SIS → EnCoach | On enrollment + daily sync | REST API / CSV import | +| Course catalog mapping | Bidirectional | On setup + manual sync | REST API | +| Exam grades | EnCoach → SIS | After grading + daily batch | REST API | +| Attendance records | EnCoach → SIS | End of day batch | REST API | +| Student status changes | SIS → EnCoach | Real-time webhook or daily | REST API | + +### 6.3 Authentication Strategy + +| Phase | Method | Detail | +|-------|--------|--------| +| **Initial (Wave 1-2)** | Odoo-native JWT | Students and staff authenticate directly with EnCoach. Credentials provisioned from SIS enrollment data. | +| **Full Integration (Wave 3)** | SSO via SAML/OAuth | If UTAS SIS supports SSO, students authenticate once at UTAS portal and access EnCoach seamlessly. Fallback to JWT if SSO is not available. | + +### 6.4 UTAS Responsibilities for Integration + +| Deliverable | Required By | Impact if Delayed | +|-------------|-------------|-------------------| +| SIS API documentation | June 15, 2026 | Blocks SIS module development; delays Wave 3 by equivalent duration | +| SIS test environment access | July 1, 2026 | Blocks integration testing | +| SIS technical contact (dedicated) | June 15, 2026 | Slows discovery and issue resolution | +| Brand assets (logo, colors, fonts) | June 15, 2026 | Blocks whitelabeling completion | +| UAT testers (3-5 staff, 10-20 students) | May 1, 2026 | Delays UAT cycles; risks quality | +| Math and IT course content (if not AI-generated) | May 15, 2026 | Delays Math/IT module population | +| Production server provisioning | August 1, 2026 | Blocks production deployment | + +--- + +## 7. Master Timeline + +### 7.1 Gantt Chart + +```mermaid +gantt + title EnCoach UTAS Deployment -- Master Timeline + dateFormat YYYY-MM-DD + axisFormat %d %b + + section Wave1_Foundation + S1_Stabilize_Auth :s1, 2026-04-01, 11d + S2_Core_API_Integration :s2, 2026-04-12, 7d + S3_Exam_Engine_Integration :s3, 2026-04-19, 7d + UTAS_Staging_Demo :milestone, m1, 2026-04-24, 0d + S4_AI_Features_Grading :s4, 2026-04-26, 14d + S5_UAT_Round_1 :s5, 2026-05-10, 14d + S6_UAT_Round_2_Hardening :s6, 2026-05-24, 14d + S7_English_Exams_GO_LIVE :s7, 2026-06-07, 5d + English_Exams_LIVE :milestone, m2, 2026-06-12, 0d + + section Wave2_Expansion + S8_Math_IT_Backend :s8, 2026-05-17, 14d + S9_OpenEduCat_LMS_API :s9, 2026-05-31, 14d + S10_Math_IT_LMS_Frontend :s10, 2026-06-14, 14d + S11_UAT_Math_IT_LMS :s11, 2026-06-28, 14d + S12_Amendments :s12, 2026-07-12, 7d + S13_Math_IT_LMS_GO_LIVE :s13, 2026-07-19, 5d + Math_IT_LMS_LIVE :milestone, m3, 2026-07-24, 0d + + section Wave3_Integration + S14_Whitelabeling_SIS_Discovery :s14, 2026-07-01, 11d + S15_SIS_Integration :s15, 2026-07-12, 14d + S16_Humanisation :s16, 2026-07-26, 7d + S17_Integration_Testing :s17, 2026-08-02, 7d + S18_Final_UAT :s18, 2026-08-09, 7d + S19_Full_Platform_GO_LIVE :s19, 2026-08-16, 5d + Full_Platform_LIVE :milestone, m4, 2026-08-21, 0d + + section PostLaunch + Post_Launch_Support :pls, 2026-08-21, 30d +``` + +### 7.2 Key Milestones + +| # | Milestone | Date | Gate Criteria | +|---|-----------|------|---------------| +| M0 | Project Kickoff | April 1, 2026 | Team assembled, scope agreed, environments ready | +| M1 | UTAS Staging Demo | April 24, 2026 | English + Exams functional on staging, basic end-to-end flow | +| M2 | Wave 1 GO LIVE | June 12, 2026 | English Self Learning + Examinations in production, 2 UAT rounds passed | +| M3 | Wave 2 GO LIVE | July 24, 2026 | Math + IT + LMS + Ticketing in production, UAT passed | +| M4 | Full Platform GO LIVE | August 21, 2026 | All 9 modules in production, SIS integration validated, full UAT passed | +| M5 | Post-Launch Support Ends | September 21, 2026 | 30-day support period complete, handover documentation delivered | + +### 7.3 Critical Path + +The critical path runs through: + +1. **Wave 1 auth stabilization** (blocks all frontend work) +2. **Wave 1 API integration** (blocks UAT and all subsequent waves) +3. **UTAS SIS API documentation delivery** (blocks Wave 3 SIS development) +4. **OpenEduCat module compatibility** (blocks LMS development) + +Any delay on items 1-2 cascades through the entire timeline. Items 3-4 are external dependencies that must be tracked proactively. + +--- + +## 8. Testing and Rollout Strategy + +### 8.1 Testing Stages + +```mermaid +graph LR + Dev["Developer Testing
Unit + Integration
Continuous"] --> Staging["Staging
System Integration
Per Sprint"] + Staging --> UAT["UAT with UTAS
Acceptance
Per Wave"] + UAT --> Perf["Performance Testing
Load + Stress
Pre-Go-Live"] + Perf --> Security["Security Audit
OWASP Top 10
Pre-Go-Live"] + Security --> GoLive["GO LIVE
Production
Per Wave"] +``` + +| Stage | Who | When | Scope | +|-------|-----|------|-------| +| **Developer Testing** | EnCoach dev team | Continuous | Unit tests, API integration tests, manual smoke tests per feature | +| **Staging Deployment** | EnCoach dev team | End of each sprint | Full platform on staging server, regression testing, cross-module integration | +| **UAT (User Acceptance)** | UTAS staff + students | 2 rounds per wave | Guided test scenarios, real-world usage, feedback collection | +| **Performance Testing** | EnCoach dev team | Before each go-live | Concurrent user simulation (target: 200 simultaneous users), API response times (<2s for standard, <60s for AI grading) | +| **Security Audit** | EnCoach architect | Before production go-live | Authentication review, authorization checks, API input validation, OWASP Top 10 | + +### 8.2 UAT Process + +Each wave includes two UAT rounds: + +**UAT Round 1 (2 weeks):** +1. EnCoach deploys to staging environment +2. UTAS UAT team receives test accounts and test scenarios document +3. UTAS testers execute scenarios and log issues via shared tracking system +4. EnCoach triages issues daily (critical = same day, high = 2 days, medium = next sprint) +5. Weekly status call between EnCoach and UTAS + +**UAT Round 2 (2 weeks):** +1. All critical and high issues from Round 1 resolved +2. Re-test of failed scenarios +3. Exploratory testing by UTAS testers +4. Go-live readiness assessment +5. Sign-off by UTAS project lead + +### 8.3 Go-Live Checklist (Per Wave) + +| # | Item | Owner | +|---|------|-------| +| 1 | All critical and high UAT issues resolved | EnCoach | +| 2 | Performance tests pass (response time, concurrent users) | EnCoach | +| 3 | Security audit complete, no critical findings | EnCoach | +| 4 | Production environment provisioned and configured | EnCoach + UTAS IT | +| 5 | DNS / domain configured (if applicable) | UTAS IT | +| 6 | SSL certificate installed | EnCoach + UTAS IT | +| 7 | Database backup and restore procedure tested | EnCoach | +| 8 | Monitoring and alerting configured | EnCoach | +| 9 | Rollback procedure documented and tested | EnCoach | +| 10 | UTAS project lead sign-off | UTAS | + +### 8.4 Rollback Plan + +Each go-live deployment includes a documented rollback procedure: + +1. **Database snapshot** taken immediately before production deployment +2. **Previous container images** tagged and retained (minimum 3 previous versions) +3. **Rollback trigger criteria:** >5% error rate, >10s average response time, data integrity issue +4. **Rollback execution time:** <15 minutes (Docker image swap + database restore) +5. **Communication:** UTAS IT notified within 5 minutes of rollback decision + +### 8.5 Post-Launch Support + +| Period | Coverage | Scope | +|--------|----------|-------| +| Week 1-2 after each go-live | Daily monitoring, same-day critical fixes | Bug fixes, performance tuning, user support | +| Week 3-4 after each go-live | Standard monitoring, 2-day response for non-critical | Bug fixes, minor enhancements from feedback | +| After Full Platform GO LIVE | 30-day support period (Aug 21 -- Sep 21) | Full platform support, knowledge transfer to UTAS IT | + +--- + +## 9. Team and Responsibilities + +### 9.1 EnCoach Team + +| Role | Responsibilities | +|------|-----------------| +| **Solution Architect** | System architecture decisions. University integration design. SIS API mapping. Security and performance oversight. Code review. UTAS stakeholder communication. Sprint planning. | +| **Senior Developer (AI-assisted)** | Backend development (Odoo modules). AI service integration. Math/IT module AI prompts. SIS integration implementation. Database design. API development. | +| **Full-Stack Developer (AI-assisted)** | Frontend development (React). API integration. UI/UX implementation. Whitelabeling. LMS frontend wiring. Testing. | + +### 9.2 UTAS Responsibilities + +| Role | Responsibilities | +|------|-----------------| +| **Project Sponsor** | Budget approval. Strategic decisions. Escalation resolution. | +| **Project Lead** | Scope sign-off. UAT coordination. Go-live approval. Weekly status reviews. | +| **IT Department** | SIS API documentation and test environment. Production server provisioning. Network and DNS configuration. SSL certificates. | +| **Subject Matter Experts** | Math and IT course content review. Exam quality validation. Training content verification. | +| **UAT Testers (3-5 staff, 10-20 students)** | Execute test scenarios. Log issues and feedback. Re-test after fixes. | + +### 9.3 Communication Plan + +| Activity | Frequency | Participants | Medium | +|----------|-----------|-------------|--------| +| Sprint status report | Weekly (Friday) | EnCoach team → UTAS Project Lead | Email + document | +| Demo / walkthrough | Bi-weekly | EnCoach team + UTAS stakeholders | Video call + screen share | +| UAT feedback review | Daily during UAT | EnCoach team + UTAS testers | Shared issue tracker | +| Escalation call | As needed | Architect + UTAS Project Lead | Video call | +| Go-live readiness review | Before each go-live | All stakeholders | Meeting | + +### 9.4 Escalation Path + +``` +Level 1: Developer → Solution Architect (same day) +Level 2: Solution Architect → UTAS Project Lead (1 business day) +Level 3: UTAS Project Lead → UTAS Project Sponsor (2 business days) +``` + +--- + +## 10. Risk Register + +| # | Risk | Probability | Impact | Mitigation | +|---|------|------------|--------|------------| +| R1 | **UTAS SIS API documentation delayed or incomplete** | High | High | Begin SIS discovery in Wave 2 (early July). Prepare alternative sync methods (CSV import/export) as fallback. Weekly check-ins with UTAS IT from June onwards. | +| R2 | **Math AI question generation inaccuracy** | Medium | Medium | Invest in thorough prompt engineering with GPT-4o. Build validation test suite with known-correct Math problems. Include human review step in exam approval workflow. | +| R3 | **OpenEduCat incompatibility with Odoo 19** | Medium | High | Test OpenEduCat installation early (Sprint S9). Identify compatibility issues before committing to LMS frontend work. Fallback: build minimal LMS models within existing Odoo modules. | +| R4 | **Frontend API integration slower than estimated** | Medium | Medium | Prioritize critical paths (auth, core pages) first. Use API contract testing to parallelize frontend and backend work. Leverage AI coding assistants to accelerate repetitive wiring. | +| R5 | **Team bandwidth constraints** | Medium | High | AI-assisted development (both developers use AI tools) effectively increases output by 1.5-2x. Strict scope management -- no feature creep. Clear sprint goals with daily standups. | +| R6 | **ELAI video generation latency for Humanisation** | Low | Medium | Pre-generate common tutoring videos. Cache frequently requested content. Set user expectations (1-3 min generation time). Consider alternative: pre-recorded avatar videos for standard content. | +| R7 | **Production infrastructure not ready on time** | Low | High | Request production server provisioning by August 1 (3 weeks before go-live). Test deployment procedure on staging first. Have cloud-based fallback plan. | +| R8 | **UTAS UAT testers unavailable or insufficient feedback** | Medium | Medium | Provide detailed test scenarios with step-by-step instructions. Offer guided UAT sessions. Establish minimum UAT participation requirements in the scope agreement. | + +--- + +## 11. Assumptions and Prerequisites + +### 11.1 Assumptions + +| # | Assumption | Impact if Invalid | +|---|-----------|-------------------| +| A1 | UTAS provides 3-5 staff and 10-20 students for UAT testing | Delays UAT; reduces quality assurance | +| A2 | OpenEduCat modules are compatible with Odoo 19 | Requires building custom LMS models; adds 3-4 weeks | +| A3 | UTAS SIS exposes REST APIs for enrollment, grades, and attendance | Requires alternative integration (CSV, database sync); adds 2-3 weeks | +| A4 | Math and IT course content is either provided by UTAS or generated by AI | If neither, course content creation becomes a separate workstream | +| A5 | The platform will be accessed via web browsers only (no mobile app) | Mobile app would be a separate project | +| A6 | Institutional licensing model (no per-student payment processing) | Payment gateway integration would add 2-3 weeks | +| A7 | Single UTAS deployment (not multi-university / multi-tenant initially) | Multi-tenant support would add architectural complexity | +| A8 | Internet connectivity at UTAS is sufficient for AI cloud services (OpenAI, ELAI, AWS Polly) | On-premise AI deployment would be a separate project | + +### 11.2 Prerequisites (with Deadlines) + +| # | Prerequisite | Owner | Deadline | Status | +|---|-------------|-------|----------|--------| +| P1 | Scope agreement signed | UTAS + EnCoach | March 31, 2026 | Pending | +| P2 | OpenEduCat modules provided | EnCoach / UTAS | May 15, 2026 | Pending | +| P3 | UTAS brand assets delivered | UTAS | June 15, 2026 | Pending | +| P4 | SIS API documentation provided | UTAS IT | June 15, 2026 | Pending | +| P5 | SIS test environment access granted | UTAS IT | July 1, 2026 | Pending | +| P6 | UAT test team identified | UTAS | May 1, 2026 | Pending | +| P7 | Production server provisioned | UTAS IT / EnCoach | August 1, 2026 | Pending | +| P8 | Math/IT course content available | UTAS SMEs | May 15, 2026 | Pending | + +--- + +## Appendix A: Module-to-API Mapping (Existing Backend Endpoints) + +The following 70+ API endpoints are already built and deployed in the Odoo 19 backend. These form the foundation for Wave 1 frontend integration. + +| Category | Endpoints | Count | +|----------|-----------|-------| +| Authentication | `/api/login`, `/api/logout`, `/api/reset`, `/api/reset/sendVerification` | 4 | +| Users | `/api/user`, `/api/users/update`, `/api/users/list`, `/api/users/` | 4 | +| Entities & Roles | `/api/entities`, `/api/roles`, `/api/permissions` | 7 | +| Exams | `/api/exam`, `/api/exam/`, `/api/exam//`, `/api/exam/avatars` | 7 | +| AI Generation | `/api/exam/reading/*`, `/api/exam/listening/*`, `/api/exam/writing/*`, `/api/exam/speaking/*`, `/api/exam/level/generate` | 8 | +| Media | `/api/exam/listening/media`, `/api/exam/listening/transcribe`, `/api/exam/speaking/media`, `/api/transcribe` | 6 | +| Evaluations & Grading | `/api/evaluate/writing`, `/api/evaluate/speaking`, `/api/evaluate/interactiveSpeaking`, `/api/grading/multiple` | 6 | +| Classrooms | `/api/groups`, `/api/groups/` | 3 | +| Assignments | `/api/assignments`, `/api/assignments/`, `/api/assignments//start`, release, archive | 8 | +| Sessions & Stats | `/api/sessions`, `/api/stats`, `/api/statistical` | 5 | +| Training | `/api/training`, `/api/training/`, `/api/training/tips`, `/api/training/walkthrough` | 4 | +| Subscriptions | `/api/packages`, `/api/stripe`, `/api/paypal`, `/api/paymob` + webhooks | 7 | +| Registration | `/api/register`, `/api/code/`, `/api/batch_users`, `/api/make_user` | 4 | +| Tickets | `/api/tickets`, `/api/tickets/` | 3 | +| Storage | `/api/storage`, `/api/storage/delete` | 2 | +| Approvals | `/api/approval-workflows`, `/api/approval-workflows/` | 3 | +| **Total** | | **~81** | + +--- + +## Appendix B: AI Service Configuration Summary + +| Service | Model | Key Config | Usage | +|---------|-------|-----------|-------| +| OpenAI GPT | gpt-4o (primary), gpt-3.5-turbo (secondary) | Temperature: 0.1 (grading), 0.7 (generation), 0.2 (summaries). Max tokens: 4,097. JSON response format. | Exam generation, grading, evaluation, training tips | +| Whisper | base (local, ~1GB) | 4 instances, round-robin, 16kHz mono, 30s chunks with overlap | Speaking transcription, audio-to-text | +| AWS Polly | Neural engine | 11 voices, MP3 output, 3,000 char chunks | Listening exam audio generation | +| ELAI | 7 avatars | ElevenLabs + Azure voices, fade_in animation | Speaking exam video, virtual tutoring | +| GPTZero | v2/predict/text | Per-sentence analysis, confidence scoring | Writing AI detection | +| FAISS | IndexFlatL2 + all-MiniLM-L6-v2 | Top-5 results, 7 category indices, 80 training tips | Personalized training recommendations | + +--- + +## Appendix C: Frontend Page Inventory (New React Application) + +| Portal | Pages | Key Features | +|--------|-------|-------------| +| **Student** | Dashboard, Courses, Course Detail, Assignments, Grades, Attendance, Timetable, Profile | 8 pages | +| **Teacher** | Dashboard, Courses, Course Builder, Course Edit, Assignments, Assignment Detail, Attendance, Students, Timetable, Profile | 10 pages | +| **Admin (LMS)** | Dashboard, Courses, Students, Teachers, Batches, Batch Detail, Timetable, Reports, Settings, Profile | 10 pages | +| **Admin (Platform)** | Platform Dashboard, Assignments, Exams List, Exam Structures, Rubrics, Generation, Approval Workflows, Users, Entities, Classrooms, Student Performance, Stats Corporate, Record, Vocabulary, Grammar, Payment Record, Tickets, Settings, Exam | 19 pages | +| **Auth** | Login, Register, Forgot Password | 3 pages | +| **Total** | | **~50+ pages** | + +--- + +*Document prepared by EnCoach Engineering Team. For questions or clarifications, contact the Solution Architect.* diff --git a/docs/UTAS_SYSTEM_SCOPE.md b/docs/UTAS_SYSTEM_SCOPE.md new file mode 100644 index 0000000..30f6189 --- /dev/null +++ b/docs/UTAS_SYSTEM_SCOPE.md @@ -0,0 +1,86 @@ +# EnCoach -- UTAS System Scope Definition + +**Date:** March 16, 2026 +**Project:** EnCoach University Deployment for UTAS + +--- + +## Core Modules + +### 1. Learning Management System (LMS) + +| Item | Detail | +|------|--------| +| **Engine** | OpenEduCat (Odoo 19 native modules) | +| **Frontend** | React 18 SPA -- student, teacher, and admin portals (50+ pages built) | +| **Capabilities** | Course catalog and enrollment, batch/cohort management, timetable scheduling, attendance tracking, gradebook, academic reporting | +| **Integration** | REST API bridge between OpenEduCat models and React frontend | +| **Subjects** | English Self Learning, Mathematics, Information Technology (extensible) | + +### 2. Exam Portal + +| Item | Detail | +|------|--------| +| **Exam Types** | Reading, Listening, Writing, Speaking, Level Test, Math, IT | +| **AI Generation** | GPT-4o generates exam content per subject and difficulty level | +| **AI Grading** | Automated grading for writing (GPT-4o + IELTS rubric), speaking (Whisper STT + GPT-4o), MCQ, short answer, numerical | +| **AI Detection** | GPTZero flags AI-generated student submissions | +| **Media** | AWS Polly TTS for listening audio, ELAI avatars for speaking video | +| **Workflow** | Exam creation, review, approval, assignment, timed sessions, grading, results | +| **Roles** | Admin creates/approves, teacher assigns, student takes, system grades | + +### 3. Student Onboarding + +| Item | Detail | +|------|--------| +| **Registration** | Self-registration or bulk import (CSV/batch) by admin | +| **SIS Sync** | Automatic student provisioning from UTAS Student Information System | +| **Enrollment** | Assignment to courses, batches, and classrooms upon registration | +| **Verification** | Email verification, registration code validation | +| **Roles** | Student, teacher, admin -- role-based access from first login | + +### 4. Knowledge Base + +| Item | Detail | +|------|--------| +| **Training Tips** | 80+ categorized tips (reading, writing, strategy, vocabulary, grammar) with FAISS semantic search | +| **Personalization** | After each exam, GPT analyzes performance and retrieves relevant tips via RAG (Retrieval-Augmented Generation) | +| **Walkthroughs** | Per-module guided learning paths | +| **AI Tutoring** | ELAI avatar virtual tutors provide video-based explanations and guidance (Humanisation) | +| **Content Scope** | English/IELTS (existing), Math and IT (to be developed) | + +### 5. Helpdesk System + +| Item | Detail | +|------|--------| +| **Ticketing** | Students and staff create support tickets with category, priority, and description | +| **Workflow** | Creation, assignment, status tracking (open, in-progress, resolved, closed) | +| **Roles** | Students/teachers submit; admin staff categorize, assign, and resolve | +| **Backend** | `encoach_ticket` Odoo module with full CRUD API (`/api/tickets`) | + +### 6. API Integration with SIS + +| Item | Detail | +|------|--------| +| **Direction** | Bidirectional: UTAS SIS <--> EnCoach | +| **Inbound (SIS to EnCoach)** | Student enrollment data, course catalog mapping, student status changes | +| **Outbound (EnCoach to SIS)** | Exam grades, attendance records, course completion status | +| **Method** | REST API (preferred) or CSV import/export (fallback) | +| **Frequency** | Real-time webhook (if available) or scheduled sync (daily batch) | +| **Prerequisite** | UTAS provides SIS API documentation, test environment, and technical contact | + +--- + +## Technology Stack Summary + +| Layer | Technology | +|-------|-----------| +| Frontend | React 18, TypeScript, Vite, Tailwind CSS, shadcn/ui | +| Backend | Odoo 19, Python 3.11, PostgreSQL 16 | +| LMS | OpenEduCat (Odoo modules) | +| AI | OpenAI GPT-4o, Whisper, AWS Polly, ELAI, GPTZero, FAISS | +| Deployment | Docker Compose, Nginx | + +--- + +*EnCoach Engineering -- UTAS Deployment* diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 0000000..40f72cc --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,26 @@ +import js from "@eslint/js"; +import globals from "globals"; +import reactHooks from "eslint-plugin-react-hooks"; +import reactRefresh from "eslint-plugin-react-refresh"; +import tseslint from "typescript-eslint"; + +export default tseslint.config( + { ignores: ["dist"] }, + { + extends: [js.configs.recommended, ...tseslint.configs.recommended], + files: ["**/*.{ts,tsx}"], + languageOptions: { + ecmaVersion: 2020, + globals: globals.browser, + }, + plugins: { + "react-hooks": reactHooks, + "react-refresh": reactRefresh, + }, + rules: { + ...reactHooks.configs.recommended.rules, + "react-refresh/only-export-components": ["warn", { allowConstantExport: true }], + "@typescript-eslint/no-unused-vars": "off", + }, + }, +); diff --git a/index.html b/index.html new file mode 100644 index 0000000..c54f102 --- /dev/null +++ b/index.html @@ -0,0 +1,20 @@ + + + + + + EnCoach — IELTS & English Learning Platform + + + + + + + + + + +
+ + + diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..341879b --- /dev/null +++ b/package-lock.json @@ -0,0 +1,8215 @@ +{ + "name": "vite_react_shadcn_ts", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "vite_react_shadcn_ts", + "version": "0.0.0", + "dependencies": { + "@hookform/resolvers": "^3.10.0", + "@radix-ui/react-accordion": "^1.2.11", + "@radix-ui/react-alert-dialog": "^1.1.14", + "@radix-ui/react-aspect-ratio": "^1.1.7", + "@radix-ui/react-avatar": "^1.1.10", + "@radix-ui/react-checkbox": "^1.3.2", + "@radix-ui/react-collapsible": "^1.1.11", + "@radix-ui/react-context-menu": "^2.2.15", + "@radix-ui/react-dialog": "^1.1.14", + "@radix-ui/react-dropdown-menu": "^2.1.15", + "@radix-ui/react-hover-card": "^1.1.14", + "@radix-ui/react-label": "^2.1.7", + "@radix-ui/react-menubar": "^1.1.15", + "@radix-ui/react-navigation-menu": "^1.2.13", + "@radix-ui/react-popover": "^1.1.14", + "@radix-ui/react-progress": "^1.1.7", + "@radix-ui/react-radio-group": "^1.3.7", + "@radix-ui/react-scroll-area": "^1.2.9", + "@radix-ui/react-select": "^2.2.5", + "@radix-ui/react-separator": "^1.1.7", + "@radix-ui/react-slider": "^1.3.5", + "@radix-ui/react-slot": "^1.2.3", + "@radix-ui/react-switch": "^1.2.5", + "@radix-ui/react-tabs": "^1.1.12", + "@radix-ui/react-toast": "^1.2.14", + "@radix-ui/react-toggle": "^1.1.9", + "@radix-ui/react-toggle-group": "^1.1.10", + "@radix-ui/react-tooltip": "^1.2.7", + "@tanstack/react-query": "^5.83.0", + "class-variance-authority": "^0.7.1", + "clsx": "^2.1.1", + "cmdk": "^1.1.1", + "date-fns": "^3.6.0", + "embla-carousel-react": "^8.6.0", + "input-otp": "^1.4.2", + "lucide-react": "^0.462.0", + "next-themes": "^0.3.0", + "react": "^18.3.1", + "react-day-picker": "^8.10.1", + "react-dom": "^18.3.1", + "react-hook-form": "^7.61.1", + "react-resizable-panels": "^2.1.9", + "react-router-dom": "^6.30.1", + "recharts": "^2.15.4", + "sonner": "^1.7.4", + "tailwind-merge": "^2.6.0", + "tailwindcss-animate": "^1.0.7", + "vaul": "^0.9.9", + "zod": "^3.25.76" + }, + "devDependencies": { + "@eslint/js": "^9.32.0", + "@tailwindcss/typography": "^0.5.16", + "@testing-library/jest-dom": "^6.6.0", + "@testing-library/react": "^16.0.0", + "@types/node": "^22.16.5", + "@types/react": "^18.3.23", + "@types/react-dom": "^18.3.7", + "@vitejs/plugin-react-swc": "^3.11.0", + "autoprefixer": "^10.4.21", + "eslint": "^9.32.0", + "eslint-plugin-react-hooks": "^5.2.0", + "eslint-plugin-react-refresh": "^0.4.20", + "globals": "^15.15.0", + "jsdom": "^20.0.3", + "lovable-tagger": "^1.1.13", + "postcss": "^8.5.6", + "tailwindcss": "^3.4.17", + "typescript": "^5.8.3", + "typescript-eslint": "^8.38.0", + "vite": "^5.4.19", + "vitest": "^3.2.4" + } + }, + "node_modules/@adobe/css-tools": { + "version": "4.4.4", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.4.4.tgz", + "integrity": "sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz", + "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.28.5", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.28.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.2.tgz", + "integrity": "sha512-KHp2IflsnGywDjBWDkR9iEqiWSpc8GIi0lgTT3mOElT0PP1tG26P4tmFI2YvAdzgq9RGyoHZQEIEdZy6Ec5xCA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.0.tgz", + "integrity": "sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.0.tgz", + "integrity": "sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", + "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.0.tgz", + "integrity": "sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.6", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.3.0.tgz", + "integrity": "sha512-ViuymvFmcJi04qdZeDc2whTHryouGcDlaxPqarTD0ZE10ISpxGUVZGZDx4w01upyIynL3iu6IXH2bS1NhclQMw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.1.tgz", + "integrity": "sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", + "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "9.32.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.32.0.tgz", + "integrity": "sha512-BBpRFZK3eX6uMLKz8WxFOBIFFcGFJ/g8XuwjTHCqHROSIsopI+ddn/d5Cfh36+7+e5edVS8dbSHnBNhrLEX0zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", + "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.4.tgz", + "integrity": "sha512-Ul5l+lHEcw3L5+k8POx6r74mxEYKG5kOb6Xpy2gCRW6zweT6TEhAf8vhxGgjhqrd/VO/Dirhsb+1hNpD1ue9hw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.15.1", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@floating-ui/core": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.2.tgz", + "integrity": "sha512-wNB5ooIKHQc+Kui96jE/n69rHFWAVoxn5CAzL1Xdd8FG03cgY3MLO+GF9U3W737fYDSgPWA6MReKhBQBop6Pcw==", + "license": "MIT", + "dependencies": { + "@floating-ui/utils": "^0.2.10" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.7.2.tgz", + "integrity": "sha512-7cfaOQuCS27HD7DX+6ib2OrnW+b4ZBwDNnCcT0uTyidcmyWb03FnQqJybDBoCnpdxwBSfA94UAYlRCt7mV+TbA==", + "license": "MIT", + "dependencies": { + "@floating-ui/core": "^1.7.2", + "@floating-ui/utils": "^0.2.10" + } + }, + "node_modules/@floating-ui/react-dom": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.4.tgz", + "integrity": "sha512-JbbpPhp38UmXDDAu60RJmbeme37Jbgsm7NrHGgzYYFKmblzRUh6Pa641dII6LsjwF4XlScDrde2UAzDo/b9KPw==", + "license": "MIT", + "dependencies": { + "@floating-ui/dom": "^1.7.2" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.10.tgz", + "integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==", + "license": "MIT" + }, + "node_modules/@hookform/resolvers": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/@hookform/resolvers/-/resolvers-3.10.0.tgz", + "integrity": "sha512-79Dv+3mDF7i+2ajj7SkypSKHhl1cbln1OGavqrsF7p6mbUv11xpqpacPsGDCTRvCSjEEIez2ef1NveSVL3b0Ag==", + "license": "MIT", + "peerDependencies": { + "react-hook-form": "^7.0.0" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.6", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", + "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.3.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", + "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@radix-ui/number": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.1.1.tgz", + "integrity": "sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==", + "license": "MIT" + }, + "node_modules/@radix-ui/primitive": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.2.tgz", + "integrity": "sha512-XnbHrrprsNqZKQhStrSwgRUQzoCI1glLzdw79xiZPoofhGICeZRSQ3dIxAKH1gb3OHfNf4d6f+vAv3kil2eggA==", + "license": "MIT" + }, + "node_modules/@radix-ui/react-accordion": { + "version": "1.2.11", + "resolved": "https://registry.npmjs.org/@radix-ui/react-accordion/-/react-accordion-1.2.11.tgz", + "integrity": "sha512-l3W5D54emV2ues7jjeG1xcyN7S3jnK3zE2zHqgn0CmMsy9lNJwmgcrmaxS+7ipw15FAivzKNzH3d5EcGoFKw0A==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-collapsible": "1.1.11", + "@radix-ui/react-collection": "1.1.7", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-direction": "1.1.1", + "@radix-ui/react-id": "1.1.1", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-use-controllable-state": "1.2.2" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-alert-dialog": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/@radix-ui/react-alert-dialog/-/react-alert-dialog-1.1.14.tgz", + "integrity": "sha512-IOZfZ3nPvN6lXpJTBCunFQPRSvK8MDgSc1FB85xnIpUKOw9en0dJj8JmCAxV7BiZdtYlUpmrQjoTFkVYtdoWzQ==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-dialog": "1.1.14", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-slot": "1.2.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-arrow": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.1.7.tgz", + "integrity": "sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-primitive": "2.1.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-aspect-ratio": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@radix-ui/react-aspect-ratio/-/react-aspect-ratio-1.1.7.tgz", + "integrity": "sha512-Yq6lvO9HQyPwev1onK1daHCHqXVLzPhSVjmsNjCa2Zcxy2f7uJD2itDtxknv6FzAKCwD1qQkeVDmX/cev13n/g==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-primitive": "2.1.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-avatar": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/@radix-ui/react-avatar/-/react-avatar-1.1.10.tgz", + "integrity": "sha512-V8piFfWapM5OmNCXTzVQY+E1rDa53zY+MQ4Y7356v4fFz6vqCyUtIz2rUD44ZEdwg78/jKmMJHj07+C/Z/rcog==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-use-callback-ref": "1.1.1", + "@radix-ui/react-use-is-hydrated": "0.1.0", + "@radix-ui/react-use-layout-effect": "1.1.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-checkbox": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-checkbox/-/react-checkbox-1.3.2.tgz", + "integrity": "sha512-yd+dI56KZqawxKZrJ31eENUwqc1QSqg4OZ15rybGjF2ZNwMO+wCyHzAVLRp9qoYJf7kYy0YpZ2b0JCzJ42HZpA==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-presence": "1.1.4", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-use-controllable-state": "1.2.2", + "@radix-ui/react-use-previous": "1.1.1", + "@radix-ui/react-use-size": "1.1.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-collapsible": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/@radix-ui/react-collapsible/-/react-collapsible-1.1.11.tgz", + "integrity": "sha512-2qrRsVGSCYasSz1RFOorXwl0H7g7J1frQtgpQgYrt+MOidtPAINHn9CPovQXb83r8ahapdx3Tu0fa/pdFFSdPg==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-id": "1.1.1", + "@radix-ui/react-presence": "1.1.4", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-use-controllable-state": "1.2.2", + "@radix-ui/react-use-layout-effect": "1.1.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-collection": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.1.7.tgz", + "integrity": "sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-slot": "1.2.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-compose-refs": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz", + "integrity": "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-context": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.2.tgz", + "integrity": "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-context-menu": { + "version": "2.2.15", + "resolved": "https://registry.npmjs.org/@radix-ui/react-context-menu/-/react-context-menu-2.2.15.tgz", + "integrity": "sha512-UsQUMjcYTsBjTSXw0P3GO0werEQvUY2plgRQuKoCTtkNr45q1DiL51j4m7gxhABzZ0BadoXNsIbg7F3KwiUBbw==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-menu": "2.1.15", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-use-callback-ref": "1.1.1", + "@radix-ui/react-use-controllable-state": "1.2.2" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-dialog": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.1.14.tgz", + "integrity": "sha512-+CpweKjqpzTmwRwcYECQcNYbI8V9VSQt0SNFKeEBLgfucbsLssU6Ppq7wUdNXEGb573bMjFhVjKVll8rmV6zMw==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-dismissable-layer": "1.1.10", + "@radix-ui/react-focus-guards": "1.1.2", + "@radix-ui/react-focus-scope": "1.1.7", + "@radix-ui/react-id": "1.1.1", + "@radix-ui/react-portal": "1.1.9", + "@radix-ui/react-presence": "1.1.4", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-slot": "1.2.3", + "@radix-ui/react-use-controllable-state": "1.2.2", + "aria-hidden": "^1.2.4", + "react-remove-scroll": "^2.6.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-direction": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.1.1.tgz", + "integrity": "sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-dismissable-layer": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.10.tgz", + "integrity": "sha512-IM1zzRV4W3HtVgftdQiiOmA0AdJlCtMLe00FXaHwgt3rAnNsIyDqshvkIW3hj/iu5hu8ERP7KIYki6NkqDxAwQ==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-use-callback-ref": "1.1.1", + "@radix-ui/react-use-escape-keydown": "1.1.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-dropdown-menu": { + "version": "2.1.15", + "resolved": "https://registry.npmjs.org/@radix-ui/react-dropdown-menu/-/react-dropdown-menu-2.1.15.tgz", + "integrity": "sha512-mIBnOjgwo9AH3FyKaSWoSu/dYj6VdhJ7frEPiGTeXCdUFHjl9h3mFh2wwhEtINOmYXWhdpf1rY2minFsmaNgVQ==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-id": "1.1.1", + "@radix-ui/react-menu": "2.1.15", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-use-controllable-state": "1.2.2" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-focus-guards": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.1.2.tgz", + "integrity": "sha512-fyjAACV62oPV925xFCrH8DR5xWhg9KYtJT4s3u54jxp+L/hbpTY2kIeEFFbFe+a/HCE94zGQMZLIpVTPVZDhaA==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-focus-scope": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.1.7.tgz", + "integrity": "sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-use-callback-ref": "1.1.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-hover-card": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/@radix-ui/react-hover-card/-/react-hover-card-1.1.14.tgz", + "integrity": "sha512-CPYZ24Mhirm+g6D8jArmLzjYu4Eyg3TTUHswR26QgzXBHBe64BO/RHOJKzmF/Dxb4y4f9PKyJdwm/O/AhNkb+Q==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-dismissable-layer": "1.1.10", + "@radix-ui/react-popper": "1.2.7", + "@radix-ui/react-portal": "1.1.9", + "@radix-ui/react-presence": "1.1.4", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-use-controllable-state": "1.2.2" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-id": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.1.tgz", + "integrity": "sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-use-layout-effect": "1.1.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-label": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@radix-ui/react-label/-/react-label-2.1.7.tgz", + "integrity": "sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-primitive": "2.1.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-menu": { + "version": "2.1.15", + "resolved": "https://registry.npmjs.org/@radix-ui/react-menu/-/react-menu-2.1.15.tgz", + "integrity": "sha512-tVlmA3Vb9n8SZSd+YSbuFR66l87Wiy4du+YE+0hzKQEANA+7cWKH1WgqcEX4pXqxUFQKrWQGHdvEfw00TjFiew==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-collection": "1.1.7", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-direction": "1.1.1", + "@radix-ui/react-dismissable-layer": "1.1.10", + "@radix-ui/react-focus-guards": "1.1.2", + "@radix-ui/react-focus-scope": "1.1.7", + "@radix-ui/react-id": "1.1.1", + "@radix-ui/react-popper": "1.2.7", + "@radix-ui/react-portal": "1.1.9", + "@radix-ui/react-presence": "1.1.4", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-roving-focus": "1.1.10", + "@radix-ui/react-slot": "1.2.3", + "@radix-ui/react-use-callback-ref": "1.1.1", + "aria-hidden": "^1.2.4", + "react-remove-scroll": "^2.6.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-menubar": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/@radix-ui/react-menubar/-/react-menubar-1.1.15.tgz", + "integrity": "sha512-Z71C7LGD+YDYo3TV81paUs8f3Zbmkvg6VLRQpKYfzioOE6n7fOhA3ApK/V/2Odolxjoc4ENk8AYCjohCNayd5A==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-collection": "1.1.7", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-direction": "1.1.1", + "@radix-ui/react-id": "1.1.1", + "@radix-ui/react-menu": "2.1.15", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-roving-focus": "1.1.10", + "@radix-ui/react-use-controllable-state": "1.2.2" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-navigation-menu": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/@radix-ui/react-navigation-menu/-/react-navigation-menu-1.2.13.tgz", + "integrity": "sha512-WG8wWfDiJlSF5hELjwfjSGOXcBR/ZMhBFCGYe8vERpC39CQYZeq1PQ2kaYHdye3V95d06H89KGMsVCIE4LWo3g==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-collection": "1.1.7", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-direction": "1.1.1", + "@radix-ui/react-dismissable-layer": "1.1.10", + "@radix-ui/react-id": "1.1.1", + "@radix-ui/react-presence": "1.1.4", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-use-callback-ref": "1.1.1", + "@radix-ui/react-use-controllable-state": "1.2.2", + "@radix-ui/react-use-layout-effect": "1.1.1", + "@radix-ui/react-use-previous": "1.1.1", + "@radix-ui/react-visually-hidden": "1.2.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-popover": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/@radix-ui/react-popover/-/react-popover-1.1.14.tgz", + "integrity": "sha512-ODz16+1iIbGUfFEfKx2HTPKizg2MN39uIOV8MXeHnmdd3i/N9Wt7vU46wbHsqA0xoaQyXVcs0KIlBdOA2Y95bw==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-dismissable-layer": "1.1.10", + "@radix-ui/react-focus-guards": "1.1.2", + "@radix-ui/react-focus-scope": "1.1.7", + "@radix-ui/react-id": "1.1.1", + "@radix-ui/react-popper": "1.2.7", + "@radix-ui/react-portal": "1.1.9", + "@radix-ui/react-presence": "1.1.4", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-slot": "1.2.3", + "@radix-ui/react-use-controllable-state": "1.2.2", + "aria-hidden": "^1.2.4", + "react-remove-scroll": "^2.6.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-popper": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.2.7.tgz", + "integrity": "sha512-IUFAccz1JyKcf/RjB552PlWwxjeCJB8/4KxT7EhBHOJM+mN7LdW+B3kacJXILm32xawcMMjb2i0cIZpo+f9kiQ==", + "license": "MIT", + "dependencies": { + "@floating-ui/react-dom": "^2.0.0", + "@radix-ui/react-arrow": "1.1.7", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-use-callback-ref": "1.1.1", + "@radix-ui/react-use-layout-effect": "1.1.1", + "@radix-ui/react-use-rect": "1.1.1", + "@radix-ui/react-use-size": "1.1.1", + "@radix-ui/rect": "1.1.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-portal": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.1.9.tgz", + "integrity": "sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-use-layout-effect": "1.1.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-presence": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.1.4.tgz", + "integrity": "sha512-ueDqRbdc4/bkaQT3GIpLQssRlFgWaL/U2z/S31qRwwLWoxHLgry3SIfCwhxeQNbirEUXFa+lq3RL3oBYXtcmIA==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-use-layout-effect": "1.1.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-primitive": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz", + "integrity": "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-slot": "1.2.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-progress": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@radix-ui/react-progress/-/react-progress-1.1.7.tgz", + "integrity": "sha512-vPdg/tF6YC/ynuBIJlk1mm7Le0VgW6ub6J2UWnTQ7/D23KXcPI1qy+0vBkgKgd38RCMJavBXpB83HPNFMTb0Fg==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-primitive": "2.1.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-radio-group": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/@radix-ui/react-radio-group/-/react-radio-group-1.3.7.tgz", + "integrity": "sha512-9w5XhD0KPOrm92OTTE0SysH3sYzHsSTHNvZgUBo/VZ80VdYyB5RneDbc0dKpURS24IxkoFRu/hI0i4XyfFwY6g==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-direction": "1.1.1", + "@radix-ui/react-presence": "1.1.4", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-roving-focus": "1.1.10", + "@radix-ui/react-use-controllable-state": "1.2.2", + "@radix-ui/react-use-previous": "1.1.1", + "@radix-ui/react-use-size": "1.1.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-roving-focus": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/@radix-ui/react-roving-focus/-/react-roving-focus-1.1.10.tgz", + "integrity": "sha512-dT9aOXUen9JSsxnMPv/0VqySQf5eDQ6LCk5Sw28kamz8wSOW2bJdlX2Bg5VUIIcV+6XlHpWTIuTPCf/UNIyq8Q==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-collection": "1.1.7", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-direction": "1.1.1", + "@radix-ui/react-id": "1.1.1", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-use-callback-ref": "1.1.1", + "@radix-ui/react-use-controllable-state": "1.2.2" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-scroll-area": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/@radix-ui/react-scroll-area/-/react-scroll-area-1.2.9.tgz", + "integrity": "sha512-YSjEfBXnhUELsO2VzjdtYYD4CfQjvao+lhhrX5XsHD7/cyUNzljF1FHEbgTPN7LH2MClfwRMIsYlqTYpKTTe2A==", + "license": "MIT", + "dependencies": { + "@radix-ui/number": "1.1.1", + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-direction": "1.1.1", + "@radix-ui/react-presence": "1.1.4", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-use-callback-ref": "1.1.1", + "@radix-ui/react-use-layout-effect": "1.1.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-select": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/@radix-ui/react-select/-/react-select-2.2.5.tgz", + "integrity": "sha512-HnMTdXEVuuyzx63ME0ut4+sEMYW6oouHWNGUZc7ddvUWIcfCva/AMoqEW/3wnEllriMWBa0RHspCYnfCWJQYmA==", + "license": "MIT", + "dependencies": { + "@radix-ui/number": "1.1.1", + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-collection": "1.1.7", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-direction": "1.1.1", + "@radix-ui/react-dismissable-layer": "1.1.10", + "@radix-ui/react-focus-guards": "1.1.2", + "@radix-ui/react-focus-scope": "1.1.7", + "@radix-ui/react-id": "1.1.1", + "@radix-ui/react-popper": "1.2.7", + "@radix-ui/react-portal": "1.1.9", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-slot": "1.2.3", + "@radix-ui/react-use-callback-ref": "1.1.1", + "@radix-ui/react-use-controllable-state": "1.2.2", + "@radix-ui/react-use-layout-effect": "1.1.1", + "@radix-ui/react-use-previous": "1.1.1", + "@radix-ui/react-visually-hidden": "1.2.3", + "aria-hidden": "^1.2.4", + "react-remove-scroll": "^2.6.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-separator": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@radix-ui/react-separator/-/react-separator-1.1.7.tgz", + "integrity": "sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-primitive": "2.1.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-slider": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@radix-ui/react-slider/-/react-slider-1.3.5.tgz", + "integrity": "sha512-rkfe2pU2NBAYfGaxa3Mqosi7VZEWX5CxKaanRv0vZd4Zhl9fvQrg0VM93dv3xGLGfrHuoTRF3JXH8nb9g+B3fw==", + "license": "MIT", + "dependencies": { + "@radix-ui/number": "1.1.1", + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-collection": "1.1.7", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-direction": "1.1.1", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-use-controllable-state": "1.2.2", + "@radix-ui/react-use-layout-effect": "1.1.1", + "@radix-ui/react-use-previous": "1.1.1", + "@radix-ui/react-use-size": "1.1.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-slot": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz", + "integrity": "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-compose-refs": "1.1.2" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-switch": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@radix-ui/react-switch/-/react-switch-1.2.5.tgz", + "integrity": "sha512-5ijLkak6ZMylXsaImpZ8u4Rlf5grRmoc0p0QeX9VJtlrM4f5m3nCTX8tWga/zOA8PZYIR/t0p2Mnvd7InrJ6yQ==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-use-controllable-state": "1.2.2", + "@radix-ui/react-use-previous": "1.1.1", + "@radix-ui/react-use-size": "1.1.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-tabs": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/@radix-ui/react-tabs/-/react-tabs-1.1.12.tgz", + "integrity": "sha512-GTVAlRVrQrSw3cEARM0nAx73ixrWDPNZAruETn3oHCNP6SbZ/hNxdxp+u7VkIEv3/sFoLq1PfcHrl7Pnp0CDpw==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-direction": "1.1.1", + "@radix-ui/react-id": "1.1.1", + "@radix-ui/react-presence": "1.1.4", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-roving-focus": "1.1.10", + "@radix-ui/react-use-controllable-state": "1.2.2" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-toast": { + "version": "1.2.14", + "resolved": "https://registry.npmjs.org/@radix-ui/react-toast/-/react-toast-1.2.14.tgz", + "integrity": "sha512-nAP5FBxBJGQ/YfUB+r+O6USFVkWq3gAInkxyEnmvEV5jtSbfDhfa4hwX8CraCnbjMLsE7XSf/K75l9xXY7joWg==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-collection": "1.1.7", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-dismissable-layer": "1.1.10", + "@radix-ui/react-portal": "1.1.9", + "@radix-ui/react-presence": "1.1.4", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-use-callback-ref": "1.1.1", + "@radix-ui/react-use-controllable-state": "1.2.2", + "@radix-ui/react-use-layout-effect": "1.1.1", + "@radix-ui/react-visually-hidden": "1.2.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-toggle": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle/-/react-toggle-1.1.9.tgz", + "integrity": "sha512-ZoFkBBz9zv9GWer7wIjvdRxmh2wyc2oKWw6C6CseWd6/yq1DK/l5lJ+wnsmFwJZbBYqr02mrf8A2q/CVCuM3ZA==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-use-controllable-state": "1.2.2" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-toggle-group": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle-group/-/react-toggle-group-1.1.10.tgz", + "integrity": "sha512-kiU694Km3WFLTC75DdqgM/3Jauf3rD9wxeS9XtyWFKsBUeZA337lC+6uUazT7I1DhanZ5gyD5Stf8uf2dbQxOQ==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-direction": "1.1.1", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-roving-focus": "1.1.10", + "@radix-ui/react-toggle": "1.1.9", + "@radix-ui/react-use-controllable-state": "1.2.2" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-tooltip": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@radix-ui/react-tooltip/-/react-tooltip-1.2.7.tgz", + "integrity": "sha512-Ap+fNYwKTYJ9pzqW+Xe2HtMRbQ/EeWkj2qykZ6SuEV4iS/o1bZI5ssJbk4D2r8XuDuOBVz/tIx2JObtuqU+5Zw==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.2", + "@radix-ui/react-compose-refs": "1.1.2", + "@radix-ui/react-context": "1.1.2", + "@radix-ui/react-dismissable-layer": "1.1.10", + "@radix-ui/react-id": "1.1.1", + "@radix-ui/react-popper": "1.2.7", + "@radix-ui/react-portal": "1.1.9", + "@radix-ui/react-presence": "1.1.4", + "@radix-ui/react-primitive": "2.1.3", + "@radix-ui/react-slot": "1.2.3", + "@radix-ui/react-use-controllable-state": "1.2.2", + "@radix-ui/react-visually-hidden": "1.2.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-callback-ref": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.1.tgz", + "integrity": "sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-controllable-state": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.2.2.tgz", + "integrity": "sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-use-effect-event": "0.0.2", + "@radix-ui/react-use-layout-effect": "1.1.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-effect-event": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-effect-event/-/react-use-effect-event-0.0.2.tgz", + "integrity": "sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-use-layout-effect": "1.1.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-escape-keydown": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.1.tgz", + "integrity": "sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-use-callback-ref": "1.1.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-is-hydrated": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-is-hydrated/-/react-use-is-hydrated-0.1.0.tgz", + "integrity": "sha512-U+UORVEq+cTnRIaostJv9AGdV3G6Y+zbVd+12e18jQ5A3c0xL03IhnHuiU4UV69wolOQp5GfR58NW/EgdQhwOA==", + "license": "MIT", + "dependencies": { + "use-sync-external-store": "^1.5.0" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-layout-effect": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.1.tgz", + "integrity": "sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-previous": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.1.1.tgz", + "integrity": "sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-rect": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.1.1.tgz", + "integrity": "sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==", + "license": "MIT", + "dependencies": { + "@radix-ui/rect": "1.1.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-size": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.1.1.tgz", + "integrity": "sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-use-layout-effect": "1.1.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-visually-hidden": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.2.3.tgz", + "integrity": "sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-primitive": "2.1.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/rect": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.1.1.tgz", + "integrity": "sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==", + "license": "MIT" + }, + "node_modules/@remix-run/router": { + "version": "1.23.0", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.23.0.tgz", + "integrity": "sha512-O3rHJzAQKamUz1fvE0Qaw0xSFqsA/yafi2iqeE0pvdFtCO1viYx8QL6f3Ln/aCCTLxs68SLf0KPM9eSeM8yBnA==", + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-beta.27", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz", + "integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.24.0.tgz", + "integrity": "sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.24.0.tgz", + "integrity": "sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.24.0.tgz", + "integrity": "sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.24.0.tgz", + "integrity": "sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.24.0.tgz", + "integrity": "sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.24.0.tgz", + "integrity": "sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.24.0.tgz", + "integrity": "sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.24.0.tgz", + "integrity": "sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.24.0.tgz", + "integrity": "sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.24.0.tgz", + "integrity": "sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.24.0.tgz", + "integrity": "sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.24.0.tgz", + "integrity": "sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.24.0.tgz", + "integrity": "sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.24.0.tgz", + "integrity": "sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.24.0.tgz", + "integrity": "sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.24.0.tgz", + "integrity": "sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@swc/core": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.13.2.tgz", + "integrity": "sha512-YWqn+0IKXDhqVLKoac4v2tV6hJqB/wOh8/Br8zjqeqBkKa77Qb0Kw2i7LOFzjFNZbZaPH6AlMGlBwNrxaauaAg==", + "dev": true, + "hasInstallScript": true, + "license": "Apache-2.0", + "dependencies": { + "@swc/counter": "^0.1.3", + "@swc/types": "^0.1.23" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/swc" + }, + "optionalDependencies": { + "@swc/core-darwin-arm64": "1.13.2", + "@swc/core-darwin-x64": "1.13.2", + "@swc/core-linux-arm-gnueabihf": "1.13.2", + "@swc/core-linux-arm64-gnu": "1.13.2", + "@swc/core-linux-arm64-musl": "1.13.2", + "@swc/core-linux-x64-gnu": "1.13.2", + "@swc/core-linux-x64-musl": "1.13.2", + "@swc/core-win32-arm64-msvc": "1.13.2", + "@swc/core-win32-ia32-msvc": "1.13.2", + "@swc/core-win32-x64-msvc": "1.13.2" + }, + "peerDependencies": { + "@swc/helpers": ">=0.5.17" + }, + "peerDependenciesMeta": { + "@swc/helpers": { + "optional": true + } + } + }, + "node_modules/@swc/core-darwin-arm64": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.13.2.tgz", + "integrity": "sha512-44p7ivuLSGFJ15Vly4ivLJjg3ARo4879LtEBAabcHhSZygpmkP8eyjyWxrH3OxkY1eRZSIJe8yRZPFw4kPXFPw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-darwin-x64": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.13.2.tgz", + "integrity": "sha512-Lb9EZi7X2XDAVmuUlBm2UvVAgSCbD3qKqDCxSI4jEOddzVOpNCnyZ/xEampdngUIyDDhhJLYU9duC+Mcsv5Y+A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm-gnueabihf": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.13.2.tgz", + "integrity": "sha512-9TDe/92ee1x57x+0OqL1huG4BeljVx0nWW4QOOxp8CCK67Rpc/HHl2wciJ0Kl9Dxf2NvpNtkPvqj9+BUmM9WVA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm64-gnu": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.13.2.tgz", + "integrity": "sha512-KJUSl56DBk7AWMAIEcU83zl5mg3vlQYhLELhjwRFkGFMvghQvdqQ3zFOYa4TexKA7noBZa3C8fb24rI5sw9Exg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm64-musl": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.13.2.tgz", + "integrity": "sha512-teU27iG1oyWpNh9CzcGQ48ClDRt/RCem7mYO7ehd2FY102UeTws2+OzLESS1TS1tEZipq/5xwx3FzbVgiolCiQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-x64-gnu": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.13.2.tgz", + "integrity": "sha512-dRPsyPyqpLD0HMRCRpYALIh4kdOir8pPg4AhNQZLehKowigRd30RcLXGNVZcc31Ua8CiPI4QSgjOIxK+EQe4LQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-x64-musl": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.13.2.tgz", + "integrity": "sha512-CCxETW+KkYEQDqz1SYC15YIWYheqFC+PJVOW76Maa/8yu8Biw+HTAcblKf2isrlUtK8RvrQN94v3UXkC2NzCEw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-arm64-msvc": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.13.2.tgz", + "integrity": "sha512-Wv/QTA6PjyRLlmKcN6AmSI4jwSMRl0VTLGs57PHTqYRwwfwd7y4s2fIPJVBNbAlXd795dOEP6d/bGSQSyhOX3A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-ia32-msvc": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.13.2.tgz", + "integrity": "sha512-PuCdtNynEkUNbUXX/wsyUC+t4mamIU5y00lT5vJcAvco3/r16Iaxl5UCzhXYaWZSNVZMzPp9qN8NlSL8M5pPxw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-x64-msvc": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.13.2.tgz", + "integrity": "sha512-qlmMkFZJus8cYuBURx1a3YAG2G7IW44i+FEYV5/32ylKkzGNAr9tDJSA53XNnNXkAB5EXSPsOz7bn5C3JlEtdQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/counter": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", + "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/@swc/types": { + "version": "0.1.23", + "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.23.tgz", + "integrity": "sha512-u1iIVZV9Q0jxY+yM2vw/hZGDNudsN85bBpTqzAQ9rzkxW9D+e3aEM4Han+ow518gSewkXgjmEK0BD79ZcNVgPw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@swc/counter": "^0.1.3" + } + }, + "node_modules/@tailwindcss/typography": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.16.tgz", + "integrity": "sha512-0wDLwCVF5V3x3b1SGXPCDcdsbDHMBe+lkFzBRaHeLvNi+nrrnZ1lA18u+OTWO8iSWU2GxUOCvlXtDuqftc1oiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "lodash.castarray": "^4.4.0", + "lodash.isplainobject": "^4.0.6", + "lodash.merge": "^4.6.2", + "postcss-selector-parser": "6.0.10" + }, + "peerDependencies": { + "tailwindcss": ">=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1" + } + }, + "node_modules/@tailwindcss/typography/node_modules/postcss-selector-parser": { + "version": "6.0.10", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", + "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@tanstack/query-core": { + "version": "5.83.0", + "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.83.0.tgz", + "integrity": "sha512-0M8dA+amXUkyz5cVUm/B+zSk3xkQAcuXuz5/Q/LveT4ots2rBpPTZOzd7yJa2Utsf8D2Upl5KyjhHRY+9lB/XA==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + } + }, + "node_modules/@tanstack/react-query": { + "version": "5.83.0", + "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.83.0.tgz", + "integrity": "sha512-/XGYhZ3foc5H0VM2jLSD/NyBRIOK4q9kfeml4+0x2DlL6xVuAcVEW+hTlTapAmejObg0i3eNqhkr2dT+eciwoQ==", + "license": "MIT", + "dependencies": { + "@tanstack/query-core": "5.83.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + }, + "peerDependencies": { + "react": "^18 || ^19" + } + }, + "node_modules/@testing-library/dom": { + "version": "10.4.1", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.1.tgz", + "integrity": "sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.3.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "picocolors": "1.1.1", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@testing-library/jest-dom": { + "version": "6.9.1", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.9.1.tgz", + "integrity": "sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@adobe/css-tools": "^4.4.0", + "aria-query": "^5.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.6.3", + "picocolors": "^1.1.1", + "redent": "^3.0.0" + }, + "engines": { + "node": ">=14", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/dom-accessibility-api": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz", + "integrity": "sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@testing-library/react": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-16.3.2.tgz", + "integrity": "sha512-XU5/SytQM+ykqMnAnvB2umaJNIOsLF3PVv//1Ew4CTcpz0/BRyy/af40qqrt7SjKpDdT1saBMc42CUok5gaw+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@testing-library/dom": "^10.0.0", + "@types/react": "^18.0.0 || ^19.0.0", + "@types/react-dom": "^18.0.0 || ^19.0.0", + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/@types/aria-query": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", + "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/@types/chai": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz", + "integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/deep-eql": "*", + "assertion-error": "^2.0.1" + } + }, + "node_modules/@types/d3-array": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz", + "integrity": "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==", + "license": "MIT" + }, + "node_modules/@types/d3-color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", + "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==", + "license": "MIT" + }, + "node_modules/@types/d3-ease": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", + "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==", + "license": "MIT" + }, + "node_modules/@types/d3-interpolate": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", + "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", + "license": "MIT", + "dependencies": { + "@types/d3-color": "*" + } + }, + "node_modules/@types/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==", + "license": "MIT" + }, + "node_modules/@types/d3-scale": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz", + "integrity": "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==", + "license": "MIT", + "dependencies": { + "@types/d3-time": "*" + } + }, + "node_modules/@types/d3-shape": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.6.tgz", + "integrity": "sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==", + "license": "MIT", + "dependencies": { + "@types/d3-path": "*" + } + }, + "node_modules/@types/d3-time": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.3.tgz", + "integrity": "sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==", + "license": "MIT" + }, + "node_modules/@types/d3-timer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz", + "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==", + "license": "MIT" + }, + "node_modules/@types/deep-eql": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz", + "integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "22.16.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.16.5.tgz", + "integrity": "sha512-bJFoMATwIGaxxx8VJPeM8TonI8t579oRvgAuT8zFugJsJZgzqv0Fu8Mhp68iecjzG7cnN3mO2dJQ5uUM2EFrgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/@types/prop-types": { + "version": "15.7.13", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.13.tgz", + "integrity": "sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.3.23", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.23.tgz", + "integrity": "sha512-/LDXMQh55EzZQ0uVAZmKKhfENivEvWz6E+EYzh+/MCjMhNsotd+ZHhBGIjFDTi6+fz0OhQQQLbTgdQIxxCsC0w==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.3.7", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.7.tgz", + "integrity": "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==", + "devOptional": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^18.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.38.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.38.0.tgz", + "integrity": "sha512-CPoznzpuAnIOl4nhj4tRr4gIPj5AfKgkiJmGQDaq+fQnRJTYlcBjbX3wbciGmpoPf8DREufuPRe1tNMZnGdanA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.38.0", + "@typescript-eslint/type-utils": "8.38.0", + "@typescript-eslint/utils": "8.38.0", + "@typescript-eslint/visitor-keys": "8.38.0", + "graphemer": "^1.4.0", + "ignore": "^7.0.0", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.38.0", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.38.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.38.0.tgz", + "integrity": "sha512-Zhy8HCvBUEfBECzIl1PKqF4p11+d0aUJS1GeUiuqK9WmOug8YCmC4h4bjyBvMyAMI9sbRczmrYL5lKg/YMbrcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.38.0", + "@typescript-eslint/types": "8.38.0", + "@typescript-eslint/typescript-estree": "8.38.0", + "@typescript-eslint/visitor-keys": "8.38.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.38.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.38.0.tgz", + "integrity": "sha512-dbK7Jvqcb8c9QfH01YB6pORpqX1mn5gDZc9n63Ak/+jD67oWXn3Gs0M6vddAN+eDXBCS5EmNWzbSxsn9SzFWWg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.38.0", + "@typescript-eslint/types": "^8.38.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.38.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.38.0.tgz", + "integrity": "sha512-WJw3AVlFFcdT9Ri1xs/lg8LwDqgekWXWhH3iAF+1ZM+QPd7oxQ6jvtW/JPwzAScxitILUIFs0/AnQ/UWHzbATQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.38.0", + "@typescript-eslint/visitor-keys": "8.38.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.38.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.38.0.tgz", + "integrity": "sha512-Lum9RtSE3EroKk/bYns+sPOodqb2Fv50XOl/gMviMKNvanETUuUcC9ObRbzrJ4VSd2JalPqgSAavwrPiPvnAiQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.38.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.38.0.tgz", + "integrity": "sha512-c7jAvGEZVf0ao2z+nnz8BUaHZD09Agbh+DY7qvBQqLiz8uJzRgVPj5YvOh8I8uEiH8oIUGIfHzMwUcGVco/SJg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.38.0", + "@typescript-eslint/typescript-estree": "8.38.0", + "@typescript-eslint/utils": "8.38.0", + "debug": "^4.3.4", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.38.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.38.0.tgz", + "integrity": "sha512-wzkUfX3plUqij4YwWaJyqhiPE5UCRVlFpKn1oCRn2O1bJ592XxWJj8ROQ3JD5MYXLORW84063z3tZTb/cs4Tyw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.38.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.38.0.tgz", + "integrity": "sha512-fooELKcAKzxux6fA6pxOflpNS0jc+nOQEEOipXFNjSlBS6fqrJOVY/whSn70SScHrcJ2LDsxWrneFoWYSVfqhQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/project-service": "8.38.0", + "@typescript-eslint/tsconfig-utils": "8.38.0", + "@typescript-eslint/types": "8.38.0", + "@typescript-eslint/visitor-keys": "8.38.0", + "debug": "^4.3.4", + "fast-glob": "^3.3.2", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.38.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.38.0.tgz", + "integrity": "sha512-hHcMA86Hgt+ijJlrD8fX0j1j8w4C92zue/8LOPAFioIno+W0+L7KqE8QZKCcPGc/92Vs9x36w/4MPTJhqXdyvg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.7.0", + "@typescript-eslint/scope-manager": "8.38.0", + "@typescript-eslint/types": "8.38.0", + "@typescript-eslint/typescript-estree": "8.38.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.38.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.38.0.tgz", + "integrity": "sha512-pWrTcoFNWuwHlA9CvlfSsGWs14JxfN1TH25zM5L7o0pRLhsoZkDnTsXfQRJBEWJoV5DL0jf+Z+sxiud+K0mq1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.38.0", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@vitejs/plugin-react-swc": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.11.0.tgz", + "integrity": "sha512-YTJCGFdNMHCMfjODYtxRNVAYmTWQ1Lb8PulP/2/f/oEEtglw8oKxKIZmmRkyXrVrHfsKOaVkAc3NT9/dMutO5w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rolldown/pluginutils": "1.0.0-beta.27", + "@swc/core": "^1.12.11" + }, + "peerDependencies": { + "vite": "^4 || ^5 || ^6 || ^7" + } + }, + "node_modules/@vitest/expect": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-3.2.4.tgz", + "integrity": "sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/chai": "^5.2.2", + "@vitest/spy": "3.2.4", + "@vitest/utils": "3.2.4", + "chai": "^5.2.0", + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/mocker": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-3.2.4.tgz", + "integrity": "sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "3.2.4", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.17" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "msw": "^2.4.9", + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0" + }, + "peerDependenciesMeta": { + "msw": { + "optional": true + }, + "vite": { + "optional": true + } + } + }, + "node_modules/@vitest/pretty-format": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-3.2.4.tgz", + "integrity": "sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/runner": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-3.2.4.tgz", + "integrity": "sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/utils": "3.2.4", + "pathe": "^2.0.3", + "strip-literal": "^3.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/snapshot": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-3.2.4.tgz", + "integrity": "sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "3.2.4", + "magic-string": "^0.30.17", + "pathe": "^2.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/spy": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-3.2.4.tgz", + "integrity": "sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyspy": "^4.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/utils": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-3.2.4.tgz", + "integrity": "sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "3.2.4", + "loupe": "^3.1.4", + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "deprecated": "Use your platform's native atob() and btoa() methods instead", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "acorn": "^8.1.0", + "acorn-walk": "^8.0.2" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.5", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.5.tgz", + "integrity": "sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==", + "dev": true, + "license": "MIT", + "dependencies": { + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "license": "MIT" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "license": "MIT" + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/aria-hidden": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.4.tgz", + "integrity": "sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/assertion-error": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", + "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/autoprefixer": { + "version": "10.4.21", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz", + "integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "browserslist": "^4.24.4", + "caniuse-lite": "^1.0.30001702", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.1.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.25.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.1.tgz", + "integrity": "sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001726", + "electron-to-chromium": "^1.5.173", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001727", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001727.tgz", + "integrity": "sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chai": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/chai/-/chai-5.3.3.tgz", + "integrity": "sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==", + "dev": true, + "license": "MIT", + "dependencies": { + "assertion-error": "^2.0.1", + "check-error": "^2.1.1", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/check-error": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.3.tgz", + "integrity": "sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 16" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/class-variance-authority": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/class-variance-authority/-/class-variance-authority-0.7.1.tgz", + "integrity": "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==", + "dependencies": { + "clsx": "^2.1.1" + }, + "funding": { + "url": "https://polar.sh/cva" + } + }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/cmdk": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/cmdk/-/cmdk-1.1.1.tgz", + "integrity": "sha512-Vsv7kFaXm+ptHDMZ7izaRsP70GgrW9NBNGswt9OZaVBLlE0SNpDq8eu/VGXyF9r7M0azK3Wy7OlYXsuyYLFzHg==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-compose-refs": "^1.1.1", + "@radix-ui/react-dialog": "^1.1.6", + "@radix-ui/react-id": "^1.1.0", + "@radix-ui/react-primitive": "^2.0.2" + }, + "peerDependencies": { + "react": "^18 || ^19 || ^19.0.0-rc", + "react-dom": "^18 || ^19 || ^19.0.0-rc" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssom": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", + "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", + "dev": true, + "license": "MIT" + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "license": "MIT", + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true, + "license": "MIT" + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "license": "MIT" + }, + "node_modules/d3-array": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", + "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", + "license": "ISC", + "dependencies": { + "internmap": "1 - 2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-format": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-scale": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "license": "ISC", + "dependencies": { + "d3-array": "2.10.0 - 3", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-shape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "license": "ISC", + "dependencies": { + "d3-path": "^3.1.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "license": "ISC", + "dependencies": { + "d3-array": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time-format": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", + "license": "ISC", + "dependencies": { + "d3-time": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-timer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/data-urls": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", + "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "abab": "^2.0.6", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/date-fns": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-3.6.0.tgz", + "integrity": "sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/kossnocorp" + } + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decimal.js": { + "version": "10.6.0", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz", + "integrity": "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==", + "dev": true, + "license": "MIT" + }, + "node_modules/decimal.js-light": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz", + "integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==", + "license": "MIT" + }, + "node_modules/deep-eql": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", + "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/detect-node-es": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", + "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==", + "license": "MIT" + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "license": "Apache-2.0" + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "license": "MIT" + }, + "node_modules/dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/domexception": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", + "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "deprecated": "Use your platform's native DOMException instead", + "dev": true, + "license": "MIT", + "dependencies": { + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.192", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.192.tgz", + "integrity": "sha512-rP8Ez0w7UNw/9j5eSXCe10o1g/8B1P5SM90PCCMVkIRQn2R0LEHWz4Eh9RnxkniuDe1W0cTSOB3MLlkTGDcuCg==", + "dev": true, + "license": "ISC" + }, + "node_modules/embla-carousel": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/embla-carousel/-/embla-carousel-8.6.0.tgz", + "integrity": "sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA==", + "license": "MIT" + }, + "node_modules/embla-carousel-react": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/embla-carousel-react/-/embla-carousel-react-8.6.0.tgz", + "integrity": "sha512-0/PjqU7geVmo6F734pmPqpyHqiM99olvyecY7zdweCw+6tKEXnrE90pBiBbMMU8s5tICemzpQ3hi5EpxzGW+JA==", + "license": "MIT", + "dependencies": { + "embla-carousel": "8.6.0", + "embla-carousel-reactive-utils": "8.6.0" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.1 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" + } + }, + "node_modules/embla-carousel-reactive-utils": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/embla-carousel-reactive-utils/-/embla-carousel-reactive-utils-8.6.0.tgz", + "integrity": "sha512-fMVUDUEx0/uIEDM0Mz3dHznDhfX+znCCDCeIophYb1QGVM7YThSWX+wz11zlYwWFOr74b4QLGg0hrGPJeG2s4A==", + "license": "MIT", + "peerDependencies": { + "embla-carousel": "8.6.0" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, + "node_modules/entities": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", + "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-module-lexer": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", + "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", + "dev": true, + "license": "MIT" + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/eslint": { + "version": "9.32.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.32.0.tgz", + "integrity": "sha512-LSehfdpgMeWcTZkWZVIJl+tkZ2nuSkyyB9C27MZqFWXuph7DvaowgcTvKqxvpLW1JZIk8PN7hFY3Rj9LQ7m7lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.0", + "@eslint/config-helpers": "^0.3.0", + "@eslint/core": "^0.15.0", + "@eslint/eslintrc": "^3.3.1", + "@eslint/js": "9.32.0", + "@eslint/plugin-kit": "^0.3.4", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "@types/json-schema": "^7.0.15", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz", + "integrity": "sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-react-refresh": { + "version": "0.4.20", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.20.tgz", + "integrity": "sha512-XpbHQ2q5gUF8BGOX4dHe+71qoirYMhApEPZ7sfhF/dNnOF1UXnCMGZf79SFTBO7Bz5YEIT4TMieSlJBWhP9WBA==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "eslint": ">=8.40" + } + }, + "node_modules/eslint-scope": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.15.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "license": "MIT" + }, + "node_modules/expect-type": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.3.0.tgz", + "integrity": "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-equals": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-5.2.2.tgz", + "integrity": "sha512-V7/RktU11J3I36Nwq2JnZEM7tNm17eBJz+u25qdxBZeCKiX6BkVSZQjwWIr+IobgnZy+ag73tTZgZi7tr0LrBw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "dev": true, + "license": "ISC" + }, + "node_modules/foreground-child": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/form-data": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz", + "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==", + "dev": true, + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-nonce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", + "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/globals": { + "version": "15.15.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-15.15.0.tgz", + "integrity": "sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", + "dev": true, + "license": "MIT", + "dependencies": { + "whatwg-encoding": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/input-otp": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/input-otp/-/input-otp-1.4.2.tgz", + "integrity": "sha512-l3jWwYNvrEa6NTCt7BECfCm48GvwuZzkoeG3gBL2w4CHeOXW3eKFmf9UNYkNfYc3mxMrthMnxjIE07MT0zLBQA==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc" + } + }, + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jiti": { + "version": "1.21.6", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", + "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", + "license": "MIT", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsdom": { + "version": "20.0.3", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", + "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "abab": "^2.0.6", + "acorn": "^8.8.1", + "acorn-globals": "^7.0.0", + "cssom": "^0.5.0", + "cssstyle": "^2.3.0", + "data-urls": "^3.0.2", + "decimal.js": "^10.4.2", + "domexception": "^4.0.0", + "escodegen": "^2.0.0", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^3.0.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.1", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.2", + "parse5": "^7.1.1", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.1.2", + "w3c-xmlserializer": "^4.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^2.0.0", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0", + "ws": "^8.11.0", + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "license": "MIT" + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" + }, + "node_modules/lodash.castarray": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.castarray/-/lodash.castarray-4.4.0.tgz", + "integrity": "sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==", + "dev": true + }, + "node_modules/lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/loupe": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.2.1.tgz", + "integrity": "sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/lovable-tagger": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/lovable-tagger/-/lovable-tagger-1.1.13.tgz", + "integrity": "sha512-RBEYDxao7Xf8ya29L0cd+ocE7Gs80xPOIOwwck65Hoie8YDKViuXi3UYV14DoNWIvaJ7WVPf7SG3cc844nFqGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.25.0", + "tailwindcss": "^3.4.17" + }, + "peerDependencies": { + "vite": ">=5.0.0 <8.0.0" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/aix-ppc64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.0.tgz", + "integrity": "sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/android-arm": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.0.tgz", + "integrity": "sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/android-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.0.tgz", + "integrity": "sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/android-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.0.tgz", + "integrity": "sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/darwin-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.0.tgz", + "integrity": "sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/darwin-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.0.tgz", + "integrity": "sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.0.tgz", + "integrity": "sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/freebsd-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.0.tgz", + "integrity": "sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/linux-arm": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.0.tgz", + "integrity": "sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/linux-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.0.tgz", + "integrity": "sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/linux-ia32": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.0.tgz", + "integrity": "sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/linux-loong64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.0.tgz", + "integrity": "sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/linux-mips64el": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.0.tgz", + "integrity": "sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/linux-ppc64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.0.tgz", + "integrity": "sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/linux-riscv64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.0.tgz", + "integrity": "sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/linux-s390x": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.0.tgz", + "integrity": "sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/linux-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.0.tgz", + "integrity": "sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/netbsd-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.0.tgz", + "integrity": "sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/openbsd-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.0.tgz", + "integrity": "sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/sunos-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.0.tgz", + "integrity": "sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/win32-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.0.tgz", + "integrity": "sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/win32-ia32": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.0.tgz", + "integrity": "sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/@esbuild/win32-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.0.tgz", + "integrity": "sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/lovable-tagger/node_modules/esbuild": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.0.tgz", + "integrity": "sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.0", + "@esbuild/android-arm": "0.25.0", + "@esbuild/android-arm64": "0.25.0", + "@esbuild/android-x64": "0.25.0", + "@esbuild/darwin-arm64": "0.25.0", + "@esbuild/darwin-x64": "0.25.0", + "@esbuild/freebsd-arm64": "0.25.0", + "@esbuild/freebsd-x64": "0.25.0", + "@esbuild/linux-arm": "0.25.0", + "@esbuild/linux-arm64": "0.25.0", + "@esbuild/linux-ia32": "0.25.0", + "@esbuild/linux-loong64": "0.25.0", + "@esbuild/linux-mips64el": "0.25.0", + "@esbuild/linux-ppc64": "0.25.0", + "@esbuild/linux-riscv64": "0.25.0", + "@esbuild/linux-s390x": "0.25.0", + "@esbuild/linux-x64": "0.25.0", + "@esbuild/netbsd-arm64": "0.25.0", + "@esbuild/netbsd-x64": "0.25.0", + "@esbuild/openbsd-arm64": "0.25.0", + "@esbuild/openbsd-x64": "0.25.0", + "@esbuild/sunos-x64": "0.25.0", + "@esbuild/win32-arm64": "0.25.0", + "@esbuild/win32-ia32": "0.25.0", + "@esbuild/win32-x64": "0.25.0" + } + }, + "node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, + "node_modules/lucide-react": { + "version": "0.462.0", + "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.462.0.tgz", + "integrity": "sha512-NTL7EbAao9IFtuSivSZgrAh4fZd09Lr+6MTkqIxuHaH2nnYiYIzXPo06cOxHg9wKLdj6LL8TByG4qpePqwgx/g==", + "peerDependencies": { + "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc" + } + }, + "node_modules/lz-string": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "dev": true, + "license": "MIT", + "peer": true, + "bin": { + "lz-string": "bin/bin.js" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/next-themes": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/next-themes/-/next-themes-0.3.0.tgz", + "integrity": "sha512-/QHIrsYpd6Kfk7xakK4svpDI5mmXP0gfvCoJdGpZQ2TOrQZmsW0QxjaiLn8wbIKjtm4BTSqLoix4lxYYOnLJ/w==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8 || ^17 || ^18", + "react-dom": "^16.8 || ^17 || ^18" + } + }, + "node_modules/node-releases": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "dev": true, + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nwsapi": { + "version": "2.2.23", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.23.tgz", + "integrity": "sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse5": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz", + "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", + "dev": true, + "license": "MIT", + "dependencies": { + "entities": "^6.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true, + "license": "MIT" + }, + "node_modules/pathval": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.1.tgz", + "integrity": "sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.16" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "license": "MIT", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-nested": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.1.1" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "license": "MIT" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/pretty-format/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/psl": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz", + "integrity": "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "punycode": "^2.3.1" + }, + "funding": { + "url": "https://github.com/sponsors/lupomontero" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-day-picker": { + "version": "8.10.1", + "resolved": "https://registry.npmjs.org/react-day-picker/-/react-day-picker-8.10.1.tgz", + "integrity": "sha512-TMx7fNbhLk15eqcMt+7Z7S2KF7mfTId/XJDjKE8f+IUcFn0l08/kI4FiYTL/0yuOLmEcbR4Fwe3GJf/NiiMnPA==", + "license": "MIT", + "funding": { + "type": "individual", + "url": "https://github.com/sponsors/gpbl" + }, + "peerDependencies": { + "date-fns": "^2.28.0 || ^3.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "node_modules/react-hook-form": { + "version": "7.61.1", + "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.61.1.tgz", + "integrity": "sha512-2vbXUFDYgqEgM2RcXcAT2PwDW/80QARi+PKmHy5q2KhuKvOlG8iIYgf7eIlIANR5trW9fJbP4r5aub3a4egsew==", + "license": "MIT", + "engines": { + "node": ">=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/react-hook-form" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17 || ^18 || ^19" + } + }, + "node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" + }, + "node_modules/react-remove-scroll": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.7.1.tgz", + "integrity": "sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==", + "license": "MIT", + "dependencies": { + "react-remove-scroll-bar": "^2.3.7", + "react-style-singleton": "^2.2.3", + "tslib": "^2.1.0", + "use-callback-ref": "^1.3.3", + "use-sidecar": "^1.1.3" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-remove-scroll-bar": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.8.tgz", + "integrity": "sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==", + "license": "MIT", + "dependencies": { + "react-style-singleton": "^2.2.2", + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-resizable-panels": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/react-resizable-panels/-/react-resizable-panels-2.1.9.tgz", + "integrity": "sha512-z77+X08YDIrgAes4jl8xhnUu1LNIRp4+E7cv4xHmLOxxUPO/ML7PSrE813b90vj7xvQ1lcf7g2uA9GeMZonjhQ==", + "license": "MIT", + "peerDependencies": { + "react": "^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc", + "react-dom": "^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" + } + }, + "node_modules/react-router": { + "version": "6.30.1", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.30.1.tgz", + "integrity": "sha512-X1m21aEmxGXqENEPG3T6u0Th7g0aS4ZmoNynhbs+Cn+q+QGTLt+d5IQ2bHAXKzKcxGJjxACpVbnYQSCRcfxHlQ==", + "license": "MIT", + "dependencies": { + "@remix-run/router": "1.23.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/react-router-dom": { + "version": "6.30.1", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.30.1.tgz", + "integrity": "sha512-llKsgOkZdbPU1Eg3zK8lCn+sjD9wMRZZPuzmdWWX5SUs8OFkN5HnFVC0u5KMeMaC9aoancFI/KoLuKPqN+hxHw==", + "license": "MIT", + "dependencies": { + "@remix-run/router": "1.23.0", + "react-router": "6.30.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8", + "react-dom": ">=16.8" + } + }, + "node_modules/react-smooth": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/react-smooth/-/react-smooth-4.0.4.tgz", + "integrity": "sha512-gnGKTpYwqL0Iii09gHobNolvX4Kiq4PKx6eWBCYYix+8cdw+cGo3do906l1NBPKkSWx1DghC1dlWG9L2uGd61Q==", + "license": "MIT", + "dependencies": { + "fast-equals": "^5.0.1", + "prop-types": "^15.8.1", + "react-transition-group": "^4.4.5" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/react-style-singleton": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.3.tgz", + "integrity": "sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==", + "license": "MIT", + "dependencies": { + "get-nonce": "^1.0.0", + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "license": "MIT", + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/recharts": { + "version": "2.15.4", + "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.15.4.tgz", + "integrity": "sha512-UT/q6fwS3c1dHbXv2uFgYJ9BMFHu3fwnd7AYZaEQhXuYQ4hgsxLvsUXzGdKeZrW5xopzDCvuA2N41WJ88I7zIw==", + "license": "MIT", + "dependencies": { + "clsx": "^2.0.0", + "eventemitter3": "^4.0.1", + "lodash": "^4.17.21", + "react-is": "^18.3.1", + "react-smooth": "^4.0.4", + "recharts-scale": "^0.4.4", + "tiny-invariant": "^1.3.1", + "victory-vendor": "^36.6.8" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "react": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/recharts-scale": { + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/recharts-scale/-/recharts-scale-0.4.5.tgz", + "integrity": "sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==", + "license": "MIT", + "dependencies": { + "decimal.js-light": "^2.4.1" + } + }, + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dev": true, + "license": "MIT", + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.24.0.tgz", + "integrity": "sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.24.0", + "@rollup/rollup-android-arm64": "4.24.0", + "@rollup/rollup-darwin-arm64": "4.24.0", + "@rollup/rollup-darwin-x64": "4.24.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.24.0", + "@rollup/rollup-linux-arm-musleabihf": "4.24.0", + "@rollup/rollup-linux-arm64-gnu": "4.24.0", + "@rollup/rollup-linux-arm64-musl": "4.24.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.24.0", + "@rollup/rollup-linux-riscv64-gnu": "4.24.0", + "@rollup/rollup-linux-s390x-gnu": "4.24.0", + "@rollup/rollup-linux-x64-gnu": "4.24.0", + "@rollup/rollup-linux-x64-musl": "4.24.0", + "@rollup/rollup-win32-arm64-msvc": "4.24.0", + "@rollup/rollup-win32-ia32-msvc": "4.24.0", + "@rollup/rollup-win32-x64-msvc": "4.24.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "license": "MIT" + }, + "node_modules/saxes": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", + "dev": true, + "license": "ISC", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=v12.22.7" + } + }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/semver": { + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/siginfo": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", + "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", + "dev": true, + "license": "ISC" + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sonner": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/sonner/-/sonner-1.7.4.tgz", + "integrity": "sha512-DIS8z4PfJRbIyfVFDVnK9rO3eYDtse4Omcm6bt0oEr5/jtLgysmjuBl1frJ9E/EQZrFmKx2A8m/s5s9CRXIzhw==", + "license": "MIT", + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0 || ^19.0.0-rc", + "react-dom": "^18.0.0 || ^19.0.0 || ^19.0.0-rc" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "license": "BSD-3-Clause", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stackback": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", + "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", + "dev": true, + "license": "MIT" + }, + "node_modules/std-env": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.10.0.tgz", + "integrity": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==", + "dev": true, + "license": "MIT" + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-literal": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-3.1.0.tgz", + "integrity": "sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "js-tokens": "^9.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/strip-literal/node_modules/js-tokens": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-9.0.1.tgz", + "integrity": "sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true, + "license": "MIT" + }, + "node_modules/tailwind-merge": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.6.0.tgz", + "integrity": "sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/dcastil" + } + }, + "node_modules/tailwindcss": { + "version": "3.4.17", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.17.tgz", + "integrity": "sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==", + "license": "MIT", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.6.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.2", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.21.6", + "lilconfig": "^3.1.3", + "micromatch": "^4.0.8", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.1.1", + "postcss": "^8.4.47", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.2", + "postcss-nested": "^6.2.0", + "postcss-selector-parser": "^6.1.2", + "resolve": "^1.22.8", + "sucrase": "^3.35.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tailwindcss-animate": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/tailwindcss-animate/-/tailwindcss-animate-1.0.7.tgz", + "integrity": "sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==", + "license": "MIT", + "peerDependencies": { + "tailwindcss": ">=3.0.0 || insiders" + } + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/tiny-invariant": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", + "license": "MIT" + }, + "node_modules/tinybench": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", + "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinyexec": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz", + "integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/tinypool": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.1.1.tgz", + "integrity": "sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.0.0 || >=20.0.0" + } + }, + "node_modules/tinyrainbow": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-2.0.0.tgz", + "integrity": "sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tinyspy": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-4.0.4.tgz", + "integrity": "sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tough-cookie": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz", + "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/ts-api-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", + "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "license": "Apache-2.0" + }, + "node_modules/tslib": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.0.tgz", + "integrity": "sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==", + "license": "0BSD" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/typescript": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.38.0", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.38.0.tgz", + "integrity": "sha512-FsZlrYK6bPDGoLeZRuvx2v6qrM03I0U0SnfCLPs/XCCPCFD80xU9Pg09H/K+XFa68uJuZo7l/Xhs+eDRg2l3hg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.38.0", + "@typescript-eslint/parser": "8.38.0", + "@typescript-eslint/typescript-estree": "8.38.0", + "@typescript-eslint/utils": "8.38.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/use-callback-ref": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.3.tgz", + "integrity": "sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/use-sidecar": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.3.tgz", + "integrity": "sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==", + "license": "MIT", + "dependencies": { + "detect-node-es": "^1.1.0", + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/use-sync-external-store": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.5.0.tgz", + "integrity": "sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" + }, + "node_modules/vaul": { + "version": "0.9.9", + "resolved": "https://registry.npmjs.org/vaul/-/vaul-0.9.9.tgz", + "integrity": "sha512-7afKg48srluhZwIkaU+lgGtFCUsYBSGOl8vcc8N/M3YQlZFlynHD15AE+pwrYdc826o7nrIND4lL9Y6b9WWZZQ==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-dialog": "^1.1.1" + }, + "peerDependencies": { + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + } + }, + "node_modules/victory-vendor": { + "version": "36.9.2", + "resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-36.9.2.tgz", + "integrity": "sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==", + "license": "MIT AND ISC", + "dependencies": { + "@types/d3-array": "^3.0.3", + "@types/d3-ease": "^3.0.0", + "@types/d3-interpolate": "^3.0.1", + "@types/d3-scale": "^4.0.2", + "@types/d3-shape": "^3.1.0", + "@types/d3-time": "^3.0.0", + "@types/d3-timer": "^3.0.0", + "d3-array": "^3.1.6", + "d3-ease": "^3.0.1", + "d3-interpolate": "^3.0.1", + "d3-scale": "^4.0.2", + "d3-shape": "^3.1.0", + "d3-time": "^3.0.0", + "d3-timer": "^3.0.1" + } + }, + "node_modules/vite": { + "version": "5.4.19", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.19.tgz", + "integrity": "sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vite-node": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-3.2.4.tgz", + "integrity": "sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.4.1", + "es-module-lexer": "^1.7.0", + "pathe": "^2.0.3", + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/vitest": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/vitest/-/vitest-3.2.4.tgz", + "integrity": "sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/chai": "^5.2.2", + "@vitest/expect": "3.2.4", + "@vitest/mocker": "3.2.4", + "@vitest/pretty-format": "^3.2.4", + "@vitest/runner": "3.2.4", + "@vitest/snapshot": "3.2.4", + "@vitest/spy": "3.2.4", + "@vitest/utils": "3.2.4", + "chai": "^5.2.0", + "debug": "^4.4.1", + "expect-type": "^1.2.1", + "magic-string": "^0.30.17", + "pathe": "^2.0.3", + "picomatch": "^4.0.2", + "std-env": "^3.9.0", + "tinybench": "^2.9.0", + "tinyexec": "^0.3.2", + "tinyglobby": "^0.2.14", + "tinypool": "^1.1.1", + "tinyrainbow": "^2.0.0", + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0", + "vite-node": "3.2.4", + "why-is-node-running": "^2.3.0" + }, + "bin": { + "vitest": "vitest.mjs" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "@edge-runtime/vm": "*", + "@types/debug": "^4.1.12", + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", + "@vitest/browser": "3.2.4", + "@vitest/ui": "3.2.4", + "happy-dom": "*", + "jsdom": "*" + }, + "peerDependenciesMeta": { + "@edge-runtime/vm": { + "optional": true + }, + "@types/debug": { + "optional": true + }, + "@types/node": { + "optional": true + }, + "@vitest/browser": { + "optional": true + }, + "@vitest/ui": { + "optional": true + }, + "happy-dom": { + "optional": true + }, + "jsdom": { + "optional": true + } + } + }, + "node_modules/vitest/node_modules/picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", + "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", + "dev": true, + "license": "MIT", + "dependencies": { + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-encoding": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "deprecated": "Use @exodus/bytes instead for a more spec-conformant and faster implementation", + "dev": true, + "license": "MIT", + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-mimetype": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/why-is-node-running": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", + "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", + "dev": true, + "license": "MIT", + "dependencies": { + "siginfo": "^2.0.0", + "stackback": "0.0.2" + }, + "bin": { + "why-is-node-running": "cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ws": { + "version": "8.20.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.20.0.tgz", + "integrity": "sha512-sAt8BhgNbzCtgGbt2OxmpuryO63ZoDk/sqaB/znQm94T4fCEsy/yV+7CdC1kJhOU9lboAEU7R3kquuycDoibVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xml-name-validator": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12" + } + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true, + "license": "MIT" + }, + "node_modules/yaml": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.0.tgz", + "integrity": "sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==", + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "3.25.76", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", + "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..04b2365 --- /dev/null +++ b/package.json @@ -0,0 +1,89 @@ +{ + "name": "vite_react_shadcn_ts", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build", + "build:dev": "vite build --mode development", + "lint": "eslint .", + "preview": "vite preview", + "test": "vitest run", + "test:watch": "vitest" + }, + "dependencies": { + "@hookform/resolvers": "^3.10.0", + "@radix-ui/react-accordion": "^1.2.11", + "@radix-ui/react-alert-dialog": "^1.1.14", + "@radix-ui/react-aspect-ratio": "^1.1.7", + "@radix-ui/react-avatar": "^1.1.10", + "@radix-ui/react-checkbox": "^1.3.2", + "@radix-ui/react-collapsible": "^1.1.11", + "@radix-ui/react-context-menu": "^2.2.15", + "@radix-ui/react-dialog": "^1.1.14", + "@radix-ui/react-dropdown-menu": "^2.1.15", + "@radix-ui/react-hover-card": "^1.1.14", + "@radix-ui/react-label": "^2.1.7", + "@radix-ui/react-menubar": "^1.1.15", + "@radix-ui/react-navigation-menu": "^1.2.13", + "@radix-ui/react-popover": "^1.1.14", + "@radix-ui/react-progress": "^1.1.7", + "@radix-ui/react-radio-group": "^1.3.7", + "@radix-ui/react-scroll-area": "^1.2.9", + "@radix-ui/react-select": "^2.2.5", + "@radix-ui/react-separator": "^1.1.7", + "@radix-ui/react-slider": "^1.3.5", + "@radix-ui/react-slot": "^1.2.3", + "@radix-ui/react-switch": "^1.2.5", + "@radix-ui/react-tabs": "^1.1.12", + "@radix-ui/react-toast": "^1.2.14", + "@radix-ui/react-toggle": "^1.1.9", + "@radix-ui/react-toggle-group": "^1.1.10", + "@radix-ui/react-tooltip": "^1.2.7", + "@tanstack/react-query": "^5.83.0", + "class-variance-authority": "^0.7.1", + "clsx": "^2.1.1", + "cmdk": "^1.1.1", + "date-fns": "^3.6.0", + "embla-carousel-react": "^8.6.0", + "input-otp": "^1.4.2", + "lucide-react": "^0.462.0", + "next-themes": "^0.3.0", + "react": "^18.3.1", + "react-day-picker": "^8.10.1", + "react-dom": "^18.3.1", + "react-hook-form": "^7.61.1", + "react-resizable-panels": "^2.1.9", + "react-router-dom": "^6.30.1", + "recharts": "^2.15.4", + "sonner": "^1.7.4", + "tailwind-merge": "^2.6.0", + "tailwindcss-animate": "^1.0.7", + "vaul": "^0.9.9", + "zod": "^3.25.76" + }, + "devDependencies": { + "@eslint/js": "^9.32.0", + "@testing-library/jest-dom": "^6.6.0", + "@testing-library/react": "^16.0.0", + "@tailwindcss/typography": "^0.5.16", + "@types/node": "^22.16.5", + "@types/react": "^18.3.23", + "@types/react-dom": "^18.3.7", + "@vitejs/plugin-react-swc": "^3.11.0", + "autoprefixer": "^10.4.21", + "eslint": "^9.32.0", + "eslint-plugin-react-hooks": "^5.2.0", + "eslint-plugin-react-refresh": "^0.4.20", + "globals": "^15.15.0", + "jsdom": "^20.0.3", + "lovable-tagger": "^1.1.13", + "postcss": "^8.5.6", + "tailwindcss": "^3.4.17", + "typescript": "^5.8.3", + "typescript-eslint": "^8.38.0", + "vite": "^5.4.19", + "vitest": "^3.2.4" + } +} diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..2aa7205 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..3c01d69 Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/logo.png b/public/logo.png new file mode 100644 index 0000000..fc5e9d9 Binary files /dev/null and b/public/logo.png differ diff --git a/public/placeholder.svg b/public/placeholder.svg new file mode 100644 index 0000000..e763910 --- /dev/null +++ b/public/placeholder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..6018e70 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,14 @@ +User-agent: Googlebot +Allow: / + +User-agent: Bingbot +Allow: / + +User-agent: Twitterbot +Allow: / + +User-agent: facebookexternalhit +Allow: / + +User-agent: * +Allow: / diff --git a/src/App.css b/src/App.css new file mode 100644 index 0000000..b9d355d --- /dev/null +++ b/src/App.css @@ -0,0 +1,42 @@ +#root { + max-width: 1280px; + margin: 0 auto; + padding: 2rem; + text-align: center; +} + +.logo { + height: 6em; + padding: 1.5em; + will-change: filter; + transition: filter 300ms; +} +.logo:hover { + filter: drop-shadow(0 0 2em #646cffaa); +} +.logo.react:hover { + filter: drop-shadow(0 0 2em #61dafbaa); +} + +@keyframes logo-spin { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} + +@media (prefers-reduced-motion: no-preference) { + a:nth-of-type(2) .logo { + animation: logo-spin infinite 20s linear; + } +} + +.card { + padding: 2em; +} + +.read-the-docs { + color: #888; +} diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..536d970 --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,258 @@ +import { Toaster } from "@/components/ui/toaster"; +import { Toaster as Sonner } from "@/components/ui/sonner"; +import { TooltipProvider } from "@/components/ui/tooltip"; +import { QueryClientProvider } from "@tanstack/react-query"; +import { BrowserRouter, Routes, Route, Navigate } from "react-router-dom"; +import { AuthProvider } from "@/contexts/AuthContext"; +import ProtectedRoute from "@/components/ProtectedRoute"; +import StudentLayout from "@/components/StudentLayout"; +import TeacherLayout from "@/components/TeacherLayout"; +import AdminLmsLayout from "@/components/AdminLmsLayout"; +import Login from "@/pages/Login"; +import Register from "@/pages/Register"; +import ForgotPassword from "@/pages/ForgotPassword"; +// Original platform pages +import AdminDashboard from "@/pages/AdminDashboard"; +import UsersPage from "@/pages/UsersPage"; +import EntitiesPage from "@/pages/EntitiesPage"; +import AssignmentsPage from "@/pages/AssignmentsPage"; +import ExamsListPage from "@/pages/ExamsListPage"; +import ExamStructuresPage from "@/pages/ExamStructuresPage"; +import RubricsPage from "@/pages/RubricsPage"; +import GenerationPage from "@/pages/GenerationPage"; +import ApprovalWorkflowsPage from "@/pages/ApprovalWorkflowsPage"; +import ClassroomsPage from "@/pages/ClassroomsPage"; +import StudentPerformancePage from "@/pages/StudentPerformancePage"; +import StatsCorporatePage from "@/pages/StatsCorporatePage"; +import RecordPage from "@/pages/RecordPage"; +import VocabularyPage from "@/pages/VocabularyPage"; +import GrammarPage from "@/pages/GrammarPage"; +import PaymentRecordPage from "@/pages/PaymentRecordPage"; +import TicketsPage from "@/pages/TicketsPage"; +import SettingsPage from "@/pages/SettingsPage"; +import ProfilePage from "@/pages/ProfilePage"; +import ExamPage from "@/pages/ExamPage"; +// Student pages +import StudentDashboard from "@/pages/student/StudentDashboard"; +import StudentCourses from "@/pages/student/StudentCourses"; +import StudentCourseDetail from "@/pages/student/StudentCourseDetail"; +import StudentAssignments from "@/pages/student/StudentAssignments"; +import StudentGrades from "@/pages/student/StudentGrades"; +import StudentAttendance from "@/pages/student/StudentAttendance"; +import StudentTimetable from "@/pages/student/StudentTimetable"; +import StudentProfile from "@/pages/student/StudentProfile"; +// Adaptive learning pages +import SubjectSelection from "@/pages/student/SubjectSelection"; +import DiagnosticTest from "@/pages/student/DiagnosticTest"; +import ProficiencyProfile from "@/pages/student/ProficiencyProfile"; +import LearningPlanPage from "@/pages/student/LearningPlan"; +import TopicLearning from "@/pages/student/TopicLearning"; +// Teacher pages +import TeacherDashboard from "@/pages/teacher/TeacherDashboard"; +import TeacherCourses from "@/pages/teacher/TeacherCourses"; +import CourseBuilder from "@/pages/teacher/CourseBuilder"; +import TeacherAssignments from "@/pages/teacher/TeacherAssignments"; +import TeacherAssignmentDetail from "@/pages/teacher/TeacherAssignmentDetail"; +import TeacherAttendance from "@/pages/teacher/TeacherAttendance"; +import TeacherStudents from "@/pages/teacher/TeacherStudents"; +import TeacherTimetable from "@/pages/teacher/TeacherTimetable"; +import TeacherProfile from "@/pages/teacher/TeacherProfile"; +// Admin LMS pages +import AdminLmsDashboard from "@/pages/admin/AdminLmsDashboard"; +import AdminCourses from "@/pages/admin/AdminCourses"; +import AdminStudents from "@/pages/admin/AdminStudents"; +import AdminTeachers from "@/pages/admin/AdminTeachers"; +import AdminBatches from "@/pages/admin/AdminBatches"; +import AdminBatchDetail from "@/pages/admin/AdminBatchDetail"; +import AdminTimetable from "@/pages/admin/AdminTimetable"; +import AdminReports from "@/pages/admin/AdminReports"; +import AdminSettings from "@/pages/admin/AdminSettings"; +import AdminProfileLms from "@/pages/admin/AdminProfile"; +import TaxonomyManager from "@/pages/admin/TaxonomyManager"; +import ResourceManager from "@/pages/admin/ResourceManager"; +import AcademicYearManager from "@/pages/admin/AcademicYearManager"; +import DepartmentManager from "@/pages/admin/DepartmentManager"; +import AdmissionList from "@/pages/admin/AdmissionList"; +import AdmissionDetail from "@/pages/admin/AdmissionDetail"; +import AdmissionRegisterPage from "@/pages/admin/AdmissionRegisterPage"; +import InstitutionalExamSessions from "@/pages/admin/InstitutionalExamSessions"; +import MarksheetManager from "@/pages/admin/MarksheetManager"; +import AdminStudentLeave from "@/pages/admin/AdminStudentLeave"; +import AdminFees from "@/pages/admin/AdminFees"; +import AdminLessons from "@/pages/admin/AdminLessons"; +import AdminGradebook from "@/pages/admin/AdminGradebook"; +import AdminStudentProgress from "@/pages/admin/AdminStudentProgress"; +import AdminLibrary from "@/pages/admin/AdminLibrary"; +import AdminActivities from "@/pages/admin/AdminActivities"; +import AdminFacilities from "@/pages/admin/AdminFacilities"; +import AdmissionApplication from "@/pages/AdmissionApplication"; +import SubjectRegistrationPage from "@/pages/student/SubjectRegistrationPage"; +// Courseware pages +import CourseChapters from "@/pages/teacher/CourseChapters"; +import ChapterDetail from "@/pages/teacher/ChapterDetail"; +import AiWorkbench from "@/pages/teacher/AiWorkbench"; +import TeacherDiscussionBoard from "@/pages/teacher/TeacherDiscussionBoard"; +import TeacherAnnouncements from "@/pages/teacher/TeacherAnnouncements"; +import StudentChapterView from "@/pages/student/StudentChapterView"; +import StudentDiscussionBoard from "@/pages/student/StudentDiscussionBoard"; +import StudentAnnouncements from "@/pages/student/StudentAnnouncements"; +import StudentMessages from "@/pages/student/StudentMessages"; +import StudentJourney from "@/pages/student/StudentJourney"; +import FaqManager from "@/pages/admin/FaqManager"; +import NotificationRules from "@/pages/admin/NotificationRules"; +import ApprovalWorkflowConfig from "@/pages/admin/ApprovalWorkflowConfig"; +import RolesPermissions from "@/pages/admin/RolesPermissions"; +import AuthorityMatrix from "@/pages/admin/AuthorityMatrix"; +import UserRoles from "@/pages/admin/UserRoles"; +import OfficialExamAccess from "@/pages/OfficialExamAccess"; +import FaqPage from "@/pages/FaqPage"; +import NotFound from "@/pages/NotFound"; +import { queryClient } from "@/lib/query-client"; + +const App = () => ( + + + + + + + + {/* Auth routes */} + } /> + } /> + } /> + {/* Public pages */} + } /> + } /> + } /> + } /> + } /> + + {/* Student routes */} + }> + }> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + + + + {/* Teacher routes */} + }> + }> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + + + + {/* Admin routes — unified: original platform + LMS + AI */} + }> + }> + {/* LMS Dashboard */} + } /> + {/* Original platform dashboard */} + } /> + {/* LMS pages */} + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + {/* Original academic pages */} + } /> + } /> + } /> + } /> + } /> + } /> + {/* Original management pages */} + } /> + } /> + } /> + {/* Original report pages */} + } /> + } /> + } /> + {/* Training */} + } /> + } /> + {/* Support */} + } /> + } /> + } /> + } /> + } /> + } /> + {/* Institutional LMS pages */} + } /> + } /> + } /> + } /> + } /> + } /> + } /> + {/* OpenEduCat module pages */} + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + + + + {/* Redirects */} + } /> + } /> + {/* Legacy route redirects */} + } /> + } /> + + + + + +); + +export default App; diff --git a/src/components/AdminLmsLayout.tsx b/src/components/AdminLmsLayout.tsx new file mode 100644 index 0000000..34594d0 --- /dev/null +++ b/src/components/AdminLmsLayout.tsx @@ -0,0 +1,354 @@ +import { Outlet, Link, useNavigate, useLocation } from "react-router-dom"; +import { SidebarProvider, SidebarTrigger } from "@/components/ui/sidebar"; +import { + Sidebar, SidebarContent, SidebarGroup, SidebarGroupContent, + SidebarGroupLabel, SidebarMenu, SidebarMenuButton, SidebarMenuItem, + SidebarHeader, SidebarFooter, SidebarSeparator, useSidebar, +} from "@/components/ui/sidebar"; +import { Collapsible, CollapsibleContent, CollapsibleTrigger } from "@/components/ui/collapsible"; +import { NavLink } from "@/components/NavLink"; +import { useAuth } from "@/contexts/AuthContext"; +import NotificationDropdown from "@/components/NotificationDropdown"; +import AiAssistantDrawer from "@/components/ai/AiAssistantDrawer"; +import AiSearchBar from "@/components/ai/AiSearchBar"; +import { usePermissions } from "@/hooks/usePermissions"; +import { Button } from "@/components/ui/button"; +import { + DropdownMenu, DropdownMenuContent, DropdownMenuItem, + DropdownMenuSeparator, DropdownMenuTrigger, +} from "@/components/ui/dropdown-menu"; +import { + Breadcrumb, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, + BreadcrumbPage, BreadcrumbSeparator, +} from "@/components/ui/breadcrumb"; +import { + GraduationCap, LogOut, User, Settings, LayoutDashboard, ClipboardList, + FileText, Layers, BookOpen, Wand2, GitBranch, Users, BarChart3, + Building2, History, CreditCard, Ticket, BookA, PenTool, + Calendar, ChevronDown, HelpCircle, LucideIcon, Target, FolderOpen, + CalendarDays, Landmark, UserPlus, ScrollText, Award, + HelpCircle as FaqIcon, Bell, Workflow, + CalendarOff, DollarSign, BookMarked, BarChartHorizontal, TrendingUp, + Library, Activity, Warehouse, UserCog, +} from "lucide-react"; +import React from "react"; + +// ============= Navigation Config ============= +interface NavItem { title: string; url: string; icon: LucideIcon } + +const overviewItems: NavItem[] = [ + { title: "Admin Dashboard", url: "/admin/dashboard", icon: LayoutDashboard }, + { title: "Platform Dashboard", url: "/admin/platform", icon: BarChart3 }, +]; + +const lmsItems: NavItem[] = [ + { title: "Courses", url: "/admin/courses", icon: BookOpen }, + { title: "Students", url: "/admin/students", icon: Users }, + { title: "Teachers", url: "/admin/teachers", icon: GraduationCap }, + { title: "Batches", url: "/admin/batches", icon: Layers }, + { title: "Timetable", url: "/admin/timetable", icon: Calendar }, + { title: "Reports", url: "/admin/reports", icon: BarChart3 }, +]; + +const academicItems: NavItem[] = [ + { title: "Assignments", url: "/admin/assignments", icon: ClipboardList }, + { title: "Exams List", url: "/admin/examsList", icon: FileText }, + { title: "Exam Structures", url: "/admin/exam-structures", icon: Layers }, + { title: "Rubrics", url: "/admin/rubrics", icon: BookOpen }, + { title: "Generation", url: "/admin/generation", icon: Wand2 }, + { title: "Approval Workflows", url: "/admin/approval-workflows", icon: GitBranch }, +]; + +const adaptiveItems: NavItem[] = [ + { title: "Taxonomy", url: "/admin/taxonomy", icon: Target }, + { title: "Resources", url: "/admin/resources", icon: FolderOpen }, +]; + +const institutionalItems: NavItem[] = [ + { title: "Academic Years", url: "/admin/academic-years", icon: CalendarDays }, + { title: "Departments", url: "/admin/departments", icon: Landmark }, + { title: "Admissions", url: "/admin/admissions", icon: UserPlus }, + { title: "Admission Register", url: "/admin/admission-register", icon: ScrollText }, + { title: "Exam Sessions", url: "/admin/exam-sessions", icon: FileText }, + { title: "Marksheets", url: "/admin/marksheets", icon: Award }, + { title: "Student Leave", url: "/admin/student-leave", icon: CalendarOff }, + { title: "Fees & Payments", url: "/admin/fees", icon: DollarSign }, + { title: "Lessons", url: "/admin/lessons", icon: BookMarked }, + { title: "Gradebook", url: "/admin/gradebook", icon: BarChartHorizontal }, + { title: "Student Progress", url: "/admin/student-progress", icon: TrendingUp }, + { title: "Library", url: "/admin/library", icon: Library }, + { title: "Activities", url: "/admin/activities", icon: Activity }, + { title: "Facilities", url: "/admin/facilities", icon: Warehouse }, +]; + +const managementItems: NavItem[] = [ + { title: "Users", url: "/admin/users", icon: Users }, + { title: "Entities", url: "/admin/entities", icon: Building2 }, + { title: "Classrooms", url: "/admin/classrooms", icon: GraduationCap }, + { title: "User Roles", url: "/admin/user-roles", icon: UserCog }, + { title: "Roles & Permissions", url: "/admin/roles-permissions", icon: Settings }, + { title: "Authority Matrix", url: "/admin/authority-matrix", icon: Workflow }, +]; + +const reportItems: NavItem[] = [ + { title: "Student Performance", url: "/admin/student-performance", icon: BarChart3 }, + { title: "Stats Corporate", url: "/admin/stats-corporate", icon: Building2 }, + { title: "Record", url: "/admin/record", icon: History }, +]; + +const trainingItems: NavItem[] = [ + { title: "Vocabulary", url: "/admin/training/vocabulary", icon: BookA }, + { title: "Grammar", url: "/admin/training/grammar", icon: PenTool }, +]; + +const configItems: NavItem[] = [ + { title: "FAQ Manager", url: "/admin/faq", icon: FaqIcon }, + { title: "Notification Rules", url: "/admin/notification-rules", icon: Bell }, + { title: "Approval Config", url: "/admin/approval-config", icon: Workflow }, +]; + +const supportItems: NavItem[] = [ + { title: "Payment Record", url: "/admin/payment-record", icon: CreditCard }, + { title: "Tickets", url: "/admin/tickets", icon: Ticket }, + { title: "Settings", url: "/admin/settings-platform", icon: Settings }, +]; + +// ============= Reusable sidebar group ============= +function SidebarNavGroup({ label, items }: { label: string; items: NavItem[] }) { + const { state } = useSidebar(); + const collapsed = state === "collapsed"; + + return ( + + {label} + + + {items.map((item) => ( + + + + + {!collapsed && {item.title}} + + + + ))} + + + + ); +} + +// ============= Breadcrumbs ============= +const routeLabels: Record = { + admin: "Admin", dashboard: "Dashboard", platform: "Platform", courses: "Courses", + students: "Students", teachers: "Teachers", batches: "Batches", timetable: "Timetable", + reports: "Reports", assignments: "Assignments", examsList: "Exams List", + "exam-structures": "Exam Structures", rubrics: "Rubrics", generation: "Generation", + "approval-workflows": "Approval Workflows", users: "Users", entities: "Entities", + classrooms: "Classrooms", "student-performance": "Student Performance", + "stats-corporate": "Stats Corporate", record: "Record", training: "Training", + vocabulary: "Vocabulary", grammar: "Grammar", "payment-record": "Payment Record", + tickets: "Tickets", "settings-platform": "Settings", settings: "Settings", + profile: "Profile", exam: "Exam", + "academic-years": "Academic Years", departments: "Departments", + admissions: "Admissions", "admission-register": "Admission Register", + "exam-sessions": "Exam Sessions", marksheets: "Marksheets", + faq: "FAQ Manager", "notification-rules": "Notification Rules", + "approval-config": "Approval Config", + "student-leave": "Student Leave", fees: "Fees & Payments", lessons: "Lessons", + gradebook: "Gradebook", "student-progress": "Student Progress", + library: "Library", activities: "Activities", facilities: "Facilities", +}; + +function AppBreadcrumbs() { + const location = useLocation(); + const segments = location.pathname.split("/").filter(Boolean); + + return ( + + + + Home + + {segments.map((seg, i) => { + const path = "/" + segments.slice(0, i + 1).join("/"); + const label = routeLabels[seg] || seg.charAt(0).toUpperCase() + seg.slice(1); + const isLast = i === segments.length - 1; + return ( + + + + {isLast ? {label} : {label}} + + + ); + })} + + + ); +} + +// ============= Main Layout ============= +export default function AdminLmsLayout() { + const { user, logout } = useAuth(); + const navigate = useNavigate(); + + const initials = user?.name?.split(" ").map(w => w[0]).join("").slice(0, 2).toUpperCase() ?? "??"; + + const handleLogout = async () => { + await logout(); + navigate("/login"); + }; + + return ( + +
+ +
+
+
+ + +
+ +
+ + + + + + + +
+

{user?.name ?? "User"}

+

{user?.email ?? ""}

+
+ + navigate("/admin/profile")}> + Profile + + navigate("/admin/settings-platform")}> + Settings + + + + Logout + +
+
+
+
+
+ +
+
+
+ + + + Need help? + +
+ ); +} + +// ============= Admin Sidebar ============= +function AdminSidebar() { + const { state } = useSidebar(); + const collapsed = state === "collapsed"; + const { user } = useAuth(); + const { hasAnyPermission, isAdmin } = usePermissions(); + + const showManagement = isAdmin || hasAnyPermission(["view_entities", "view_students", "view_teachers"]); + const showReports = isAdmin || hasAnyPermission(["view_statistics", "view_student_performance", "view_entity_statistics"]); + const showPayments = isAdmin || hasAnyPermission(["view_payment_record", "pay_entity"]); + + return ( + + +
+ EnCoach + {!collapsed && ( + + En + Coach + + )} +
+
+ + + + + + + + {showManagement && } + {showReports && } + + + + + + + Training + {!collapsed && } + + + + + + {trainingItems.map((item) => ( + + + + + {!collapsed && {item.title}} + + + + ))} + + + + + + + i.url !== "/admin/payment-record")} /> + + + +
+
+ {user?.name?.split(" ").map(w => w[0]).join("").slice(0, 2).toUpperCase() ?? "??"} +
+ {!collapsed && ( +
+ {user?.name ?? "User"} + {user?.email ?? ""} +
+ )} +
+
+
+ ); +} diff --git a/src/components/AppLayout.tsx b/src/components/AppLayout.tsx new file mode 100644 index 0000000..52751a1 --- /dev/null +++ b/src/components/AppLayout.tsx @@ -0,0 +1,145 @@ +import { Outlet, useLocation, Link, useNavigate } from "react-router-dom"; +import { SidebarProvider, SidebarTrigger } from "@/components/ui/sidebar"; +import { AppSidebar } from "@/components/AppSidebar"; +import { + Breadcrumb, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, + BreadcrumbPage, BreadcrumbSeparator, +} from "@/components/ui/breadcrumb"; +import { Button } from "@/components/ui/button"; +import { + DropdownMenu, DropdownMenuContent, DropdownMenuItem, + DropdownMenuSeparator, DropdownMenuTrigger, +} from "@/components/ui/dropdown-menu"; +import { Ticket, Settings, User, LogOut, HelpCircle } from "lucide-react"; +import React from "react"; +import AiAssistantDrawer from "@/components/ai/AiAssistantDrawer"; +import AiSearchBar from "@/components/ai/AiSearchBar"; + +const routeLabels: Record = { + "dashboard": "Dashboard", + "admin": "Admin", + "assignments": "Assignments", + "examsList": "Exams List", + "exam-structures": "Exam Structures", + "rubrics": "Rubrics", + "generation": "Exam Generation", + "approval-workflows": "Approval Workflows", + "users": "Users", + "entities": "Entities", + "classrooms": "Classrooms", + "student-performance": "Student Performance", + "stats-corporate": "Stats Corporate", + "record": "Record", + "training": "Training", + "vocabulary": "Vocabulary", + "grammar": "Grammar", + "payment-record": "Payment Record", + "tickets": "Tickets", + "settings": "Settings", + "profile": "Profile", + "exam": "Exam", + "tutor": "Tutor", +}; + +function AppBreadcrumbs() { + const location = useLocation(); + const segments = location.pathname.split("/").filter(Boolean); + + return ( + + + + + Home + + + {segments.map((seg, i) => { + const path = "/" + segments.slice(0, i + 1).join("/"); + const label = routeLabels[seg] || seg.charAt(0).toUpperCase() + seg.slice(1); + const isLast = i === segments.length - 1; + return ( + + + + {isLast ? ( + {label} + ) : ( + + {label} + + )} + + + ); + })} + + + ); +} + +export default function AppLayout() { + const navigate = useNavigate(); + + return ( + +
+ +
+
+
+ + +
+ +
+ + + + + + + +
+

Admin User

+

admin@encoach.com

+
+ + navigate("/profile")}> + Profile + + navigate("/settings")}> + Settings + + + navigate("/login")}> + Logout + +
+
+
+
+
+ +
+
+
+ + {/* Floating help button */} + + + Need help? + +
+ ); +} diff --git a/src/components/AppSidebar.tsx b/src/components/AppSidebar.tsx new file mode 100644 index 0000000..f557045 --- /dev/null +++ b/src/components/AppSidebar.tsx @@ -0,0 +1,158 @@ +import { + LayoutDashboard, ClipboardList, FileText, Layers, BookOpen, Wand2, + GitBranch, Users, BarChart3, Building2, History, GraduationCap, + CreditCard, Ticket, Settings, User, BookA, PenTool, LogOut +} from "lucide-react"; +import { NavLink } from "@/components/NavLink"; +import { useLocation } from "react-router-dom"; +import { + Sidebar, SidebarContent, SidebarGroup, SidebarGroupContent, + SidebarGroupLabel, SidebarMenu, SidebarMenuButton, SidebarMenuItem, + SidebarHeader, SidebarFooter, SidebarSeparator, useSidebar, +} from "@/components/ui/sidebar"; +import { Collapsible, CollapsibleContent, CollapsibleTrigger } from "@/components/ui/collapsible"; +import { ChevronDown } from "lucide-react"; + +const mainItems = [ + { title: "Dashboard", url: "/dashboard/admin", icon: LayoutDashboard }, + { title: "Assignments", url: "/assignments", icon: ClipboardList }, + { title: "Exams List", url: "/examsList", icon: FileText }, + { title: "Exam Structures", url: "/exam-structures", icon: Layers }, + { title: "Rubrics", url: "/rubrics", icon: BookOpen }, + { title: "Generation", url: "/generation", icon: Wand2 }, + { title: "Approval Workflows", url: "/approval-workflows", icon: GitBranch }, +]; + +const managementItems = [ + { title: "Users", url: "/users", icon: Users }, + { title: "Entities", url: "/entities", icon: Building2 }, + { title: "Classrooms", url: "/classrooms", icon: GraduationCap }, +]; + +const reportItems = [ + { title: "Student Performance", url: "/student-performance", icon: BarChart3 }, + { title: "Stats Corporate", url: "/stats-corporate", icon: Building2 }, + { title: "Record", url: "/record", icon: History }, +]; + +const trainingItems = [ + { title: "Vocabulary", url: "/training/vocabulary", icon: BookA }, + { title: "Grammar", url: "/training/grammar", icon: PenTool }, +]; + +const supportItems = [ + { title: "Payment Record", url: "/payment-record", icon: CreditCard }, + { title: "Tickets", url: "/tickets", icon: Ticket }, + { title: "Settings", url: "/settings", icon: Settings }, +]; + +function SidebarNavGroup({ label, items }: { label: string; items: typeof mainItems }) { + const { state } = useSidebar(); + const collapsed = state === "collapsed"; + const location = useLocation(); + + return ( + + {label} + + + {items.map((item) => ( + + + + + {!collapsed && {item.title}} + + + + ))} + + + + ); +} + +export function AppSidebar() { + const { state } = useSidebar(); + const collapsed = state === "collapsed"; + const location = useLocation(); + + return ( + + +
+
+ +
+ {!collapsed && ( + + EnCoach + + )} +
+
+ + + + + + + + + + + + + Training + {!collapsed && } + + + + + + {trainingItems.map((item) => ( + + + + + {!collapsed && {item.title}} + + + + ))} + + + + + + + + + + + + +
+
+ +
+ {!collapsed && ( +
+ Admin User + admin@encoach.com +
+ )} +
+
+
+ ); +} diff --git a/src/components/NavLink.tsx b/src/components/NavLink.tsx new file mode 100644 index 0000000..a561a95 --- /dev/null +++ b/src/components/NavLink.tsx @@ -0,0 +1,28 @@ +import { NavLink as RouterNavLink, NavLinkProps } from "react-router-dom"; +import { forwardRef } from "react"; +import { cn } from "@/lib/utils"; + +interface NavLinkCompatProps extends Omit { + className?: string; + activeClassName?: string; + pendingClassName?: string; +} + +const NavLink = forwardRef( + ({ className, activeClassName, pendingClassName, to, ...props }, ref) => { + return ( + + cn(className, isActive && activeClassName, isPending && pendingClassName) + } + {...props} + /> + ); + }, +); + +NavLink.displayName = "NavLink"; + +export { NavLink }; diff --git a/src/components/NotificationDropdown.tsx b/src/components/NotificationDropdown.tsx new file mode 100644 index 0000000..caa9f8d --- /dev/null +++ b/src/components/NotificationDropdown.tsx @@ -0,0 +1,36 @@ +import { Bell } from "lucide-react"; +import { Button } from "@/components/ui/button"; +import { + DropdownMenu, DropdownMenuContent, DropdownMenuItem, + DropdownMenuSeparator, DropdownMenuTrigger, +} from "@/components/ui/dropdown-menu"; +export default function NotificationDropdown() { + const notifications: { id: string; title: string; message: string; time: string; read: boolean; type: string }[] = []; + const unread = notifications.filter((n) => !n.read).length; + + return ( + + + + + +
Notifications
+ + {notifications.slice(0, 4).map((n) => ( + + {n.title} + {n.message} + {n.time} + + ))} +
+
+ ); +} diff --git a/src/components/ProtectedRoute.tsx b/src/components/ProtectedRoute.tsx new file mode 100644 index 0000000..e97752c --- /dev/null +++ b/src/components/ProtectedRoute.tsx @@ -0,0 +1,64 @@ +import { Navigate, Outlet } from "react-router-dom"; +import { useAuth } from "@/contexts/AuthContext"; +import { usePermissions } from "@/hooks/usePermissions"; +import type { UserRole } from "@/types/auth"; + +interface Props { + allowedRoles?: UserRole[]; + requiredPermissions?: string[]; +} + +function getRoleDashboard(role: UserRole): string { + switch (role) { + case "student": + return "/student/dashboard"; + case "teacher": + return "/teacher/dashboard"; + case "admin": + case "developer": + return "/admin/dashboard"; + case "corporate": + case "mastercorporate": + case "agent": + return "/admin/platform"; + default: + return "/login"; + } +} + +export default function ProtectedRoute({ allowedRoles, requiredPermissions }: Props) { + const { user, isAuthenticated, isLoading } = useAuth(); + const { hasAllPermissions, isLoading: permissionsLoading } = usePermissions(); + + if (isLoading) { + return ( +
+
+
+ ); + } + + if (!isAuthenticated || !user) { + return ; + } + + if (allowedRoles && !allowedRoles.includes(user.user_type)) { + return ; + } + + if (requiredPermissions && requiredPermissions.length > 0) { + if (permissionsLoading) { + return ( +
+
+
+ ); + } + + if (!hasAllPermissions(requiredPermissions)) { + return ; + } + } + + return ; +} diff --git a/src/components/RoleLayout.tsx b/src/components/RoleLayout.tsx new file mode 100644 index 0000000..6c1943f --- /dev/null +++ b/src/components/RoleLayout.tsx @@ -0,0 +1,151 @@ +import { Outlet, Link, useNavigate, useLocation } from "react-router-dom"; +import { SidebarProvider, SidebarTrigger } from "@/components/ui/sidebar"; +import { + Sidebar, SidebarContent, SidebarGroup, SidebarGroupContent, + SidebarGroupLabel, SidebarMenu, SidebarMenuButton, SidebarMenuItem, + SidebarHeader, SidebarFooter, SidebarSeparator, useSidebar, +} from "@/components/ui/sidebar"; +import { NavLink } from "@/components/NavLink"; +import { useAuth, UserRole } from "@/contexts/AuthContext"; +import NotificationDropdown from "@/components/NotificationDropdown"; +import { Button } from "@/components/ui/button"; +import { + DropdownMenu, DropdownMenuContent, DropdownMenuItem, + DropdownMenuSeparator, DropdownMenuTrigger, +} from "@/components/ui/dropdown-menu"; +import { LogOut, User, Settings, LucideIcon } from "lucide-react"; +import React from "react"; + +export interface NavItem { + title: string; + url: string; + icon: LucideIcon; +} + +export interface NavGroup { + label: string; + items: NavItem[]; +} + +interface RoleLayoutProps { + navGroups: NavGroup[]; + role: UserRole; +} + +function SidebarNav({ navGroups }: { navGroups: NavGroup[] }) { + const { state } = useSidebar(); + const collapsed = state === "collapsed"; + + return ( + <> + {navGroups.map((group) => ( + + {group.label} + + + {group.items.map((item) => ( + + + + + {!collapsed && {item.title}} + + + + ))} + + + + ))} + + ); +} + +export default function RoleLayout({ navGroups, role }: RoleLayoutProps) { + const { user, logout } = useAuth(); + const navigate = useNavigate(); + + const initials = user?.name?.split(" ").map(w => w[0]).join("").slice(0, 2).toUpperCase() ?? "??"; + + const handleLogout = async () => { + await logout(); + navigate("/login"); + }; + + return ( + +
+ + +
+ EnCoach + + En + Coach + +
+
+ + + + + + +
+
+ {initials} +
+
+ {user?.name} + {user?.email} +
+
+
+
+ +
+
+
+ + {role} Portal +
+
+ + + + + + +
+

{user?.name}

+

{user?.email}

+
+ + navigate(`/${role}/profile`)}> + Profile + + + + Logout + +
+
+
+
+
+ +
+
+
+
+ ); +} diff --git a/src/components/StudentLayout.tsx b/src/components/StudentLayout.tsx new file mode 100644 index 0000000..3fc64e3 --- /dev/null +++ b/src/components/StudentLayout.tsx @@ -0,0 +1,51 @@ +import RoleLayout, { NavGroup } from "./RoleLayout"; +import { + LayoutDashboard, BookOpen, ClipboardList, BarChart3, + CalendarCheck, Calendar, User, Target, GraduationCap, ListChecks, + MessageSquare, Megaphone, Mail, TrendingUp, +} from "lucide-react"; + +const navGroups: NavGroup[] = [ + { + label: "Learning", + items: [ + { title: "Dashboard", url: "/student/dashboard", icon: LayoutDashboard }, + { title: "My Courses", url: "/student/courses", icon: BookOpen }, + { title: "Subject Registration", url: "/student/subject-registration", icon: ListChecks }, + { title: "Assignments", url: "/student/assignments", icon: ClipboardList }, + ], + }, + { + label: "Adaptive Learning", + items: [ + { title: "My Subjects", url: "/student/subjects", icon: Target }, + ], + }, + { + label: "Progress", + items: [ + { title: "Grades", url: "/student/grades", icon: BarChart3 }, + { title: "Attendance", url: "/student/attendance", icon: CalendarCheck }, + { title: "Timetable", url: "/student/timetable", icon: Calendar }, + { title: "My Journey", url: "/student/journey", icon: TrendingUp }, + ], + }, + { + label: "Communication", + items: [ + { title: "Discussions", url: "/student/discussions", icon: MessageSquare }, + { title: "Messages", url: "/student/messages", icon: Mail }, + { title: "Announcements", url: "/student/announcements", icon: Megaphone }, + ], + }, + { + label: "Account", + items: [ + { title: "Profile", url: "/student/profile", icon: User }, + ], + }, +]; + +export default function StudentLayout() { + return ; +} diff --git a/src/components/TeacherLayout.tsx b/src/components/TeacherLayout.tsx new file mode 100644 index 0000000..caeccae --- /dev/null +++ b/src/components/TeacherLayout.tsx @@ -0,0 +1,42 @@ +import RoleLayout, { NavGroup } from "./RoleLayout"; +import { + LayoutDashboard, BookOpen, ClipboardList, FileText, + CalendarCheck, Users, Calendar, User, MessageSquare, + Megaphone, Wand2, +} from "lucide-react"; + +const navGroups: NavGroup[] = [ + { + label: "Teaching", + items: [ + { title: "Dashboard", url: "/teacher/dashboard", icon: LayoutDashboard }, + { title: "Courses", url: "/teacher/courses", icon: BookOpen }, + { title: "Assignments", url: "/teacher/assignments", icon: ClipboardList }, + ], + }, + { + label: "Management", + items: [ + { title: "Attendance", url: "/teacher/attendance", icon: CalendarCheck }, + { title: "Students", url: "/teacher/students", icon: Users }, + { title: "Timetable", url: "/teacher/timetable", icon: Calendar }, + ], + }, + { + label: "Communication", + items: [ + { title: "Discussions", url: "/teacher/discussions", icon: MessageSquare }, + { title: "Announcements", url: "/teacher/announcements", icon: Megaphone }, + ], + }, + { + label: "Account", + items: [ + { title: "Profile", url: "/teacher/profile", icon: User }, + ], + }, +]; + +export default function TeacherLayout() { + return ; +} diff --git a/src/components/ai/AiAlertBanner.tsx b/src/components/ai/AiAlertBanner.tsx new file mode 100644 index 0000000..e14ec37 --- /dev/null +++ b/src/components/ai/AiAlertBanner.tsx @@ -0,0 +1,80 @@ +import { useState } from "react"; +import { useQuery } from "@tanstack/react-query"; +import { AlertTriangle, X, Sparkles, Loader2 } from "lucide-react"; +import { Button } from "@/components/ui/button"; +import { analyticsService } from "@/services/analytics.service"; + +export default function AiAlertBanner() { + const [dismissedIds, setDismissedIds] = useState>(() => new Set()); + const [errorDismissed, setErrorDismissed] = useState(false); + + const { data: alerts, isLoading, isError, error } = useQuery({ + queryKey: ["ai", "alerts"], + queryFn: () => analyticsService.getAlerts(), + }); + + const visible = alerts?.filter((a) => !dismissedIds.has(a.id)) ?? []; + + if (isLoading) { + return ( +
+ +

Loading alerts…

+
+ ); + } + + if (isError && !errorDismissed) { + return ( +
+ +
+

+ Alerts unavailable +

+

{error instanceof Error ? error.message : "Could not load alerts."}

+
+ +
+ ); + } + + if (isError && errorDismissed) return null; + + if (!alerts?.length) { + return ( +
+ +

No AI alerts right now.

+
+ ); + } + + if (!visible.length) return null; + + return ( +
+ {visible.map((alert) => ( +
+ +
+

+ {alert.title} +

+

{alert.description}

+
+ +
+ ))} +
+ ); +} diff --git a/src/components/ai/AiAssistantDrawer.tsx b/src/components/ai/AiAssistantDrawer.tsx new file mode 100644 index 0000000..05ccaf7 --- /dev/null +++ b/src/components/ai/AiAssistantDrawer.tsx @@ -0,0 +1,139 @@ +import { useState } from "react"; +import { useMutation } from "@tanstack/react-query"; +import { useLocation } from "react-router-dom"; +import { Sheet, SheetContent, SheetHeader, SheetTitle } from "@/components/ui/sheet"; +import { Button } from "@/components/ui/button"; +import { Input } from "@/components/ui/input"; +import { Sparkles, Send, Loader2 } from "lucide-react"; +import { coachingService } from "@/services/coaching.service"; +import { useToast } from "@/hooks/use-toast"; + +const quickActions = [ + "Platform health summary", + "Show dropout risks", + "Compare course performance", + "Suggest batch improvements", +]; + +export default function AiAssistantDrawer() { + const [open, setOpen] = useState(false); + const [messages, setMessages] = useState<{ role: "user" | "ai"; text: string }[]>([]); + const [input, setInput] = useState(""); + const location = useLocation(); + const { toast } = useToast(); + + const chatMutation = useMutation({ + mutationFn: (message: string) => + coachingService.chat({ message, context: { page: location.pathname } }), + onSuccess: (data) => { + setMessages((prev) => [...prev, { role: "ai", text: data.message }]); + }, + onError: (err: Error) => { + toast({ + variant: "destructive", + title: "Could not get a reply", + description: err.message || "Something went wrong. Try again.", + }); + setMessages((prev) => [ + ...prev, + { + role: "ai", + text: "Sorry, I could not reach the assistant. Please try again in a moment.", + }, + ]); + }, + }); + + const handleSend = (text: string) => { + if (!text.trim() || chatMutation.isPending) return; + const userMsg = text.trim(); + setMessages((prev) => [...prev, { role: "user", text: userMsg }]); + setInput(""); + chatMutation.mutate(userMsg); + }; + + return ( + <> + + + + + + + + EnCoach AI Assistant + + + +
+ {quickActions.map((action) => ( + + ))} +
+ +
+ {messages.length === 0 && ( +
+ +

Ask me anything about the platform,

+

or click a quick action above.

+
+ )} + {messages.map((msg, i) => ( +
+ {msg.role === "ai" && ( + + )} + {msg.text} +
+ ))} + {chatMutation.isPending && ( +
+ + Thinking... +
+ )} +
+ +
+ setInput(e.target.value)} + onKeyDown={(e) => e.key === "Enter" && handleSend(input)} + /> + +
+
+
+ + ); +} diff --git a/src/components/ai/AiBatchOptimizer.tsx b/src/components/ai/AiBatchOptimizer.tsx new file mode 100644 index 0000000..7a10079 --- /dev/null +++ b/src/components/ai/AiBatchOptimizer.tsx @@ -0,0 +1,101 @@ +import { useState } from "react"; +import { useMutation } from "@tanstack/react-query"; +import { Dialog, DialogContent, DialogHeader, DialogTitle } from "@/components/ui/dialog"; +import { Button } from "@/components/ui/button"; +import { Sparkles, Loader2 } from "lucide-react"; +import { useToast } from "@/hooks/use-toast"; +import { analyticsService } from "@/services/analytics.service"; + +interface Props { + batchId?: number; +} + +export default function AiBatchOptimizer({ batchId }: Props) { + const [open, setOpen] = useState(false); + const { toast } = useToast(); + + const mutation = useMutation({ + mutationFn: (id: number) => analyticsService.getBatchOptimization(id), + onError: (err: Error) => { + toast({ + title: "Optimization failed", + description: err.message || "Could not analyze this batch.", + variant: "destructive", + }); + }, + }); + + const handleOpen = () => { + if (batchId == null) { + toast({ + title: "No batch selected", + description: "Choose a batch to analyze, or open this from a batch detail page.", + variant: "destructive", + }); + return; + } + mutation.reset(); + setOpen(true); + mutation.mutate(batchId); + }; + + const handleApply = () => { + toast({ title: "Suggestion Applied", description: "Batch split recommendation has been saved successfully." }); + setOpen(false); + }; + + const onOpenChange = (next: boolean) => { + setOpen(next); + if (!next) mutation.reset(); + }; + + const suggestions = mutation.data ?? []; + const showResults = !mutation.isPending && !mutation.isError && suggestions.length > 0; + const showEmpty = !mutation.isPending && !mutation.isError && mutation.isSuccess && suggestions.length === 0; + + return ( + <> + + + + + + AI Batch Optimization + + + {mutation.isPending ? ( +
+ Analyzing batch data... +
+ ) : mutation.isError ? ( +

Something went wrong. Try again.

+ ) : showResults ? ( +
+
+ {suggestions.map((s, i) => ( +
+

{s.impact} impact

+

{s.suggestion}

+ {s.details ?

{s.details}

: null} +
+ ))} +
+
+ + +
+
+ ) : showEmpty ? ( +

No optimization suggestions for this batch.

+ ) : null} +
+
+ + ); +} diff --git a/src/components/ai/AiCreationAssistant.tsx b/src/components/ai/AiCreationAssistant.tsx new file mode 100644 index 0000000..84af4b7 --- /dev/null +++ b/src/components/ai/AiCreationAssistant.tsx @@ -0,0 +1,215 @@ +import { useState } from "react"; +import { useMutation } from "@tanstack/react-query"; +import { Button } from "@/components/ui/button"; +import { Dialog, DialogContent, DialogHeader, DialogTitle } from "@/components/ui/dialog"; +import { Input } from "@/components/ui/input"; +import { Label } from "@/components/ui/label"; +import { Textarea } from "@/components/ui/textarea"; +import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"; +import { Sparkles, Loader2 } from "lucide-react"; +import { useToast } from "@/hooks/use-toast"; +import { lmsService } from "@/services/lms.service"; + +interface Props { + type: "course" | "assignment" | "batch" | "rubric" | "exam" | "student" | "teacher"; + trigger?: React.ReactNode; + onGenerated?: (data: any) => void; +} + +const typeLabels: Record = { + course: "Course", assignment: "Assignment", batch: "Batch", rubric: "Rubric", + exam: "Exam", student: "Student Plan", teacher: "Teacher Assignment", +}; + +export default function AiCreationAssistant({ type, trigger, onGenerated }: Props) { + const [open, setOpen] = useState(false); + const [prompt, setPrompt] = useState(""); + const [level, setLevel] = useState("b2"); + const [subjectId, setSubjectId] = useState(""); + const { toast } = useToast(); + + const generateCourseMutation = useMutation({ + mutationFn: (payload: { title: string; subject_id?: number; level?: string }) => + lmsService.aiGenerateCourse(payload), + onError: (err: Error) => { + toast({ + variant: "destructive", + title: "Generation failed", + description: err.message || "Could not generate course outline.", + }); + }, + }); + + const handleGenerate = () => { + if (type !== "course") { + toast({ + variant: "destructive", + title: "Not available", + description: "Live AI generation is wired for courses only. Use the course type to generate an outline.", + }); + return; + } + const title = prompt.trim() || "Untitled course"; + const sid = subjectId.trim() ? Number(subjectId) : undefined; + generateCourseMutation.mutate({ + title, + ...(sid !== undefined && !Number.isNaN(sid) ? { subject_id: sid } : {}), + level, + }); + }; + + const handleApply = () => { + if (!generateCourseMutation.data) return; + onGenerated?.(generateCourseMutation.data); + toast({ + title: `AI ${typeLabels[type]} Applied`, + description: `The AI-generated ${type} has been applied to your form.`, + }); + setOpen(false); + generateCourseMutation.reset(); + }; + + return ( + <> + {trigger ? ( +
setOpen(true)}>{trigger}
+ ) : ( + + )} + + { + setOpen(v); + if (!v) generateCourseMutation.reset(); + }} + > + + + + AI {typeLabels[type]} Generator + + + + {type === "course" && generateCourseMutation.isSuccess ? ( +
+
+

+ AI Generated {typeLabels[type]} +

+
+ Outline +
+                    {typeof generateCourseMutation.data?.outline === "string"
+                      ? generateCourseMutation.data.outline
+                      : JSON.stringify(generateCourseMutation.data?.outline, null, 2)}
+                  
+
+
+ +
+ + +
+
+ ) : ( +
+
+ +