@blizzard-api/wow 0.1.1 → 0.2.0
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.
- package/dist/index.cjs +97 -63
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +551 -224
- package/dist/index.d.ts +551 -224
- package/dist/index.js +97 -63
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _blizzard_api_core from '@blizzard-api/core';
|
|
2
|
-
import { Origins } from '@blizzard-api/core';
|
|
2
|
+
import { BaseSearchParameters, Locales, Origins } from '@blizzard-api/core';
|
|
3
3
|
|
|
4
4
|
interface ResponseBase {
|
|
5
5
|
_links: {
|
|
@@ -25,7 +25,7 @@ interface Color {
|
|
|
25
25
|
b: number;
|
|
26
26
|
a: number;
|
|
27
27
|
}
|
|
28
|
-
interface MediaAsset {
|
|
28
|
+
interface MediaAsset$1 {
|
|
29
29
|
key: string;
|
|
30
30
|
value: string;
|
|
31
31
|
file_data_id: number;
|
|
@@ -43,6 +43,21 @@ interface Faction {
|
|
|
43
43
|
name: Capitalize<Lowercase<keyof typeof Factions>>;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
+
interface MediaSearchParameters extends BaseSearchParameters {
|
|
47
|
+
tags?: string;
|
|
48
|
+
}
|
|
49
|
+
interface MediaSearchResponseItem extends KeyBase {
|
|
50
|
+
data: {
|
|
51
|
+
id: number;
|
|
52
|
+
assets: Array<MediaAsset>;
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
interface MediaAsset {
|
|
56
|
+
file_data_id: number;
|
|
57
|
+
key: string;
|
|
58
|
+
value: string;
|
|
59
|
+
}
|
|
60
|
+
|
|
46
61
|
interface AchievementCategoryResponse extends ResponseBase, NameId {
|
|
47
62
|
achievements: Array<NameIdKey>;
|
|
48
63
|
parent_category: NameIdKey;
|
|
@@ -147,35 +162,97 @@ interface Power {
|
|
|
147
162
|
passive_power_spell: NameIdKey;
|
|
148
163
|
}
|
|
149
164
|
interface AzeriteEssenceMediaResponse extends ResponseBase {
|
|
150
|
-
assets: Array<MediaAsset>;
|
|
165
|
+
assets: Array<MediaAsset$1>;
|
|
151
166
|
id: number;
|
|
152
167
|
}
|
|
168
|
+
interface AzeriteEssenceSearchParameters extends BaseSearchParameters {
|
|
169
|
+
'allowed_specializations.id'?: number;
|
|
170
|
+
}
|
|
171
|
+
interface AzeriteEssenceSearchResponseItem extends KeyBase {
|
|
172
|
+
data: {
|
|
173
|
+
allowed_specializations: Array<NameId>;
|
|
174
|
+
name: Record<Locales, string>;
|
|
175
|
+
};
|
|
176
|
+
}
|
|
153
177
|
|
|
178
|
+
type WithoutUnderscore<T extends string> = T extends `${infer Prefix}_${infer Suffix}` ? `${Prefix}${Suffix}` : never;
|
|
179
|
+
type RealmCategory = 'English' | 'French' | 'German' | 'Italian' | 'PS' | 'Russian' | 'Spanish';
|
|
180
|
+
type RealmTimezone = 'America/New_York' | 'Europe/Paris';
|
|
181
|
+
type RealmTypeCapitalized = 'NORMAL' | 'RP';
|
|
182
|
+
type RealmType = 'Normal' | 'Roleplaying';
|
|
183
|
+
interface RealmIndexResponse extends ResponseBase {
|
|
184
|
+
realms: Array<Realm$4>;
|
|
185
|
+
}
|
|
186
|
+
interface Realm$4 extends NameIdKey {
|
|
187
|
+
slug: string;
|
|
188
|
+
}
|
|
189
|
+
interface RealmResponse extends ResponseBase, NameId {
|
|
190
|
+
region: NameIdKey;
|
|
191
|
+
connected_realm: {
|
|
192
|
+
href: string;
|
|
193
|
+
};
|
|
194
|
+
category: RealmCategory;
|
|
195
|
+
locale: WithoutUnderscore<Locales>;
|
|
196
|
+
timezone: RealmTimezone;
|
|
197
|
+
type: {
|
|
198
|
+
type: RealmTypeCapitalized;
|
|
199
|
+
name: RealmType;
|
|
200
|
+
};
|
|
201
|
+
is_tournament: boolean;
|
|
202
|
+
slug: string;
|
|
203
|
+
}
|
|
204
|
+
interface RealmSearchParameters extends BaseSearchParameters {
|
|
205
|
+
timezone?: RealmTimezone;
|
|
206
|
+
}
|
|
207
|
+
interface RealmSearchResponseItem extends KeyBase {
|
|
208
|
+
data: {
|
|
209
|
+
is_tournament: boolean;
|
|
210
|
+
timezone: RealmTimezone;
|
|
211
|
+
name: Record<Locales, string | undefined>;
|
|
212
|
+
id: number;
|
|
213
|
+
region: {
|
|
214
|
+
name: Record<Locales, string | undefined>;
|
|
215
|
+
id: number;
|
|
216
|
+
};
|
|
217
|
+
category: Record<Locales, string | undefined>;
|
|
218
|
+
locale: WithoutUnderscore<Locales>;
|
|
219
|
+
type: {
|
|
220
|
+
type: RealmTypeCapitalized;
|
|
221
|
+
name: Record<Locales, string | undefined>;
|
|
222
|
+
};
|
|
223
|
+
slug: string;
|
|
224
|
+
};
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
type RealmPopulation = 'Low' | 'Medium' | 'High' | 'Full' | 'New Players';
|
|
228
|
+
type RealmPopulationCapitalized = 'LOW' | 'MEDIUM' | 'HIGH' | 'FULL' | 'RECOMMENDED';
|
|
229
|
+
type RealmStatus = 'Up' | 'Down';
|
|
154
230
|
interface ConnectedRealmIndexResponse extends ResponseBase {
|
|
155
231
|
connected_realms: Array<{
|
|
156
232
|
href: string;
|
|
157
233
|
}>;
|
|
158
234
|
}
|
|
159
|
-
|
|
160
|
-
type RealmPopulation = 'Low' | 'Medium' | 'High' | 'Full';
|
|
161
|
-
type RealmType = 'Normal';
|
|
162
|
-
interface Realm$4 {
|
|
235
|
+
interface Realm$3 {
|
|
163
236
|
id: number;
|
|
164
237
|
region: NameIdKey;
|
|
165
238
|
connected_realm: {
|
|
166
239
|
href: string;
|
|
167
240
|
};
|
|
168
241
|
name: string;
|
|
169
|
-
category:
|
|
170
|
-
locale:
|
|
171
|
-
timezone:
|
|
242
|
+
category: RealmCategory;
|
|
243
|
+
locale: WithoutUnderscore<Locales>;
|
|
244
|
+
timezone: RealmTimezone;
|
|
172
245
|
type: {
|
|
173
|
-
type:
|
|
246
|
+
type: RealmTypeCapitalized;
|
|
174
247
|
name: RealmType;
|
|
175
248
|
};
|
|
176
249
|
is_tournament: boolean;
|
|
177
250
|
slug: string;
|
|
178
251
|
}
|
|
252
|
+
interface RealmLockedStatus {
|
|
253
|
+
is_locked_for_pct: boolean;
|
|
254
|
+
is_locked_for_new_characters: boolean;
|
|
255
|
+
}
|
|
179
256
|
interface ConnectedRealmResponse extends ResponseBase {
|
|
180
257
|
id: number;
|
|
181
258
|
has_queue: boolean;
|
|
@@ -184,16 +261,55 @@ interface ConnectedRealmResponse extends ResponseBase {
|
|
|
184
261
|
name: RealmStatus;
|
|
185
262
|
};
|
|
186
263
|
population: {
|
|
187
|
-
type:
|
|
264
|
+
type: RealmPopulationCapitalized;
|
|
188
265
|
name: RealmPopulation;
|
|
189
266
|
};
|
|
190
|
-
realms: Array<Realm$
|
|
267
|
+
realms: Array<Realm$3>;
|
|
191
268
|
mythic_leaderboards: {
|
|
192
269
|
href: string;
|
|
193
270
|
};
|
|
194
271
|
auctions: {
|
|
195
272
|
href: string;
|
|
196
273
|
};
|
|
274
|
+
realm_locked_status?: RealmLockedStatus;
|
|
275
|
+
}
|
|
276
|
+
interface ConnectedRealmSearchParameters extends BaseSearchParameters {
|
|
277
|
+
'realms.timezone'?: RealmTimezone;
|
|
278
|
+
'status.type'?: Uppercase<RealmStatus>;
|
|
279
|
+
}
|
|
280
|
+
interface SearchRealm {
|
|
281
|
+
is_tournament: boolean;
|
|
282
|
+
timezone: RealmTimezone;
|
|
283
|
+
name: Record<Locales, string | undefined>;
|
|
284
|
+
id: number;
|
|
285
|
+
category: Record<Locales, string | undefined>;
|
|
286
|
+
region: {
|
|
287
|
+
name: Record<Locales, string | undefined>;
|
|
288
|
+
id: number;
|
|
289
|
+
};
|
|
290
|
+
locale: WithoutUnderscore<Locales>;
|
|
291
|
+
type: {
|
|
292
|
+
type: RealmTypeCapitalized;
|
|
293
|
+
name: Record<Locales, string | undefined>;
|
|
294
|
+
};
|
|
295
|
+
slug: string;
|
|
296
|
+
}
|
|
297
|
+
interface SearchRealmStatus {
|
|
298
|
+
type: Uppercase<RealmStatus>;
|
|
299
|
+
name: Record<Locales, string>;
|
|
300
|
+
}
|
|
301
|
+
interface SearchRealmPopulation {
|
|
302
|
+
type: RealmPopulationCapitalized;
|
|
303
|
+
name: Record<Locales, string>;
|
|
304
|
+
}
|
|
305
|
+
interface ConnectedRealmSearchResponseItem extends KeyBase {
|
|
306
|
+
data: {
|
|
307
|
+
id: number;
|
|
308
|
+
has_queue: boolean;
|
|
309
|
+
realms: Array<SearchRealm>;
|
|
310
|
+
status: SearchRealmStatus;
|
|
311
|
+
population: SearchRealmPopulation;
|
|
312
|
+
};
|
|
197
313
|
}
|
|
198
314
|
|
|
199
315
|
interface ConduitIndexResponse extends ResponseBase {
|
|
@@ -316,7 +432,7 @@ interface Media$d extends KeyBase {
|
|
|
316
432
|
id: number;
|
|
317
433
|
}
|
|
318
434
|
interface CreatureFamilyMediaResponse extends ResponseBase {
|
|
319
|
-
assets: Array<MediaAsset>;
|
|
435
|
+
assets: Array<MediaAsset$1>;
|
|
320
436
|
id: number;
|
|
321
437
|
}
|
|
322
438
|
interface CreatureTypeIndexResponse extends ResponseBase {
|
|
@@ -326,6 +442,28 @@ interface CreatureTypeResponse extends ResponseBase {
|
|
|
326
442
|
id: number;
|
|
327
443
|
name: string;
|
|
328
444
|
}
|
|
445
|
+
interface CreatureSearchParameters extends BaseSearchParameters {
|
|
446
|
+
name: string;
|
|
447
|
+
locale: Locales;
|
|
448
|
+
}
|
|
449
|
+
interface CreatureSearchResponseItem extends KeyBase {
|
|
450
|
+
data: {
|
|
451
|
+
creature_displays: Array<{
|
|
452
|
+
id: number;
|
|
453
|
+
}>;
|
|
454
|
+
is_tameable: boolean;
|
|
455
|
+
name: Record<Locales, string | undefined>;
|
|
456
|
+
id: number;
|
|
457
|
+
type: {
|
|
458
|
+
id: number;
|
|
459
|
+
name: Record<Locales, string | undefined>;
|
|
460
|
+
};
|
|
461
|
+
family?: {
|
|
462
|
+
id: number;
|
|
463
|
+
name: Record<Locales, string | undefined>;
|
|
464
|
+
};
|
|
465
|
+
};
|
|
466
|
+
}
|
|
329
467
|
|
|
330
468
|
interface GuildCrestComponentsIndexResponse extends ResponseBase {
|
|
331
469
|
emblems: Array<Border>;
|
|
@@ -439,10 +577,18 @@ interface Damage$1 {
|
|
|
439
577
|
damage_class: Source$3;
|
|
440
578
|
}
|
|
441
579
|
|
|
442
|
-
interface
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
580
|
+
interface ItemQuality {
|
|
581
|
+
name: Record<Locales, string | undefined>;
|
|
582
|
+
type: 'POOR' | 'COMMON' | 'UNCOMMON' | 'RARE' | 'EPIC' | 'LEGENDARY' | 'ARTIFACT' | 'HEIRLOOM';
|
|
583
|
+
}
|
|
584
|
+
interface InventoryType {
|
|
585
|
+
name: Record<Locales, string | undefined>;
|
|
586
|
+
type: 'HEAD' | 'SHOULDER' | 'CHEST' | 'WRIST' | 'HANDS' | 'WAIST' | 'LEGS' | 'FEET' | 'NECK' | 'BACK' | 'FINGER' | 'TRINKET' | 'TABARD' | 'SHIRT' | 'TWOHWEAPON' | 'BAG' | 'NON_EQUIP';
|
|
587
|
+
}
|
|
588
|
+
type StatTypeCapitalized = 'STRENGTH' | 'AGILITY' | 'INTELLECT' | 'STAMINA' | 'CRIT_RATING' | 'HASTE_RATING' | 'MASTERY' | 'VERSATILITY';
|
|
589
|
+
type StatType = 'Strength' | 'Agility' | 'Intellect' | 'Stamina' | 'Critical Strike' | 'Haste' | 'Mastery' | 'Versatility';
|
|
590
|
+
interface ItemResponse extends ResponseBase, NameId {
|
|
591
|
+
quality: ItemQuality;
|
|
446
592
|
level: number;
|
|
447
593
|
required_level: number;
|
|
448
594
|
media: Media$a;
|
|
@@ -456,32 +602,44 @@ interface ItemResponse extends ResponseBase {
|
|
|
456
602
|
is_stackable: boolean;
|
|
457
603
|
preview_item: PreviewItem;
|
|
458
604
|
purchase_quantity: number;
|
|
459
|
-
|
|
460
|
-
interface InventoryType {
|
|
461
|
-
type: string;
|
|
462
|
-
name: string;
|
|
605
|
+
description?: string;
|
|
463
606
|
}
|
|
464
607
|
interface Media$a extends KeyBase {
|
|
465
608
|
id: number;
|
|
466
609
|
}
|
|
467
610
|
interface PreviewItem {
|
|
468
611
|
item: Media$a;
|
|
469
|
-
|
|
470
|
-
bonus_list: Array<number>;
|
|
471
|
-
quality: InventoryType;
|
|
612
|
+
quality: ItemQuality;
|
|
472
613
|
name: string;
|
|
473
614
|
media: Media$a;
|
|
474
615
|
item_class: NameIdKey;
|
|
475
616
|
item_subclass: NameIdKey;
|
|
476
617
|
inventory_type: InventoryType;
|
|
477
|
-
binding
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
618
|
+
binding?: {
|
|
619
|
+
type: string;
|
|
620
|
+
name: string;
|
|
621
|
+
};
|
|
622
|
+
armor?: Armor;
|
|
623
|
+
sell_price?: number;
|
|
624
|
+
requirements?: Requirements$1;
|
|
625
|
+
level?: Durability;
|
|
626
|
+
is_subclass_hidden?: boolean;
|
|
627
|
+
spells?: Array<Spell>;
|
|
628
|
+
context?: number;
|
|
629
|
+
bonus_list?: Array<number>;
|
|
630
|
+
weapon?: Weapon;
|
|
631
|
+
durability?: Durability;
|
|
632
|
+
stats?: Array<Stat>;
|
|
633
|
+
description?: string;
|
|
634
|
+
recipe?: Recipe;
|
|
635
|
+
shield_block?: Armor;
|
|
636
|
+
unique_equipped?: 'Unique';
|
|
637
|
+
crafting_reagent?: string;
|
|
638
|
+
container_slots?: Durability;
|
|
639
|
+
}
|
|
640
|
+
interface Armor {
|
|
641
|
+
value: number;
|
|
642
|
+
display: Display;
|
|
485
643
|
}
|
|
486
644
|
interface Durability {
|
|
487
645
|
value: number;
|
|
@@ -495,7 +653,10 @@ interface Spell {
|
|
|
495
653
|
description: string;
|
|
496
654
|
}
|
|
497
655
|
interface Stat {
|
|
498
|
-
type:
|
|
656
|
+
type: {
|
|
657
|
+
type: StatTypeCapitalized;
|
|
658
|
+
name: StatType;
|
|
659
|
+
};
|
|
499
660
|
value: number;
|
|
500
661
|
is_negated?: boolean;
|
|
501
662
|
display: Display;
|
|
@@ -513,7 +674,46 @@ interface Damage {
|
|
|
513
674
|
min_value: number;
|
|
514
675
|
max_value: number;
|
|
515
676
|
display_string: string;
|
|
516
|
-
damage_class:
|
|
677
|
+
damage_class: {
|
|
678
|
+
type: string;
|
|
679
|
+
name: string;
|
|
680
|
+
};
|
|
681
|
+
}
|
|
682
|
+
interface Recipe {
|
|
683
|
+
item: RecipeItem;
|
|
684
|
+
reagents: Array<{
|
|
685
|
+
quantity: number;
|
|
686
|
+
} & NameIdKey>;
|
|
687
|
+
reagents_display_string: string;
|
|
688
|
+
}
|
|
689
|
+
interface RecipeItem {
|
|
690
|
+
item: Media$a;
|
|
691
|
+
quality: ItemQuality;
|
|
692
|
+
name: string;
|
|
693
|
+
media: Media$a;
|
|
694
|
+
item_class: NameIdKey;
|
|
695
|
+
item_subclass: NameIdKey;
|
|
696
|
+
inventory_type: InventoryType;
|
|
697
|
+
binding: {
|
|
698
|
+
type: string;
|
|
699
|
+
name: string;
|
|
700
|
+
};
|
|
701
|
+
weapon?: Weapon;
|
|
702
|
+
stats: Array<Stat>;
|
|
703
|
+
sell_price: {
|
|
704
|
+
value: number;
|
|
705
|
+
display_strings: RecipeItemDisplayStrings;
|
|
706
|
+
};
|
|
707
|
+
requirements: Requirements$1;
|
|
708
|
+
level: Durability;
|
|
709
|
+
durability: Durability;
|
|
710
|
+
armor?: Armor;
|
|
711
|
+
}
|
|
712
|
+
interface RecipeItemDisplayStrings {
|
|
713
|
+
header: string;
|
|
714
|
+
gold: string;
|
|
715
|
+
silver: string;
|
|
716
|
+
copper: string;
|
|
517
717
|
}
|
|
518
718
|
interface ItemClassIndexResponse extends ResponseBase {
|
|
519
719
|
item_classes: Array<NameIdKey>;
|
|
@@ -524,7 +724,7 @@ interface ItemClassResponse extends ResponseBase {
|
|
|
524
724
|
item_subclasses: Array<NameIdKey>;
|
|
525
725
|
}
|
|
526
726
|
interface ItemMediaResponse extends ResponseBase {
|
|
527
|
-
assets: Array<MediaAsset>;
|
|
727
|
+
assets: Array<MediaAsset$1>;
|
|
528
728
|
id: number;
|
|
529
729
|
}
|
|
530
730
|
interface ItemSubclassResponse extends ResponseBase {
|
|
@@ -546,7 +746,42 @@ interface Effect {
|
|
|
546
746
|
display_string: string;
|
|
547
747
|
required_count: number;
|
|
548
748
|
}
|
|
749
|
+
interface ItemSearchParameters extends BaseSearchParameters {
|
|
750
|
+
name: string;
|
|
751
|
+
locale: Locales;
|
|
752
|
+
}
|
|
753
|
+
interface ItemSearchResponseItem extends KeyBase {
|
|
754
|
+
data: {
|
|
755
|
+
level: number;
|
|
756
|
+
required_level: number;
|
|
757
|
+
sell_price: number;
|
|
758
|
+
item_subclass: {
|
|
759
|
+
name: Record<Locales, string | undefined>;
|
|
760
|
+
id: number;
|
|
761
|
+
};
|
|
762
|
+
is_equippable: boolean;
|
|
763
|
+
purchase_quantity: number;
|
|
764
|
+
media: {
|
|
765
|
+
id: number;
|
|
766
|
+
};
|
|
767
|
+
item_class: {
|
|
768
|
+
name: Record<Locales, string | undefined>;
|
|
769
|
+
id: number;
|
|
770
|
+
};
|
|
771
|
+
quality: ItemQuality;
|
|
772
|
+
max_count: number;
|
|
773
|
+
is_stackable: boolean;
|
|
774
|
+
name: Record<Locales, string | undefined>;
|
|
775
|
+
purchase_price: number;
|
|
776
|
+
id: number;
|
|
777
|
+
inventory_type: InventoryType;
|
|
778
|
+
};
|
|
779
|
+
}
|
|
549
780
|
|
|
781
|
+
type EncounterCategory = 'RAID' | 'DUNGEON' | 'WORLD_BOSS';
|
|
782
|
+
type EncounterMode = 'NORMAL' | 'HEROIC' | 'MYTHIC' | 'LFR';
|
|
783
|
+
type ModeName = 'Raid Finder' | 'Normal' | 'Heroic' | 'Mythic' | 'Mythic+ Dungeons' | '10 Player' | '25 Player' | '10 Player (Heroic)' | '25 Player (Heroic)';
|
|
784
|
+
type ModeType = 'LFR' | 'NORMAL' | 'HEROIC' | 'MYTHIC' | 'MYTHIC_KEYSTONE' | 'LEGACY_10_MAN' | 'LEGACY_25_MAN' | 'LEGACY_10_MAN_HEROIC' | 'LEGACY_25_MAN_HEROIC';
|
|
550
785
|
interface JournalEncounterIndexResponse extends ResponseBase {
|
|
551
786
|
encounters: Array<NameIdKey>;
|
|
552
787
|
}
|
|
@@ -554,16 +789,18 @@ interface JournalEncounterResponse extends ResponseBase, NameId {
|
|
|
554
789
|
description: string;
|
|
555
790
|
creatures: Array<Creature>;
|
|
556
791
|
items: Array<Item>;
|
|
557
|
-
sections: Array<
|
|
792
|
+
sections: Array<JournalSection>;
|
|
558
793
|
instance: NameIdKey;
|
|
559
794
|
category: Category$1;
|
|
560
|
-
modes
|
|
795
|
+
modes?: Array<Mode>;
|
|
796
|
+
faction?: Faction;
|
|
561
797
|
}
|
|
562
798
|
interface Category$1 {
|
|
563
|
-
type:
|
|
799
|
+
type: EncounterCategory;
|
|
564
800
|
}
|
|
565
801
|
interface Creature extends NameId {
|
|
566
802
|
creature_display: CreatureDisplay$1;
|
|
803
|
+
description?: string;
|
|
567
804
|
}
|
|
568
805
|
interface CreatureDisplay$1 extends KeyBase {
|
|
569
806
|
id: number;
|
|
@@ -573,21 +810,16 @@ interface Item {
|
|
|
573
810
|
item: NameIdKey;
|
|
574
811
|
}
|
|
575
812
|
interface Mode {
|
|
576
|
-
|
|
577
|
-
|
|
813
|
+
name: ModeName;
|
|
814
|
+
type: ModeType;
|
|
578
815
|
}
|
|
579
816
|
interface JournalSection {
|
|
580
|
-
id: number;
|
|
581
|
-
title: string;
|
|
582
|
-
body_text: string;
|
|
583
|
-
sections?: Array<JournalEncounterResponseSection>;
|
|
584
|
-
creature_display?: CreatureDisplay$1;
|
|
585
|
-
}
|
|
586
|
-
interface JournalEncounterResponseSection {
|
|
587
817
|
id: number;
|
|
588
818
|
title: string;
|
|
589
819
|
body_text?: string;
|
|
590
820
|
sections?: Array<JournalSection>;
|
|
821
|
+
creature_display?: CreatureDisplay$1;
|
|
822
|
+
spell?: NameIdKey;
|
|
591
823
|
}
|
|
592
824
|
interface JournalExpansionIndexResponse extends ResponseBase {
|
|
593
825
|
tiers: Array<NameIdKey>;
|
|
@@ -627,6 +859,42 @@ interface Asset {
|
|
|
627
859
|
key: string;
|
|
628
860
|
value: string;
|
|
629
861
|
}
|
|
862
|
+
interface JournalEncounterSearchParameters extends BaseSearchParameters {
|
|
863
|
+
instanceName: string;
|
|
864
|
+
locale: Locales;
|
|
865
|
+
}
|
|
866
|
+
interface JournalEncounterSearchResponseItem extends KeyBase {
|
|
867
|
+
data: {
|
|
868
|
+
instance: {
|
|
869
|
+
name: Record<Locales, string>;
|
|
870
|
+
id: number;
|
|
871
|
+
};
|
|
872
|
+
modes?: Array<{
|
|
873
|
+
name: Record<Locales, string>;
|
|
874
|
+
type: EncounterMode;
|
|
875
|
+
}>;
|
|
876
|
+
creatures: Array<JournalEncounterSearchCreature>;
|
|
877
|
+
name: Record<Locales, string>;
|
|
878
|
+
id: number;
|
|
879
|
+
category: Category$1;
|
|
880
|
+
items: Array<JournalEncounterSearchItem>;
|
|
881
|
+
sections: Array<JournalSection>;
|
|
882
|
+
};
|
|
883
|
+
}
|
|
884
|
+
interface JournalEncounterSearchCreature {
|
|
885
|
+
creature_display: {
|
|
886
|
+
id: number;
|
|
887
|
+
};
|
|
888
|
+
name: Record<Locales, string>;
|
|
889
|
+
id: number;
|
|
890
|
+
}
|
|
891
|
+
interface JournalEncounterSearchItem {
|
|
892
|
+
id: number;
|
|
893
|
+
item: {
|
|
894
|
+
name: Record<Locales, string>;
|
|
895
|
+
id: number;
|
|
896
|
+
};
|
|
897
|
+
}
|
|
630
898
|
|
|
631
899
|
interface ModifiedCraftingCategoryResponse extends ResponseBase, NameId {
|
|
632
900
|
}
|
|
@@ -672,6 +940,27 @@ interface Source$2 {
|
|
|
672
940
|
type: string;
|
|
673
941
|
name: string;
|
|
674
942
|
}
|
|
943
|
+
interface MountSearchParameters extends BaseSearchParameters {
|
|
944
|
+
name: string;
|
|
945
|
+
locale: Locales;
|
|
946
|
+
}
|
|
947
|
+
interface MountSearchResponseItem extends KeyBase {
|
|
948
|
+
data: {
|
|
949
|
+
creature_displays: Array<{
|
|
950
|
+
id: number;
|
|
951
|
+
}>;
|
|
952
|
+
name: Record<Locales, string>;
|
|
953
|
+
id: number;
|
|
954
|
+
source: {
|
|
955
|
+
name: Record<Locales, string>;
|
|
956
|
+
type: string;
|
|
957
|
+
};
|
|
958
|
+
faction?: {
|
|
959
|
+
name: Record<Locales, string>;
|
|
960
|
+
type: keyof typeof Factions;
|
|
961
|
+
};
|
|
962
|
+
};
|
|
963
|
+
}
|
|
675
964
|
|
|
676
965
|
interface MythicKeystoneAffixIndexResponse extends ResponseBase {
|
|
677
966
|
affixes: Array<NameIdKey>;
|
|
@@ -684,7 +973,7 @@ interface Media$8 extends KeyBase {
|
|
|
684
973
|
id: number;
|
|
685
974
|
}
|
|
686
975
|
interface MythicKeystoneAffixMediaResponse extends ResponseBase {
|
|
687
|
-
assets: Array<MediaAsset>;
|
|
976
|
+
assets: Array<MediaAsset$1>;
|
|
688
977
|
id: number;
|
|
689
978
|
}
|
|
690
979
|
|
|
@@ -773,9 +1062,9 @@ interface Member {
|
|
|
773
1062
|
specialization: Specialization;
|
|
774
1063
|
}
|
|
775
1064
|
interface Profile extends NameId {
|
|
776
|
-
realm: Realm$
|
|
1065
|
+
realm: Realm$2;
|
|
777
1066
|
}
|
|
778
|
-
interface Realm$
|
|
1067
|
+
interface Realm$2 extends KeyBase {
|
|
779
1068
|
id: number;
|
|
780
1069
|
slug: string;
|
|
781
1070
|
}
|
|
@@ -803,9 +1092,9 @@ interface Entry$1 {
|
|
|
803
1092
|
rank: number;
|
|
804
1093
|
}
|
|
805
1094
|
interface Guild extends NameId {
|
|
806
|
-
realm: Realm$
|
|
1095
|
+
realm: Realm$1;
|
|
807
1096
|
}
|
|
808
|
-
interface Realm$
|
|
1097
|
+
interface Realm$1 {
|
|
809
1098
|
name: null;
|
|
810
1099
|
id: number;
|
|
811
1100
|
slug: string;
|
|
@@ -850,7 +1139,7 @@ interface Source$1 {
|
|
|
850
1139
|
name: string;
|
|
851
1140
|
}
|
|
852
1141
|
interface PetMediaResponse extends ResponseBase {
|
|
853
|
-
assets: Array<MediaAsset>;
|
|
1142
|
+
assets: Array<MediaAsset$1>;
|
|
854
1143
|
id: number;
|
|
855
1144
|
}
|
|
856
1145
|
interface PetAbilityIndexResponse extends ResponseBase {
|
|
@@ -862,7 +1151,7 @@ interface PetAbilityResponse extends ResponseBase, NameId {
|
|
|
862
1151
|
media: Media$7;
|
|
863
1152
|
}
|
|
864
1153
|
interface PetAbilityMediaResponse extends ResponseBase {
|
|
865
|
-
assets: Array<MediaAsset>;
|
|
1154
|
+
assets: Array<MediaAsset$1>;
|
|
866
1155
|
id: number;
|
|
867
1156
|
}
|
|
868
1157
|
|
|
@@ -883,7 +1172,7 @@ interface Media$6 extends KeyBase {
|
|
|
883
1172
|
id: number;
|
|
884
1173
|
}
|
|
885
1174
|
interface PlayableClassMediaResponse extends ResponseBase {
|
|
886
|
-
assets: Array<MediaAsset>;
|
|
1175
|
+
assets: Array<MediaAsset$1>;
|
|
887
1176
|
id: number;
|
|
888
1177
|
}
|
|
889
1178
|
interface PvpTalentSlotsResponse extends ResponseBase {
|
|
@@ -941,7 +1230,7 @@ interface SpecTalentTree$1 extends KeyBase {
|
|
|
941
1230
|
name: string;
|
|
942
1231
|
}
|
|
943
1232
|
interface PlayableSpecializationMediaResponse extends ResponseBase {
|
|
944
|
-
assets: Array<MediaAsset>;
|
|
1233
|
+
assets: Array<MediaAsset$1>;
|
|
945
1234
|
id: number;
|
|
946
1235
|
}
|
|
947
1236
|
|
|
@@ -956,14 +1245,14 @@ interface ProfessionIndexResponse extends ResponseBase {
|
|
|
956
1245
|
}
|
|
957
1246
|
interface ProfessionResponse extends ResponseBase, NameId {
|
|
958
1247
|
description: string;
|
|
959
|
-
type: Type
|
|
1248
|
+
type: Type;
|
|
960
1249
|
media: Media$4;
|
|
961
1250
|
skill_tiers: Array<NameIdKey>;
|
|
962
1251
|
}
|
|
963
1252
|
interface Media$4 extends KeyBase {
|
|
964
1253
|
id: number;
|
|
965
1254
|
}
|
|
966
|
-
interface Type
|
|
1255
|
+
interface Type {
|
|
967
1256
|
type: string;
|
|
968
1257
|
name: string;
|
|
969
1258
|
}
|
|
@@ -977,7 +1266,7 @@ interface Category {
|
|
|
977
1266
|
recipes: Array<NameIdKey>;
|
|
978
1267
|
}
|
|
979
1268
|
interface ProfessionMediaResponse extends ResponseBase {
|
|
980
|
-
assets: Array<MediaAsset>;
|
|
1269
|
+
assets: Array<MediaAsset$1>;
|
|
981
1270
|
id: number;
|
|
982
1271
|
}
|
|
983
1272
|
interface RecipeResponse extends ResponseBase, NameId {
|
|
@@ -994,7 +1283,7 @@ interface Reagent {
|
|
|
994
1283
|
quantity: number;
|
|
995
1284
|
}
|
|
996
1285
|
interface RecipeMediaResponse extends ResponseBase {
|
|
997
|
-
assets: Array<MediaAsset>;
|
|
1286
|
+
assets: Array<MediaAsset$1>;
|
|
998
1287
|
id: number;
|
|
999
1288
|
}
|
|
1000
1289
|
|
|
@@ -1015,9 +1304,9 @@ interface Entry {
|
|
|
1015
1304
|
tier: Season;
|
|
1016
1305
|
}
|
|
1017
1306
|
interface Character extends NameId {
|
|
1018
|
-
realm: Realm
|
|
1307
|
+
realm: Realm;
|
|
1019
1308
|
}
|
|
1020
|
-
interface Realm
|
|
1309
|
+
interface Realm extends KeyBase {
|
|
1021
1310
|
id: number;
|
|
1022
1311
|
slug: string;
|
|
1023
1312
|
}
|
|
@@ -1082,7 +1371,7 @@ interface Media$3 extends KeyBase {
|
|
|
1082
1371
|
id: number;
|
|
1083
1372
|
}
|
|
1084
1373
|
interface PvpTierMediaResponse extends ResponseBase {
|
|
1085
|
-
assets: Array<MediaAsset>;
|
|
1374
|
+
assets: Array<MediaAsset$1>;
|
|
1086
1375
|
id: number;
|
|
1087
1376
|
}
|
|
1088
1377
|
|
|
@@ -1153,29 +1442,6 @@ interface QuestTypeResponse extends ResponseBase {
|
|
|
1153
1442
|
quests: Array<NameIdKey>;
|
|
1154
1443
|
}
|
|
1155
1444
|
|
|
1156
|
-
interface RealmIndexResponse extends ResponseBase {
|
|
1157
|
-
realms: Array<Realm>;
|
|
1158
|
-
}
|
|
1159
|
-
interface Realm extends NameIdKey {
|
|
1160
|
-
slug: string;
|
|
1161
|
-
}
|
|
1162
|
-
interface RealmResponse extends ResponseBase, NameId {
|
|
1163
|
-
region: NameIdKey;
|
|
1164
|
-
connected_realm: {
|
|
1165
|
-
href: string;
|
|
1166
|
-
};
|
|
1167
|
-
category: string;
|
|
1168
|
-
locale: string;
|
|
1169
|
-
timezone: string;
|
|
1170
|
-
type: Type;
|
|
1171
|
-
is_tournament: boolean;
|
|
1172
|
-
slug: string;
|
|
1173
|
-
}
|
|
1174
|
-
interface Type {
|
|
1175
|
-
type: string;
|
|
1176
|
-
name: string;
|
|
1177
|
-
}
|
|
1178
|
-
|
|
1179
1445
|
interface RegionIndexResponse extends ResponseBase {
|
|
1180
1446
|
regions: Array<{
|
|
1181
1447
|
href: string;
|
|
@@ -1226,9 +1492,22 @@ interface Media$2 extends KeyBase {
|
|
|
1226
1492
|
id: number;
|
|
1227
1493
|
}
|
|
1228
1494
|
interface SpellMediaResponse extends ResponseBase {
|
|
1229
|
-
assets: Array<MediaAsset>;
|
|
1495
|
+
assets: Array<MediaAsset$1>;
|
|
1230
1496
|
id: number;
|
|
1231
1497
|
}
|
|
1498
|
+
interface SpellSearchParameters extends BaseSearchParameters {
|
|
1499
|
+
name: string;
|
|
1500
|
+
locale: Locales;
|
|
1501
|
+
}
|
|
1502
|
+
interface SpellSearchResponseItem extends KeyBase {
|
|
1503
|
+
data: {
|
|
1504
|
+
name: Record<Locales, string | undefined>;
|
|
1505
|
+
id: number;
|
|
1506
|
+
media: {
|
|
1507
|
+
id: number;
|
|
1508
|
+
};
|
|
1509
|
+
};
|
|
1510
|
+
}
|
|
1232
1511
|
|
|
1233
1512
|
interface PvpTalentIndexResponse extends ResponseBase {
|
|
1234
1513
|
pvp_talents: Array<NameIdKey>;
|
|
@@ -1373,7 +1652,7 @@ interface Media$1 extends KeyBase {
|
|
|
1373
1652
|
id: number;
|
|
1374
1653
|
}
|
|
1375
1654
|
interface TechTalentMediaResponse extends ResponseBase {
|
|
1376
|
-
assets: Array<MediaAsset>;
|
|
1655
|
+
assets: Array<MediaAsset$1>;
|
|
1377
1656
|
}
|
|
1378
1657
|
interface TechTalentTreeIndexResponse extends ResponseBase {
|
|
1379
1658
|
talent_trees: Array<TalentTree>;
|
|
@@ -1423,795 +1702,843 @@ declare const wow: {
|
|
|
1423
1702
|
wowToken: () => {
|
|
1424
1703
|
path: string;
|
|
1425
1704
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1426
|
-
parameters?: Record<string,
|
|
1705
|
+
parameters?: Record<string, never> | undefined;
|
|
1427
1706
|
_responseType?: WowTokenResponse | undefined;
|
|
1428
1707
|
};
|
|
1429
1708
|
toy: (toyId: number) => {
|
|
1430
1709
|
path: string;
|
|
1431
1710
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1432
|
-
parameters?: Record<string,
|
|
1711
|
+
parameters?: Record<string, never> | undefined;
|
|
1433
1712
|
_responseType?: ToyResponse | undefined;
|
|
1434
1713
|
};
|
|
1435
1714
|
toyIndex: () => {
|
|
1436
1715
|
path: string;
|
|
1437
1716
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1438
|
-
parameters?: Record<string,
|
|
1717
|
+
parameters?: Record<string, never> | undefined;
|
|
1439
1718
|
_responseType?: ToyIndexResponse | undefined;
|
|
1440
1719
|
};
|
|
1441
1720
|
title: (titleId: number) => {
|
|
1442
1721
|
path: string;
|
|
1443
1722
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1444
|
-
parameters?: Record<string,
|
|
1723
|
+
parameters?: Record<string, never> | undefined;
|
|
1445
1724
|
_responseType?: TitleResponse | undefined;
|
|
1446
1725
|
};
|
|
1447
1726
|
titleIndex: () => {
|
|
1448
1727
|
path: string;
|
|
1449
1728
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1450
|
-
parameters?: Record<string,
|
|
1729
|
+
parameters?: Record<string, never> | undefined;
|
|
1451
1730
|
_responseType?: TitleIndexResponse | undefined;
|
|
1452
1731
|
};
|
|
1453
1732
|
techTalent: (techTalentId: number) => {
|
|
1454
1733
|
path: string;
|
|
1455
1734
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1456
|
-
parameters?: Record<string,
|
|
1735
|
+
parameters?: Record<string, never> | undefined;
|
|
1457
1736
|
_responseType?: TechTalentResponse | undefined;
|
|
1458
1737
|
};
|
|
1459
1738
|
techTalentIndex: () => {
|
|
1460
1739
|
path: string;
|
|
1461
1740
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1462
|
-
parameters?: Record<string,
|
|
1741
|
+
parameters?: Record<string, never> | undefined;
|
|
1463
1742
|
_responseType?: TechTalentIndexResponse | undefined;
|
|
1464
1743
|
};
|
|
1465
1744
|
techTalentMedia: (techTalentId: number) => {
|
|
1466
1745
|
path: string;
|
|
1467
1746
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1468
|
-
parameters?: Record<string,
|
|
1747
|
+
parameters?: Record<string, never> | undefined;
|
|
1469
1748
|
_responseType?: TechTalentMediaResponse | undefined;
|
|
1470
1749
|
};
|
|
1471
1750
|
techTalentTree: (techTalentTreeId: number) => {
|
|
1472
1751
|
path: string;
|
|
1473
1752
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1474
|
-
parameters?: Record<string,
|
|
1753
|
+
parameters?: Record<string, never> | undefined;
|
|
1475
1754
|
_responseType?: TechTalentTreeResponse | undefined;
|
|
1476
1755
|
};
|
|
1477
1756
|
techTalentTreeIndex: () => {
|
|
1478
1757
|
path: string;
|
|
1479
1758
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1480
|
-
parameters?: Record<string,
|
|
1759
|
+
parameters?: Record<string, never> | undefined;
|
|
1481
1760
|
_responseType?: TechTalentTreeIndexResponse | undefined;
|
|
1482
1761
|
};
|
|
1483
1762
|
pvpTalent: (pvpTalentId: number) => {
|
|
1484
1763
|
path: string;
|
|
1485
1764
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1486
|
-
parameters?: Record<string,
|
|
1765
|
+
parameters?: Record<string, never> | undefined;
|
|
1487
1766
|
_responseType?: PvpTalentResponse | undefined;
|
|
1488
1767
|
};
|
|
1489
1768
|
pvpTalentIndex: () => {
|
|
1490
1769
|
path: string;
|
|
1491
1770
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1492
|
-
parameters?: Record<string,
|
|
1771
|
+
parameters?: Record<string, never> | undefined;
|
|
1493
1772
|
_responseType?: PvpTalentIndexResponse | undefined;
|
|
1494
1773
|
};
|
|
1495
1774
|
talent: (talentId: number) => {
|
|
1496
1775
|
path: string;
|
|
1497
1776
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1498
|
-
parameters?: Record<string,
|
|
1777
|
+
parameters?: Record<string, never> | undefined;
|
|
1499
1778
|
_responseType?: TalentResponse | undefined;
|
|
1500
1779
|
};
|
|
1501
1780
|
talentIndex: () => {
|
|
1502
1781
|
path: string;
|
|
1503
1782
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1504
|
-
parameters?: Record<string,
|
|
1783
|
+
parameters?: Record<string, never> | undefined;
|
|
1505
1784
|
_responseType?: TalentIndexResponse | undefined;
|
|
1506
1785
|
};
|
|
1507
1786
|
talentTree: (talentTreeId: number, specId: number) => {
|
|
1508
1787
|
path: string;
|
|
1509
1788
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1510
|
-
parameters?: Record<string,
|
|
1789
|
+
parameters?: Record<string, never> | undefined;
|
|
1511
1790
|
_responseType?: TalentTreeResponse | undefined;
|
|
1512
1791
|
};
|
|
1513
1792
|
talentTreeIndex: () => {
|
|
1514
1793
|
path: string;
|
|
1515
1794
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1516
|
-
parameters?: Record<string,
|
|
1795
|
+
parameters?: Record<string, never> | undefined;
|
|
1517
1796
|
_responseType?: TalentTreeIndexResponse | undefined;
|
|
1518
1797
|
};
|
|
1519
1798
|
talentTreeNodes: (talentTreeId: number) => {
|
|
1520
1799
|
path: string;
|
|
1521
1800
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1522
|
-
parameters?: Record<string,
|
|
1801
|
+
parameters?: Record<string, never> | undefined;
|
|
1523
1802
|
_responseType?: TalentTreeNodesResponse | undefined;
|
|
1524
1803
|
};
|
|
1525
1804
|
spell: (spellId: number) => {
|
|
1526
1805
|
path: string;
|
|
1527
1806
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1528
|
-
parameters?: Record<string,
|
|
1807
|
+
parameters?: Record<string, never> | undefined;
|
|
1529
1808
|
_responseType?: SpellResponse | undefined;
|
|
1530
1809
|
};
|
|
1531
1810
|
spellMedia: (spellId: number) => {
|
|
1532
1811
|
path: string;
|
|
1533
1812
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1534
|
-
parameters?: Record<string,
|
|
1813
|
+
parameters?: Record<string, never> | undefined;
|
|
1535
1814
|
_responseType?: SpellMediaResponse | undefined;
|
|
1536
1815
|
};
|
|
1816
|
+
spellSearch: (options: SpellSearchParameters) => {
|
|
1817
|
+
path: string;
|
|
1818
|
+
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1819
|
+
parameters?: Omit<SpellSearchParameters, "name" | "locale"> | undefined;
|
|
1820
|
+
_responseType?: _blizzard_api_core.SearchResponse<SpellSearchResponseItem> | undefined;
|
|
1821
|
+
};
|
|
1537
1822
|
reputationFaction: (reputationFactionId: number) => {
|
|
1538
1823
|
path: string;
|
|
1539
1824
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1540
|
-
parameters?: Record<string,
|
|
1825
|
+
parameters?: Record<string, never> | undefined;
|
|
1541
1826
|
_responseType?: ReputationFactionResponse | undefined;
|
|
1542
1827
|
};
|
|
1543
1828
|
reputationFactionIndex: () => {
|
|
1544
1829
|
path: string;
|
|
1545
1830
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1546
|
-
parameters?: Record<string,
|
|
1831
|
+
parameters?: Record<string, never> | undefined;
|
|
1547
1832
|
_responseType?: ReputationFactionIndexResponse | undefined;
|
|
1548
1833
|
};
|
|
1549
1834
|
reputationTiers: (reputationTiersId: number) => {
|
|
1550
1835
|
path: string;
|
|
1551
1836
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1552
|
-
parameters?: Record<string,
|
|
1837
|
+
parameters?: Record<string, never> | undefined;
|
|
1553
1838
|
_responseType?: ReputationTiersResponse | undefined;
|
|
1554
1839
|
};
|
|
1555
1840
|
reputationTiersIndex: () => {
|
|
1556
1841
|
path: string;
|
|
1557
1842
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1558
|
-
parameters?: Record<string,
|
|
1843
|
+
parameters?: Record<string, never> | undefined;
|
|
1559
1844
|
_responseType?: ReputationTiersIndexResponse | undefined;
|
|
1560
1845
|
};
|
|
1561
1846
|
region: (regionId: number) => {
|
|
1562
1847
|
path: string;
|
|
1563
1848
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1564
|
-
parameters?: Record<string,
|
|
1849
|
+
parameters?: Record<string, never> | undefined;
|
|
1565
1850
|
_responseType?: RegionResponse | undefined;
|
|
1566
1851
|
};
|
|
1567
1852
|
regionIndex: () => {
|
|
1568
1853
|
path: string;
|
|
1569
1854
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1570
|
-
parameters?: Record<string,
|
|
1855
|
+
parameters?: Record<string, never> | undefined;
|
|
1571
1856
|
_responseType?: RegionIndexResponse | undefined;
|
|
1572
1857
|
};
|
|
1573
1858
|
realm: (realmSlug: string) => {
|
|
1574
1859
|
path: string;
|
|
1575
1860
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1576
|
-
parameters?: Record<string,
|
|
1861
|
+
parameters?: Record<string, never> | undefined;
|
|
1577
1862
|
_responseType?: RealmResponse | undefined;
|
|
1578
1863
|
};
|
|
1579
1864
|
realmIndex: () => {
|
|
1580
1865
|
path: string;
|
|
1581
1866
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1582
|
-
parameters?: Record<string,
|
|
1867
|
+
parameters?: Record<string, never> | undefined;
|
|
1583
1868
|
_responseType?: RealmIndexResponse | undefined;
|
|
1584
1869
|
};
|
|
1870
|
+
realmSearch: (options: RealmSearchParameters) => {
|
|
1871
|
+
path: string;
|
|
1872
|
+
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1873
|
+
parameters?: RealmSearchParameters | undefined;
|
|
1874
|
+
_responseType?: _blizzard_api_core.SearchResponse<RealmSearchResponseItem> | undefined;
|
|
1875
|
+
};
|
|
1585
1876
|
quest: (questId: number) => {
|
|
1586
1877
|
path: string;
|
|
1587
1878
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1588
|
-
parameters?: Record<string,
|
|
1879
|
+
parameters?: Record<string, never> | undefined;
|
|
1589
1880
|
_responseType?: QuestResponse | undefined;
|
|
1590
1881
|
};
|
|
1591
1882
|
questIndex: () => {
|
|
1592
1883
|
path: string;
|
|
1593
1884
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1594
|
-
parameters?: Record<string,
|
|
1885
|
+
parameters?: Record<string, never> | undefined;
|
|
1595
1886
|
_responseType?: QuestIndexResponse | undefined;
|
|
1596
1887
|
};
|
|
1597
1888
|
questArea: (questAreaId: number) => {
|
|
1598
1889
|
path: string;
|
|
1599
1890
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1600
|
-
parameters?: Record<string,
|
|
1891
|
+
parameters?: Record<string, never> | undefined;
|
|
1601
1892
|
_responseType?: QuestAreaResponse | undefined;
|
|
1602
1893
|
};
|
|
1603
1894
|
questAreaIndex: () => {
|
|
1604
1895
|
path: string;
|
|
1605
1896
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1606
|
-
parameters?: Record<string,
|
|
1897
|
+
parameters?: Record<string, never> | undefined;
|
|
1607
1898
|
_responseType?: QuestAreaIndexResponse | undefined;
|
|
1608
1899
|
};
|
|
1609
1900
|
questCategory: (questCategoryId: number) => {
|
|
1610
1901
|
path: string;
|
|
1611
1902
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1612
|
-
parameters?: Record<string,
|
|
1903
|
+
parameters?: Record<string, never> | undefined;
|
|
1613
1904
|
_responseType?: QuestCategoryResponse | undefined;
|
|
1614
1905
|
};
|
|
1615
1906
|
questCategoryIndex: () => {
|
|
1616
1907
|
path: string;
|
|
1617
1908
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1618
|
-
parameters?: Record<string,
|
|
1909
|
+
parameters?: Record<string, never> | undefined;
|
|
1619
1910
|
_responseType?: QuestCategoryIndexResponse | undefined;
|
|
1620
1911
|
};
|
|
1621
1912
|
questType: (questTypeId: number) => {
|
|
1622
1913
|
path: string;
|
|
1623
1914
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1624
|
-
parameters?: Record<string,
|
|
1915
|
+
parameters?: Record<string, never> | undefined;
|
|
1625
1916
|
_responseType?: QuestTypeResponse | undefined;
|
|
1626
1917
|
};
|
|
1627
1918
|
questTypeIndex: () => {
|
|
1628
1919
|
path: string;
|
|
1629
1920
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1630
|
-
parameters?: Record<string,
|
|
1921
|
+
parameters?: Record<string, never> | undefined;
|
|
1631
1922
|
_responseType?: QuestTypeIndexResponse | undefined;
|
|
1632
1923
|
};
|
|
1633
1924
|
pvpTier: (pvpTierId: number) => {
|
|
1634
1925
|
path: string;
|
|
1635
1926
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1636
|
-
parameters?: Record<string,
|
|
1927
|
+
parameters?: Record<string, never> | undefined;
|
|
1637
1928
|
_responseType?: PvpTierResponse | undefined;
|
|
1638
1929
|
};
|
|
1639
1930
|
pvpTierIndex: () => {
|
|
1640
1931
|
path: string;
|
|
1641
1932
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1642
|
-
parameters?: Record<string,
|
|
1933
|
+
parameters?: Record<string, never> | undefined;
|
|
1643
1934
|
_responseType?: PvpTierIndexResponse | undefined;
|
|
1644
1935
|
};
|
|
1645
1936
|
pvpTierMedia: (pvpTierId: number) => {
|
|
1646
1937
|
path: string;
|
|
1647
1938
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1648
|
-
parameters?: Record<string,
|
|
1939
|
+
parameters?: Record<string, never> | undefined;
|
|
1649
1940
|
_responseType?: PvpTierMediaResponse | undefined;
|
|
1650
1941
|
};
|
|
1651
1942
|
pvpLeaderboard: (pvpSeasonId: number, bracket: string) => {
|
|
1652
1943
|
path: string;
|
|
1653
1944
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1654
|
-
parameters?: Record<string,
|
|
1945
|
+
parameters?: Record<string, never> | undefined;
|
|
1655
1946
|
_responseType?: PvpLeaderboardResponse | undefined;
|
|
1656
1947
|
};
|
|
1657
1948
|
pvpLeaderboardIndex: (pvpSeasonId: number) => {
|
|
1658
1949
|
path: string;
|
|
1659
1950
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1660
|
-
parameters?: Record<string,
|
|
1951
|
+
parameters?: Record<string, never> | undefined;
|
|
1661
1952
|
_responseType?: PvpLeaderboardIndexResponse | undefined;
|
|
1662
1953
|
};
|
|
1663
1954
|
pvpRewardsIndex: (pvpSeasonId: number) => {
|
|
1664
1955
|
path: string;
|
|
1665
1956
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1666
|
-
parameters?: Record<string,
|
|
1957
|
+
parameters?: Record<string, never> | undefined;
|
|
1667
1958
|
_responseType?: PvpRewardsIndexResponse | undefined;
|
|
1668
1959
|
};
|
|
1669
1960
|
pvpSeason: (pvpSeasonId: number) => {
|
|
1670
1961
|
path: string;
|
|
1671
1962
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1672
|
-
parameters?: Record<string,
|
|
1963
|
+
parameters?: Record<string, never> | undefined;
|
|
1673
1964
|
_responseType?: PvpSeasonResponse | undefined;
|
|
1674
1965
|
};
|
|
1675
1966
|
pvpSeasonIndex: () => {
|
|
1676
1967
|
path: string;
|
|
1677
1968
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1678
|
-
parameters?: Record<string,
|
|
1969
|
+
parameters?: Record<string, never> | undefined;
|
|
1679
1970
|
_responseType?: PvpSeasonIndexResponse | undefined;
|
|
1680
1971
|
};
|
|
1681
1972
|
profession: (professionId: number) => {
|
|
1682
1973
|
path: string;
|
|
1683
1974
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1684
|
-
parameters?: Record<string,
|
|
1975
|
+
parameters?: Record<string, never> | undefined;
|
|
1685
1976
|
_responseType?: ProfessionResponse | undefined;
|
|
1686
1977
|
};
|
|
1687
1978
|
professionIndex: () => {
|
|
1688
1979
|
path: string;
|
|
1689
1980
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1690
|
-
parameters?: Record<string,
|
|
1981
|
+
parameters?: Record<string, never> | undefined;
|
|
1691
1982
|
_responseType?: ProfessionIndexResponse | undefined;
|
|
1692
1983
|
};
|
|
1693
1984
|
professionMedia: (professionId: number) => {
|
|
1694
1985
|
path: string;
|
|
1695
1986
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1696
|
-
parameters?: Record<string,
|
|
1987
|
+
parameters?: Record<string, never> | undefined;
|
|
1697
1988
|
_responseType?: ProfessionMediaResponse | undefined;
|
|
1698
1989
|
};
|
|
1699
1990
|
professionSkillTier: (professionId: number, skillTierId: number) => {
|
|
1700
1991
|
path: string;
|
|
1701
1992
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1702
|
-
parameters?: Record<string,
|
|
1993
|
+
parameters?: Record<string, never> | undefined;
|
|
1703
1994
|
_responseType?: ProfessionSkillTierResponse | undefined;
|
|
1704
1995
|
};
|
|
1705
1996
|
recipe: (recipeId: number) => {
|
|
1706
1997
|
path: string;
|
|
1707
1998
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1708
|
-
parameters?: Record<string,
|
|
1999
|
+
parameters?: Record<string, never> | undefined;
|
|
1709
2000
|
_responseType?: RecipeResponse | undefined;
|
|
1710
2001
|
};
|
|
1711
2002
|
recipeMedia: (recipeId: number) => {
|
|
1712
2003
|
path: string;
|
|
1713
2004
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1714
|
-
parameters?: Record<string,
|
|
2005
|
+
parameters?: Record<string, never> | undefined;
|
|
1715
2006
|
_responseType?: RecipeMediaResponse | undefined;
|
|
1716
2007
|
};
|
|
1717
2008
|
powerType: (powerTypeId: number) => {
|
|
1718
2009
|
path: string;
|
|
1719
2010
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1720
|
-
parameters?: Record<string,
|
|
2011
|
+
parameters?: Record<string, never> | undefined;
|
|
1721
2012
|
_responseType?: PowerTypeResponse | undefined;
|
|
1722
2013
|
};
|
|
1723
2014
|
powerTypeIndex: () => {
|
|
1724
2015
|
path: string;
|
|
1725
2016
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1726
|
-
parameters?: Record<string,
|
|
2017
|
+
parameters?: Record<string, never> | undefined;
|
|
1727
2018
|
_responseType?: PowerTypeIndexResponse | undefined;
|
|
1728
2019
|
};
|
|
1729
2020
|
playableSpecialization: (specializationId: number) => {
|
|
1730
2021
|
path: string;
|
|
1731
2022
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1732
|
-
parameters?: Record<string,
|
|
2023
|
+
parameters?: Record<string, never> | undefined;
|
|
1733
2024
|
_responseType?: PlayableSpecializationResponse | undefined;
|
|
1734
2025
|
};
|
|
1735
2026
|
playableSpecializationIndex: () => {
|
|
1736
2027
|
path: string;
|
|
1737
2028
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1738
|
-
parameters?: Record<string,
|
|
2029
|
+
parameters?: Record<string, never> | undefined;
|
|
1739
2030
|
_responseType?: PlayableSpecializationIndexResponse | undefined;
|
|
1740
2031
|
};
|
|
1741
2032
|
playableSpecializationMedia: (specializationId: number) => {
|
|
1742
2033
|
path: string;
|
|
1743
2034
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1744
|
-
parameters?: Record<string,
|
|
2035
|
+
parameters?: Record<string, never> | undefined;
|
|
1745
2036
|
_responseType?: PlayableSpecializationMediaResponse | undefined;
|
|
1746
2037
|
};
|
|
1747
2038
|
playableRace: (playableRaceId: number) => {
|
|
1748
2039
|
path: string;
|
|
1749
2040
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1750
|
-
parameters?: Record<string,
|
|
2041
|
+
parameters?: Record<string, never> | undefined;
|
|
1751
2042
|
_responseType?: PlayableRaceResponse | undefined;
|
|
1752
2043
|
};
|
|
1753
2044
|
playableRaceIndex: () => {
|
|
1754
2045
|
path: string;
|
|
1755
2046
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1756
|
-
parameters?: Record<string,
|
|
2047
|
+
parameters?: Record<string, never> | undefined;
|
|
1757
2048
|
_responseType?: PlayableRaceIndexResponse | undefined;
|
|
1758
2049
|
};
|
|
1759
2050
|
playableClass: (playableClassId: number) => {
|
|
1760
2051
|
path: string;
|
|
1761
2052
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1762
|
-
parameters?: Record<string,
|
|
2053
|
+
parameters?: Record<string, never> | undefined;
|
|
1763
2054
|
_responseType?: PlayableClassResponse | undefined;
|
|
1764
2055
|
};
|
|
1765
2056
|
playableClassIndex: () => {
|
|
1766
2057
|
path: string;
|
|
1767
2058
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1768
|
-
parameters?: Record<string,
|
|
2059
|
+
parameters?: Record<string, never> | undefined;
|
|
1769
2060
|
_responseType?: PlayableClassIndexResponse | undefined;
|
|
1770
2061
|
};
|
|
1771
2062
|
playableClassMedia: (playableClassId: number) => {
|
|
1772
2063
|
path: string;
|
|
1773
2064
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1774
|
-
parameters?: Record<string,
|
|
2065
|
+
parameters?: Record<string, never> | undefined;
|
|
1775
2066
|
_responseType?: PlayableClassMediaResponse | undefined;
|
|
1776
2067
|
};
|
|
1777
2068
|
pvpTalentSlots: (playableClassId: number) => {
|
|
1778
2069
|
path: string;
|
|
1779
2070
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1780
|
-
parameters?: Record<string,
|
|
2071
|
+
parameters?: Record<string, never> | undefined;
|
|
1781
2072
|
_responseType?: PvpTalentSlotsResponse | undefined;
|
|
1782
2073
|
};
|
|
1783
2074
|
pet: (petId: number) => {
|
|
1784
2075
|
path: string;
|
|
1785
2076
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1786
|
-
parameters?: Record<string,
|
|
2077
|
+
parameters?: Record<string, never> | undefined;
|
|
1787
2078
|
_responseType?: PetResponse | undefined;
|
|
1788
2079
|
};
|
|
1789
2080
|
petIndex: () => {
|
|
1790
2081
|
path: string;
|
|
1791
2082
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1792
|
-
parameters?: Record<string,
|
|
2083
|
+
parameters?: Record<string, never> | undefined;
|
|
1793
2084
|
_responseType?: PetIndexResponse | undefined;
|
|
1794
2085
|
};
|
|
1795
2086
|
petMedia: (petId: number) => {
|
|
1796
2087
|
path: string;
|
|
1797
2088
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1798
|
-
parameters?: Record<string,
|
|
2089
|
+
parameters?: Record<string, never> | undefined;
|
|
1799
2090
|
_responseType?: PetMediaResponse | undefined;
|
|
1800
2091
|
};
|
|
1801
2092
|
petAbility: (petAbilityId: number) => {
|
|
1802
2093
|
path: string;
|
|
1803
2094
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1804
|
-
parameters?: Record<string,
|
|
2095
|
+
parameters?: Record<string, never> | undefined;
|
|
1805
2096
|
_responseType?: PetAbilityResponse | undefined;
|
|
1806
2097
|
};
|
|
1807
2098
|
petAbilityIndex: () => {
|
|
1808
2099
|
path: string;
|
|
1809
2100
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1810
|
-
parameters?: Record<string,
|
|
2101
|
+
parameters?: Record<string, never> | undefined;
|
|
1811
2102
|
_responseType?: PetAbilityIndexResponse | undefined;
|
|
1812
2103
|
};
|
|
1813
2104
|
petAbilityMedia: (petAbilityId: number) => {
|
|
1814
2105
|
path: string;
|
|
1815
2106
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1816
|
-
parameters?: Record<string,
|
|
2107
|
+
parameters?: Record<string, never> | undefined;
|
|
1817
2108
|
_responseType?: PetAbilityMediaResponse | undefined;
|
|
1818
2109
|
};
|
|
1819
2110
|
mythicRaidLeaderboard: (raid: string, faction: "alliance" | "horde") => {
|
|
1820
2111
|
path: string;
|
|
1821
2112
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1822
|
-
parameters?: Record<string,
|
|
2113
|
+
parameters?: Record<string, never> | undefined;
|
|
1823
2114
|
_responseType?: MythicRaidLeaderboardResponse | undefined;
|
|
1824
2115
|
};
|
|
1825
2116
|
mythicKeystoneLeaderboard: (connectedRealmId: number, dungeonId: number, period: number) => {
|
|
1826
2117
|
path: string;
|
|
1827
2118
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1828
|
-
parameters?: Record<string,
|
|
2119
|
+
parameters?: Record<string, never> | undefined;
|
|
1829
2120
|
_responseType?: MythicKeystoneLeaderboardResponse | undefined;
|
|
1830
2121
|
};
|
|
1831
2122
|
mythicKeystoneLeaderboardIndex: (connectedRealmId: number) => {
|
|
1832
2123
|
path: string;
|
|
1833
2124
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1834
|
-
parameters?: Record<string,
|
|
2125
|
+
parameters?: Record<string, never> | undefined;
|
|
1835
2126
|
_responseType?: MythicKeystoneLeaderboardIndexResponse | undefined;
|
|
1836
2127
|
};
|
|
1837
2128
|
mythicKeystoneDungeon: (mythicKeystoneDungeonId: number) => {
|
|
1838
2129
|
path: string;
|
|
1839
2130
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1840
|
-
parameters?: Record<string,
|
|
2131
|
+
parameters?: Record<string, never> | undefined;
|
|
1841
2132
|
_responseType?: MythicKeystoneDungeonResponse | undefined;
|
|
1842
2133
|
};
|
|
1843
2134
|
mythicKeystoneDungeonIndex: () => {
|
|
1844
2135
|
path: string;
|
|
1845
2136
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1846
|
-
parameters?: Record<string,
|
|
2137
|
+
parameters?: Record<string, never> | undefined;
|
|
1847
2138
|
_responseType?: MythicKeystoneDungeonIndexResponse | undefined;
|
|
1848
2139
|
};
|
|
1849
2140
|
mythicKeystoneIndex: () => {
|
|
1850
2141
|
path: string;
|
|
1851
2142
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1852
|
-
parameters?: Record<string,
|
|
2143
|
+
parameters?: Record<string, never> | undefined;
|
|
1853
2144
|
_responseType?: MythicKeystoneIndexResponse | undefined;
|
|
1854
2145
|
};
|
|
1855
2146
|
mythicKeystonePeriod: (mythicKeystonePeriodId: number) => {
|
|
1856
2147
|
path: string;
|
|
1857
2148
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1858
|
-
parameters?: Record<string,
|
|
2149
|
+
parameters?: Record<string, never> | undefined;
|
|
1859
2150
|
_responseType?: MythicKeystonePeriodResponse | undefined;
|
|
1860
2151
|
};
|
|
1861
2152
|
mythicKeystonePeriodIndex: () => {
|
|
1862
2153
|
path: string;
|
|
1863
2154
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1864
|
-
parameters?: Record<string,
|
|
2155
|
+
parameters?: Record<string, never> | undefined;
|
|
1865
2156
|
_responseType?: MythicKeystonePeriodIndexResponse | undefined;
|
|
1866
2157
|
};
|
|
1867
2158
|
mythicKeystoneSeason: (mythicKeystoneSeasonId: number) => {
|
|
1868
2159
|
path: string;
|
|
1869
2160
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1870
|
-
parameters?: Record<string,
|
|
2161
|
+
parameters?: Record<string, never> | undefined;
|
|
1871
2162
|
_responseType?: MythicKeystoneSeasonResponse | undefined;
|
|
1872
2163
|
};
|
|
1873
2164
|
mythicKeystoneSeasonIndex: () => {
|
|
1874
2165
|
path: string;
|
|
1875
2166
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1876
|
-
parameters?: Record<string,
|
|
2167
|
+
parameters?: Record<string, never> | undefined;
|
|
1877
2168
|
_responseType?: MythicKeystoneSeasonIndexResponse | undefined;
|
|
1878
2169
|
};
|
|
1879
2170
|
mythicKeystoneAffix: (mythicKeystoneAffixId: number) => {
|
|
1880
2171
|
path: string;
|
|
1881
2172
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1882
|
-
parameters?: Record<string,
|
|
2173
|
+
parameters?: Record<string, never> | undefined;
|
|
1883
2174
|
_responseType?: MythicKeystoneAffixResponse | undefined;
|
|
1884
2175
|
};
|
|
1885
2176
|
mythicKeystoneAffixIndex: () => {
|
|
1886
2177
|
path: string;
|
|
1887
2178
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1888
|
-
parameters?: Record<string,
|
|
2179
|
+
parameters?: Record<string, never> | undefined;
|
|
1889
2180
|
_responseType?: MythicKeystoneAffixIndexResponse | undefined;
|
|
1890
2181
|
};
|
|
1891
2182
|
mythicKeystoneAffixMedia: (mythicKeystoneAffixId: number) => {
|
|
1892
2183
|
path: string;
|
|
1893
2184
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1894
|
-
parameters?: Record<string,
|
|
2185
|
+
parameters?: Record<string, never> | undefined;
|
|
1895
2186
|
_responseType?: MythicKeystoneAffixMediaResponse | undefined;
|
|
1896
2187
|
};
|
|
1897
2188
|
mount: (mountId: number) => {
|
|
1898
2189
|
path: string;
|
|
1899
2190
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1900
|
-
parameters?: Record<string,
|
|
2191
|
+
parameters?: Record<string, never> | undefined;
|
|
1901
2192
|
_responseType?: MountResponse | undefined;
|
|
1902
2193
|
};
|
|
1903
2194
|
mountIndex: () => {
|
|
1904
2195
|
path: string;
|
|
1905
2196
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1906
|
-
parameters?: Record<string,
|
|
2197
|
+
parameters?: Record<string, never> | undefined;
|
|
1907
2198
|
_responseType?: MountIndexResponse | undefined;
|
|
1908
2199
|
};
|
|
2200
|
+
mountSearch: (options: MountSearchParameters) => {
|
|
2201
|
+
path: string;
|
|
2202
|
+
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2203
|
+
parameters?: Omit<MountSearchParameters, "name" | "locale"> | undefined;
|
|
2204
|
+
_responseType?: _blizzard_api_core.SearchResponse<MountSearchResponseItem> | undefined;
|
|
2205
|
+
};
|
|
1909
2206
|
modifiedCraftingCategory: (modifiedCraftingCategoryId: number) => {
|
|
1910
2207
|
path: string;
|
|
1911
2208
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1912
|
-
parameters?: Record<string,
|
|
2209
|
+
parameters?: Record<string, never> | undefined;
|
|
1913
2210
|
_responseType?: ModifiedCraftingCategoryResponse | undefined;
|
|
1914
2211
|
};
|
|
1915
2212
|
modifiedCraftingCategoryIndex: () => {
|
|
1916
2213
|
path: string;
|
|
1917
2214
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1918
|
-
parameters?: Record<string,
|
|
2215
|
+
parameters?: Record<string, never> | undefined;
|
|
1919
2216
|
_responseType?: ModifiedCraftingCategoryIndexResponse | undefined;
|
|
1920
2217
|
};
|
|
1921
2218
|
modifiedCraftingIndex: () => {
|
|
1922
2219
|
path: string;
|
|
1923
2220
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1924
|
-
parameters?: Record<string,
|
|
2221
|
+
parameters?: Record<string, never> | undefined;
|
|
1925
2222
|
_responseType?: ModifiedCraftingIndexResponse | undefined;
|
|
1926
2223
|
};
|
|
1927
2224
|
modifiedCraftingReagentSlotType: (modifiedCraftingReagentSlotTypeId: number) => {
|
|
1928
2225
|
path: string;
|
|
1929
2226
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1930
|
-
parameters?: Record<string,
|
|
2227
|
+
parameters?: Record<string, never> | undefined;
|
|
1931
2228
|
_responseType?: ModifiedCraftingReagentSlotTypeResponse | undefined;
|
|
1932
2229
|
};
|
|
1933
2230
|
modifiedCraftingReagentSlotTypeIndex: () => {
|
|
1934
2231
|
path: string;
|
|
1935
2232
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1936
|
-
parameters?: Record<string,
|
|
2233
|
+
parameters?: Record<string, never> | undefined;
|
|
1937
2234
|
_responseType?: ModifiedCraftingReagentSlotTypeIndexResponse | undefined;
|
|
1938
2235
|
};
|
|
1939
|
-
mediaSearch: () => {
|
|
2236
|
+
mediaSearch: (options: MediaSearchParameters) => {
|
|
1940
2237
|
path: string;
|
|
1941
2238
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1942
|
-
parameters?:
|
|
1943
|
-
_responseType?:
|
|
2239
|
+
parameters?: MediaSearchParameters | undefined;
|
|
2240
|
+
_responseType?: _blizzard_api_core.SearchResponse<MediaSearchResponseItem> | undefined;
|
|
1944
2241
|
};
|
|
1945
2242
|
journalEncounter: (journalEncounterId: number) => {
|
|
1946
2243
|
path: string;
|
|
1947
2244
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1948
|
-
parameters?: Record<string,
|
|
2245
|
+
parameters?: Record<string, never> | undefined;
|
|
1949
2246
|
_responseType?: JournalEncounterResponse | undefined;
|
|
1950
2247
|
};
|
|
1951
2248
|
journalEncounterIndex: () => {
|
|
1952
2249
|
path: string;
|
|
1953
2250
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1954
|
-
parameters?: Record<string,
|
|
2251
|
+
parameters?: Record<string, never> | undefined;
|
|
1955
2252
|
_responseType?: JournalEncounterIndexResponse | undefined;
|
|
1956
2253
|
};
|
|
2254
|
+
journalEncounterSearch: (options: JournalEncounterSearchParameters) => {
|
|
2255
|
+
path: string;
|
|
2256
|
+
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2257
|
+
parameters?: Omit<JournalEncounterSearchParameters, "locale" | "instanceName"> | undefined;
|
|
2258
|
+
_responseType?: _blizzard_api_core.SearchResponse<JournalEncounterSearchResponseItem> | undefined;
|
|
2259
|
+
};
|
|
1957
2260
|
journalExpansion: (journalExpansionId: number) => {
|
|
1958
2261
|
path: string;
|
|
1959
2262
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1960
|
-
parameters?: Record<string,
|
|
2263
|
+
parameters?: Record<string, never> | undefined;
|
|
1961
2264
|
_responseType?: JournalExpansionResponse | undefined;
|
|
1962
2265
|
};
|
|
1963
2266
|
journalExpansionIndex: () => {
|
|
1964
2267
|
path: string;
|
|
1965
2268
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1966
|
-
parameters?: Record<string,
|
|
2269
|
+
parameters?: Record<string, never> | undefined;
|
|
1967
2270
|
_responseType?: JournalExpansionIndexResponse | undefined;
|
|
1968
2271
|
};
|
|
1969
2272
|
journalInstance: (journalInstanceId: number) => {
|
|
1970
2273
|
path: string;
|
|
1971
2274
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1972
|
-
parameters?: Record<string,
|
|
2275
|
+
parameters?: Record<string, never> | undefined;
|
|
1973
2276
|
_responseType?: JournalInstanceResponse | undefined;
|
|
1974
2277
|
};
|
|
1975
2278
|
journalInstanceIndex: () => {
|
|
1976
2279
|
path: string;
|
|
1977
2280
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1978
|
-
parameters?: Record<string,
|
|
2281
|
+
parameters?: Record<string, never> | undefined;
|
|
1979
2282
|
_responseType?: JournalInstanceIndexResponse | undefined;
|
|
1980
2283
|
};
|
|
1981
2284
|
journalInstanceMedia: (journalInstanceId: number) => {
|
|
1982
2285
|
path: string;
|
|
1983
2286
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1984
|
-
parameters?: Record<string,
|
|
2287
|
+
parameters?: Record<string, never> | undefined;
|
|
1985
2288
|
_responseType?: JournalInstanceMediaResponse | undefined;
|
|
1986
2289
|
};
|
|
1987
2290
|
item: (itemId: number) => {
|
|
1988
2291
|
path: string;
|
|
1989
2292
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1990
|
-
parameters?: Record<string,
|
|
2293
|
+
parameters?: Record<string, never> | undefined;
|
|
1991
2294
|
_responseType?: ItemResponse | undefined;
|
|
1992
2295
|
};
|
|
1993
2296
|
itemClass: (itemClassId: number) => {
|
|
1994
2297
|
path: string;
|
|
1995
2298
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1996
|
-
parameters?: Record<string,
|
|
2299
|
+
parameters?: Record<string, never> | undefined;
|
|
1997
2300
|
_responseType?: ItemClassResponse | undefined;
|
|
1998
2301
|
};
|
|
1999
2302
|
itemSubclass: (itemClassId: number, itemSubclassId: number) => {
|
|
2000
2303
|
path: string;
|
|
2001
2304
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2002
|
-
parameters?: Record<string,
|
|
2305
|
+
parameters?: Record<string, never> | undefined;
|
|
2003
2306
|
_responseType?: ItemSubclassResponse | undefined;
|
|
2004
2307
|
};
|
|
2005
2308
|
itemClassIndex: () => {
|
|
2006
2309
|
path: string;
|
|
2007
2310
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2008
|
-
parameters?: Record<string,
|
|
2311
|
+
parameters?: Record<string, never> | undefined;
|
|
2009
2312
|
_responseType?: ItemClassIndexResponse | undefined;
|
|
2010
2313
|
};
|
|
2011
2314
|
itemMedia: (itemId: number) => {
|
|
2012
2315
|
path: string;
|
|
2013
2316
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2014
|
-
parameters?: Record<string,
|
|
2317
|
+
parameters?: Record<string, never> | undefined;
|
|
2015
2318
|
_responseType?: ItemMediaResponse | undefined;
|
|
2016
2319
|
};
|
|
2017
2320
|
itemSet: (itemSetId: number) => {
|
|
2018
2321
|
path: string;
|
|
2019
2322
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2020
|
-
parameters?: Record<string,
|
|
2323
|
+
parameters?: Record<string, never> | undefined;
|
|
2021
2324
|
_responseType?: ItemSetResponse | undefined;
|
|
2022
2325
|
};
|
|
2023
2326
|
itemSetIndex: () => {
|
|
2024
2327
|
path: string;
|
|
2025
2328
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2026
|
-
parameters?: Record<string,
|
|
2329
|
+
parameters?: Record<string, never> | undefined;
|
|
2027
2330
|
_responseType?: ItemSetIndexResponse | undefined;
|
|
2028
2331
|
};
|
|
2332
|
+
itemSearch: (options: ItemSearchParameters) => {
|
|
2333
|
+
path: string;
|
|
2334
|
+
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2335
|
+
parameters?: Omit<ItemSearchParameters, "name" | "locale"> | undefined;
|
|
2336
|
+
_responseType?: _blizzard_api_core.SearchResponse<ItemSearchResponseItem> | undefined;
|
|
2337
|
+
};
|
|
2029
2338
|
heirloom: (heirloomId: number) => {
|
|
2030
2339
|
path: string;
|
|
2031
2340
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2032
|
-
parameters?: Record<string,
|
|
2341
|
+
parameters?: Record<string, never> | undefined;
|
|
2033
2342
|
_responseType?: HeirloomResponse | undefined;
|
|
2034
2343
|
};
|
|
2035
2344
|
heirloomIndex: () => {
|
|
2036
2345
|
path: string;
|
|
2037
2346
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2038
|
-
parameters?: Record<string,
|
|
2347
|
+
parameters?: Record<string, never> | undefined;
|
|
2039
2348
|
_responseType?: HeirloomIndexResponse | undefined;
|
|
2040
2349
|
};
|
|
2041
2350
|
guildCrestComponentsIndex: () => {
|
|
2042
2351
|
path: string;
|
|
2043
2352
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2044
|
-
parameters?: Record<string,
|
|
2353
|
+
parameters?: Record<string, never> | undefined;
|
|
2045
2354
|
_responseType?: GuildCrestComponentsIndexResponse | undefined;
|
|
2046
2355
|
};
|
|
2047
2356
|
guildCrestBorder: (borderId: number) => {
|
|
2048
2357
|
path: string;
|
|
2049
2358
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2050
|
-
parameters?: Record<string,
|
|
2359
|
+
parameters?: Record<string, never> | undefined;
|
|
2051
2360
|
_responseType?: GuildCrestBorderEmblemResponse | undefined;
|
|
2052
2361
|
};
|
|
2053
2362
|
guildCrestEmblem: (emblemId: number) => {
|
|
2054
2363
|
path: string;
|
|
2055
2364
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2056
|
-
parameters?: Record<string,
|
|
2365
|
+
parameters?: Record<string, never> | undefined;
|
|
2057
2366
|
_responseType?: GuildCrestBorderEmblemResponse | undefined;
|
|
2058
2367
|
};
|
|
2059
2368
|
creature: (creatureId: number) => {
|
|
2060
2369
|
path: string;
|
|
2061
2370
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2062
|
-
parameters?: Record<string,
|
|
2371
|
+
parameters?: Record<string, never> | undefined;
|
|
2063
2372
|
_responseType?: CreatureResponse | undefined;
|
|
2064
2373
|
};
|
|
2065
2374
|
creatureDisplayMedia: (creatureDisplayId: number) => {
|
|
2066
2375
|
path: string;
|
|
2067
2376
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2068
|
-
parameters?: Record<string,
|
|
2377
|
+
parameters?: Record<string, never> | undefined;
|
|
2069
2378
|
_responseType?: CreatureDisplayMediaResponse | undefined;
|
|
2070
2379
|
};
|
|
2071
2380
|
creatureFamily: (creatureFamilyId: number) => {
|
|
2072
2381
|
path: string;
|
|
2073
2382
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2074
|
-
parameters?: Record<string,
|
|
2383
|
+
parameters?: Record<string, never> | undefined;
|
|
2075
2384
|
_responseType?: CreatureFamilyResponse | undefined;
|
|
2076
2385
|
};
|
|
2077
2386
|
creatureFamilyIndex: () => {
|
|
2078
2387
|
path: string;
|
|
2079
2388
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2080
|
-
parameters?: Record<string,
|
|
2389
|
+
parameters?: Record<string, never> | undefined;
|
|
2081
2390
|
_responseType?: CreatureFamilyIndexResponse | undefined;
|
|
2082
2391
|
};
|
|
2083
2392
|
creatureFamilyMedia: (creatureFamilyId: number) => {
|
|
2084
2393
|
path: string;
|
|
2085
2394
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2086
|
-
parameters?: Record<string,
|
|
2395
|
+
parameters?: Record<string, never> | undefined;
|
|
2087
2396
|
_responseType?: CreatureFamilyMediaResponse | undefined;
|
|
2088
2397
|
};
|
|
2089
2398
|
creatureType: (creatureTypeId: number) => {
|
|
2090
2399
|
path: string;
|
|
2091
2400
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2092
|
-
parameters?: Record<string,
|
|
2401
|
+
parameters?: Record<string, never> | undefined;
|
|
2093
2402
|
_responseType?: CreatureTypeResponse | undefined;
|
|
2094
2403
|
};
|
|
2095
2404
|
creatureTypeIndex: () => {
|
|
2096
2405
|
path: string;
|
|
2097
2406
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2098
|
-
parameters?: Record<string,
|
|
2407
|
+
parameters?: Record<string, never> | undefined;
|
|
2099
2408
|
_responseType?: CreatureTypeIndexResponse | undefined;
|
|
2100
2409
|
};
|
|
2410
|
+
creatureSearch: (options: CreatureSearchParameters) => {
|
|
2411
|
+
path: string;
|
|
2412
|
+
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2413
|
+
parameters?: Omit<CreatureSearchParameters, "name" | "locale"> | undefined;
|
|
2414
|
+
_responseType?: _blizzard_api_core.SearchResponse<CreatureSearchResponseItem> | undefined;
|
|
2415
|
+
};
|
|
2101
2416
|
conduit: (conduitId: number) => {
|
|
2102
2417
|
path: string;
|
|
2103
2418
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2104
|
-
parameters?: Record<string,
|
|
2419
|
+
parameters?: Record<string, never> | undefined;
|
|
2105
2420
|
_responseType?: ConduitResponse | undefined;
|
|
2106
2421
|
};
|
|
2107
2422
|
conduitIndex: () => {
|
|
2108
2423
|
path: string;
|
|
2109
2424
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2110
|
-
parameters?: Record<string,
|
|
2425
|
+
parameters?: Record<string, never> | undefined;
|
|
2111
2426
|
_responseType?: ConduitIndexResponse | undefined;
|
|
2112
2427
|
};
|
|
2113
2428
|
covenant: (covenantId: number) => {
|
|
2114
2429
|
path: string;
|
|
2115
2430
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2116
|
-
parameters?: Record<string,
|
|
2431
|
+
parameters?: Record<string, never> | undefined;
|
|
2117
2432
|
_responseType?: CovenantResponse | undefined;
|
|
2118
2433
|
};
|
|
2119
2434
|
covenantIndex: () => {
|
|
2120
2435
|
path: string;
|
|
2121
2436
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2122
|
-
parameters?: Record<string,
|
|
2437
|
+
parameters?: Record<string, never> | undefined;
|
|
2123
2438
|
_responseType?: CovenantIndexResponse | undefined;
|
|
2124
2439
|
};
|
|
2125
2440
|
covenantMedia: (covenantId: number) => {
|
|
2126
2441
|
path: string;
|
|
2127
2442
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2128
|
-
parameters?: Record<string,
|
|
2443
|
+
parameters?: Record<string, never> | undefined;
|
|
2129
2444
|
_responseType?: CovenantMediaResponse | undefined;
|
|
2130
2445
|
};
|
|
2131
2446
|
soulbind: (soulbindId: number) => {
|
|
2132
2447
|
path: string;
|
|
2133
2448
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2134
|
-
parameters?: Record<string,
|
|
2449
|
+
parameters?: Record<string, never> | undefined;
|
|
2135
2450
|
_responseType?: SoulbindResponse | undefined;
|
|
2136
2451
|
};
|
|
2137
2452
|
soulbindIndex: () => {
|
|
2138
2453
|
path: string;
|
|
2139
2454
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2140
|
-
parameters?: Record<string,
|
|
2455
|
+
parameters?: Record<string, never> | undefined;
|
|
2141
2456
|
_responseType?: SoulbindIndexResponse | undefined;
|
|
2142
2457
|
};
|
|
2143
2458
|
connectedRealmIndex: () => {
|
|
2144
2459
|
path: string;
|
|
2145
2460
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2146
|
-
parameters?: Record<string,
|
|
2461
|
+
parameters?: Record<string, never> | undefined;
|
|
2147
2462
|
_responseType?: ConnectedRealmIndexResponse | undefined;
|
|
2148
2463
|
};
|
|
2149
2464
|
connectedRealm: (connectedRealmId: number) => {
|
|
2150
2465
|
path: string;
|
|
2151
2466
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2152
|
-
parameters?: Record<string,
|
|
2467
|
+
parameters?: Record<string, never> | undefined;
|
|
2153
2468
|
_responseType?: ConnectedRealmResponse | undefined;
|
|
2154
2469
|
};
|
|
2470
|
+
connectedRealmSearch: (options: ConnectedRealmSearchParameters) => {
|
|
2471
|
+
path: string;
|
|
2472
|
+
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2473
|
+
parameters?: ConnectedRealmSearchParameters | undefined;
|
|
2474
|
+
_responseType?: _blizzard_api_core.SearchResponse<ConnectedRealmSearchResponseItem> | undefined;
|
|
2475
|
+
};
|
|
2155
2476
|
azeriteEssence: (azeriteEssenceId: number) => {
|
|
2156
2477
|
path: string;
|
|
2157
2478
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2158
|
-
parameters?: Record<string,
|
|
2479
|
+
parameters?: Record<string, never> | undefined;
|
|
2159
2480
|
_responseType?: AzeriteEssenceResponse | undefined;
|
|
2160
2481
|
};
|
|
2161
2482
|
azeriteEssenceIndex: () => {
|
|
2162
2483
|
path: string;
|
|
2163
2484
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2164
|
-
parameters?: Record<string,
|
|
2485
|
+
parameters?: Record<string, never> | undefined;
|
|
2165
2486
|
_responseType?: AzeriteEssenceIndexResponse | undefined;
|
|
2166
2487
|
};
|
|
2167
2488
|
azeriteEssenceMedia: (azeriteEssenceId: number) => {
|
|
2168
2489
|
path: string;
|
|
2169
2490
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2170
|
-
parameters?: Record<string,
|
|
2491
|
+
parameters?: Record<string, never> | undefined;
|
|
2171
2492
|
_responseType?: AzeriteEssenceMediaResponse | undefined;
|
|
2172
2493
|
};
|
|
2494
|
+
azeriteEssenceSearch: (options: AzeriteEssenceSearchParameters) => {
|
|
2495
|
+
path: string;
|
|
2496
|
+
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2497
|
+
parameters?: AzeriteEssenceSearchParameters | undefined;
|
|
2498
|
+
_responseType?: _blizzard_api_core.SearchResponse<AzeriteEssenceSearchResponseItem> | undefined;
|
|
2499
|
+
};
|
|
2173
2500
|
auctions: (connectedRealmId: number) => {
|
|
2174
2501
|
path: string;
|
|
2175
2502
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2176
|
-
parameters?: Record<string,
|
|
2503
|
+
parameters?: Record<string, never> | undefined;
|
|
2177
2504
|
_responseType?: AuctionHouseResponse | undefined;
|
|
2178
2505
|
};
|
|
2179
2506
|
commodities: () => {
|
|
2180
2507
|
path: string;
|
|
2181
2508
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2182
|
-
parameters?: Record<string,
|
|
2509
|
+
parameters?: Record<string, never> | undefined;
|
|
2183
2510
|
_responseType?: AuctionHouseCommoditiesResponse | undefined;
|
|
2184
2511
|
};
|
|
2185
2512
|
achievementCategory: (achievementCategoryId: number) => {
|
|
2186
2513
|
path: string;
|
|
2187
2514
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2188
|
-
parameters?: Record<string,
|
|
2515
|
+
parameters?: Record<string, never> | undefined;
|
|
2189
2516
|
_responseType?: AchievementCategoryResponse | undefined;
|
|
2190
2517
|
};
|
|
2191
2518
|
achievementCategoryIndex: () => {
|
|
2192
2519
|
path: string;
|
|
2193
2520
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2194
|
-
parameters?: Record<string,
|
|
2521
|
+
parameters?: Record<string, never> | undefined;
|
|
2195
2522
|
_responseType?: AchievementCategoryIndexResponse | undefined;
|
|
2196
2523
|
};
|
|
2197
2524
|
achievement: (achievementId: number) => {
|
|
2198
2525
|
path: string;
|
|
2199
2526
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2200
|
-
parameters?: Record<string,
|
|
2527
|
+
parameters?: Record<string, never> | undefined;
|
|
2201
2528
|
_responseType?: AchievementResponse | undefined;
|
|
2202
2529
|
};
|
|
2203
2530
|
achievementIndex: () => {
|
|
2204
2531
|
path: string;
|
|
2205
2532
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2206
|
-
parameters?: Record<string,
|
|
2533
|
+
parameters?: Record<string, never> | undefined;
|
|
2207
2534
|
_responseType?: AchievementIndexResponse | undefined;
|
|
2208
2535
|
};
|
|
2209
2536
|
achievementMedia: (achievementId: number) => {
|
|
2210
2537
|
path: string;
|
|
2211
2538
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2212
|
-
parameters?: Record<string,
|
|
2539
|
+
parameters?: Record<string, never> | undefined;
|
|
2213
2540
|
_responseType?: AchievementMediaResponse | undefined;
|
|
2214
2541
|
};
|
|
2215
2542
|
};
|
|
2216
2543
|
|
|
2217
|
-
export { type AchievementCategoryIndexResponse, type AchievementCategoryResponse, type AchievementIndexResponse, type AchievementMediaResponse, type AchievementResponse, type AuctionHouseCommoditiesResponse, type AuctionHouseResponse, type AzeriteEssenceIndexResponse, type AzeriteEssenceMediaResponse, type AzeriteEssenceResponse, type ConduitIndexResponse, type ConduitResponse, type ConnectedRealmIndexResponse, type ConnectedRealmResponse, type CovenantIndexResponse, type CovenantMediaResponse, type CovenantResponse, type CreatureDisplayMediaResponse, type CreatureFamilyIndexResponse, type CreatureFamilyMediaResponse, type CreatureFamilyResponse, type CreatureResponse, type CreatureTypeIndexResponse, type CreatureTypeResponse, type Effect, type GuildCrestBorderEmblemResponse, type GuildCrestComponentsIndexResponse, type HeirloomIndexResponse, type HeirloomResponse, type ItemClassIndexResponse, type ItemClassResponse, type ItemMediaResponse, type ItemResponse, type ItemSetIndexResponse, type ItemSetResponse, type ItemSubclassResponse, type JournalEncounterIndexResponse, type JournalEncounterResponse, type JournalExpansionIndexResponse, type JournalExpansionResponse, type JournalInstanceIndexResponse, type JournalInstanceMediaResponse, type JournalInstanceResponse, type ModifiedCraftingCategoryIndexResponse, type ModifiedCraftingCategoryResponse, type ModifiedCraftingIndexResponse, type ModifiedCraftingReagentSlotTypeIndexResponse, type ModifiedCraftingReagentSlotTypeResponse, type MountIndexResponse, type MountResponse, type MythicKeystoneAffixIndexResponse, type MythicKeystoneAffixMediaResponse, type MythicKeystoneAffixResponse, type MythicKeystoneDungeonIndexResponse, type MythicKeystoneDungeonResponse, type MythicKeystoneIndexResponse, type MythicKeystoneLeaderboardIndexResponse, type MythicKeystoneLeaderboardResponse, type MythicKeystonePeriodIndexResponse, type MythicKeystonePeriodResponse, type MythicKeystoneSeasonIndexResponse, type MythicKeystoneSeasonResponse, type MythicRaidLeaderboardResponse, type PetAbilityIndexResponse, type PetAbilityMediaResponse, type PetAbilityResponse, type PetIndexResponse, type PetMediaResponse, type PetResponse, type PlayableClassIndexResponse, type PlayableClassMediaResponse, type PlayableClassResponse, type PlayableRaceIndexResponse, type PlayableRaceResponse, type PlayableSpecializationIndexResponse, type PlayableSpecializationMediaResponse, type PlayableSpecializationResponse, type PowerTypeIndexResponse, type PowerTypeResponse, type ProfessionIndexResponse, type ProfessionMediaResponse, type ProfessionResponse, type ProfessionSkillTierResponse, type PvpLeaderboardIndexResponse, type PvpLeaderboardResponse, type PvpRewardsIndexResponse, type PvpSeasonIndexResponse, type PvpSeasonResponse, type PvpTalentIndexResponse, type PvpTalentResponse, type PvpTalentSlotsResponse, type PvpTierIndexResponse, type PvpTierMediaResponse, type PvpTierResponse, type QuestAreaIndexResponse, type QuestAreaResponse, type QuestCategoryIndexResponse, type QuestCategoryResponse, type QuestIndexResponse, type QuestResponse, type QuestTypeIndexResponse, type QuestTypeResponse, type RealmIndexResponse, type RealmResponse, type RecipeMediaResponse, type RecipeResponse, type RegionIndexResponse, type RegionResponse, type ReputationFactionIndexResponse, type ReputationFactionResponse, type ReputationTiersIndexResponse, type ReputationTiersResponse, type SoulbindIndexResponse, type SoulbindResponse, type SpellMediaResponse, type SpellResponse, type TalentIndexResponse, type TalentResponse, type TalentTreeIndexResponse, type TalentTreeNodesResponse, type TalentTreeResponse, type TechTalentIndexResponse, type TechTalentMediaResponse, type TechTalentResponse, type TechTalentTreeIndexResponse, type TechTalentTreeResponse, type TitleIndexResponse, type TitleResponse, type ToyIndexResponse, type ToyResponse, type WowTokenResponse, wow };
|
|
2544
|
+
export { type AchievementCategoryIndexResponse, type AchievementCategoryResponse, type AchievementIndexResponse, type AchievementMediaResponse, type AchievementResponse, type AuctionHouseCommoditiesResponse, type AuctionHouseResponse, type AzeriteEssenceIndexResponse, type AzeriteEssenceMediaResponse, type AzeriteEssenceResponse, type AzeriteEssenceSearchParameters, type AzeriteEssenceSearchResponseItem, type ConduitIndexResponse, type ConduitResponse, type ConnectedRealmIndexResponse, type ConnectedRealmResponse, type ConnectedRealmSearchParameters, type ConnectedRealmSearchResponseItem, type CovenantIndexResponse, type CovenantMediaResponse, type CovenantResponse, type CreatureDisplayMediaResponse, type CreatureFamilyIndexResponse, type CreatureFamilyMediaResponse, type CreatureFamilyResponse, type CreatureResponse, type CreatureSearchParameters, type CreatureSearchResponseItem, type CreatureTypeIndexResponse, type CreatureTypeResponse, type Effect, type GuildCrestBorderEmblemResponse, type GuildCrestComponentsIndexResponse, type HeirloomIndexResponse, type HeirloomResponse, type ItemClassIndexResponse, type ItemClassResponse, type ItemMediaResponse, type ItemResponse, type ItemSearchParameters, type ItemSearchResponseItem, type ItemSetIndexResponse, type ItemSetResponse, type ItemSubclassResponse, type JournalEncounterIndexResponse, type JournalEncounterResponse, type JournalEncounterSearchParameters, type JournalEncounterSearchResponseItem, type JournalExpansionIndexResponse, type JournalExpansionResponse, type JournalInstanceIndexResponse, type JournalInstanceMediaResponse, type JournalInstanceResponse, type ModifiedCraftingCategoryIndexResponse, type ModifiedCraftingCategoryResponse, type ModifiedCraftingIndexResponse, type ModifiedCraftingReagentSlotTypeIndexResponse, type ModifiedCraftingReagentSlotTypeResponse, type MountIndexResponse, type MountResponse, type MountSearchParameters, type MountSearchResponseItem, type MythicKeystoneAffixIndexResponse, type MythicKeystoneAffixMediaResponse, type MythicKeystoneAffixResponse, type MythicKeystoneDungeonIndexResponse, type MythicKeystoneDungeonResponse, type MythicKeystoneIndexResponse, type MythicKeystoneLeaderboardIndexResponse, type MythicKeystoneLeaderboardResponse, type MythicKeystonePeriodIndexResponse, type MythicKeystonePeriodResponse, type MythicKeystoneSeasonIndexResponse, type MythicKeystoneSeasonResponse, type MythicRaidLeaderboardResponse, type PetAbilityIndexResponse, type PetAbilityMediaResponse, type PetAbilityResponse, type PetIndexResponse, type PetMediaResponse, type PetResponse, type PlayableClassIndexResponse, type PlayableClassMediaResponse, type PlayableClassResponse, type PlayableRaceIndexResponse, type PlayableRaceResponse, type PlayableSpecializationIndexResponse, type PlayableSpecializationMediaResponse, type PlayableSpecializationResponse, type PowerTypeIndexResponse, type PowerTypeResponse, type ProfessionIndexResponse, type ProfessionMediaResponse, type ProfessionResponse, type ProfessionSkillTierResponse, type PvpLeaderboardIndexResponse, type PvpLeaderboardResponse, type PvpRewardsIndexResponse, type PvpSeasonIndexResponse, type PvpSeasonResponse, type PvpTalentIndexResponse, type PvpTalentResponse, type PvpTalentSlotsResponse, type PvpTierIndexResponse, type PvpTierMediaResponse, type PvpTierResponse, type QuestAreaIndexResponse, type QuestAreaResponse, type QuestCategoryIndexResponse, type QuestCategoryResponse, type QuestIndexResponse, type QuestResponse, type QuestTypeIndexResponse, type QuestTypeResponse, type RealmCategory, type RealmIndexResponse, type RealmResponse, type RealmSearchParameters, type RealmSearchResponseItem, type RealmTimezone, type RealmType, type RealmTypeCapitalized, type RecipeMediaResponse, type RecipeResponse, type RegionIndexResponse, type RegionResponse, type ReputationFactionIndexResponse, type ReputationFactionResponse, type ReputationTiersIndexResponse, type ReputationTiersResponse, type SoulbindIndexResponse, type SoulbindResponse, type SpellMediaResponse, type SpellResponse, type SpellSearchParameters, type SpellSearchResponseItem, type TalentIndexResponse, type TalentResponse, type TalentTreeIndexResponse, type TalentTreeNodesResponse, type TalentTreeResponse, type TechTalentIndexResponse, type TechTalentMediaResponse, type TechTalentResponse, type TechTalentTreeIndexResponse, type TechTalentTreeResponse, type TitleIndexResponse, type TitleResponse, type ToyIndexResponse, type ToyResponse, type WithoutUnderscore, type WowTokenResponse, wow };
|