@blizzard-api/classic-wow 3.0.3 → 3.0.5

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/dist/index.d.ts +4 -4
  2. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -256,6 +256,7 @@ interface Socket {
256
256
  }
257
257
  interface Spell$1 {
258
258
  description: string;
259
+ display_color?: Color;
259
260
  spell: NameIdKey;
260
261
  }
261
262
  interface Stat$1 {
@@ -354,7 +355,7 @@ interface CharacterProfileSummaryResponse extends ResponseBase {
354
355
  experience: number;
355
356
  faction: Faction;
356
357
  gender: Gender;
357
- guild: Guild$1;
358
+ guild?: Guild$1;
358
359
  hunter_pets?: Href;
359
360
  id: number;
360
361
  is_ghost?: boolean;
@@ -426,7 +427,7 @@ interface SpecializationGroupItem {
426
427
  talents: Array<TalentElement>;
427
428
  }
428
429
  interface SpellTooltip {
429
- cast_time: 'Channeled' | 'Instant' | 'Instant cast' | 'Passive';
430
+ cast_time: string;
430
431
  cooldown?: string;
431
432
  description: string;
432
433
  power_cost?: null | string;
@@ -611,7 +612,7 @@ interface ConnectedRealmResponse extends ResponseBase {
611
612
  realm_locked_status?: RealmLockedStatus;
612
613
  realms: Array<Realm$1>;
613
614
  status: {
614
- name: RealmStatus;
615
+ name: string;
615
616
  type: RealmStatusCapitalized;
616
617
  };
617
618
  }
@@ -661,7 +662,6 @@ interface RealmLockedStatus {
661
662
  is_locked_for_pct: boolean;
662
663
  }
663
664
  type RealmPopulationCapitalized = 'FULL' | 'HIGH' | 'LOCKED' | 'LOW' | 'MEDIUM' | 'RECOMMENDED';
664
- type RealmStatus = 'Down' | 'Up';
665
665
  type RealmStatusCapitalized = 'DOWN' | 'UP';
666
666
  interface SearchRealm {
667
667
  category: Record<Locales, string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blizzard-api/classic-wow",
3
- "version": "3.0.3",
3
+ "version": "3.0.5",
4
4
  "license": "MIT",
5
5
  "author": "Putro",
6
6
  "description": "A series of helpers to interact with the World of Warcraft Classic Blizzard API",
@@ -34,10 +34,10 @@
34
34
  ],
35
35
  "dependencies": {},
36
36
  "peerDependencies": {
37
- "@blizzard-api/core": "3.0.1"
37
+ "@blizzard-api/core": "3.0.2"
38
38
  },
39
39
  "devDependencies": {
40
- "@blizzard-api/core": "3.0.1"
40
+ "@blizzard-api/core": "3.0.2"
41
41
  },
42
42
  "scripts": {
43
43
  "build": "tsdown",