@pkmn/dex-types 0.9.0 → 0.9.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.
Files changed (2) hide show
  1. package/index.d.ts +1 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -238,7 +238,7 @@ export interface MoveData extends EffectData, HitEffect {
238
238
  stallingMove?: boolean;
239
239
  }
240
240
 
241
- export type SpeciesTag = 'Mythical' | 'Restricted Legendary' | 'Sub-Legendary' | 'Paradox';
241
+ export type SpeciesTag = 'Mythical' | 'Restricted Legendary' | 'Sub-Legendary' | 'Ultra Beast' | 'Paradox';
242
242
  export interface SpeciesAbility<A = string> { 0: A; 1?: A; H?: A; S?: A }
243
243
 
244
244
  export interface SpeciesData {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pkmn/dex-types",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "types": "index.d.ts",
5
5
  "description": "Common Pokémon Showdown Dex types shared by @pkmn/dex and @pkmn/sim",
6
6
  "repository": "github:pkmn/ps",