Merge branch 'stuart/seed-db' of https://github.com/yangshun/tech-interview-handbook into stuart/seed-db

pull/501/head
Stuart Long Chay Boon 3 years ago
commit 3829a26f51

@ -43,6 +43,7 @@
"react-query": "^3.39.2",
"read-excel-file": "^5.5.3",
"superjson": "^1.10.0",
"xlsx": "^0.18.5",
"unique-names-generator": "^4.7.1",
"xlsx": "^0.18.5",
"zod": "^3.18.0"

@ -235,7 +235,7 @@ model OffersProfile {
model OffersBackground {
id String @id @default(cuid())
totalYoe Int
totalYoe Int @default(0)
specificYoes OffersSpecificYoe[]
experiences OffersExperience[]

@ -394,7 +394,7 @@ export const offersRouter = createRouter().query('list', {
numOfPages: Math.ceil(data.length / input.limit),
totalItems: data.length,
},
!yoeRange ? JobType.INTERN : JobType.FULLTIME
!yoeRange ? JobType.INTERN : JobType.FULLTIME,
);
},
});

56598
package-lock.json generated

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save