cordo 1.10.1 → 1.10.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -199,6 +199,8 @@ export declare type InteractionBase = {
199
199
  version: number;
200
200
  user: InteractionUser;
201
201
  application_id?: Snowflake;
202
+ locale?: string;
203
+ guild_locale?: string;
202
204
  guildData?: GuildData;
203
205
  userData?: UserData;
204
206
  _answered: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cordo",
3
- "version": "1.10.1",
3
+ "version": "1.10.2",
4
4
  "description": "A framework for handling complex discord api interactions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/types/base.ts CHANGED
@@ -227,6 +227,8 @@ export type InteractionBase = {
227
227
  version: number
228
228
  user: InteractionUser
229
229
  application_id?: Snowflake
230
+ locale?: string
231
+ guild_locale?: string
230
232
  guildData?: GuildData
231
233
  userData?: UserData
232
234
  _answered: boolean