Skip to content

Commit

Permalink
Merge pull request #347 from TaloDev/develop
Browse files Browse the repository at this point in the history
Release 0.46.0
  • Loading branch information
tudddorrr authored Oct 20, 2024
2 parents 42d5804 + 97de94a commit 4c7185b
Show file tree
Hide file tree
Showing 17 changed files with 468 additions and 110 deletions.
152 changes: 79 additions & 73 deletions package-lock.json

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

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "game-services",
"version": "0.45.0",
"version": "0.46.0",
"description": "",
"main": "src/index.ts",
"scripts": {
Expand All @@ -22,7 +22,7 @@
"author": "Sleepy Studios",
"license": "MIT",
"devDependencies": {
"@mikro-orm/cli": "^6.3.9",
"@mikro-orm/cli": "^6.3.13",
"@stylistic/eslint-plugin": "^2.2.2",
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "^4.3.7",
Expand Down Expand Up @@ -50,10 +50,10 @@
"@clickhouse/client": "^1.4.1",
"@dinero.js/currencies": "^2.0.0-alpha.14",
"@koa/cors": "^5.0.0",
"@mikro-orm/core": "^6.3.9",
"@mikro-orm/migrations": "^6.3.9",
"@mikro-orm/mysql": "^6.3.9",
"@mikro-orm/reflection": "^6.3.9",
"@mikro-orm/core": "^6.3.13",
"@mikro-orm/migrations": "^6.3.13",
"@mikro-orm/mysql": "^6.3.13",
"@mikro-orm/reflection": "^6.3.13",
"@sendgrid/mail": "^8.1.3",
"@sentry/node": "^7.47.0",
"@sentry/utils": "^7.47.0",
Expand Down
2 changes: 2 additions & 0 deletions src/config/api-routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import apiKeyMiddleware from '../middlewares/api-key-middleware'
import playerAuthMiddleware from '../middlewares/player-auth-middleware'
import PlayerAuthAPIService from '../services/api/player-auth-api.service'
import continunityMiddleware from '../middlewares/continunity-middleware'
import PlayerGroupAPIService from '../services/api/player-group-api.service'

export default (app: Koa) => {
app.use(apiKeyMiddleware)
Expand All @@ -31,6 +32,7 @@ export default (app: Koa) => {
app.use(playerAuthMiddleware)
app.use(continunityMiddleware)

app.use(service('/v1/player-groups', new PlayerGroupAPIService()))
app.use(service('/v1/health-check', new HealthCheckAPIService()))
app.use(service('/v1/game-feedback', new GameFeedbackAPIService()))
app.use(service('/v1/game-config', new GameConfigAPIService()))
Expand Down
Loading

0 comments on commit 4c7185b

Please sign in to comment.