Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies (#41)
Browse files Browse the repository at this point in the history
* chore(deps): update all non-major dependencies

* fix: compatibility issues with Djs

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Daan Klarenbeek <github@ijskoud.dev>
  • Loading branch information
renovate[bot] and ijsKoud authored Apr 18, 2023
1 parent 8aaf753 commit 2be9653
Show file tree
Hide file tree
Showing 3 changed files with 145 additions and 269 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,22 @@
"bump": "cliff-jumper"
},
"devDependencies": {
"@commitlint/cli": "^17.5.0",
"@commitlint/config-angular": "^17.4.4",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-angular": "^17.6.1",
"@favware/cliff-jumper": "^2.0.0",
"@sapphire/eslint-config": "^4.4.1",
"@sapphire/prettier-config": "^1.4.5",
"@sapphire/ts-config": "^4.0.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.15.10",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@types/lodash": "^4.14.194",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^13.2.0",
"lint-staged": "^13.2.1",
"nodemon": "^2.0.22",
"pinst": "^3.0.0",
"prettier": "^2.8.7",
Expand All @@ -53,7 +53,7 @@
},
"dependencies": {
"@snowcrystals/icicle": "1.0.3",
"discord.js": "^14.7.1",
"discord.js": "^14.9.0",
"lodash": "^4.17.21"
},
"engines": {
Expand Down
6 changes: 3 additions & 3 deletions src/lib/structures/Command.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type {
APIApplicationCommandOption,
ApplicationCommandOptionData,
AutocompleteInteraction,
Awaitable,
CommandInteraction,
Expand All @@ -18,7 +18,7 @@ export class Command extends Base implements CommandOptions {
public descriptions: Partial<Record<Locale, string>>;
public description: string;

public options: APIApplicationCommandOption[];
public options: ApplicationCommandOptionData[];
public permissions: CommandPermissions;

/** The category of the command (automatically set by the commandHandler) */
Expand Down Expand Up @@ -93,7 +93,7 @@ export interface CommandOptions {
/** Options users have to pass through before sending the command
* @default []
*/
options?: APIApplicationCommandOption[];
options?: ApplicationCommandOptionData[];
/** The permissions for the command */
permissions?: Partial<CommandPermissions>;
}
Expand Down
Loading

1 comment on commit 2be9653

@ijsKoud
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ijsblokjeee[bot] release v1.2.1

Please sign in to comment.