feat(schemas): add repository settings and user restore token fields
- Add allow_forking, allow_merge_commit, allow_rebase_merge, allow_squash_merge fields to repo schemas - Add delete_branch_on_merge field to repository models and schemas - Add has_issues, has_pull_requests, has_wiki, homepage fields to repo schemas - Add topics array field to repository schemas and models - Add restore_token_expires_at and restore_token_hash fields to user schemas - Remove UserAvatarResponse and UploadUserAvatarParams schemas completely - Update CreateRepoParams and UpdateRepoParams with new repository settings - Modify CreateTemplateParams and UpdateTemplateParams with notification template fields - Remove description from SetBranchProtectionParams schema - Delete App.css and auth.css files completely - Update App.tsx with routing migration notes
This commit is contained in:
+43
-22
@@ -3,38 +3,59 @@
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"type": "module",
|
||||
"imports": {
|
||||
"@/*": "./src/*"
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "tsc -b && vite build",
|
||||
"preview": "vite preview",
|
||||
"genapi": "node genapi.js"
|
||||
"genapi": "node genapi.js",
|
||||
"typecheck": "tsc -b --pretty false",
|
||||
"format": "biome format --write",
|
||||
"lint": "biome lint",
|
||||
"check": "biome check --write"
|
||||
},
|
||||
"dependencies": {
|
||||
"@solid-primitives/history": "^0.2.3",
|
||||
"@solid-primitives/i18n": "^2.2.1",
|
||||
"@solid-primitives/keyboard": "^1.3.5",
|
||||
"@solid-primitives/sse": "^0.0.102",
|
||||
"@solid-primitives/storage": "^4.3.4",
|
||||
"@solid-primitives/websocket": "^1.4.0",
|
||||
"@solidjs/meta": "^0.29.4",
|
||||
"@solidjs/router": "^0.16.1",
|
||||
"@tailwindcss/vite": "^4.3.0",
|
||||
"@tanstack/solid-query": "^5.101.0",
|
||||
"@base-ui/react": "^1.5.0",
|
||||
"@fontsource-variable/geist": "^5.2.9",
|
||||
"@hookform/resolvers": "^5.4.0",
|
||||
"@tanstack/react-form": "^1.33.0",
|
||||
"@tanstack/react-query": "^5.101.0",
|
||||
"@tanstack/react-table": "^8.21.3",
|
||||
"ahooks": "^3.9.7",
|
||||
"axios": "^1.17.0",
|
||||
"ky": "^2.0.2",
|
||||
"solid-icons": "^1.2.0",
|
||||
"solid-js": "^1.9.12",
|
||||
"tailwindcss": "^4.3.0",
|
||||
"class-variance-authority": "^0.7.1",
|
||||
"clsx": "^2.1.1",
|
||||
"cmdk": "^1.1.1",
|
||||
"date-fns": "^4.4.0",
|
||||
"embla-carousel-react": "^8.6.0",
|
||||
"input-otp": "^1.4.2",
|
||||
"lucide-react": "^1.17.0",
|
||||
"next-themes": "^0.4.6",
|
||||
"radix-ui": "^1.5.0",
|
||||
"react": "^19.2.7",
|
||||
"react-day-picker": "^10.0.1",
|
||||
"react-dom": "^19.2.7",
|
||||
"react-hook-form": "^7.78.0",
|
||||
"react-resizable-panels": "^4.11.2",
|
||||
"react-router-dom": "^7.17.0",
|
||||
"recharts": "3.8.0",
|
||||
"shadcn": "^4.11.0",
|
||||
"sonner": "^2.0.7",
|
||||
"tailwind-merge": "^3.6.0",
|
||||
"tw-animate-css": "^1.4.0",
|
||||
"vaul": "^1.1.2",
|
||||
"zod": "^4.4.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^24.12.3",
|
||||
"@biomejs/biome": "^2.4.16",
|
||||
"@tailwindcss/vite": "^4.3.0",
|
||||
"@types/node": "^25.9.2",
|
||||
"@types/react": "^19.2.17",
|
||||
"@types/react-dom": "^19.2.3",
|
||||
"@vitejs/plugin-react": "^6.0.2",
|
||||
"openapi-typescript-codegen": "^0.30.0",
|
||||
"tailwindcss": "^4.3.0",
|
||||
"typescript": "~6.0.2",
|
||||
"vite": "^8.0.12",
|
||||
"vite-plugin-solid": "^2.11.12"
|
||||
}
|
||||
"vite": "^8.0.12"
|
||||
},
|
||||
"packageManager": "bun"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user