Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
Update modules
Browse files Browse the repository at this point in the history
  • Loading branch information
anduong96 committed Nov 28, 2023
1 parent 691af02 commit 00cc629
Show file tree
Hide file tree
Showing 6 changed files with 196 additions and 480 deletions.
Binary file modified bun.lockb
Binary file not shown.
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,34 +24,34 @@
"seed": "bun ./prisma/seed/index.ts"
},
"devDependencies": {
"@prisma/generator-helper": "^5.5.2",
"@types/lodash": "^4.14.200",
"@types/request-ip": "^0.0.40",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@prisma/generator-helper": "^5.6.0",
"@types/lodash": "^4.14.202",
"@types/request-ip": "^0.0.41",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"bun-types": "latest",
"eslint": "^8.53.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-perfectionist": "^2.2.0",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"prettier": "^3.1.0",
"prisma-typegraphql-types-generator": "^1.5.14",
"typescript": "^5.2.2"
"typescript": "^5.3.2"
},
"peerDependencies": {
"class-validator": "^0.14.0",
"typescript": "^5.2.2"
"typescript": "^5.3.2"
},
"dependencies": {
"@apollo/server": "^4.9.5",
"@prisma/client": "latest",
"@sentry/bun": "^7.77.0",
"@sentry/bun": "^7.83.0",
"cheerio": "1.0.0-rc.12",
"cron-parser": "^4.9.0",
"cron-time-generator": "^2.0.1",
"elysia": "^0.7.21",
"firebase-admin": "^11.11.0",
"elysia": "^0.7.29",
"firebase-admin": "^11.11.1",
"generate-unique-id": "^2.0.3",
"gitops-secrets": "^0.0.6",
"graphql-scalars": "^1.22.4",
Expand Down
1 change: 1 addition & 0 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ model AirportWeather {
updatedAt DateTime @updatedAt
createdAt DateTime @default(now())
//@skip
Airport Airport @relation(fields: [airportIata], references: [iata], onDelete: Cascade)
@@unique([airportIata, year, month, date, hour])
Expand Down
1 change: 0 additions & 1 deletion schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ type AirportTsaWaitTime {
}

type AirportWeather {
Airport: Airport!
airTemperatureCelsius: Int!
airportIata: String!
createdAt: DateTimeISO!
Expand Down
3 changes: 0 additions & 3 deletions src/@generated/graphql/models/AirportWeather.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,5 @@ export class GQL_AirportWeather {
@Field()
createdAt: Date;

@Field(() => GQL_Airport)
Airport: GQL_Airport;

// skip overwrite 👇
}
Loading

0 comments on commit 00cc629

Please sign in to comment.