Skip to content

Commit

Permalink
chore: deps
Browse files Browse the repository at this point in the history
  • Loading branch information
didinele committed Sep 20, 2023
1 parent b9edb65 commit 1065b51
Show file tree
Hide file tree
Showing 10 changed files with 185 additions and 152 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"curly": ["error", "all"],
"eqeqeq": ["error", "always", { "null": "ignore" }],
"no-eq-null": "off",
"@typescript-eslint/consistent-type-definitions": ["error", "interface"]
"@typescript-eslint/consistent-type-definitions": ["error", "interface"],
"import/extensions": ["error", { ".js": "always" }]
}
}
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,21 @@
"update": "yarn upgrade-interactive"
},
"dependencies": {
"prisma": "^5.2.0"
"prisma": "^5.3.1"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-angular": "^17.7.0",
"dotenv-cli": "^7.3.0",
"eslint": "^8.47.0",
"eslint-config-neon": "^0.1.54",
"eslint": "^8.49.0",
"eslint-config-neon": "^0.1.56",
"eslint-formatter-pretty": "^5.0.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"prettier": "^3.0.2",
"prisma-kysely": "^1.6.0",
"prettier": "^3.0.3",
"prisma-kysely": "^1.7.0",
"rimraf": "^5.0.1",
"turbo": "^1.10.12",
"typescript": "^5.1.6"
"turbo": "^1.10.14",
"typescript": "^5.2.2"
}
}
8 changes: 4 additions & 4 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"node": ">=16.9.0"
},
"devDependencies": {
"@types/node": "^20.5.2",
"@types/node": "^20.6.3",
"@types/pg": "^8.10.2",
"typescript": "^5.1.6"
"typescript": "^5.2.2"
},
"dependencies": {
"@chatsift/pino-rotate-file": "^0.2.0",
Expand All @@ -27,9 +27,9 @@
"@sapphire/bitfield": "^1.2.0",
"inversify": "^6.0.1",
"ioredis": "^5.3.2",
"kysely": "^0.26.1",
"kysely": "^0.26.3",
"pg": "^8.11.3",
"pino": "^8.15.0",
"pino": "^8.15.1",
"pino-pretty": "^10.2.0",
"tslib": "^2.6.2"
}
Expand Down
6 changes: 3 additions & 3 deletions services/discord-proxy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"node": ">=16.9.0"
},
"devDependencies": {
"@types/node": "^20.5.2",
"pino": "^8.15.0",
"typescript": "^5.1.6"
"@types/node": "^20.6.3",
"pino": "^8.15.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@automoderator/core": "workspace:^",
Expand Down
8 changes: 4 additions & 4 deletions services/gateway/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"node": ">=16.9.0"
},
"devDependencies": {
"@types/node": "^20.5.2",
"pino": "^8.15.0",
"typescript": "^5.1.6"
"@types/node": "^20.6.3",
"pino": "^8.15.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@automoderator/core": "workspace:^",
Expand All @@ -26,6 +26,6 @@
"ioredis": "^5.3.2",
"reflect-metadata": "^0.1.13",
"tslib": "^2.6.2",
"undici": "^5.23.0"
"undici": "^5.25.0"
}
}
10 changes: 5 additions & 5 deletions services/interactions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"node": ">=16.9.0"
},
"devDependencies": {
"@types/node": "^20.5.2",
"pino": "^8.15.0",
"typescript": "^5.1.6"
"@types/node": "^20.6.3",
"pino": "^8.15.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@automoderator/core": "workspace:^",
Expand All @@ -23,11 +23,11 @@
"@discordjs/core": "^1.0.1",
"@discordjs/rest": "^2.0.1",
"@discordjs/ws": "^1.0.1",
"@sapphire/discord-utilities": "^3.1.0",
"@sapphire/discord-utilities": "^3.1.1",
"inversify": "^6.0.1",
"ioredis": "^5.3.2",
"reflect-metadata": "^0.1.13",
"tslib": "^2.6.2",
"undici": "^5.23.0"
"undici": "^5.25.0"
}
}
2 changes: 2 additions & 0 deletions services/interactions/src/interactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ export class InteractionsService {
this.broker.on(GatewayDispatchEvents.InteractionCreate, async ({ data: interaction, ack }) => {
try {
if (interaction.type === InteractionType.ApplicationCommand) {
// @ts-expect-error - version miss match
const options = new InteractionOptionResolver(interaction);

const [identifier, fallbackIdentifier] = this.getCommandIdentifier(interaction, options);
Expand Down Expand Up @@ -113,6 +114,7 @@ export class InteractionsService {

await handler?.(interaction, args);
} else if (interaction.type === InteractionType.ApplicationCommandAutocomplete) {
// @ts-expect-error - version miss match
const options = new InteractionOptionResolver(interaction);
const focused = options.getFocusedOption();

Expand Down
8 changes: 4 additions & 4 deletions services/logging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"node": ">=16.9.0"
},
"devDependencies": {
"@types/node": "^20.5.2",
"pino": "^8.15.0",
"typescript": "^5.1.6"
"@types/node": "^20.6.3",
"pino": "^8.15.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@automoderator/core": "workspace:^",
Expand All @@ -24,7 +24,7 @@
"@discordjs/ws": "^1.0.1",
"inversify": "^6.0.1",
"ioredis": "^5.3.2",
"kysely": "^0.26.1",
"kysely": "^0.26.3",
"reflect-metadata": "^0.1.13",
"tslib": "^2.6.2"
}
Expand Down
8 changes: 4 additions & 4 deletions services/task-runner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
"node": ">=16.9.0"
},
"devDependencies": {
"@types/node": "^20.5.2",
"pino": "^8.15.0",
"typescript": "^5.1.6"
"@types/node": "^20.6.3",
"pino": "^8.15.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@automoderator/core": "workspace:^",
"inversify": "^6.0.1",
"ioredis": "^5.3.2",
"kysely": "^0.26.1",
"kysely": "^0.26.3",
"reflect-metadata": "^0.1.13",
"tslib": "^2.6.2"
}
Expand Down
Loading

0 comments on commit 1065b51

Please sign in to comment.