Skip to content

Commit

Permalink
🌟feat: support openapi & api token
Browse files Browse the repository at this point in the history
  • Loading branch information
blinko-space committed Nov 10, 2024
1 parent 321bb64 commit 3a62789
Show file tree
Hide file tree
Showing 24 changed files with 465 additions and 70 deletions.
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blinko",
"version": "0.0.26",
"version": "0.1.0",
"private": true,
"browser": {
"fs": false,
Expand Down Expand Up @@ -57,6 +57,7 @@
"cron": "^3.1.7",
"dataloader": "^2.2.2",
"dayjs": "^1.11.8",
"decimal.js": "^10.4.3",
"emoji-picker-react": "^4.12.0",
"execa": "^9.4.1",
"faiss-node": "^0.5.1",
Expand All @@ -81,6 +82,7 @@
"next": "^14.2.5",
"next-auth": "^4.24.7",
"next-themes": "^0.3.0",
"nextjs-cors": "^2.2.0",
"nprogress": "^0.2.0",
"pg": "^8.11.4",
"pg-connection-string": "^2.7.0",
Expand Down Expand Up @@ -116,7 +118,8 @@
"typeorm": "^0.3.20",
"unfurl.js": "^6.4.0",
"usehooks-ts": "^3.1.0",
"zod": "^3.23.8"
"zod": "^3.23.8",
"zod-prisma-types": "^3.1.8"
},
"devDependencies": {
"@headlessui/tailwindcss": "^0.1.3",
Expand Down
89 changes: 79 additions & 10 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ generator client {
provider = "prisma-client-js"
}

// generator zod {
// provider = "zod-prisma-types"
// }

datasource db {
provider = "postgres"
url = env("DATABASE_URL")
Expand Down
Loading

0 comments on commit 3a62789

Please sign in to comment.