@blizzard-api/wow 0.0.7 → 0.1.1
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/README.md +2 -2
- package/dist/index.cjs +9 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1516 -239
- package/dist/index.d.ts +1516 -239
- package/dist/index.js +9 -10
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as _blizzard_api_core from '@blizzard-api/core';
|
|
2
|
+
import { Origins } from '@blizzard-api/core';
|
|
2
3
|
|
|
3
4
|
interface ResponseBase {
|
|
4
5
|
_links: {
|
|
@@ -12,148 +13,1410 @@ interface KeyBase {
|
|
|
12
13
|
href: string;
|
|
13
14
|
};
|
|
14
15
|
}
|
|
16
|
+
interface NameId {
|
|
17
|
+
name: string;
|
|
18
|
+
id: number;
|
|
19
|
+
}
|
|
20
|
+
interface NameIdKey extends KeyBase, NameId {
|
|
21
|
+
}
|
|
22
|
+
interface Color {
|
|
23
|
+
r: number;
|
|
24
|
+
g: number;
|
|
25
|
+
b: number;
|
|
26
|
+
a: number;
|
|
27
|
+
}
|
|
28
|
+
interface MediaAsset {
|
|
29
|
+
key: string;
|
|
30
|
+
value: string;
|
|
31
|
+
file_data_id: number;
|
|
32
|
+
}
|
|
33
|
+
interface Gender {
|
|
34
|
+
male: string;
|
|
35
|
+
female: string;
|
|
36
|
+
}
|
|
37
|
+
declare const Factions: {
|
|
38
|
+
readonly ALLIANCE: "ALLIANCE";
|
|
39
|
+
readonly HORDE: "HORDE";
|
|
40
|
+
};
|
|
41
|
+
interface Faction {
|
|
42
|
+
type: keyof typeof Factions;
|
|
43
|
+
name: Capitalize<Lowercase<keyof typeof Factions>>;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
interface AchievementCategoryResponse extends ResponseBase, NameId {
|
|
47
|
+
achievements: Array<NameIdKey>;
|
|
48
|
+
parent_category: NameIdKey;
|
|
49
|
+
isGuildCategory: boolean;
|
|
50
|
+
aggregates_by_faction: {
|
|
51
|
+
alliance: {
|
|
52
|
+
quantity: number;
|
|
53
|
+
points: number;
|
|
54
|
+
};
|
|
55
|
+
horde: {
|
|
56
|
+
quantity: number;
|
|
57
|
+
points: number;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
display_order: number;
|
|
61
|
+
}
|
|
62
|
+
interface AchievementCategoryIndexResponse extends ResponseBase {
|
|
63
|
+
categories: Array<NameIdKey>;
|
|
64
|
+
root_categories: Array<NameIdKey>;
|
|
65
|
+
guild_categories: Array<NameIdKey>;
|
|
66
|
+
}
|
|
67
|
+
interface AchievementResponse extends ResponseBase, NameId {
|
|
68
|
+
category: NameIdKey;
|
|
69
|
+
description: string;
|
|
70
|
+
points: number;
|
|
71
|
+
is_account_wide: boolean;
|
|
72
|
+
criteria: {
|
|
73
|
+
id: number;
|
|
74
|
+
description: string;
|
|
75
|
+
amount: number;
|
|
76
|
+
};
|
|
77
|
+
media: KeyBase;
|
|
78
|
+
display_order: number;
|
|
79
|
+
}
|
|
80
|
+
interface AchievementIndexResponse extends ResponseBase {
|
|
81
|
+
achievements: Array<NameIdKey>;
|
|
82
|
+
}
|
|
83
|
+
interface AchievementMediaItem {
|
|
84
|
+
key: string;
|
|
85
|
+
value: string;
|
|
86
|
+
file_data_id: number;
|
|
87
|
+
}
|
|
88
|
+
interface AchievementMediaResponse extends ResponseBase {
|
|
89
|
+
id: number;
|
|
90
|
+
assets: Array<AchievementMediaItem>;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
type AuctionHouseTimeLeft = 'SHORT' | 'MEDIUM' | 'LONG' | 'VERY_LONG';
|
|
94
|
+
interface AuctionHousePosting {
|
|
95
|
+
id: number;
|
|
96
|
+
item: {
|
|
97
|
+
id: number;
|
|
98
|
+
context: number;
|
|
99
|
+
bonus_lists: Array<number>;
|
|
100
|
+
modifiers: Array<{
|
|
101
|
+
type: number;
|
|
102
|
+
value: number;
|
|
103
|
+
}>;
|
|
104
|
+
};
|
|
105
|
+
bid: number;
|
|
106
|
+
buyout: number;
|
|
107
|
+
quantity: number;
|
|
108
|
+
time_left: AuctionHouseTimeLeft;
|
|
109
|
+
}
|
|
110
|
+
interface AuctionHouseResponse extends ResponseBase {
|
|
111
|
+
connected_realm: {
|
|
112
|
+
href: string;
|
|
113
|
+
};
|
|
114
|
+
commodities: {
|
|
115
|
+
href: string;
|
|
116
|
+
};
|
|
117
|
+
auctions: Array<AuctionHousePosting>;
|
|
118
|
+
}
|
|
119
|
+
interface AuctionHouseCommodity {
|
|
120
|
+
id: number;
|
|
121
|
+
item: {
|
|
122
|
+
id: number;
|
|
123
|
+
};
|
|
124
|
+
quantity: number;
|
|
125
|
+
unit_price: number;
|
|
126
|
+
time_left: AuctionHouseTimeLeft;
|
|
127
|
+
}
|
|
128
|
+
interface AuctionHouseCommoditiesResponse extends ResponseBase {
|
|
129
|
+
auctions: Array<AuctionHouseCommodity>;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
interface AzeriteEssenceIndexResponse extends ResponseBase {
|
|
133
|
+
azerite_essences: Array<NameIdKey>;
|
|
134
|
+
}
|
|
135
|
+
interface AzeriteEssenceResponse extends ResponseBase, NameId {
|
|
136
|
+
allowed_specializations: Array<NameIdKey>;
|
|
137
|
+
powers: Array<Power>;
|
|
138
|
+
media: Media$f;
|
|
139
|
+
}
|
|
140
|
+
interface Media$f extends KeyBase {
|
|
141
|
+
id: number;
|
|
142
|
+
}
|
|
143
|
+
interface Power {
|
|
144
|
+
id: number;
|
|
145
|
+
rank: number;
|
|
146
|
+
main_power_spell: NameIdKey;
|
|
147
|
+
passive_power_spell: NameIdKey;
|
|
148
|
+
}
|
|
149
|
+
interface AzeriteEssenceMediaResponse extends ResponseBase {
|
|
150
|
+
assets: Array<MediaAsset>;
|
|
151
|
+
id: number;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
interface ConnectedRealmIndexResponse extends ResponseBase {
|
|
155
|
+
connected_realms: Array<{
|
|
156
|
+
href: string;
|
|
157
|
+
}>;
|
|
158
|
+
}
|
|
159
|
+
type RealmStatus = 'Up' | 'Down';
|
|
160
|
+
type RealmPopulation = 'Low' | 'Medium' | 'High' | 'Full';
|
|
161
|
+
type RealmType = 'Normal';
|
|
162
|
+
interface Realm$4 {
|
|
163
|
+
id: number;
|
|
164
|
+
region: NameIdKey;
|
|
165
|
+
connected_realm: {
|
|
166
|
+
href: string;
|
|
167
|
+
};
|
|
168
|
+
name: string;
|
|
169
|
+
category: string;
|
|
170
|
+
locale: string;
|
|
171
|
+
timezone: string;
|
|
172
|
+
type: {
|
|
173
|
+
type: Uppercase<RealmType>;
|
|
174
|
+
name: RealmType;
|
|
175
|
+
};
|
|
176
|
+
is_tournament: boolean;
|
|
177
|
+
slug: string;
|
|
178
|
+
}
|
|
179
|
+
interface ConnectedRealmResponse extends ResponseBase {
|
|
180
|
+
id: number;
|
|
181
|
+
has_queue: boolean;
|
|
182
|
+
status: {
|
|
183
|
+
type: Uppercase<RealmStatus>;
|
|
184
|
+
name: RealmStatus;
|
|
185
|
+
};
|
|
186
|
+
population: {
|
|
187
|
+
type: Uppercase<RealmPopulation>;
|
|
188
|
+
name: RealmPopulation;
|
|
189
|
+
};
|
|
190
|
+
realms: Array<Realm$4>;
|
|
191
|
+
mythic_leaderboards: {
|
|
192
|
+
href: string;
|
|
193
|
+
};
|
|
194
|
+
auctions: {
|
|
195
|
+
href: string;
|
|
196
|
+
};
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
interface ConduitIndexResponse extends ResponseBase {
|
|
200
|
+
conduits: Array<NameIdKey>;
|
|
201
|
+
}
|
|
202
|
+
interface ConduitResponse extends ResponseBase {
|
|
203
|
+
id: number;
|
|
204
|
+
name: string;
|
|
205
|
+
item: Item$1;
|
|
206
|
+
socket_type: SocketType;
|
|
207
|
+
ranks: Array<Rank$1>;
|
|
208
|
+
}
|
|
209
|
+
interface Item$1 extends KeyBase {
|
|
210
|
+
id: number;
|
|
211
|
+
}
|
|
212
|
+
interface Rank$1 {
|
|
213
|
+
id: number;
|
|
214
|
+
tier: number;
|
|
215
|
+
spell_tooltip: SpellTooltip$1;
|
|
216
|
+
}
|
|
217
|
+
interface SpellTooltip$1 {
|
|
218
|
+
spell: Item$1;
|
|
219
|
+
description: string;
|
|
220
|
+
cast_time: string;
|
|
221
|
+
}
|
|
222
|
+
interface SocketType {
|
|
223
|
+
type: string;
|
|
224
|
+
name: string;
|
|
225
|
+
}
|
|
226
|
+
interface CovenantIndexResponse extends ResponseBase {
|
|
227
|
+
covenants: Array<NameIdKey>;
|
|
228
|
+
}
|
|
229
|
+
interface CovenantResponse extends ResponseBase {
|
|
230
|
+
id: number;
|
|
231
|
+
name: string;
|
|
232
|
+
description: string;
|
|
233
|
+
renown_rewards: Array<RenownReward>;
|
|
234
|
+
}
|
|
235
|
+
interface RenownReward {
|
|
236
|
+
level: number;
|
|
237
|
+
reward: NameIdKey;
|
|
238
|
+
}
|
|
239
|
+
interface CovenantMediaResponse extends ResponseBase {
|
|
240
|
+
id: number;
|
|
241
|
+
name: string;
|
|
242
|
+
description: string;
|
|
243
|
+
signature_ability: SignatureAbility;
|
|
244
|
+
class_abilities: Array<ClassAbility>;
|
|
245
|
+
soulbinds: Array<NameIdKey>;
|
|
246
|
+
renown_rewards: Array<RenownReward>;
|
|
247
|
+
media: Media$e;
|
|
248
|
+
}
|
|
249
|
+
interface ClassAbility {
|
|
250
|
+
id: number;
|
|
251
|
+
playable_class: NameIdKey;
|
|
252
|
+
spell_tooltip: ClassAbilitySpellTooltip;
|
|
253
|
+
}
|
|
254
|
+
interface ClassAbilitySpellTooltip {
|
|
255
|
+
spell: NameIdKey;
|
|
256
|
+
description: string;
|
|
257
|
+
cast_time: string;
|
|
258
|
+
range?: string;
|
|
259
|
+
cooldown?: string;
|
|
260
|
+
power_cost?: null | string;
|
|
261
|
+
}
|
|
262
|
+
interface Media$e extends KeyBase {
|
|
263
|
+
id: number;
|
|
264
|
+
}
|
|
265
|
+
interface SignatureAbility {
|
|
266
|
+
id: number;
|
|
267
|
+
spell_tooltip: SignatureAbilitySpellTooltip;
|
|
268
|
+
}
|
|
269
|
+
interface SignatureAbilitySpellTooltip {
|
|
270
|
+
spell: NameIdKey;
|
|
271
|
+
description: string;
|
|
272
|
+
cast_time: string;
|
|
273
|
+
cooldown: string;
|
|
274
|
+
}
|
|
275
|
+
interface SoulbindResponse extends ResponseBase {
|
|
276
|
+
id: number;
|
|
277
|
+
name: string;
|
|
278
|
+
covenant: NameIdKey;
|
|
279
|
+
creature: NameIdKey;
|
|
280
|
+
follower: NameIdKey;
|
|
281
|
+
talent_tree: NameIdKey;
|
|
282
|
+
}
|
|
283
|
+
interface SoulbindIndexResponse extends ResponseBase {
|
|
284
|
+
soulbinds: Array<NameIdKey>;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
interface CreatureResponse extends ResponseBase {
|
|
288
|
+
id: number;
|
|
289
|
+
name: string;
|
|
290
|
+
type: NameIdKey;
|
|
291
|
+
family: NameIdKey;
|
|
292
|
+
creature_displays: Array<CreatureDisplay$2>;
|
|
293
|
+
is_tameable: boolean;
|
|
294
|
+
}
|
|
295
|
+
interface CreatureDisplay$2 extends KeyBase {
|
|
296
|
+
id: number;
|
|
297
|
+
}
|
|
298
|
+
interface CreatureDisplayMediaResponse extends ResponseBase {
|
|
299
|
+
assets: Array<DisplayMediaAsset>;
|
|
300
|
+
id: number;
|
|
301
|
+
}
|
|
302
|
+
interface DisplayMediaAsset {
|
|
303
|
+
key: string;
|
|
304
|
+
value: string;
|
|
305
|
+
}
|
|
306
|
+
interface CreatureFamilyIndexResponse extends ResponseBase {
|
|
307
|
+
creature_families: Array<NameIdKey>;
|
|
308
|
+
}
|
|
309
|
+
interface CreatureFamilyResponse extends ResponseBase {
|
|
310
|
+
id: number;
|
|
311
|
+
name: string;
|
|
312
|
+
specialization: NameIdKey;
|
|
313
|
+
media: Media$d;
|
|
314
|
+
}
|
|
315
|
+
interface Media$d extends KeyBase {
|
|
316
|
+
id: number;
|
|
317
|
+
}
|
|
318
|
+
interface CreatureFamilyMediaResponse extends ResponseBase {
|
|
319
|
+
assets: Array<MediaAsset>;
|
|
320
|
+
id: number;
|
|
321
|
+
}
|
|
322
|
+
interface CreatureTypeIndexResponse extends ResponseBase {
|
|
323
|
+
creature_types: Array<NameIdKey>;
|
|
324
|
+
}
|
|
325
|
+
interface CreatureTypeResponse extends ResponseBase {
|
|
326
|
+
id: number;
|
|
327
|
+
name: string;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
interface GuildCrestComponentsIndexResponse extends ResponseBase {
|
|
331
|
+
emblems: Array<Border>;
|
|
332
|
+
borders: Array<Border>;
|
|
333
|
+
colors: Colors;
|
|
334
|
+
}
|
|
335
|
+
interface Border {
|
|
336
|
+
id: number;
|
|
337
|
+
media: Media$c;
|
|
338
|
+
}
|
|
339
|
+
interface Media$c extends KeyBase {
|
|
340
|
+
id: number;
|
|
341
|
+
}
|
|
342
|
+
interface Colors {
|
|
343
|
+
emblems: Array<Background>;
|
|
344
|
+
borders: Array<Background>;
|
|
345
|
+
backgrounds: Array<Background>;
|
|
346
|
+
}
|
|
347
|
+
interface Background {
|
|
348
|
+
id: number;
|
|
349
|
+
rgba: RGBA;
|
|
350
|
+
}
|
|
351
|
+
interface RGBA {
|
|
352
|
+
r: number;
|
|
353
|
+
g: number;
|
|
354
|
+
b: number;
|
|
355
|
+
a: number;
|
|
356
|
+
}
|
|
357
|
+
interface GuildCrestBorderEmblemResponse extends ResponseBase {
|
|
358
|
+
assets: Array<GuildCrestAsset>;
|
|
359
|
+
id: number;
|
|
360
|
+
}
|
|
361
|
+
interface GuildCrestAsset {
|
|
362
|
+
key: string;
|
|
363
|
+
value: string;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
interface HeirloomIndexResponse extends ResponseBase {
|
|
367
|
+
heirlooms: Array<NameIdKey>;
|
|
368
|
+
}
|
|
369
|
+
interface HeirloomResponse extends ResponseBase {
|
|
370
|
+
id: number;
|
|
371
|
+
item: NameIdKey;
|
|
372
|
+
source: Source$3;
|
|
373
|
+
source_description: string;
|
|
374
|
+
upgrades: Array<Upgrade>;
|
|
375
|
+
media: Media$b;
|
|
376
|
+
}
|
|
377
|
+
interface Media$b extends KeyBase {
|
|
378
|
+
id: number;
|
|
379
|
+
}
|
|
380
|
+
interface Source$3 {
|
|
381
|
+
type: string;
|
|
382
|
+
name: string;
|
|
383
|
+
}
|
|
384
|
+
interface Upgrade {
|
|
385
|
+
item: UpgradeItem;
|
|
386
|
+
level: number;
|
|
387
|
+
}
|
|
388
|
+
interface UpgradeItem {
|
|
389
|
+
item: Media$b;
|
|
390
|
+
context: number;
|
|
391
|
+
bonus_list: Array<number>;
|
|
392
|
+
quality: Source$3;
|
|
393
|
+
name: string;
|
|
394
|
+
media: Media$b;
|
|
395
|
+
item_class: NameIdKey;
|
|
396
|
+
item_subclass: NameIdKey;
|
|
397
|
+
inventory_type: Source$3;
|
|
398
|
+
binding: Source$3;
|
|
399
|
+
weapon: Weapon$1;
|
|
400
|
+
stats: Array<Stat$1>;
|
|
401
|
+
upgrades: Upgrades;
|
|
402
|
+
requirements: Requirements$2;
|
|
403
|
+
level: AttackSpeedClass;
|
|
404
|
+
}
|
|
405
|
+
interface AttackSpeedClass {
|
|
406
|
+
value: number;
|
|
407
|
+
display_string: string;
|
|
408
|
+
}
|
|
409
|
+
interface Requirements$2 {
|
|
410
|
+
level: RequirementsLevel;
|
|
411
|
+
}
|
|
412
|
+
interface RequirementsLevel {
|
|
413
|
+
display_string: string;
|
|
414
|
+
}
|
|
415
|
+
interface Stat$1 {
|
|
416
|
+
type: Source$3;
|
|
417
|
+
value: number;
|
|
418
|
+
display: Display$1;
|
|
419
|
+
is_equip_bonus?: boolean;
|
|
420
|
+
}
|
|
421
|
+
interface Display$1 {
|
|
422
|
+
display_string: string;
|
|
423
|
+
color: Color;
|
|
424
|
+
}
|
|
425
|
+
interface Upgrades {
|
|
426
|
+
value: number;
|
|
427
|
+
max_value: number;
|
|
428
|
+
display_string: string;
|
|
429
|
+
}
|
|
430
|
+
interface Weapon$1 {
|
|
431
|
+
damage: Damage$1;
|
|
432
|
+
attack_speed: AttackSpeedClass;
|
|
433
|
+
dps: AttackSpeedClass;
|
|
434
|
+
}
|
|
435
|
+
interface Damage$1 {
|
|
436
|
+
min_value: number;
|
|
437
|
+
max_value: number;
|
|
438
|
+
display_string: string;
|
|
439
|
+
damage_class: Source$3;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
interface ItemResponse extends ResponseBase {
|
|
443
|
+
id: number;
|
|
444
|
+
name: string;
|
|
445
|
+
quality: InventoryType;
|
|
446
|
+
level: number;
|
|
447
|
+
required_level: number;
|
|
448
|
+
media: Media$a;
|
|
449
|
+
item_class: NameIdKey;
|
|
450
|
+
item_subclass: NameIdKey;
|
|
451
|
+
inventory_type: InventoryType;
|
|
452
|
+
purchase_price: number;
|
|
453
|
+
sell_price: number;
|
|
454
|
+
max_count: number;
|
|
455
|
+
is_equippable: boolean;
|
|
456
|
+
is_stackable: boolean;
|
|
457
|
+
preview_item: PreviewItem;
|
|
458
|
+
purchase_quantity: number;
|
|
459
|
+
}
|
|
460
|
+
interface InventoryType {
|
|
461
|
+
type: string;
|
|
462
|
+
name: string;
|
|
463
|
+
}
|
|
464
|
+
interface Media$a extends KeyBase {
|
|
465
|
+
id: number;
|
|
466
|
+
}
|
|
467
|
+
interface PreviewItem {
|
|
468
|
+
item: Media$a;
|
|
469
|
+
context: number;
|
|
470
|
+
bonus_list: Array<number>;
|
|
471
|
+
quality: InventoryType;
|
|
472
|
+
name: string;
|
|
473
|
+
media: Media$a;
|
|
474
|
+
item_class: NameIdKey;
|
|
475
|
+
item_subclass: NameIdKey;
|
|
476
|
+
inventory_type: InventoryType;
|
|
477
|
+
binding: InventoryType;
|
|
478
|
+
unique_equipped: string;
|
|
479
|
+
weapon: Weapon;
|
|
480
|
+
stats: Array<Stat>;
|
|
481
|
+
spells: Array<Spell>;
|
|
482
|
+
requirements: Requirements$1;
|
|
483
|
+
level: Durability;
|
|
484
|
+
durability: Durability;
|
|
485
|
+
}
|
|
486
|
+
interface Durability {
|
|
487
|
+
value: number;
|
|
488
|
+
display_string: string;
|
|
489
|
+
}
|
|
490
|
+
interface Requirements$1 {
|
|
491
|
+
level: Durability;
|
|
492
|
+
}
|
|
493
|
+
interface Spell {
|
|
494
|
+
spell: NameIdKey;
|
|
495
|
+
description: string;
|
|
496
|
+
}
|
|
497
|
+
interface Stat {
|
|
498
|
+
type: InventoryType;
|
|
499
|
+
value: number;
|
|
500
|
+
is_negated?: boolean;
|
|
501
|
+
display: Display;
|
|
502
|
+
}
|
|
503
|
+
interface Display {
|
|
504
|
+
display_string: string;
|
|
505
|
+
color: Color;
|
|
506
|
+
}
|
|
507
|
+
interface Weapon {
|
|
508
|
+
damage: Damage;
|
|
509
|
+
attack_speed: Durability;
|
|
510
|
+
dps: Durability;
|
|
511
|
+
}
|
|
512
|
+
interface Damage {
|
|
513
|
+
min_value: number;
|
|
514
|
+
max_value: number;
|
|
515
|
+
display_string: string;
|
|
516
|
+
damage_class: InventoryType;
|
|
517
|
+
}
|
|
518
|
+
interface ItemClassIndexResponse extends ResponseBase {
|
|
519
|
+
item_classes: Array<NameIdKey>;
|
|
520
|
+
}
|
|
521
|
+
interface ItemClassResponse extends ResponseBase {
|
|
522
|
+
class_id: number;
|
|
523
|
+
name: string;
|
|
524
|
+
item_subclasses: Array<NameIdKey>;
|
|
525
|
+
}
|
|
526
|
+
interface ItemMediaResponse extends ResponseBase {
|
|
527
|
+
assets: Array<MediaAsset>;
|
|
528
|
+
id: number;
|
|
529
|
+
}
|
|
530
|
+
interface ItemSubclassResponse extends ResponseBase {
|
|
531
|
+
class_id: number;
|
|
532
|
+
subclass_id: number;
|
|
533
|
+
display_name: string;
|
|
534
|
+
verbose_name: string;
|
|
535
|
+
}
|
|
536
|
+
interface ItemSetIndexResponse extends ResponseBase {
|
|
537
|
+
item_sets: Array<NameIdKey>;
|
|
538
|
+
}
|
|
539
|
+
interface ItemSetResponse extends ResponseBase {
|
|
540
|
+
id: number;
|
|
541
|
+
name: string;
|
|
542
|
+
items: Array<NameIdKey>;
|
|
543
|
+
effects: Array<Effect>;
|
|
544
|
+
}
|
|
545
|
+
interface Effect {
|
|
546
|
+
display_string: string;
|
|
547
|
+
required_count: number;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
interface JournalEncounterIndexResponse extends ResponseBase {
|
|
551
|
+
encounters: Array<NameIdKey>;
|
|
552
|
+
}
|
|
553
|
+
interface JournalEncounterResponse extends ResponseBase, NameId {
|
|
554
|
+
description: string;
|
|
555
|
+
creatures: Array<Creature>;
|
|
556
|
+
items: Array<Item>;
|
|
557
|
+
sections: Array<JournalEncounterResponseSection>;
|
|
558
|
+
instance: NameIdKey;
|
|
559
|
+
category: Category$1;
|
|
560
|
+
modes: Array<Mode>;
|
|
561
|
+
}
|
|
562
|
+
interface Category$1 {
|
|
563
|
+
type: string;
|
|
564
|
+
}
|
|
565
|
+
interface Creature extends NameId {
|
|
566
|
+
creature_display: CreatureDisplay$1;
|
|
567
|
+
}
|
|
568
|
+
interface CreatureDisplay$1 extends KeyBase {
|
|
569
|
+
id: number;
|
|
570
|
+
}
|
|
571
|
+
interface Item {
|
|
572
|
+
id: number;
|
|
573
|
+
item: NameIdKey;
|
|
574
|
+
}
|
|
575
|
+
interface Mode {
|
|
576
|
+
type: string;
|
|
577
|
+
name: string;
|
|
578
|
+
}
|
|
579
|
+
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
|
+
id: number;
|
|
588
|
+
title: string;
|
|
589
|
+
body_text?: string;
|
|
590
|
+
sections?: Array<JournalSection>;
|
|
591
|
+
}
|
|
592
|
+
interface JournalExpansionIndexResponse extends ResponseBase {
|
|
593
|
+
tiers: Array<NameIdKey>;
|
|
594
|
+
}
|
|
595
|
+
interface JournalExpansionResponse extends ResponseBase, NameId {
|
|
596
|
+
dungeons: Array<NameIdKey>;
|
|
597
|
+
raids: Array<NameIdKey>;
|
|
598
|
+
}
|
|
599
|
+
interface JournalInstanceIndexResponse extends ResponseBase {
|
|
600
|
+
instances: Array<NameIdKey>;
|
|
601
|
+
}
|
|
602
|
+
interface JournalInstanceResponse extends ResponseBase, NameId {
|
|
603
|
+
map: NameId;
|
|
604
|
+
area: NameId;
|
|
605
|
+
description: string;
|
|
606
|
+
encounters: Array<NameIdKey>;
|
|
607
|
+
expansion: NameIdKey;
|
|
608
|
+
location: NameId;
|
|
609
|
+
modes: Array<ModeElement>;
|
|
610
|
+
media: Media$9;
|
|
611
|
+
minimum_level: number;
|
|
612
|
+
category: Category$1;
|
|
613
|
+
order_index: number;
|
|
614
|
+
}
|
|
615
|
+
interface Media$9 extends KeyBase {
|
|
616
|
+
id: number;
|
|
617
|
+
}
|
|
618
|
+
interface ModeElement {
|
|
619
|
+
mode: Mode;
|
|
620
|
+
players: number;
|
|
621
|
+
is_tracked: boolean;
|
|
622
|
+
}
|
|
623
|
+
interface JournalInstanceMediaResponse extends ResponseBase {
|
|
624
|
+
assets: Array<Asset>;
|
|
625
|
+
}
|
|
626
|
+
interface Asset {
|
|
627
|
+
key: string;
|
|
628
|
+
value: string;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
interface ModifiedCraftingCategoryResponse extends ResponseBase, NameId {
|
|
632
|
+
}
|
|
633
|
+
interface ModifiedCraftingCategoryIndexResponse extends ResponseBase {
|
|
634
|
+
categories: Array<NameIdKey>;
|
|
635
|
+
}
|
|
636
|
+
interface ModifiedCraftingIndexResponse extends ResponseBase {
|
|
637
|
+
categories: {
|
|
638
|
+
href: string;
|
|
639
|
+
};
|
|
640
|
+
slot_types: {
|
|
641
|
+
href: string;
|
|
642
|
+
};
|
|
643
|
+
}
|
|
644
|
+
interface ModifiedCraftingReagentSlotTypeIndexResponse extends ResponseBase {
|
|
645
|
+
slot_types: Array<SlotType>;
|
|
646
|
+
}
|
|
647
|
+
interface SlotType extends KeyBase {
|
|
648
|
+
name?: string;
|
|
649
|
+
id: number;
|
|
650
|
+
}
|
|
651
|
+
interface ModifiedCraftingReagentSlotTypeResponse extends ResponseBase {
|
|
652
|
+
id: number;
|
|
653
|
+
description: string;
|
|
654
|
+
compatible_categories: Array<NameIdKey>;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
interface MountIndexResponse extends ResponseBase {
|
|
658
|
+
mounts: Array<NameIdKey>;
|
|
659
|
+
}
|
|
660
|
+
interface MountResponse extends ResponseBase {
|
|
661
|
+
id: number;
|
|
662
|
+
name: string;
|
|
663
|
+
creature_displays: Array<CreatureDisplay>;
|
|
664
|
+
description: string;
|
|
665
|
+
source: Source$2;
|
|
666
|
+
should_exclude_if_uncollected: boolean;
|
|
667
|
+
}
|
|
668
|
+
interface CreatureDisplay extends KeyBase {
|
|
669
|
+
id: number;
|
|
670
|
+
}
|
|
671
|
+
interface Source$2 {
|
|
672
|
+
type: string;
|
|
673
|
+
name: string;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
interface MythicKeystoneAffixIndexResponse extends ResponseBase {
|
|
677
|
+
affixes: Array<NameIdKey>;
|
|
678
|
+
}
|
|
679
|
+
interface MythicKeystoneAffixResponse extends ResponseBase, NameId {
|
|
680
|
+
description: string;
|
|
681
|
+
media: Media$8;
|
|
682
|
+
}
|
|
683
|
+
interface Media$8 extends KeyBase {
|
|
684
|
+
id: number;
|
|
685
|
+
}
|
|
686
|
+
interface MythicKeystoneAffixMediaResponse extends ResponseBase {
|
|
687
|
+
assets: Array<MediaAsset>;
|
|
688
|
+
id: number;
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
interface MythicKeystoneDungeonIndexResponse extends ResponseBase {
|
|
692
|
+
dungeons: Array<NameIdKey>;
|
|
693
|
+
}
|
|
694
|
+
interface MythicKeystoneDungeonResponse extends ResponseBase, NameId {
|
|
695
|
+
map: NameId;
|
|
696
|
+
zone: Zone;
|
|
697
|
+
dungeon: NameIdKey;
|
|
698
|
+
keystone_upgrades: Array<KeystoneUpgrade>;
|
|
699
|
+
is_tracked: boolean;
|
|
700
|
+
}
|
|
701
|
+
interface KeystoneUpgrade {
|
|
702
|
+
upgrade_level: number;
|
|
703
|
+
qualifying_duration: number;
|
|
704
|
+
}
|
|
705
|
+
interface Zone {
|
|
706
|
+
slug: string;
|
|
707
|
+
}
|
|
708
|
+
interface MythicKeystoneIndexResponse extends ResponseBase {
|
|
709
|
+
seasons: {
|
|
710
|
+
href: string;
|
|
711
|
+
};
|
|
712
|
+
dungeons: {
|
|
713
|
+
href: string;
|
|
714
|
+
};
|
|
715
|
+
}
|
|
716
|
+
interface MythicKeystonePeriodIndexResponse extends ResponseBase {
|
|
717
|
+
periods: Array<Period>;
|
|
718
|
+
current_period: Period;
|
|
719
|
+
}
|
|
720
|
+
interface Period extends KeyBase {
|
|
721
|
+
id: number;
|
|
722
|
+
}
|
|
723
|
+
interface MythicKeystonePeriodResponse extends ResponseBase {
|
|
724
|
+
id: number;
|
|
725
|
+
start_timestamp: number;
|
|
726
|
+
end_timestamp: number;
|
|
727
|
+
}
|
|
728
|
+
interface MythicKeystoneSeasonIndexResponse extends ResponseBase {
|
|
729
|
+
seasons: Array<Period>;
|
|
730
|
+
current_season: Period;
|
|
731
|
+
}
|
|
732
|
+
interface MythicKeystoneSeasonResponse extends ResponseBase {
|
|
733
|
+
id: number;
|
|
734
|
+
start_timestamp: number;
|
|
735
|
+
end_timestamp: number;
|
|
736
|
+
periods: Array<Period>;
|
|
737
|
+
season_name: string | null;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
interface MythicKeystoneLeaderboardIndexResponse extends ResponseBase {
|
|
741
|
+
current_leaderboards: Array<NameIdKey>;
|
|
742
|
+
}
|
|
743
|
+
interface MythicKeystoneLeaderboardResponse extends ResponseBase {
|
|
744
|
+
map: NameId;
|
|
745
|
+
period: number;
|
|
746
|
+
period_start_timestamp: number;
|
|
747
|
+
period_end_timestamp: number;
|
|
748
|
+
connected_realm: {
|
|
749
|
+
href: string;
|
|
750
|
+
};
|
|
751
|
+
leading_groups: Array<LeadingGroup>;
|
|
752
|
+
keystone_affixes: Array<KeystoneAffixElement>;
|
|
753
|
+
map_challenge_mode_id: number;
|
|
754
|
+
name: string;
|
|
755
|
+
}
|
|
756
|
+
interface KeystoneAffixElement {
|
|
757
|
+
keystone_affix: NameIdKey;
|
|
758
|
+
starting_level: number;
|
|
759
|
+
}
|
|
760
|
+
interface LeadingGroup {
|
|
761
|
+
ranking: number;
|
|
762
|
+
duration: number;
|
|
763
|
+
completed_timestamp: number;
|
|
764
|
+
keystone_level: number;
|
|
765
|
+
members: Array<Member>;
|
|
766
|
+
mythic_rating: MythicRating;
|
|
767
|
+
}
|
|
768
|
+
interface Member {
|
|
769
|
+
profile: Profile;
|
|
770
|
+
faction: {
|
|
771
|
+
type: keyof typeof Factions;
|
|
772
|
+
};
|
|
773
|
+
specialization: Specialization;
|
|
774
|
+
}
|
|
775
|
+
interface Profile extends NameId {
|
|
776
|
+
realm: Realm$3;
|
|
777
|
+
}
|
|
778
|
+
interface Realm$3 extends KeyBase {
|
|
779
|
+
id: number;
|
|
780
|
+
slug: string;
|
|
781
|
+
}
|
|
782
|
+
interface Specialization extends KeyBase {
|
|
783
|
+
id: number;
|
|
784
|
+
}
|
|
785
|
+
interface MythicRating {
|
|
786
|
+
color: Color;
|
|
787
|
+
rating: number;
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
interface MythicRaidLeaderboardResponse extends ResponseBase {
|
|
791
|
+
slug: string;
|
|
792
|
+
criteria_type: string;
|
|
793
|
+
entries: Array<Entry$1>;
|
|
794
|
+
journal_instance: JournalInstance;
|
|
795
|
+
}
|
|
796
|
+
interface Entry$1 {
|
|
797
|
+
guild: Guild;
|
|
798
|
+
faction: {
|
|
799
|
+
type: keyof typeof Factions;
|
|
800
|
+
};
|
|
801
|
+
timestamp: number;
|
|
802
|
+
region: Origins | 'cn';
|
|
803
|
+
rank: number;
|
|
804
|
+
}
|
|
805
|
+
interface Guild extends NameId {
|
|
806
|
+
realm: Realm$2;
|
|
807
|
+
}
|
|
808
|
+
interface Realm$2 {
|
|
809
|
+
name: null;
|
|
810
|
+
id: number;
|
|
811
|
+
slug: string;
|
|
812
|
+
}
|
|
813
|
+
interface JournalInstance extends KeyBase {
|
|
814
|
+
name: null;
|
|
815
|
+
id: number;
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
interface PetIndexResponse extends ResponseBase {
|
|
819
|
+
pets: Array<NameIdKey>;
|
|
820
|
+
}
|
|
821
|
+
interface PetResponse extends ResponseBase, NameId {
|
|
822
|
+
battle_pet_type: BattlePetType;
|
|
823
|
+
description: string;
|
|
824
|
+
is_capturable: boolean;
|
|
825
|
+
is_tradable: boolean;
|
|
826
|
+
is_battlepet: boolean;
|
|
827
|
+
is_alliance_only: boolean;
|
|
828
|
+
is_horde_only: boolean;
|
|
829
|
+
abilities: Array<Ability>;
|
|
830
|
+
source: Source$1;
|
|
831
|
+
icon: string;
|
|
832
|
+
creature: NameIdKey;
|
|
833
|
+
is_random_creature_display: boolean;
|
|
834
|
+
media: Media$7;
|
|
835
|
+
should_exclude_if_uncollected: boolean;
|
|
836
|
+
}
|
|
837
|
+
interface Ability {
|
|
838
|
+
ability: NameIdKey;
|
|
839
|
+
slot: number;
|
|
840
|
+
required_level: number;
|
|
841
|
+
}
|
|
842
|
+
interface BattlePetType extends NameId {
|
|
843
|
+
type: string;
|
|
844
|
+
}
|
|
845
|
+
interface Media$7 extends KeyBase {
|
|
846
|
+
id: number;
|
|
847
|
+
}
|
|
848
|
+
interface Source$1 {
|
|
849
|
+
type: string;
|
|
850
|
+
name: string;
|
|
851
|
+
}
|
|
852
|
+
interface PetMediaResponse extends ResponseBase {
|
|
853
|
+
assets: Array<MediaAsset>;
|
|
854
|
+
id: number;
|
|
855
|
+
}
|
|
856
|
+
interface PetAbilityIndexResponse extends ResponseBase {
|
|
857
|
+
abilities: Array<NameIdKey>;
|
|
858
|
+
}
|
|
859
|
+
interface PetAbilityResponse extends ResponseBase, NameId {
|
|
860
|
+
battle_pet_type: BattlePetType;
|
|
861
|
+
rounds: number;
|
|
862
|
+
media: Media$7;
|
|
863
|
+
}
|
|
864
|
+
interface PetAbilityMediaResponse extends ResponseBase {
|
|
865
|
+
assets: Array<MediaAsset>;
|
|
866
|
+
id: number;
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
interface PlayableClassIndexResponse extends ResponseBase {
|
|
870
|
+
classes: Array<NameIdKey>;
|
|
871
|
+
}
|
|
872
|
+
interface PlayableClassResponse extends ResponseBase, NameId {
|
|
873
|
+
gender_name: Gender;
|
|
874
|
+
power_type: NameIdKey;
|
|
875
|
+
specializations: Array<NameIdKey>;
|
|
876
|
+
media: Media$6;
|
|
877
|
+
pvp_talent_slots: {
|
|
878
|
+
href: string;
|
|
879
|
+
};
|
|
880
|
+
playable_races: Array<NameIdKey>;
|
|
881
|
+
}
|
|
882
|
+
interface Media$6 extends KeyBase {
|
|
883
|
+
id: number;
|
|
884
|
+
}
|
|
885
|
+
interface PlayableClassMediaResponse extends ResponseBase {
|
|
886
|
+
assets: Array<MediaAsset>;
|
|
887
|
+
id: number;
|
|
888
|
+
}
|
|
889
|
+
interface PvpTalentSlotsResponse extends ResponseBase {
|
|
890
|
+
talent_slots: Array<TalentSlot>;
|
|
891
|
+
}
|
|
892
|
+
interface TalentSlot {
|
|
893
|
+
slot_number: number;
|
|
894
|
+
unlock_player_level: number;
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
interface PlayableRaceIndexResponse extends ResponseBase {
|
|
898
|
+
races: Array<NameIdKey>;
|
|
899
|
+
}
|
|
900
|
+
interface PlayableRaceResponse extends ResponseBase, NameId {
|
|
901
|
+
gender_name: Gender;
|
|
902
|
+
faction: Faction;
|
|
903
|
+
is_selectable: boolean;
|
|
904
|
+
is_allied_race: boolean;
|
|
905
|
+
playable_classes: Array<NameIdKey>;
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
interface PlayableSpecializationIndexResponse extends ResponseBase {
|
|
909
|
+
character_specializations: Array<NameIdKey>;
|
|
910
|
+
pet_specializations: Array<NameIdKey>;
|
|
911
|
+
}
|
|
912
|
+
interface PlayableSpecializationResponse extends ResponseBase, NameId {
|
|
913
|
+
playable_class: NameIdKey;
|
|
914
|
+
gender_description: Gender;
|
|
915
|
+
media: Media$5;
|
|
916
|
+
role: PrimaryStatType;
|
|
917
|
+
pvp_talents: Array<PvpTalent>;
|
|
918
|
+
spec_talent_tree: SpecTalentTree$1;
|
|
919
|
+
power_type: NameIdKey;
|
|
920
|
+
primary_stat_type: PrimaryStatType;
|
|
921
|
+
}
|
|
922
|
+
interface Media$5 extends KeyBase {
|
|
923
|
+
id: number;
|
|
924
|
+
}
|
|
925
|
+
interface PrimaryStatType {
|
|
926
|
+
type: string;
|
|
927
|
+
name: string;
|
|
928
|
+
}
|
|
929
|
+
interface PvpTalent {
|
|
930
|
+
talent: NameIdKey;
|
|
931
|
+
spell_tooltip: SpellTooltip;
|
|
932
|
+
}
|
|
933
|
+
interface SpellTooltip {
|
|
934
|
+
description: string;
|
|
935
|
+
cast_time: string;
|
|
936
|
+
power_cost?: string;
|
|
937
|
+
cooldown?: string;
|
|
938
|
+
range?: string;
|
|
939
|
+
}
|
|
940
|
+
interface SpecTalentTree$1 extends KeyBase {
|
|
941
|
+
name: string;
|
|
942
|
+
}
|
|
943
|
+
interface PlayableSpecializationMediaResponse extends ResponseBase {
|
|
944
|
+
assets: Array<MediaAsset>;
|
|
945
|
+
id: number;
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
interface PowerTypeIndexResponse extends ResponseBase {
|
|
949
|
+
power_types: Array<NameIdKey>;
|
|
950
|
+
}
|
|
951
|
+
interface PowerTypeResponse extends ResponseBase, NameId {
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
interface ProfessionIndexResponse extends ResponseBase {
|
|
955
|
+
professions: Array<NameIdKey>;
|
|
956
|
+
}
|
|
957
|
+
interface ProfessionResponse extends ResponseBase, NameId {
|
|
958
|
+
description: string;
|
|
959
|
+
type: Type$1;
|
|
960
|
+
media: Media$4;
|
|
961
|
+
skill_tiers: Array<NameIdKey>;
|
|
962
|
+
}
|
|
963
|
+
interface Media$4 extends KeyBase {
|
|
964
|
+
id: number;
|
|
965
|
+
}
|
|
966
|
+
interface Type$1 {
|
|
967
|
+
type: string;
|
|
968
|
+
name: string;
|
|
969
|
+
}
|
|
970
|
+
interface ProfessionSkillTierResponse extends ResponseBase, NameId {
|
|
971
|
+
minimum_skill_level: number;
|
|
972
|
+
maximum_skill_level: number;
|
|
973
|
+
categories: Array<Category>;
|
|
974
|
+
}
|
|
975
|
+
interface Category {
|
|
976
|
+
name: string;
|
|
977
|
+
recipes: Array<NameIdKey>;
|
|
978
|
+
}
|
|
979
|
+
interface ProfessionMediaResponse extends ResponseBase {
|
|
980
|
+
assets: Array<MediaAsset>;
|
|
981
|
+
id: number;
|
|
982
|
+
}
|
|
983
|
+
interface RecipeResponse extends ResponseBase, NameId {
|
|
984
|
+
media: Media$4;
|
|
985
|
+
crafted_item: NameIdKey;
|
|
986
|
+
reagents: Array<Reagent>;
|
|
987
|
+
crafted_quantity: CraftedQuantity;
|
|
988
|
+
}
|
|
989
|
+
interface CraftedQuantity {
|
|
990
|
+
value: number;
|
|
991
|
+
}
|
|
992
|
+
interface Reagent {
|
|
993
|
+
reagent: NameIdKey;
|
|
994
|
+
quantity: number;
|
|
995
|
+
}
|
|
996
|
+
interface RecipeMediaResponse extends ResponseBase {
|
|
997
|
+
assets: Array<MediaAsset>;
|
|
998
|
+
id: number;
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
interface PvpLeaderboardResponse extends ResponseBase {
|
|
1002
|
+
season: Season;
|
|
1003
|
+
name: string;
|
|
1004
|
+
bracket: Bracket$1;
|
|
1005
|
+
entries: Array<Entry>;
|
|
1006
|
+
}
|
|
1007
|
+
interface Entry {
|
|
1008
|
+
character: Character;
|
|
1009
|
+
faction: {
|
|
1010
|
+
type: keyof typeof Factions;
|
|
1011
|
+
};
|
|
1012
|
+
rank: number;
|
|
1013
|
+
rating: number;
|
|
1014
|
+
season_match_statistics: SeasonMatchStatistics;
|
|
1015
|
+
tier: Season;
|
|
1016
|
+
}
|
|
1017
|
+
interface Character extends NameId {
|
|
1018
|
+
realm: Realm$1;
|
|
1019
|
+
}
|
|
1020
|
+
interface Realm$1 extends KeyBase {
|
|
1021
|
+
id: number;
|
|
1022
|
+
slug: string;
|
|
1023
|
+
}
|
|
1024
|
+
interface SeasonMatchStatistics {
|
|
1025
|
+
played: number;
|
|
1026
|
+
won: number;
|
|
1027
|
+
lost: number;
|
|
1028
|
+
}
|
|
1029
|
+
interface PvpLeaderboardIndexResponse extends ResponseBase {
|
|
1030
|
+
season: Season;
|
|
1031
|
+
leaderboards: Array<NameIdKey>;
|
|
1032
|
+
}
|
|
1033
|
+
interface PvpRewardsIndexResponse extends ResponseBase {
|
|
1034
|
+
season: Season;
|
|
1035
|
+
rewards: Array<Reward>;
|
|
1036
|
+
}
|
|
1037
|
+
interface Reward {
|
|
1038
|
+
bracket: Bracket$1;
|
|
1039
|
+
achievement: NameIdKey;
|
|
1040
|
+
rating_cutoff: number;
|
|
1041
|
+
faction?: Faction;
|
|
1042
|
+
specialization?: NameIdKey;
|
|
1043
|
+
}
|
|
1044
|
+
interface Bracket$1 {
|
|
1045
|
+
id: number;
|
|
1046
|
+
type: 'ARENA_3v3' | 'BATTLEGROUNDS' | 'SHUFFLE';
|
|
1047
|
+
}
|
|
1048
|
+
interface PvpSeasonIndexResponse extends ResponseBase {
|
|
1049
|
+
seasons: Array<Season>;
|
|
1050
|
+
current_season: Season;
|
|
1051
|
+
}
|
|
1052
|
+
interface Season extends KeyBase {
|
|
1053
|
+
id: number;
|
|
1054
|
+
}
|
|
1055
|
+
interface PvpSeasonResponse extends ResponseBase {
|
|
1056
|
+
id: number;
|
|
1057
|
+
leaderboards: {
|
|
1058
|
+
href: string;
|
|
1059
|
+
};
|
|
1060
|
+
rewards: {
|
|
1061
|
+
href: string;
|
|
1062
|
+
};
|
|
1063
|
+
season_start_timestamp: number;
|
|
1064
|
+
season_name: string;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
interface PvpTierIndexResponse extends ResponseBase {
|
|
1068
|
+
tiers: Array<NameIdKey>;
|
|
1069
|
+
}
|
|
1070
|
+
interface PvpTierResponse extends ResponseBase, NameId {
|
|
1071
|
+
min_rating: number;
|
|
1072
|
+
max_rating: number;
|
|
1073
|
+
media: Media$3;
|
|
1074
|
+
bracket: Bracket;
|
|
1075
|
+
rating_type: number;
|
|
1076
|
+
}
|
|
1077
|
+
interface Bracket {
|
|
1078
|
+
id: number;
|
|
1079
|
+
type: string;
|
|
1080
|
+
}
|
|
1081
|
+
interface Media$3 extends KeyBase {
|
|
1082
|
+
id: number;
|
|
1083
|
+
}
|
|
1084
|
+
interface PvpTierMediaResponse extends ResponseBase {
|
|
1085
|
+
assets: Array<MediaAsset>;
|
|
1086
|
+
id: number;
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
interface QuestIndexResponse extends ResponseBase {
|
|
1090
|
+
categories: {
|
|
1091
|
+
href: string;
|
|
1092
|
+
};
|
|
1093
|
+
areas: {
|
|
1094
|
+
href: string;
|
|
1095
|
+
};
|
|
1096
|
+
types: {
|
|
1097
|
+
href: string;
|
|
1098
|
+
};
|
|
1099
|
+
}
|
|
1100
|
+
interface QuestResponse extends ResponseBase {
|
|
1101
|
+
id: number;
|
|
1102
|
+
title: string;
|
|
1103
|
+
area: NameIdKey;
|
|
1104
|
+
description: string;
|
|
1105
|
+
requirements: Requirements;
|
|
1106
|
+
rewards: Rewards;
|
|
1107
|
+
}
|
|
1108
|
+
interface Requirements {
|
|
1109
|
+
min_character_level: number;
|
|
1110
|
+
max_character_level: number;
|
|
1111
|
+
faction: Faction;
|
|
1112
|
+
}
|
|
1113
|
+
interface Rewards {
|
|
1114
|
+
experience: number;
|
|
1115
|
+
reputations: Array<Reputation>;
|
|
1116
|
+
money: Money;
|
|
1117
|
+
}
|
|
1118
|
+
interface Money {
|
|
1119
|
+
value: number;
|
|
1120
|
+
units: Units;
|
|
1121
|
+
}
|
|
1122
|
+
interface Units {
|
|
1123
|
+
gold: number;
|
|
1124
|
+
silver: number;
|
|
1125
|
+
copper: number;
|
|
1126
|
+
}
|
|
1127
|
+
interface Reputation {
|
|
1128
|
+
reward: NameIdKey;
|
|
1129
|
+
value: number;
|
|
1130
|
+
}
|
|
1131
|
+
interface QuestAreaIndexResponse extends ResponseBase {
|
|
1132
|
+
areas: Array<NameIdKey>;
|
|
1133
|
+
}
|
|
1134
|
+
interface QuestAreaResponse extends ResponseBase {
|
|
1135
|
+
id: number;
|
|
1136
|
+
area: string;
|
|
1137
|
+
quests: Array<NameIdKey>;
|
|
1138
|
+
}
|
|
1139
|
+
interface QuestCategoryIndexResponse extends ResponseBase {
|
|
1140
|
+
categories: Array<NameIdKey>;
|
|
1141
|
+
}
|
|
1142
|
+
interface QuestCategoryResponse extends ResponseBase {
|
|
1143
|
+
id: number;
|
|
1144
|
+
category: string;
|
|
1145
|
+
quests: Array<NameIdKey>;
|
|
1146
|
+
}
|
|
1147
|
+
interface QuestTypeIndexResponse extends ResponseBase {
|
|
1148
|
+
types: Array<NameIdKey>;
|
|
1149
|
+
}
|
|
1150
|
+
interface QuestTypeResponse extends ResponseBase {
|
|
1151
|
+
id: number;
|
|
1152
|
+
type: string;
|
|
1153
|
+
quests: Array<NameIdKey>;
|
|
1154
|
+
}
|
|
1155
|
+
|
|
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
|
+
interface RegionIndexResponse extends ResponseBase {
|
|
1180
|
+
regions: Array<{
|
|
1181
|
+
href: string;
|
|
1182
|
+
}>;
|
|
1183
|
+
}
|
|
1184
|
+
interface RegionResponse extends ResponseBase, NameId {
|
|
1185
|
+
tag: string;
|
|
1186
|
+
patch_string: string;
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
interface ReputationFactionIndexResponse extends ResponseBase {
|
|
1190
|
+
factions: Array<NameIdKey>;
|
|
1191
|
+
root_factions: Array<NameIdKey>;
|
|
1192
|
+
}
|
|
1193
|
+
interface ReputationFactionResponse extends ResponseBase {
|
|
1194
|
+
id: number;
|
|
1195
|
+
name: string;
|
|
1196
|
+
description: string;
|
|
1197
|
+
reputation_tiers: ReputationTiers;
|
|
1198
|
+
}
|
|
1199
|
+
interface ReputationTiers extends KeyBase {
|
|
1200
|
+
id: number;
|
|
1201
|
+
}
|
|
1202
|
+
interface ReputationTiersIndexResponse extends ResponseBase {
|
|
1203
|
+
reputation_tiers: Array<ReputationTier>;
|
|
1204
|
+
}
|
|
1205
|
+
interface ReputationTier extends KeyBase {
|
|
1206
|
+
id: number;
|
|
1207
|
+
name?: string;
|
|
1208
|
+
}
|
|
1209
|
+
interface ReputationTiersResponse extends ResponseBase {
|
|
1210
|
+
id: number;
|
|
1211
|
+
tiers: Array<Tier>;
|
|
1212
|
+
faction?: NameIdKey;
|
|
1213
|
+
}
|
|
1214
|
+
interface Tier {
|
|
1215
|
+
name: string;
|
|
1216
|
+
min_value: number;
|
|
1217
|
+
max_value: number;
|
|
1218
|
+
id: number;
|
|
1219
|
+
}
|
|
1220
|
+
|
|
1221
|
+
interface SpellResponse extends ResponseBase, NameId {
|
|
1222
|
+
description: null | string;
|
|
1223
|
+
media: Media$2;
|
|
1224
|
+
}
|
|
1225
|
+
interface Media$2 extends KeyBase {
|
|
1226
|
+
id: number;
|
|
1227
|
+
}
|
|
1228
|
+
interface SpellMediaResponse extends ResponseBase {
|
|
1229
|
+
assets: Array<MediaAsset>;
|
|
1230
|
+
id: number;
|
|
1231
|
+
}
|
|
15
1232
|
|
|
16
|
-
interface
|
|
1233
|
+
interface PvpTalentIndexResponse extends ResponseBase {
|
|
1234
|
+
pvp_talents: Array<NameIdKey>;
|
|
1235
|
+
}
|
|
1236
|
+
interface PvpTalentResponse extends ResponseBase {
|
|
1237
|
+
id: number;
|
|
1238
|
+
spell: NameIdKey;
|
|
1239
|
+
playable_specialization: NameIdKey;
|
|
1240
|
+
description: string;
|
|
1241
|
+
unlock_player_level: number;
|
|
1242
|
+
compatible_slots: Array<number>;
|
|
1243
|
+
}
|
|
1244
|
+
interface TalentIndexResponse extends ResponseBase {
|
|
1245
|
+
talents: Array<NameIdKey>;
|
|
1246
|
+
}
|
|
1247
|
+
interface TalentResponse extends ResponseBase {
|
|
1248
|
+
id: number;
|
|
1249
|
+
rank_descriptions: Array<RankDescription>;
|
|
1250
|
+
spell: NameIdKey;
|
|
1251
|
+
playable_class: PlayableClass;
|
|
1252
|
+
}
|
|
1253
|
+
interface PlayableClass extends KeyBase {
|
|
1254
|
+
id: number;
|
|
1255
|
+
}
|
|
1256
|
+
interface RankDescription {
|
|
1257
|
+
rank: number;
|
|
1258
|
+
description: null;
|
|
1259
|
+
}
|
|
1260
|
+
interface TalentTreeIndexResponse extends ResponseBase {
|
|
1261
|
+
spec_talent_trees: Array<TalentTree$1>;
|
|
1262
|
+
class_talent_trees: Array<TalentTree$1>;
|
|
1263
|
+
}
|
|
1264
|
+
interface TalentTree$1 extends KeyBase {
|
|
17
1265
|
name: string;
|
|
1266
|
+
}
|
|
1267
|
+
interface TalentTreeResponse extends ResponseBase, NameId {
|
|
1268
|
+
playable_class: NameIdKey;
|
|
1269
|
+
playable_specialization: NameIdKey;
|
|
1270
|
+
media: {
|
|
1271
|
+
href: string;
|
|
1272
|
+
};
|
|
1273
|
+
restriction_lines: Array<RestrictionLine>;
|
|
1274
|
+
class_talent_nodes: Array<ClassTalentNode>;
|
|
1275
|
+
spec_talent_nodes: Array<SpecTalentNode>;
|
|
1276
|
+
}
|
|
1277
|
+
interface ClassTalentNode {
|
|
18
1278
|
id: number;
|
|
1279
|
+
unlocks?: Array<number>;
|
|
1280
|
+
node_type: NodeType;
|
|
1281
|
+
ranks: Array<ClassTalentNodeRank>;
|
|
1282
|
+
display_row: number;
|
|
1283
|
+
display_col: number;
|
|
1284
|
+
raw_position_x: number;
|
|
1285
|
+
raw_position_y: number;
|
|
1286
|
+
locked_by?: Array<number>;
|
|
19
1287
|
}
|
|
20
|
-
interface
|
|
1288
|
+
interface NodeType {
|
|
21
1289
|
id: number;
|
|
22
|
-
|
|
23
|
-
achievements: Array<AchievementItem>;
|
|
24
|
-
parent_category: AchievementItem;
|
|
25
|
-
isGuildCategory: boolean;
|
|
26
|
-
aggregates_by_faction: {
|
|
27
|
-
alliance: {
|
|
28
|
-
quantity: number;
|
|
29
|
-
points: number;
|
|
30
|
-
};
|
|
31
|
-
horde: {
|
|
32
|
-
quantity: number;
|
|
33
|
-
points: number;
|
|
34
|
-
};
|
|
35
|
-
};
|
|
36
|
-
display_order: number;
|
|
1290
|
+
type: 'ACTIVE' | 'CHOICE' | 'PASSIVE';
|
|
37
1291
|
}
|
|
38
|
-
interface
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
1292
|
+
interface ClassTalentNodeRank {
|
|
1293
|
+
rank: number;
|
|
1294
|
+
tooltip?: Tooltip;
|
|
1295
|
+
default_points?: number;
|
|
1296
|
+
choice_of_tooltips?: Array<Tooltip>;
|
|
1297
|
+
}
|
|
1298
|
+
interface Tooltip {
|
|
1299
|
+
talent: NameIdKey;
|
|
1300
|
+
spell_tooltip: TooltipSpellTooltip;
|
|
1301
|
+
}
|
|
1302
|
+
interface TooltipSpellTooltip {
|
|
1303
|
+
spell: NameIdKey;
|
|
1304
|
+
description: string;
|
|
1305
|
+
cast_time: string;
|
|
1306
|
+
cooldown?: string;
|
|
1307
|
+
range?: string;
|
|
1308
|
+
power_cost?: string;
|
|
1309
|
+
}
|
|
1310
|
+
interface RestrictionLine {
|
|
1311
|
+
required_points: number;
|
|
1312
|
+
restricted_row: number;
|
|
1313
|
+
is_for_class: boolean;
|
|
42
1314
|
}
|
|
43
|
-
interface
|
|
1315
|
+
interface SpecTalentNode {
|
|
44
1316
|
id: number;
|
|
45
|
-
|
|
46
|
-
|
|
1317
|
+
unlocks?: Array<number>;
|
|
1318
|
+
node_type: NodeType;
|
|
1319
|
+
ranks: Array<SpecTalentNodeRank>;
|
|
1320
|
+
display_row: number;
|
|
1321
|
+
display_col: number;
|
|
1322
|
+
raw_position_x: number;
|
|
1323
|
+
raw_position_y: number;
|
|
1324
|
+
locked_by?: Array<number>;
|
|
1325
|
+
}
|
|
1326
|
+
interface SpecTalentNodeRank {
|
|
1327
|
+
rank: number;
|
|
1328
|
+
tooltip?: Tooltip;
|
|
1329
|
+
choice_of_tooltips?: Array<ChoiceOfTooltip>;
|
|
1330
|
+
}
|
|
1331
|
+
interface ChoiceOfTooltip {
|
|
1332
|
+
talent: NameIdKey;
|
|
1333
|
+
spell_tooltip: PurpleSpellTooltip;
|
|
1334
|
+
}
|
|
1335
|
+
interface PurpleSpellTooltip {
|
|
1336
|
+
spell: NameIdKey;
|
|
47
1337
|
description: string;
|
|
48
|
-
|
|
49
|
-
is_account_wide: boolean;
|
|
50
|
-
criteria: {
|
|
51
|
-
id: number;
|
|
52
|
-
description: string;
|
|
53
|
-
amount: number;
|
|
54
|
-
};
|
|
55
|
-
media: KeyBase;
|
|
56
|
-
display_order: number;
|
|
1338
|
+
cast_time: string;
|
|
57
1339
|
}
|
|
58
|
-
interface
|
|
59
|
-
|
|
1340
|
+
interface TalentTreeNodesResponse extends ResponseBase {
|
|
1341
|
+
id: number;
|
|
1342
|
+
spec_talent_trees: Array<SpecTalentTree>;
|
|
1343
|
+
talent_nodes: Array<TalentNode>;
|
|
60
1344
|
}
|
|
61
|
-
interface
|
|
62
|
-
|
|
63
|
-
value: string;
|
|
64
|
-
file_data_id: number;
|
|
1345
|
+
interface SpecTalentTree extends KeyBase {
|
|
1346
|
+
name: string;
|
|
65
1347
|
}
|
|
66
|
-
interface
|
|
1348
|
+
interface TalentNode {
|
|
67
1349
|
id: number;
|
|
68
|
-
|
|
1350
|
+
node_type: NodeType;
|
|
1351
|
+
ranks: Array<Rank>;
|
|
1352
|
+
display_row: number;
|
|
1353
|
+
display_col: number;
|
|
1354
|
+
raw_position_x: number;
|
|
1355
|
+
raw_position_y: number;
|
|
1356
|
+
}
|
|
1357
|
+
interface Rank {
|
|
1358
|
+
rank: number;
|
|
1359
|
+
choice_of_tooltips?: Array<Tooltip>;
|
|
1360
|
+
tooltip?: Tooltip;
|
|
69
1361
|
}
|
|
70
1362
|
|
|
71
|
-
|
|
72
|
-
|
|
1363
|
+
interface TechTalentIndexResponse extends ResponseBase {
|
|
1364
|
+
talents: Array<NameIdKey>;
|
|
1365
|
+
}
|
|
1366
|
+
interface TechTalentResponse extends ResponseBase, NameId {
|
|
1367
|
+
talent_tree: Media$1;
|
|
1368
|
+
tier: number;
|
|
1369
|
+
display_order: number;
|
|
1370
|
+
media: Media$1;
|
|
1371
|
+
}
|
|
1372
|
+
interface Media$1 extends KeyBase {
|
|
73
1373
|
id: number;
|
|
74
|
-
item: {
|
|
75
|
-
id: number;
|
|
76
|
-
context: number;
|
|
77
|
-
bonus_lists: Array<number>;
|
|
78
|
-
modifiers: Array<{
|
|
79
|
-
type: number;
|
|
80
|
-
value: number;
|
|
81
|
-
}>;
|
|
82
|
-
};
|
|
83
|
-
bid: number;
|
|
84
|
-
buyout: number;
|
|
85
|
-
quantity: number;
|
|
86
|
-
time_left: AuctionHouseTimeLeft;
|
|
87
1374
|
}
|
|
88
|
-
interface
|
|
89
|
-
|
|
90
|
-
href: string;
|
|
91
|
-
};
|
|
92
|
-
commodities: {
|
|
93
|
-
href: string;
|
|
94
|
-
};
|
|
95
|
-
auctions: Array<AuctionHousePosting>;
|
|
1375
|
+
interface TechTalentMediaResponse extends ResponseBase {
|
|
1376
|
+
assets: Array<MediaAsset>;
|
|
96
1377
|
}
|
|
97
|
-
interface
|
|
1378
|
+
interface TechTalentTreeIndexResponse extends ResponseBase {
|
|
1379
|
+
talent_trees: Array<TalentTree>;
|
|
1380
|
+
}
|
|
1381
|
+
interface TalentTree extends KeyBase {
|
|
98
1382
|
id: number;
|
|
99
|
-
|
|
100
|
-
id: number;
|
|
101
|
-
};
|
|
102
|
-
quantity: number;
|
|
103
|
-
unit_price: number;
|
|
104
|
-
time_left: AuctionHouseTimeLeft;
|
|
1383
|
+
name?: string;
|
|
105
1384
|
}
|
|
106
|
-
interface
|
|
107
|
-
|
|
1385
|
+
interface TechTalentTreeResponse extends ResponseBase {
|
|
1386
|
+
id: number;
|
|
1387
|
+
playable_class: NameIdKey;
|
|
1388
|
+
max_tiers: number;
|
|
1389
|
+
talents: Array<NameIdKey>;
|
|
108
1390
|
}
|
|
109
1391
|
|
|
110
|
-
interface
|
|
111
|
-
|
|
112
|
-
href: string;
|
|
113
|
-
}>;
|
|
1392
|
+
interface TitleIndexResponse extends ResponseBase {
|
|
1393
|
+
titles: Array<NameIdKey>;
|
|
114
1394
|
}
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
1395
|
+
interface TitleResponse extends ResponseBase, NameId {
|
|
1396
|
+
gender_name: Gender;
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1399
|
+
interface ToyIndexResponse extends ResponseBase {
|
|
1400
|
+
toys: Array<NameIdKey>;
|
|
1401
|
+
}
|
|
1402
|
+
interface ToyResponse extends ResponseBase {
|
|
120
1403
|
id: number;
|
|
1404
|
+
item: NameIdKey;
|
|
1405
|
+
source: Source;
|
|
1406
|
+
source_description: string;
|
|
1407
|
+
media: Media;
|
|
121
1408
|
}
|
|
122
|
-
interface
|
|
1409
|
+
interface Media extends KeyBase {
|
|
123
1410
|
id: number;
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
};
|
|
1411
|
+
}
|
|
1412
|
+
interface Source {
|
|
1413
|
+
type: string;
|
|
128
1414
|
name: string;
|
|
129
|
-
category: string;
|
|
130
|
-
locale: string;
|
|
131
|
-
timezone: string;
|
|
132
|
-
type: {
|
|
133
|
-
type: Uppercase<RealmType>;
|
|
134
|
-
name: RealmType;
|
|
135
|
-
};
|
|
136
|
-
is_tournament: boolean;
|
|
137
|
-
slug: string;
|
|
138
1415
|
}
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
type: Uppercase<RealmStatus>;
|
|
144
|
-
name: RealmStatus;
|
|
145
|
-
};
|
|
146
|
-
population: {
|
|
147
|
-
type: Uppercase<RealmPopulation>;
|
|
148
|
-
name: RealmPopulation;
|
|
149
|
-
};
|
|
150
|
-
realms: Array<Realm>;
|
|
151
|
-
mythic_leaderboards: {
|
|
152
|
-
href: string;
|
|
153
|
-
};
|
|
154
|
-
auctions: {
|
|
155
|
-
href: string;
|
|
156
|
-
};
|
|
1416
|
+
|
|
1417
|
+
interface WowTokenResponse extends ResponseBase {
|
|
1418
|
+
last_updated_timestamp: number;
|
|
1419
|
+
price: number;
|
|
157
1420
|
}
|
|
158
1421
|
|
|
159
1422
|
declare const wow: {
|
|
@@ -161,503 +1424,517 @@ declare const wow: {
|
|
|
161
1424
|
path: string;
|
|
162
1425
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
163
1426
|
parameters?: Record<string, string | number> | undefined;
|
|
164
|
-
_responseType?:
|
|
1427
|
+
_responseType?: WowTokenResponse | undefined;
|
|
165
1428
|
};
|
|
166
1429
|
toy: (toyId: number) => {
|
|
167
1430
|
path: string;
|
|
168
1431
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
169
1432
|
parameters?: Record<string, string | number> | undefined;
|
|
170
|
-
_responseType?:
|
|
1433
|
+
_responseType?: ToyResponse | undefined;
|
|
171
1434
|
};
|
|
172
1435
|
toyIndex: () => {
|
|
173
1436
|
path: string;
|
|
174
1437
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
175
1438
|
parameters?: Record<string, string | number> | undefined;
|
|
176
|
-
_responseType?:
|
|
1439
|
+
_responseType?: ToyIndexResponse | undefined;
|
|
177
1440
|
};
|
|
178
1441
|
title: (titleId: number) => {
|
|
179
1442
|
path: string;
|
|
180
1443
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
181
1444
|
parameters?: Record<string, string | number> | undefined;
|
|
182
|
-
_responseType?:
|
|
1445
|
+
_responseType?: TitleResponse | undefined;
|
|
183
1446
|
};
|
|
184
1447
|
titleIndex: () => {
|
|
185
1448
|
path: string;
|
|
186
1449
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
187
1450
|
parameters?: Record<string, string | number> | undefined;
|
|
188
|
-
_responseType?:
|
|
1451
|
+
_responseType?: TitleIndexResponse | undefined;
|
|
189
1452
|
};
|
|
190
1453
|
techTalent: (techTalentId: number) => {
|
|
191
1454
|
path: string;
|
|
192
1455
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
193
1456
|
parameters?: Record<string, string | number> | undefined;
|
|
194
|
-
_responseType?:
|
|
1457
|
+
_responseType?: TechTalentResponse | undefined;
|
|
195
1458
|
};
|
|
196
1459
|
techTalentIndex: () => {
|
|
197
1460
|
path: string;
|
|
198
1461
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
199
1462
|
parameters?: Record<string, string | number> | undefined;
|
|
200
|
-
_responseType?:
|
|
1463
|
+
_responseType?: TechTalentIndexResponse | undefined;
|
|
201
1464
|
};
|
|
202
1465
|
techTalentMedia: (techTalentId: number) => {
|
|
203
1466
|
path: string;
|
|
204
1467
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
205
1468
|
parameters?: Record<string, string | number> | undefined;
|
|
206
|
-
_responseType?:
|
|
1469
|
+
_responseType?: TechTalentMediaResponse | undefined;
|
|
207
1470
|
};
|
|
208
1471
|
techTalentTree: (techTalentTreeId: number) => {
|
|
209
1472
|
path: string;
|
|
210
1473
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
211
1474
|
parameters?: Record<string, string | number> | undefined;
|
|
212
|
-
_responseType?:
|
|
1475
|
+
_responseType?: TechTalentTreeResponse | undefined;
|
|
213
1476
|
};
|
|
214
1477
|
techTalentTreeIndex: () => {
|
|
215
1478
|
path: string;
|
|
216
1479
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
217
1480
|
parameters?: Record<string, string | number> | undefined;
|
|
218
|
-
_responseType?:
|
|
1481
|
+
_responseType?: TechTalentTreeIndexResponse | undefined;
|
|
219
1482
|
};
|
|
220
1483
|
pvpTalent: (pvpTalentId: number) => {
|
|
221
1484
|
path: string;
|
|
222
1485
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
223
1486
|
parameters?: Record<string, string | number> | undefined;
|
|
224
|
-
_responseType?:
|
|
1487
|
+
_responseType?: PvpTalentResponse | undefined;
|
|
225
1488
|
};
|
|
226
1489
|
pvpTalentIndex: () => {
|
|
227
1490
|
path: string;
|
|
228
1491
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
229
1492
|
parameters?: Record<string, string | number> | undefined;
|
|
230
|
-
_responseType?:
|
|
1493
|
+
_responseType?: PvpTalentIndexResponse | undefined;
|
|
231
1494
|
};
|
|
232
1495
|
talent: (talentId: number) => {
|
|
233
1496
|
path: string;
|
|
234
1497
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
235
1498
|
parameters?: Record<string, string | number> | undefined;
|
|
236
|
-
_responseType?:
|
|
1499
|
+
_responseType?: TalentResponse | undefined;
|
|
237
1500
|
};
|
|
238
1501
|
talentIndex: () => {
|
|
239
1502
|
path: string;
|
|
240
1503
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
241
1504
|
parameters?: Record<string, string | number> | undefined;
|
|
242
|
-
_responseType?:
|
|
1505
|
+
_responseType?: TalentIndexResponse | undefined;
|
|
243
1506
|
};
|
|
244
1507
|
talentTree: (talentTreeId: number, specId: number) => {
|
|
245
1508
|
path: string;
|
|
246
1509
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
247
1510
|
parameters?: Record<string, string | number> | undefined;
|
|
248
|
-
_responseType?:
|
|
1511
|
+
_responseType?: TalentTreeResponse | undefined;
|
|
249
1512
|
};
|
|
250
1513
|
talentTreeIndex: () => {
|
|
251
1514
|
path: string;
|
|
252
1515
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
253
1516
|
parameters?: Record<string, string | number> | undefined;
|
|
254
|
-
_responseType?:
|
|
1517
|
+
_responseType?: TalentTreeIndexResponse | undefined;
|
|
255
1518
|
};
|
|
256
1519
|
talentTreeNodes: (talentTreeId: number) => {
|
|
257
1520
|
path: string;
|
|
258
1521
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
259
1522
|
parameters?: Record<string, string | number> | undefined;
|
|
260
|
-
_responseType?:
|
|
1523
|
+
_responseType?: TalentTreeNodesResponse | undefined;
|
|
261
1524
|
};
|
|
262
1525
|
spell: (spellId: number) => {
|
|
263
1526
|
path: string;
|
|
264
1527
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
265
1528
|
parameters?: Record<string, string | number> | undefined;
|
|
266
|
-
_responseType?:
|
|
1529
|
+
_responseType?: SpellResponse | undefined;
|
|
267
1530
|
};
|
|
268
1531
|
spellMedia: (spellId: number) => {
|
|
269
1532
|
path: string;
|
|
270
1533
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
271
1534
|
parameters?: Record<string, string | number> | undefined;
|
|
272
|
-
_responseType?:
|
|
1535
|
+
_responseType?: SpellMediaResponse | undefined;
|
|
273
1536
|
};
|
|
274
1537
|
reputationFaction: (reputationFactionId: number) => {
|
|
275
1538
|
path: string;
|
|
276
1539
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
277
1540
|
parameters?: Record<string, string | number> | undefined;
|
|
278
|
-
_responseType?:
|
|
1541
|
+
_responseType?: ReputationFactionResponse | undefined;
|
|
279
1542
|
};
|
|
280
1543
|
reputationFactionIndex: () => {
|
|
281
1544
|
path: string;
|
|
282
1545
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
283
1546
|
parameters?: Record<string, string | number> | undefined;
|
|
284
|
-
_responseType?:
|
|
1547
|
+
_responseType?: ReputationFactionIndexResponse | undefined;
|
|
285
1548
|
};
|
|
286
1549
|
reputationTiers: (reputationTiersId: number) => {
|
|
287
1550
|
path: string;
|
|
288
1551
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
289
1552
|
parameters?: Record<string, string | number> | undefined;
|
|
290
|
-
_responseType?:
|
|
1553
|
+
_responseType?: ReputationTiersResponse | undefined;
|
|
291
1554
|
};
|
|
292
1555
|
reputationTiersIndex: () => {
|
|
293
1556
|
path: string;
|
|
294
1557
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
295
1558
|
parameters?: Record<string, string | number> | undefined;
|
|
296
|
-
_responseType?:
|
|
1559
|
+
_responseType?: ReputationTiersIndexResponse | undefined;
|
|
297
1560
|
};
|
|
298
1561
|
region: (regionId: number) => {
|
|
299
1562
|
path: string;
|
|
300
1563
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
301
1564
|
parameters?: Record<string, string | number> | undefined;
|
|
302
|
-
_responseType?:
|
|
1565
|
+
_responseType?: RegionResponse | undefined;
|
|
303
1566
|
};
|
|
304
1567
|
regionIndex: () => {
|
|
305
1568
|
path: string;
|
|
306
1569
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
307
1570
|
parameters?: Record<string, string | number> | undefined;
|
|
308
|
-
_responseType?:
|
|
1571
|
+
_responseType?: RegionIndexResponse | undefined;
|
|
309
1572
|
};
|
|
310
1573
|
realm: (realmSlug: string) => {
|
|
311
1574
|
path: string;
|
|
312
1575
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
313
1576
|
parameters?: Record<string, string | number> | undefined;
|
|
314
|
-
_responseType?:
|
|
1577
|
+
_responseType?: RealmResponse | undefined;
|
|
315
1578
|
};
|
|
316
1579
|
realmIndex: () => {
|
|
317
1580
|
path: string;
|
|
318
1581
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
319
1582
|
parameters?: Record<string, string | number> | undefined;
|
|
320
|
-
_responseType?:
|
|
1583
|
+
_responseType?: RealmIndexResponse | undefined;
|
|
321
1584
|
};
|
|
322
1585
|
quest: (questId: number) => {
|
|
323
1586
|
path: string;
|
|
324
1587
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
325
1588
|
parameters?: Record<string, string | number> | undefined;
|
|
326
|
-
_responseType?:
|
|
1589
|
+
_responseType?: QuestResponse | undefined;
|
|
327
1590
|
};
|
|
328
1591
|
questIndex: () => {
|
|
329
1592
|
path: string;
|
|
330
1593
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
331
1594
|
parameters?: Record<string, string | number> | undefined;
|
|
332
|
-
_responseType?:
|
|
1595
|
+
_responseType?: QuestIndexResponse | undefined;
|
|
333
1596
|
};
|
|
334
1597
|
questArea: (questAreaId: number) => {
|
|
335
1598
|
path: string;
|
|
336
1599
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
337
1600
|
parameters?: Record<string, string | number> | undefined;
|
|
338
|
-
_responseType?:
|
|
1601
|
+
_responseType?: QuestAreaResponse | undefined;
|
|
339
1602
|
};
|
|
340
1603
|
questAreaIndex: () => {
|
|
341
1604
|
path: string;
|
|
342
1605
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
343
1606
|
parameters?: Record<string, string | number> | undefined;
|
|
344
|
-
_responseType?:
|
|
1607
|
+
_responseType?: QuestAreaIndexResponse | undefined;
|
|
345
1608
|
};
|
|
346
1609
|
questCategory: (questCategoryId: number) => {
|
|
347
1610
|
path: string;
|
|
348
1611
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
349
1612
|
parameters?: Record<string, string | number> | undefined;
|
|
350
|
-
_responseType?:
|
|
1613
|
+
_responseType?: QuestCategoryResponse | undefined;
|
|
351
1614
|
};
|
|
352
1615
|
questCategoryIndex: () => {
|
|
353
1616
|
path: string;
|
|
354
1617
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
355
1618
|
parameters?: Record<string, string | number> | undefined;
|
|
356
|
-
_responseType?:
|
|
1619
|
+
_responseType?: QuestCategoryIndexResponse | undefined;
|
|
357
1620
|
};
|
|
358
1621
|
questType: (questTypeId: number) => {
|
|
359
1622
|
path: string;
|
|
360
1623
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
361
1624
|
parameters?: Record<string, string | number> | undefined;
|
|
362
|
-
_responseType?:
|
|
1625
|
+
_responseType?: QuestTypeResponse | undefined;
|
|
363
1626
|
};
|
|
364
1627
|
questTypeIndex: () => {
|
|
365
1628
|
path: string;
|
|
366
1629
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
367
1630
|
parameters?: Record<string, string | number> | undefined;
|
|
368
|
-
_responseType?:
|
|
1631
|
+
_responseType?: QuestTypeIndexResponse | undefined;
|
|
369
1632
|
};
|
|
370
1633
|
pvpTier: (pvpTierId: number) => {
|
|
371
1634
|
path: string;
|
|
372
1635
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
373
1636
|
parameters?: Record<string, string | number> | undefined;
|
|
374
|
-
_responseType?:
|
|
1637
|
+
_responseType?: PvpTierResponse | undefined;
|
|
375
1638
|
};
|
|
376
1639
|
pvpTierIndex: () => {
|
|
377
1640
|
path: string;
|
|
378
1641
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
379
1642
|
parameters?: Record<string, string | number> | undefined;
|
|
380
|
-
_responseType?:
|
|
1643
|
+
_responseType?: PvpTierIndexResponse | undefined;
|
|
381
1644
|
};
|
|
382
1645
|
pvpTierMedia: (pvpTierId: number) => {
|
|
383
1646
|
path: string;
|
|
384
1647
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
385
1648
|
parameters?: Record<string, string | number> | undefined;
|
|
386
|
-
_responseType?:
|
|
1649
|
+
_responseType?: PvpTierMediaResponse | undefined;
|
|
387
1650
|
};
|
|
388
1651
|
pvpLeaderboard: (pvpSeasonId: number, bracket: string) => {
|
|
389
1652
|
path: string;
|
|
390
1653
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
391
1654
|
parameters?: Record<string, string | number> | undefined;
|
|
392
|
-
_responseType?:
|
|
1655
|
+
_responseType?: PvpLeaderboardResponse | undefined;
|
|
393
1656
|
};
|
|
394
1657
|
pvpLeaderboardIndex: (pvpSeasonId: number) => {
|
|
395
1658
|
path: string;
|
|
396
1659
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
397
1660
|
parameters?: Record<string, string | number> | undefined;
|
|
398
|
-
_responseType?:
|
|
1661
|
+
_responseType?: PvpLeaderboardIndexResponse | undefined;
|
|
399
1662
|
};
|
|
400
1663
|
pvpRewardsIndex: (pvpSeasonId: number) => {
|
|
401
1664
|
path: string;
|
|
402
1665
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
403
1666
|
parameters?: Record<string, string | number> | undefined;
|
|
404
|
-
_responseType?:
|
|
1667
|
+
_responseType?: PvpRewardsIndexResponse | undefined;
|
|
405
1668
|
};
|
|
406
1669
|
pvpSeason: (pvpSeasonId: number) => {
|
|
407
1670
|
path: string;
|
|
408
1671
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
409
1672
|
parameters?: Record<string, string | number> | undefined;
|
|
410
|
-
_responseType?:
|
|
1673
|
+
_responseType?: PvpSeasonResponse | undefined;
|
|
411
1674
|
};
|
|
412
1675
|
pvpSeasonIndex: () => {
|
|
413
1676
|
path: string;
|
|
414
1677
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
415
1678
|
parameters?: Record<string, string | number> | undefined;
|
|
416
|
-
_responseType?:
|
|
1679
|
+
_responseType?: PvpSeasonIndexResponse | undefined;
|
|
417
1680
|
};
|
|
418
1681
|
profession: (professionId: number) => {
|
|
419
1682
|
path: string;
|
|
420
1683
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
421
1684
|
parameters?: Record<string, string | number> | undefined;
|
|
422
|
-
_responseType?:
|
|
1685
|
+
_responseType?: ProfessionResponse | undefined;
|
|
423
1686
|
};
|
|
424
1687
|
professionIndex: () => {
|
|
425
1688
|
path: string;
|
|
426
1689
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
427
1690
|
parameters?: Record<string, string | number> | undefined;
|
|
428
|
-
_responseType?:
|
|
1691
|
+
_responseType?: ProfessionIndexResponse | undefined;
|
|
429
1692
|
};
|
|
430
1693
|
professionMedia: (professionId: number) => {
|
|
431
1694
|
path: string;
|
|
432
1695
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
433
1696
|
parameters?: Record<string, string | number> | undefined;
|
|
434
|
-
_responseType?:
|
|
1697
|
+
_responseType?: ProfessionMediaResponse | undefined;
|
|
435
1698
|
};
|
|
436
1699
|
professionSkillTier: (professionId: number, skillTierId: number) => {
|
|
437
1700
|
path: string;
|
|
438
1701
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
439
1702
|
parameters?: Record<string, string | number> | undefined;
|
|
440
|
-
_responseType?:
|
|
1703
|
+
_responseType?: ProfessionSkillTierResponse | undefined;
|
|
441
1704
|
};
|
|
442
1705
|
recipe: (recipeId: number) => {
|
|
443
1706
|
path: string;
|
|
444
1707
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
445
1708
|
parameters?: Record<string, string | number> | undefined;
|
|
446
|
-
_responseType?:
|
|
1709
|
+
_responseType?: RecipeResponse | undefined;
|
|
447
1710
|
};
|
|
448
1711
|
recipeMedia: (recipeId: number) => {
|
|
449
1712
|
path: string;
|
|
450
1713
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
451
1714
|
parameters?: Record<string, string | number> | undefined;
|
|
452
|
-
_responseType?:
|
|
1715
|
+
_responseType?: RecipeMediaResponse | undefined;
|
|
453
1716
|
};
|
|
454
1717
|
powerType: (powerTypeId: number) => {
|
|
455
1718
|
path: string;
|
|
456
1719
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
457
1720
|
parameters?: Record<string, string | number> | undefined;
|
|
458
|
-
_responseType?:
|
|
1721
|
+
_responseType?: PowerTypeResponse | undefined;
|
|
459
1722
|
};
|
|
460
1723
|
powerTypeIndex: () => {
|
|
461
1724
|
path: string;
|
|
462
1725
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
463
1726
|
parameters?: Record<string, string | number> | undefined;
|
|
464
|
-
_responseType?:
|
|
1727
|
+
_responseType?: PowerTypeIndexResponse | undefined;
|
|
465
1728
|
};
|
|
466
1729
|
playableSpecialization: (specializationId: number) => {
|
|
467
1730
|
path: string;
|
|
468
1731
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
469
1732
|
parameters?: Record<string, string | number> | undefined;
|
|
470
|
-
_responseType?:
|
|
1733
|
+
_responseType?: PlayableSpecializationResponse | undefined;
|
|
471
1734
|
};
|
|
472
1735
|
playableSpecializationIndex: () => {
|
|
473
1736
|
path: string;
|
|
474
1737
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
475
1738
|
parameters?: Record<string, string | number> | undefined;
|
|
476
|
-
_responseType?:
|
|
1739
|
+
_responseType?: PlayableSpecializationIndexResponse | undefined;
|
|
477
1740
|
};
|
|
478
1741
|
playableSpecializationMedia: (specializationId: number) => {
|
|
479
1742
|
path: string;
|
|
480
1743
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
481
1744
|
parameters?: Record<string, string | number> | undefined;
|
|
482
|
-
_responseType?:
|
|
1745
|
+
_responseType?: PlayableSpecializationMediaResponse | undefined;
|
|
483
1746
|
};
|
|
484
1747
|
playableRace: (playableRaceId: number) => {
|
|
485
1748
|
path: string;
|
|
486
1749
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
487
1750
|
parameters?: Record<string, string | number> | undefined;
|
|
488
|
-
_responseType?:
|
|
1751
|
+
_responseType?: PlayableRaceResponse | undefined;
|
|
489
1752
|
};
|
|
490
1753
|
playableRaceIndex: () => {
|
|
491
1754
|
path: string;
|
|
492
1755
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
493
1756
|
parameters?: Record<string, string | number> | undefined;
|
|
494
|
-
_responseType?:
|
|
1757
|
+
_responseType?: PlayableRaceIndexResponse | undefined;
|
|
495
1758
|
};
|
|
496
1759
|
playableClass: (playableClassId: number) => {
|
|
497
1760
|
path: string;
|
|
498
1761
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
499
1762
|
parameters?: Record<string, string | number> | undefined;
|
|
500
|
-
_responseType?:
|
|
1763
|
+
_responseType?: PlayableClassResponse | undefined;
|
|
501
1764
|
};
|
|
502
1765
|
playableClassIndex: () => {
|
|
503
1766
|
path: string;
|
|
504
1767
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
505
1768
|
parameters?: Record<string, string | number> | undefined;
|
|
506
|
-
_responseType?:
|
|
1769
|
+
_responseType?: PlayableClassIndexResponse | undefined;
|
|
507
1770
|
};
|
|
508
1771
|
playableClassMedia: (playableClassId: number) => {
|
|
509
1772
|
path: string;
|
|
510
1773
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
511
1774
|
parameters?: Record<string, string | number> | undefined;
|
|
512
|
-
_responseType?:
|
|
1775
|
+
_responseType?: PlayableClassMediaResponse | undefined;
|
|
513
1776
|
};
|
|
514
1777
|
pvpTalentSlots: (playableClassId: number) => {
|
|
515
1778
|
path: string;
|
|
516
1779
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
517
1780
|
parameters?: Record<string, string | number> | undefined;
|
|
518
|
-
_responseType?:
|
|
1781
|
+
_responseType?: PvpTalentSlotsResponse | undefined;
|
|
519
1782
|
};
|
|
520
1783
|
pet: (petId: number) => {
|
|
521
1784
|
path: string;
|
|
522
1785
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
523
1786
|
parameters?: Record<string, string | number> | undefined;
|
|
524
|
-
_responseType?:
|
|
1787
|
+
_responseType?: PetResponse | undefined;
|
|
525
1788
|
};
|
|
526
1789
|
petIndex: () => {
|
|
527
1790
|
path: string;
|
|
528
1791
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
529
1792
|
parameters?: Record<string, string | number> | undefined;
|
|
530
|
-
_responseType?:
|
|
1793
|
+
_responseType?: PetIndexResponse | undefined;
|
|
531
1794
|
};
|
|
532
1795
|
petMedia: (petId: number) => {
|
|
533
1796
|
path: string;
|
|
534
1797
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
535
1798
|
parameters?: Record<string, string | number> | undefined;
|
|
536
|
-
_responseType?:
|
|
1799
|
+
_responseType?: PetMediaResponse | undefined;
|
|
537
1800
|
};
|
|
538
1801
|
petAbility: (petAbilityId: number) => {
|
|
539
1802
|
path: string;
|
|
540
1803
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
541
1804
|
parameters?: Record<string, string | number> | undefined;
|
|
542
|
-
_responseType?:
|
|
1805
|
+
_responseType?: PetAbilityResponse | undefined;
|
|
543
1806
|
};
|
|
544
1807
|
petAbilityIndex: () => {
|
|
545
1808
|
path: string;
|
|
546
1809
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
547
1810
|
parameters?: Record<string, string | number> | undefined;
|
|
548
|
-
_responseType?:
|
|
1811
|
+
_responseType?: PetAbilityIndexResponse | undefined;
|
|
549
1812
|
};
|
|
550
1813
|
petAbilityMedia: (petAbilityId: number) => {
|
|
551
1814
|
path: string;
|
|
552
1815
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
553
1816
|
parameters?: Record<string, string | number> | undefined;
|
|
554
|
-
_responseType?:
|
|
1817
|
+
_responseType?: PetAbilityMediaResponse | undefined;
|
|
555
1818
|
};
|
|
556
1819
|
mythicRaidLeaderboard: (raid: string, faction: "alliance" | "horde") => {
|
|
557
1820
|
path: string;
|
|
558
1821
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
559
1822
|
parameters?: Record<string, string | number> | undefined;
|
|
560
|
-
_responseType?:
|
|
1823
|
+
_responseType?: MythicRaidLeaderboardResponse | undefined;
|
|
561
1824
|
};
|
|
562
1825
|
mythicKeystoneLeaderboard: (connectedRealmId: number, dungeonId: number, period: number) => {
|
|
563
1826
|
path: string;
|
|
564
1827
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
565
1828
|
parameters?: Record<string, string | number> | undefined;
|
|
566
|
-
_responseType?:
|
|
1829
|
+
_responseType?: MythicKeystoneLeaderboardResponse | undefined;
|
|
567
1830
|
};
|
|
568
1831
|
mythicKeystoneLeaderboardIndex: (connectedRealmId: number) => {
|
|
569
1832
|
path: string;
|
|
570
1833
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
571
1834
|
parameters?: Record<string, string | number> | undefined;
|
|
572
|
-
_responseType?:
|
|
1835
|
+
_responseType?: MythicKeystoneLeaderboardIndexResponse | undefined;
|
|
573
1836
|
};
|
|
574
1837
|
mythicKeystoneDungeon: (mythicKeystoneDungeonId: number) => {
|
|
575
1838
|
path: string;
|
|
576
|
-
namespace
|
|
1839
|
+
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1840
|
+
parameters?: Record<string, string | number> | undefined;
|
|
1841
|
+
_responseType?: MythicKeystoneDungeonResponse | undefined;
|
|
577
1842
|
};
|
|
578
1843
|
mythicKeystoneDungeonIndex: () => {
|
|
579
1844
|
path: string;
|
|
580
|
-
namespace
|
|
1845
|
+
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1846
|
+
parameters?: Record<string, string | number> | undefined;
|
|
1847
|
+
_responseType?: MythicKeystoneDungeonIndexResponse | undefined;
|
|
581
1848
|
};
|
|
582
1849
|
mythicKeystoneIndex: () => {
|
|
583
1850
|
path: string;
|
|
584
|
-
namespace
|
|
1851
|
+
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1852
|
+
parameters?: Record<string, string | number> | undefined;
|
|
1853
|
+
_responseType?: MythicKeystoneIndexResponse | undefined;
|
|
585
1854
|
};
|
|
586
1855
|
mythicKeystonePeriod: (mythicKeystonePeriodId: number) => {
|
|
587
1856
|
path: string;
|
|
588
|
-
namespace
|
|
1857
|
+
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1858
|
+
parameters?: Record<string, string | number> | undefined;
|
|
1859
|
+
_responseType?: MythicKeystonePeriodResponse | undefined;
|
|
589
1860
|
};
|
|
590
1861
|
mythicKeystonePeriodIndex: () => {
|
|
591
1862
|
path: string;
|
|
592
|
-
namespace
|
|
1863
|
+
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1864
|
+
parameters?: Record<string, string | number> | undefined;
|
|
1865
|
+
_responseType?: MythicKeystonePeriodIndexResponse | undefined;
|
|
593
1866
|
};
|
|
594
1867
|
mythicKeystoneSeason: (mythicKeystoneSeasonId: number) => {
|
|
595
1868
|
path: string;
|
|
596
|
-
namespace
|
|
1869
|
+
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1870
|
+
parameters?: Record<string, string | number> | undefined;
|
|
1871
|
+
_responseType?: MythicKeystoneSeasonResponse | undefined;
|
|
597
1872
|
};
|
|
598
1873
|
mythicKeystoneSeasonIndex: () => {
|
|
599
1874
|
path: string;
|
|
600
|
-
namespace
|
|
1875
|
+
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
1876
|
+
parameters?: Record<string, string | number> | undefined;
|
|
1877
|
+
_responseType?: MythicKeystoneSeasonIndexResponse | undefined;
|
|
601
1878
|
};
|
|
602
1879
|
mythicKeystoneAffix: (mythicKeystoneAffixId: number) => {
|
|
603
1880
|
path: string;
|
|
604
1881
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
605
1882
|
parameters?: Record<string, string | number> | undefined;
|
|
606
|
-
_responseType?:
|
|
1883
|
+
_responseType?: MythicKeystoneAffixResponse | undefined;
|
|
607
1884
|
};
|
|
608
1885
|
mythicKeystoneAffixIndex: () => {
|
|
609
1886
|
path: string;
|
|
610
1887
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
611
1888
|
parameters?: Record<string, string | number> | undefined;
|
|
612
|
-
_responseType?:
|
|
1889
|
+
_responseType?: MythicKeystoneAffixIndexResponse | undefined;
|
|
613
1890
|
};
|
|
614
1891
|
mythicKeystoneAffixMedia: (mythicKeystoneAffixId: number) => {
|
|
615
1892
|
path: string;
|
|
616
1893
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
617
1894
|
parameters?: Record<string, string | number> | undefined;
|
|
618
|
-
_responseType?:
|
|
1895
|
+
_responseType?: MythicKeystoneAffixMediaResponse | undefined;
|
|
619
1896
|
};
|
|
620
1897
|
mount: (mountId: number) => {
|
|
621
1898
|
path: string;
|
|
622
1899
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
623
1900
|
parameters?: Record<string, string | number> | undefined;
|
|
624
|
-
_responseType?:
|
|
1901
|
+
_responseType?: MountResponse | undefined;
|
|
625
1902
|
};
|
|
626
1903
|
mountIndex: () => {
|
|
627
1904
|
path: string;
|
|
628
1905
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
629
1906
|
parameters?: Record<string, string | number> | undefined;
|
|
630
|
-
_responseType?:
|
|
1907
|
+
_responseType?: MountIndexResponse | undefined;
|
|
631
1908
|
};
|
|
632
1909
|
modifiedCraftingCategory: (modifiedCraftingCategoryId: number) => {
|
|
633
1910
|
path: string;
|
|
634
1911
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
635
1912
|
parameters?: Record<string, string | number> | undefined;
|
|
636
|
-
_responseType?:
|
|
1913
|
+
_responseType?: ModifiedCraftingCategoryResponse | undefined;
|
|
637
1914
|
};
|
|
638
1915
|
modifiedCraftingCategoryIndex: () => {
|
|
639
1916
|
path: string;
|
|
640
1917
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
641
1918
|
parameters?: Record<string, string | number> | undefined;
|
|
642
|
-
_responseType?:
|
|
1919
|
+
_responseType?: ModifiedCraftingCategoryIndexResponse | undefined;
|
|
643
1920
|
};
|
|
644
1921
|
modifiedCraftingIndex: () => {
|
|
645
1922
|
path: string;
|
|
646
1923
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
647
1924
|
parameters?: Record<string, string | number> | undefined;
|
|
648
|
-
_responseType?:
|
|
1925
|
+
_responseType?: ModifiedCraftingIndexResponse | undefined;
|
|
649
1926
|
};
|
|
650
1927
|
modifiedCraftingReagentSlotType: (modifiedCraftingReagentSlotTypeId: number) => {
|
|
651
1928
|
path: string;
|
|
652
1929
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
653
1930
|
parameters?: Record<string, string | number> | undefined;
|
|
654
|
-
_responseType?:
|
|
1931
|
+
_responseType?: ModifiedCraftingReagentSlotTypeResponse | undefined;
|
|
655
1932
|
};
|
|
656
1933
|
modifiedCraftingReagentSlotTypeIndex: () => {
|
|
657
1934
|
path: string;
|
|
658
1935
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
659
1936
|
parameters?: Record<string, string | number> | undefined;
|
|
660
|
-
_responseType?:
|
|
1937
|
+
_responseType?: ModifiedCraftingReagentSlotTypeIndexResponse | undefined;
|
|
661
1938
|
};
|
|
662
1939
|
mediaSearch: () => {
|
|
663
1940
|
path: string;
|
|
@@ -669,199 +1946,199 @@ declare const wow: {
|
|
|
669
1946
|
path: string;
|
|
670
1947
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
671
1948
|
parameters?: Record<string, string | number> | undefined;
|
|
672
|
-
_responseType?:
|
|
1949
|
+
_responseType?: JournalEncounterResponse | undefined;
|
|
673
1950
|
};
|
|
674
1951
|
journalEncounterIndex: () => {
|
|
675
1952
|
path: string;
|
|
676
1953
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
677
1954
|
parameters?: Record<string, string | number> | undefined;
|
|
678
|
-
_responseType?:
|
|
1955
|
+
_responseType?: JournalEncounterIndexResponse | undefined;
|
|
679
1956
|
};
|
|
680
1957
|
journalExpansion: (journalExpansionId: number) => {
|
|
681
1958
|
path: string;
|
|
682
1959
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
683
1960
|
parameters?: Record<string, string | number> | undefined;
|
|
684
|
-
_responseType?:
|
|
1961
|
+
_responseType?: JournalExpansionResponse | undefined;
|
|
685
1962
|
};
|
|
686
1963
|
journalExpansionIndex: () => {
|
|
687
1964
|
path: string;
|
|
688
1965
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
689
1966
|
parameters?: Record<string, string | number> | undefined;
|
|
690
|
-
_responseType?:
|
|
1967
|
+
_responseType?: JournalExpansionIndexResponse | undefined;
|
|
691
1968
|
};
|
|
692
1969
|
journalInstance: (journalInstanceId: number) => {
|
|
693
1970
|
path: string;
|
|
694
1971
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
695
1972
|
parameters?: Record<string, string | number> | undefined;
|
|
696
|
-
_responseType?:
|
|
1973
|
+
_responseType?: JournalInstanceResponse | undefined;
|
|
697
1974
|
};
|
|
698
1975
|
journalInstanceIndex: () => {
|
|
699
1976
|
path: string;
|
|
700
1977
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
701
1978
|
parameters?: Record<string, string | number> | undefined;
|
|
702
|
-
_responseType?:
|
|
1979
|
+
_responseType?: JournalInstanceIndexResponse | undefined;
|
|
703
1980
|
};
|
|
704
1981
|
journalInstanceMedia: (journalInstanceId: number) => {
|
|
705
1982
|
path: string;
|
|
706
1983
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
707
1984
|
parameters?: Record<string, string | number> | undefined;
|
|
708
|
-
_responseType?:
|
|
1985
|
+
_responseType?: JournalInstanceMediaResponse | undefined;
|
|
709
1986
|
};
|
|
710
1987
|
item: (itemId: number) => {
|
|
711
1988
|
path: string;
|
|
712
1989
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
713
1990
|
parameters?: Record<string, string | number> | undefined;
|
|
714
|
-
_responseType?:
|
|
1991
|
+
_responseType?: ItemResponse | undefined;
|
|
715
1992
|
};
|
|
716
|
-
|
|
1993
|
+
itemClass: (itemClassId: number) => {
|
|
717
1994
|
path: string;
|
|
718
1995
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
719
1996
|
parameters?: Record<string, string | number> | undefined;
|
|
720
|
-
_responseType?:
|
|
1997
|
+
_responseType?: ItemClassResponse | undefined;
|
|
721
1998
|
};
|
|
722
|
-
|
|
1999
|
+
itemSubclass: (itemClassId: number, itemSubclassId: number) => {
|
|
723
2000
|
path: string;
|
|
724
2001
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
725
2002
|
parameters?: Record<string, string | number> | undefined;
|
|
726
|
-
_responseType?:
|
|
2003
|
+
_responseType?: ItemSubclassResponse | undefined;
|
|
727
2004
|
};
|
|
728
2005
|
itemClassIndex: () => {
|
|
729
2006
|
path: string;
|
|
730
2007
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
731
2008
|
parameters?: Record<string, string | number> | undefined;
|
|
732
|
-
_responseType?:
|
|
2009
|
+
_responseType?: ItemClassIndexResponse | undefined;
|
|
733
2010
|
};
|
|
734
2011
|
itemMedia: (itemId: number) => {
|
|
735
2012
|
path: string;
|
|
736
2013
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
737
2014
|
parameters?: Record<string, string | number> | undefined;
|
|
738
|
-
_responseType?:
|
|
2015
|
+
_responseType?: ItemMediaResponse | undefined;
|
|
739
2016
|
};
|
|
740
2017
|
itemSet: (itemSetId: number) => {
|
|
741
2018
|
path: string;
|
|
742
2019
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
743
2020
|
parameters?: Record<string, string | number> | undefined;
|
|
744
|
-
_responseType?:
|
|
2021
|
+
_responseType?: ItemSetResponse | undefined;
|
|
745
2022
|
};
|
|
746
2023
|
itemSetIndex: () => {
|
|
747
2024
|
path: string;
|
|
748
2025
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
749
2026
|
parameters?: Record<string, string | number> | undefined;
|
|
750
|
-
_responseType?:
|
|
2027
|
+
_responseType?: ItemSetIndexResponse | undefined;
|
|
751
2028
|
};
|
|
752
2029
|
heirloom: (heirloomId: number) => {
|
|
753
2030
|
path: string;
|
|
754
2031
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
755
2032
|
parameters?: Record<string, string | number> | undefined;
|
|
756
|
-
_responseType?:
|
|
2033
|
+
_responseType?: HeirloomResponse | undefined;
|
|
757
2034
|
};
|
|
758
2035
|
heirloomIndex: () => {
|
|
759
2036
|
path: string;
|
|
760
2037
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
761
2038
|
parameters?: Record<string, string | number> | undefined;
|
|
762
|
-
_responseType?:
|
|
2039
|
+
_responseType?: HeirloomIndexResponse | undefined;
|
|
763
2040
|
};
|
|
764
2041
|
guildCrestComponentsIndex: () => {
|
|
765
2042
|
path: string;
|
|
766
2043
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
767
2044
|
parameters?: Record<string, string | number> | undefined;
|
|
768
|
-
_responseType?:
|
|
2045
|
+
_responseType?: GuildCrestComponentsIndexResponse | undefined;
|
|
769
2046
|
};
|
|
770
2047
|
guildCrestBorder: (borderId: number) => {
|
|
771
2048
|
path: string;
|
|
772
2049
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
773
2050
|
parameters?: Record<string, string | number> | undefined;
|
|
774
|
-
_responseType?:
|
|
2051
|
+
_responseType?: GuildCrestBorderEmblemResponse | undefined;
|
|
775
2052
|
};
|
|
776
2053
|
guildCrestEmblem: (emblemId: number) => {
|
|
777
2054
|
path: string;
|
|
778
2055
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
779
2056
|
parameters?: Record<string, string | number> | undefined;
|
|
780
|
-
_responseType?:
|
|
2057
|
+
_responseType?: GuildCrestBorderEmblemResponse | undefined;
|
|
781
2058
|
};
|
|
782
2059
|
creature: (creatureId: number) => {
|
|
783
2060
|
path: string;
|
|
784
2061
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
785
2062
|
parameters?: Record<string, string | number> | undefined;
|
|
786
|
-
_responseType?:
|
|
2063
|
+
_responseType?: CreatureResponse | undefined;
|
|
787
2064
|
};
|
|
788
2065
|
creatureDisplayMedia: (creatureDisplayId: number) => {
|
|
789
2066
|
path: string;
|
|
790
2067
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
791
2068
|
parameters?: Record<string, string | number> | undefined;
|
|
792
|
-
_responseType?:
|
|
2069
|
+
_responseType?: CreatureDisplayMediaResponse | undefined;
|
|
793
2070
|
};
|
|
794
2071
|
creatureFamily: (creatureFamilyId: number) => {
|
|
795
2072
|
path: string;
|
|
796
2073
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
797
2074
|
parameters?: Record<string, string | number> | undefined;
|
|
798
|
-
_responseType?:
|
|
2075
|
+
_responseType?: CreatureFamilyResponse | undefined;
|
|
799
2076
|
};
|
|
800
2077
|
creatureFamilyIndex: () => {
|
|
801
2078
|
path: string;
|
|
802
2079
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
803
2080
|
parameters?: Record<string, string | number> | undefined;
|
|
804
|
-
_responseType?:
|
|
2081
|
+
_responseType?: CreatureFamilyIndexResponse | undefined;
|
|
805
2082
|
};
|
|
806
2083
|
creatureFamilyMedia: (creatureFamilyId: number) => {
|
|
807
2084
|
path: string;
|
|
808
2085
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
809
2086
|
parameters?: Record<string, string | number> | undefined;
|
|
810
|
-
_responseType?:
|
|
2087
|
+
_responseType?: CreatureFamilyMediaResponse | undefined;
|
|
811
2088
|
};
|
|
812
2089
|
creatureType: (creatureTypeId: number) => {
|
|
813
2090
|
path: string;
|
|
814
2091
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
815
2092
|
parameters?: Record<string, string | number> | undefined;
|
|
816
|
-
_responseType?:
|
|
2093
|
+
_responseType?: CreatureTypeResponse | undefined;
|
|
817
2094
|
};
|
|
818
2095
|
creatureTypeIndex: () => {
|
|
819
2096
|
path: string;
|
|
820
2097
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
821
2098
|
parameters?: Record<string, string | number> | undefined;
|
|
822
|
-
_responseType?:
|
|
2099
|
+
_responseType?: CreatureTypeIndexResponse | undefined;
|
|
823
2100
|
};
|
|
824
2101
|
conduit: (conduitId: number) => {
|
|
825
2102
|
path: string;
|
|
826
2103
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
827
2104
|
parameters?: Record<string, string | number> | undefined;
|
|
828
|
-
_responseType?:
|
|
2105
|
+
_responseType?: ConduitResponse | undefined;
|
|
829
2106
|
};
|
|
830
2107
|
conduitIndex: () => {
|
|
831
2108
|
path: string;
|
|
832
2109
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
833
2110
|
parameters?: Record<string, string | number> | undefined;
|
|
834
|
-
_responseType?:
|
|
2111
|
+
_responseType?: ConduitIndexResponse | undefined;
|
|
835
2112
|
};
|
|
836
2113
|
covenant: (covenantId: number) => {
|
|
837
2114
|
path: string;
|
|
838
2115
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
839
2116
|
parameters?: Record<string, string | number> | undefined;
|
|
840
|
-
_responseType?:
|
|
2117
|
+
_responseType?: CovenantResponse | undefined;
|
|
841
2118
|
};
|
|
842
2119
|
covenantIndex: () => {
|
|
843
2120
|
path: string;
|
|
844
2121
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
845
2122
|
parameters?: Record<string, string | number> | undefined;
|
|
846
|
-
_responseType?:
|
|
2123
|
+
_responseType?: CovenantIndexResponse | undefined;
|
|
847
2124
|
};
|
|
848
2125
|
covenantMedia: (covenantId: number) => {
|
|
849
2126
|
path: string;
|
|
850
2127
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
851
2128
|
parameters?: Record<string, string | number> | undefined;
|
|
852
|
-
_responseType?:
|
|
2129
|
+
_responseType?: CovenantMediaResponse | undefined;
|
|
853
2130
|
};
|
|
854
2131
|
soulbind: (soulbindId: number) => {
|
|
855
2132
|
path: string;
|
|
856
2133
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
857
2134
|
parameters?: Record<string, string | number> | undefined;
|
|
858
|
-
_responseType?:
|
|
2135
|
+
_responseType?: SoulbindResponse | undefined;
|
|
859
2136
|
};
|
|
860
2137
|
soulbindIndex: () => {
|
|
861
2138
|
path: string;
|
|
862
2139
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
863
2140
|
parameters?: Record<string, string | number> | undefined;
|
|
864
|
-
_responseType?:
|
|
2141
|
+
_responseType?: SoulbindIndexResponse | undefined;
|
|
865
2142
|
};
|
|
866
2143
|
connectedRealmIndex: () => {
|
|
867
2144
|
path: string;
|
|
@@ -879,19 +2156,19 @@ declare const wow: {
|
|
|
879
2156
|
path: string;
|
|
880
2157
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
881
2158
|
parameters?: Record<string, string | number> | undefined;
|
|
882
|
-
_responseType?:
|
|
2159
|
+
_responseType?: AzeriteEssenceResponse | undefined;
|
|
883
2160
|
};
|
|
884
2161
|
azeriteEssenceIndex: () => {
|
|
885
2162
|
path: string;
|
|
886
2163
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
887
2164
|
parameters?: Record<string, string | number> | undefined;
|
|
888
|
-
_responseType?:
|
|
2165
|
+
_responseType?: AzeriteEssenceIndexResponse | undefined;
|
|
889
2166
|
};
|
|
890
2167
|
azeriteEssenceMedia: (azeriteEssenceId: number) => {
|
|
891
2168
|
path: string;
|
|
892
2169
|
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
893
2170
|
parameters?: Record<string, string | number> | undefined;
|
|
894
|
-
_responseType?:
|
|
2171
|
+
_responseType?: AzeriteEssenceMediaResponse | undefined;
|
|
895
2172
|
};
|
|
896
2173
|
auctions: (connectedRealmId: number) => {
|
|
897
2174
|
path: string;
|
|
@@ -937,4 +2214,4 @@ declare const wow: {
|
|
|
937
2214
|
};
|
|
938
2215
|
};
|
|
939
2216
|
|
|
940
|
-
export { type AchievementCategoryIndexResponse, type AchievementCategoryResponse, type AchievementIndexResponse, type AchievementMediaResponse, type AchievementResponse, type AuctionHouseCommoditiesResponse, type AuctionHouseResponse, type ConnectedRealmIndexResponse, type ConnectedRealmResponse, wow };
|
|
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 };
|