@blizzard-api/wow 0.2.4 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -0
- package/dist/index.cjs +1336 -1641
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +970 -843
- package/dist/index.d.ts +970 -843
- package/dist/index.js +1195 -1640
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { BaseSearchParameters, Locales, Origins } from '@blizzard-api/core';
|
|
1
|
+
import { Resource, BaseSearchParameters, Locales, SearchResponse, Origins } from '@blizzard-api/core';
|
|
3
2
|
|
|
4
3
|
/**
|
|
5
4
|
* Base interface for Blizzard API responses.
|
|
@@ -137,6 +136,35 @@ interface AchievementMediaResponse extends ResponseBase {
|
|
|
137
136
|
assets: Array<AchievementMediaItem>;
|
|
138
137
|
}
|
|
139
138
|
|
|
139
|
+
/**
|
|
140
|
+
* Get an achievement category by ID.
|
|
141
|
+
* @param achievementCategoryId The achievement category ID.
|
|
142
|
+
* @returns The achievement category. See {@link AchievementCategoryResponse}.
|
|
143
|
+
*/
|
|
144
|
+
declare function achievementCategory(achievementCategoryId: number): Resource<AchievementCategoryResponse>;
|
|
145
|
+
/**
|
|
146
|
+
* Get an achievement category index.
|
|
147
|
+
* @returns The achievement category index. See {@link AchievementCategoryIndexResponse}.
|
|
148
|
+
*/
|
|
149
|
+
declare function achievementCategoryIndex(): Resource<AchievementCategoryIndexResponse>;
|
|
150
|
+
/**
|
|
151
|
+
* Get an achievement by ID.
|
|
152
|
+
* @param achievementId The achievement ID.
|
|
153
|
+
* @returns The achievement. See {@link AchievementResponse}.
|
|
154
|
+
*/
|
|
155
|
+
declare function achievement(achievementId: number): Resource<AchievementResponse>;
|
|
156
|
+
/**
|
|
157
|
+
* Get an achievement index.
|
|
158
|
+
* @returns The achievement index. See {@link AchievementIndexResponse}.
|
|
159
|
+
*/
|
|
160
|
+
declare function achievementIndex(): Resource<AchievementIndexResponse>;
|
|
161
|
+
/**
|
|
162
|
+
* Get achievement media by ID.
|
|
163
|
+
* @param achievementId The achievement ID.
|
|
164
|
+
* @returns The achievement media. See {@link AchievementMediaResponse}.
|
|
165
|
+
*/
|
|
166
|
+
declare function achievementMedia(achievementId: number): Resource<AchievementMediaResponse>;
|
|
167
|
+
|
|
140
168
|
type AuctionHouseTimeLeft = 'SHORT' | 'MEDIUM' | 'LONG' | 'VERY_LONG';
|
|
141
169
|
interface AuctionHousePosting {
|
|
142
170
|
id: number;
|
|
@@ -184,6 +212,18 @@ interface AuctionHouseCommoditiesResponse extends ResponseBase {
|
|
|
184
212
|
auctions: Array<AuctionHouseCommodity>;
|
|
185
213
|
}
|
|
186
214
|
|
|
215
|
+
/**
|
|
216
|
+
* Get auction house data for a connected realm.
|
|
217
|
+
* @param connectedRealmId The ID of the connected realm.
|
|
218
|
+
* @returns The auction house data. See {@link AuctionHouseResponse}.
|
|
219
|
+
*/
|
|
220
|
+
declare function auctions(connectedRealmId: number): Resource<AuctionHouseResponse>;
|
|
221
|
+
/**
|
|
222
|
+
* Get auction house data for all connected realms.
|
|
223
|
+
* @returns The auction house data. See {@link AuctionHouseResponse}.
|
|
224
|
+
*/
|
|
225
|
+
declare function commodities(): Resource<AuctionHouseCommoditiesResponse>;
|
|
226
|
+
|
|
187
227
|
/**
|
|
188
228
|
* Interface for a response from the azerite essence index endpoint.
|
|
189
229
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -237,6 +277,30 @@ interface AzeriteEssenceSearchResponseItem extends KeyBase {
|
|
|
237
277
|
};
|
|
238
278
|
}
|
|
239
279
|
|
|
280
|
+
/**
|
|
281
|
+
* Get an azerite essence by ID.
|
|
282
|
+
* @param azeriteEssenceId The azerite essence ID.
|
|
283
|
+
* @returns The azerite essence. See {@link AzeriteEssenceResponse}.
|
|
284
|
+
*/
|
|
285
|
+
declare function azeriteEssence(azeriteEssenceId: number): Resource<AzeriteEssenceResponse>;
|
|
286
|
+
/**
|
|
287
|
+
* Get an azerite essence index.
|
|
288
|
+
* @returns The azerite essence index. See {@link AzeriteEssenceIndexResponse}.
|
|
289
|
+
*/
|
|
290
|
+
declare function azeriteEssenceIndex(): Resource<AzeriteEssenceIndexResponse>;
|
|
291
|
+
/**
|
|
292
|
+
* Get azerite essence media by ID.
|
|
293
|
+
* @param azeriteEssenceId The azerite essence ID.
|
|
294
|
+
* @returns The azerite essence media. See {@link AzeriteEssenceMediaResponse}.
|
|
295
|
+
*/
|
|
296
|
+
declare function azeriteEssenceMedia(azeriteEssenceId: number): Resource<AzeriteEssenceMediaResponse>;
|
|
297
|
+
/**
|
|
298
|
+
* Search for azerite essences.
|
|
299
|
+
* @param options The search parameters. See {@link AzeriteEssenceSearchParameters}.
|
|
300
|
+
* @returns The search results. See {@link SearchResponse}.
|
|
301
|
+
*/
|
|
302
|
+
declare function azeriteEssenceSearch(options: AzeriteEssenceSearchParameters): Resource<SearchResponse<AzeriteEssenceSearchResponseItem>, AzeriteEssenceSearchParameters>;
|
|
303
|
+
|
|
240
304
|
type WithoutUnderscore<T extends string> = T extends `${infer Prefix}_${infer Suffix}` ? `${Prefix}${Suffix}` : never;
|
|
241
305
|
/**
|
|
242
306
|
* The category of a realm.
|
|
@@ -423,6 +487,24 @@ interface ConnectedRealmSearchResponseItem extends KeyBase {
|
|
|
423
487
|
};
|
|
424
488
|
}
|
|
425
489
|
|
|
490
|
+
/**
|
|
491
|
+
* Get a connected realm index.
|
|
492
|
+
* @returns The connected realm index. See {@link ConnectedRealmIndexResponse}.
|
|
493
|
+
*/
|
|
494
|
+
declare function connectedRealmIndex(): Resource<ConnectedRealmIndexResponse>;
|
|
495
|
+
/**
|
|
496
|
+
* Get a connected realm by ID.
|
|
497
|
+
* @param connectedRealmId The connected realm ID.
|
|
498
|
+
* @returns The connected realm. See {@link ConnectedRealmResponse}.
|
|
499
|
+
*/
|
|
500
|
+
declare function connectedRealm(connectedRealmId: number): Resource<ConnectedRealmResponse>;
|
|
501
|
+
/**
|
|
502
|
+
* Search for connected realms.
|
|
503
|
+
* @param options The search parameters. See {@link ConnectedRealmSearchParameters}.
|
|
504
|
+
* @returns The search results. See {@link SearchResponse} & {@link ConnectedRealmSearchResponseItem}.
|
|
505
|
+
*/
|
|
506
|
+
declare function connectedRealmSearch(options: ConnectedRealmSearchParameters): Resource<SearchResponse<ConnectedRealmSearchResponseItem>, ConnectedRealmSearchParameters>;
|
|
507
|
+
|
|
426
508
|
/**
|
|
427
509
|
* Interface for a response from the conduit index endpoint.
|
|
428
510
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -539,6 +621,46 @@ interface SoulbindIndexResponse extends ResponseBase {
|
|
|
539
621
|
soulbinds: Array<NameIdKey>;
|
|
540
622
|
}
|
|
541
623
|
|
|
624
|
+
/**
|
|
625
|
+
* Get a conduit by ID.
|
|
626
|
+
* @param conduitId The conduit ID.
|
|
627
|
+
* @returns The conduit. See {@link ConduitResponse}.
|
|
628
|
+
*/
|
|
629
|
+
declare function conduit(conduitId: number): Resource<ConduitResponse>;
|
|
630
|
+
/**
|
|
631
|
+
* Get a conduit index.
|
|
632
|
+
* @returns The conduit index. See {@link ConduitIndexResponse}.
|
|
633
|
+
*/
|
|
634
|
+
declare function conduitIndex(): Resource<ConduitIndexResponse>;
|
|
635
|
+
/**
|
|
636
|
+
* Get a covenant by ID.
|
|
637
|
+
* @param covenantId The covenant ID.
|
|
638
|
+
* @returns The covenant. See {@link CovenantResponse}.
|
|
639
|
+
*/
|
|
640
|
+
declare function covenant(covenantId: number): Resource<CovenantResponse>;
|
|
641
|
+
/**
|
|
642
|
+
* Get a covenant index.
|
|
643
|
+
* @returns The covenant index. See {@link CovenantIndexResponse}.
|
|
644
|
+
*/
|
|
645
|
+
declare function covenantIndex(): Resource<CovenantIndexResponse>;
|
|
646
|
+
/**
|
|
647
|
+
* Get covenant media by ID.
|
|
648
|
+
* @param covenantId The covenant ID.
|
|
649
|
+
* @returns The covenant media. See {@link CovenantMediaResponse}.
|
|
650
|
+
*/
|
|
651
|
+
declare function covenantMedia(covenantId: number): Resource<CovenantMediaResponse>;
|
|
652
|
+
/**
|
|
653
|
+
* Get a soulbind by ID.
|
|
654
|
+
* @param soulbindId The soulbind ID.
|
|
655
|
+
* @returns The soulbind. See {@link SoulbindResponse}.
|
|
656
|
+
*/
|
|
657
|
+
declare function soulbind(soulbindId: number): Resource<SoulbindResponse>;
|
|
658
|
+
/**
|
|
659
|
+
* Get a soulbind index.
|
|
660
|
+
* @returns The soulbind index. See {@link SoulbindIndexResponse}.
|
|
661
|
+
*/
|
|
662
|
+
declare function soulbindIndex(): Resource<SoulbindIndexResponse>;
|
|
663
|
+
|
|
542
664
|
/**
|
|
543
665
|
* The response for a creature.
|
|
544
666
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -642,6 +764,53 @@ interface CreatureSearchResponseItem extends KeyBase {
|
|
|
642
764
|
};
|
|
643
765
|
}
|
|
644
766
|
|
|
767
|
+
/**
|
|
768
|
+
* Get a creature by ID.
|
|
769
|
+
* @param creatureId The creature ID.
|
|
770
|
+
* @returns The creature. See {@link CreatureResponse}.
|
|
771
|
+
*/
|
|
772
|
+
declare function creature(creatureId: number): Resource<CreatureResponse>;
|
|
773
|
+
/**
|
|
774
|
+
* Get creature display media by ID.
|
|
775
|
+
* @param creatureDisplayId The creature display ID.
|
|
776
|
+
* @returns The creature display media. See {@link CreatureDisplayMediaResponse}.
|
|
777
|
+
*/
|
|
778
|
+
declare function creatureDisplayMedia(creatureDisplayId: number): Resource<CreatureDisplayMediaResponse>;
|
|
779
|
+
/**
|
|
780
|
+
* Get a creature family by ID.
|
|
781
|
+
* @param creatureFamilyId The creature family ID.
|
|
782
|
+
* @returns The creature family. See {@link CreatureFamilyResponse}.
|
|
783
|
+
*/
|
|
784
|
+
declare function creatureFamily(creatureFamilyId: number): Resource<CreatureFamilyResponse>;
|
|
785
|
+
/**
|
|
786
|
+
* Get a creature family index.
|
|
787
|
+
* @returns The creature family index. See {@link CreatureFamilyIndexResponse}.
|
|
788
|
+
*/
|
|
789
|
+
declare function creatureFamilyIndex(): Resource<CreatureFamilyIndexResponse>;
|
|
790
|
+
/**
|
|
791
|
+
* Get creature family media by ID.
|
|
792
|
+
* @param creatureFamilyId The creature family ID.
|
|
793
|
+
* @returns The creature family media. See {@link CreatureFamilyMediaResponse}.
|
|
794
|
+
*/
|
|
795
|
+
declare function creatureFamilyMedia(creatureFamilyId: number): Resource<CreatureFamilyMediaResponse>;
|
|
796
|
+
/**
|
|
797
|
+
* Get a creature type by ID.
|
|
798
|
+
* @param creatureTypeId The creature type ID.
|
|
799
|
+
* @returns The creature type. See {@link CreatureTypeResponse}.
|
|
800
|
+
*/
|
|
801
|
+
declare function creatureType(creatureTypeId: number): Resource<CreatureTypeResponse>;
|
|
802
|
+
/**
|
|
803
|
+
* Get a creature type index.
|
|
804
|
+
* @returns The creature type index. See {@link CreatureTypeIndexResponse}.
|
|
805
|
+
*/
|
|
806
|
+
declare function creatureTypeIndex(): Resource<CreatureTypeIndexResponse>;
|
|
807
|
+
/**
|
|
808
|
+
* Search for creatures.
|
|
809
|
+
* @param options The creature search parameters. See {@link CreatureSearchParameters}.
|
|
810
|
+
* @returns The creature search results. See {@link SearchResponse} & {@link CreatureSearchResponseItem}.
|
|
811
|
+
*/
|
|
812
|
+
declare function creatureSearch(options: CreatureSearchParameters): Resource<SearchResponse<CreatureSearchResponseItem>, Omit<CreatureSearchParameters, 'name' | 'locale'>>;
|
|
813
|
+
|
|
645
814
|
/**
|
|
646
815
|
* The response for the guild crest components index.
|
|
647
816
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -686,6 +855,24 @@ interface GuildCrestAsset {
|
|
|
686
855
|
value: string;
|
|
687
856
|
}
|
|
688
857
|
|
|
858
|
+
/**
|
|
859
|
+
* Get the guild crest components index.
|
|
860
|
+
* @returns The guild crest components index. See {@link GuildCrestComponentsIndexResponse}.
|
|
861
|
+
*/
|
|
862
|
+
declare function guildCrestComponentsIndex(): Resource<GuildCrestComponentsIndexResponse>;
|
|
863
|
+
/**
|
|
864
|
+
* Get a guild crest border by ID.
|
|
865
|
+
* @param borderId The guild crest border ID.
|
|
866
|
+
* @returns The guild crest border. See {@link GuildCrestBorderEmblemResponse}.
|
|
867
|
+
*/
|
|
868
|
+
declare function guildCrestBorder(borderId: number): Resource<GuildCrestBorderEmblemResponse>;
|
|
869
|
+
/**
|
|
870
|
+
* Get a guild crest emblem by ID.
|
|
871
|
+
* @param emblemId The guild crest emblem ID.
|
|
872
|
+
* @returns The guild crest emblem. See {@link GuildCrestBorderEmblemResponse}.
|
|
873
|
+
*/
|
|
874
|
+
declare function guildCrestEmblem(emblemId: number): Resource<GuildCrestBorderEmblemResponse>;
|
|
875
|
+
|
|
689
876
|
/**
|
|
690
877
|
* The response for the heirloom index.
|
|
691
878
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -770,6 +957,18 @@ interface Damage$1 {
|
|
|
770
957
|
damage_class: Source$3;
|
|
771
958
|
}
|
|
772
959
|
|
|
960
|
+
/**
|
|
961
|
+
* Get a heirloom by ID.
|
|
962
|
+
* @param heirloomId The heirloom ID.
|
|
963
|
+
* @returns The heirloom. See {@link HeirloomResponse}.
|
|
964
|
+
*/
|
|
965
|
+
declare function heirloom(heirloomId: number): Resource<HeirloomResponse>;
|
|
966
|
+
/**
|
|
967
|
+
* Get the heirloom index.
|
|
968
|
+
* @returns The heirloom index. See {@link HeirloomIndexResponse}.
|
|
969
|
+
*/
|
|
970
|
+
declare function heirloomIndex(): Resource<HeirloomIndexResponse>;
|
|
971
|
+
|
|
773
972
|
interface ItemQuality {
|
|
774
973
|
name: Record<Locales, string | undefined>;
|
|
775
974
|
type: 'POOR' | 'COMMON' | 'UNCOMMON' | 'RARE' | 'EPIC' | 'LEGENDARY' | 'ARTIFACT' | 'HEIRLOOM';
|
|
@@ -1010,6 +1209,54 @@ interface ItemSearchResponseItem extends KeyBase {
|
|
|
1010
1209
|
};
|
|
1011
1210
|
}
|
|
1012
1211
|
|
|
1212
|
+
/**
|
|
1213
|
+
* Get an item by ID.
|
|
1214
|
+
* @param itemId The item ID.
|
|
1215
|
+
* @returns The item. See {@link ItemResponse}.
|
|
1216
|
+
*/
|
|
1217
|
+
declare function item(itemId: number): Resource<ItemResponse>;
|
|
1218
|
+
/**
|
|
1219
|
+
* Get an item class by ID.
|
|
1220
|
+
* @param itemClassId The item class ID.
|
|
1221
|
+
* @returns The item class. See {@link ItemClassResponse}.
|
|
1222
|
+
*/
|
|
1223
|
+
declare function itemClass(itemClassId: number): Resource<ItemClassResponse>;
|
|
1224
|
+
/**
|
|
1225
|
+
* Get an item subclass by ID.
|
|
1226
|
+
* @param itemClassId The item class ID.
|
|
1227
|
+
* @param itemSubclassId The item subclass ID.
|
|
1228
|
+
* @returns The item subclass. See {@link ItemSubClassResponse}.
|
|
1229
|
+
*/
|
|
1230
|
+
declare function itemSubClass(itemClassId: number, itemSubclassId: number): Resource<ItemSubClassResponse>;
|
|
1231
|
+
/**
|
|
1232
|
+
* Get an item class index.
|
|
1233
|
+
* @returns The item class index. See {@link ItemClassIndexResponse}.
|
|
1234
|
+
*/
|
|
1235
|
+
declare function itemClassIndex(): Resource<ItemClassIndexResponse>;
|
|
1236
|
+
/**
|
|
1237
|
+
* Get item media by ID.
|
|
1238
|
+
* @param itemId The item ID.
|
|
1239
|
+
* @returns The item media. See {@link ItemMediaResponse}.
|
|
1240
|
+
*/
|
|
1241
|
+
declare function itemMedia(itemId: number): Resource<ItemMediaResponse>;
|
|
1242
|
+
/**
|
|
1243
|
+
* Get an item set by ID.
|
|
1244
|
+
* @param itemSetId The item set ID.
|
|
1245
|
+
* @returns The item set. See {@link ItemSetResponse}.
|
|
1246
|
+
*/
|
|
1247
|
+
declare function itemSet(itemSetId: number): Resource<ItemSetResponse>;
|
|
1248
|
+
/**
|
|
1249
|
+
* Get an item set index.
|
|
1250
|
+
* @returns The item set index. See {@link ItemSetIndexResponse}.
|
|
1251
|
+
*/
|
|
1252
|
+
declare function itemSetIndex(): Resource<ItemSetIndexResponse>;
|
|
1253
|
+
/**
|
|
1254
|
+
* Search for items.
|
|
1255
|
+
* @param options The search parameters. See {@link ItemSearchParameters}.
|
|
1256
|
+
* @returns The search results. See {@link SearchResponse}.
|
|
1257
|
+
*/
|
|
1258
|
+
declare function itemSearch(options: ItemSearchParameters): Resource<SearchResponse<ItemSearchResponseItem>, Omit<ItemSearchParameters, 'name' | 'locale'>>;
|
|
1259
|
+
|
|
1013
1260
|
type EncounterCategory = 'RAID' | 'DUNGEON' | 'WORLD_BOSS';
|
|
1014
1261
|
type EncounterMode = 'NORMAL' | 'HEROIC' | 'MYTHIC' | 'LFR';
|
|
1015
1262
|
type ModeName = 'Raid Finder' | 'Normal' | 'Heroic' | 'Mythic' | 'Mythic+ Dungeons' | '10 Player' | '25 Player' | '10 Player (Heroic)' | '25 Player (Heroic)';
|
|
@@ -1166,6 +1413,52 @@ interface JournalEncounterSearchItem {
|
|
|
1166
1413
|
};
|
|
1167
1414
|
}
|
|
1168
1415
|
|
|
1416
|
+
/**
|
|
1417
|
+
* Get a journal encounter by ID.
|
|
1418
|
+
* @param journalEncounterId The journal encounter ID.
|
|
1419
|
+
* @returns The journal encounter. See {@link JournalEncounterResponse}.
|
|
1420
|
+
*/
|
|
1421
|
+
declare function journalEncounter(journalEncounterId: number): Resource<JournalEncounterResponse>;
|
|
1422
|
+
/**
|
|
1423
|
+
* Get the journal encounter index.
|
|
1424
|
+
* @returns The journal encounter index. See {@link JournalEncounterIndexResponse}.
|
|
1425
|
+
*/
|
|
1426
|
+
declare function journalEncounterIndex(): Resource<JournalEncounterIndexResponse>;
|
|
1427
|
+
/**
|
|
1428
|
+
* Search for journal encounters.
|
|
1429
|
+
* @param options The search parameters. See {@link JournalEncounterSearchParameters}.
|
|
1430
|
+
* @returns The search results. See {@link SearchResponse}.
|
|
1431
|
+
*/
|
|
1432
|
+
declare function journalEncounterSearch(options: JournalEncounterSearchParameters): Resource<SearchResponse<JournalEncounterSearchResponseItem>, Omit<JournalEncounterSearchParameters, 'instanceName' | 'locale'>>;
|
|
1433
|
+
/**
|
|
1434
|
+
* Get a journal expansion by ID.
|
|
1435
|
+
* @param journalExpansionId The journal expansion ID.
|
|
1436
|
+
* @returns The journal expansion. See {@link JournalExpansionResponse}.
|
|
1437
|
+
*/
|
|
1438
|
+
declare function journalExpansion(journalExpansionId: number): Resource<JournalExpansionResponse>;
|
|
1439
|
+
/**
|
|
1440
|
+
* Get the journal expansion index.
|
|
1441
|
+
* @returns The journal expansion index. See {@link JournalExpansionIndexResponse}.
|
|
1442
|
+
*/
|
|
1443
|
+
declare function journalExpansionIndex(): Resource<JournalExpansionIndexResponse>;
|
|
1444
|
+
/**
|
|
1445
|
+
* Get a journal instance by ID.
|
|
1446
|
+
* @param journalInstanceId The journal instance ID.
|
|
1447
|
+
* @returns The journal instance. See {@link JournalInstanceResponse}.
|
|
1448
|
+
*/
|
|
1449
|
+
declare function journalInstance(journalInstanceId: number): Resource<JournalInstanceResponse>;
|
|
1450
|
+
/**
|
|
1451
|
+
* Get the journal instance index.
|
|
1452
|
+
* @returns The journal instance index. See {@link JournalInstanceIndexResponse}.
|
|
1453
|
+
*/
|
|
1454
|
+
declare function journalInstanceIndex(): Resource<JournalInstanceIndexResponse>;
|
|
1455
|
+
/**
|
|
1456
|
+
* Get journal instance media by ID.
|
|
1457
|
+
* @param journalInstanceId The journal instance ID.
|
|
1458
|
+
* @returns The journal instance media. See {@link JournalInstanceMediaResponse}.
|
|
1459
|
+
*/
|
|
1460
|
+
declare function journalInstanceMedia(journalInstanceId: number): Resource<JournalInstanceMediaResponse>;
|
|
1461
|
+
|
|
1169
1462
|
/**
|
|
1170
1463
|
* The search parameters for media.
|
|
1171
1464
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -1191,6 +1484,13 @@ interface MediaAsset {
|
|
|
1191
1484
|
value: string;
|
|
1192
1485
|
}
|
|
1193
1486
|
|
|
1487
|
+
/**
|
|
1488
|
+
* Search for media.
|
|
1489
|
+
* @param options The search parameters. See {@link MediaSearchParameters}.
|
|
1490
|
+
* @returns The search results. See {@link SearchResponse}.
|
|
1491
|
+
*/
|
|
1492
|
+
declare function mediaSearch(options: MediaSearchParameters): Resource<SearchResponse<MediaSearchResponseItem>, MediaSearchParameters>;
|
|
1493
|
+
|
|
1194
1494
|
/**
|
|
1195
1495
|
* The response for a modified crafting category.
|
|
1196
1496
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -1237,6 +1537,34 @@ interface ModifiedCraftingReagentSlotTypeResponse extends ResponseBase {
|
|
|
1237
1537
|
compatible_categories: Array<NameIdKey>;
|
|
1238
1538
|
}
|
|
1239
1539
|
|
|
1540
|
+
/**
|
|
1541
|
+
* Get a modified crafting category by ID.
|
|
1542
|
+
* @param modifiedCraftingCategoryId The modified crafting category ID.
|
|
1543
|
+
* @returns The modified crafting category. See {@link ModifiedCraftingCategoryResponse}.
|
|
1544
|
+
*/
|
|
1545
|
+
declare function modifiedCraftingCategory(modifiedCraftingCategoryId: number): Resource<ModifiedCraftingCategoryResponse>;
|
|
1546
|
+
/**
|
|
1547
|
+
* Get a modified crafting category index.
|
|
1548
|
+
* @returns The modified crafting category index. See {@link ModifiedCraftingCategoryIndexResponse}.
|
|
1549
|
+
*/
|
|
1550
|
+
declare function modifiedCraftingCategoryIndex(): Resource<ModifiedCraftingCategoryIndexResponse>;
|
|
1551
|
+
/**
|
|
1552
|
+
* Get a modified crafting index.
|
|
1553
|
+
* @returns The modified crafting index. See {@link ModifiedCraftingIndexResponse}.
|
|
1554
|
+
*/
|
|
1555
|
+
declare function modifiedCraftingIndex(): Resource<ModifiedCraftingIndexResponse>;
|
|
1556
|
+
/**
|
|
1557
|
+
* Get a modified crafting reagent slot type by ID.
|
|
1558
|
+
* @param modifiedCraftingReagentSlotTypeId The modified crafting reagent slot type ID.
|
|
1559
|
+
* @returns The modified crafting reagent slot type. See {@link ModifiedCraftingReagentSlotTypeResponse}.
|
|
1560
|
+
*/
|
|
1561
|
+
declare function modifiedCraftingReagentSlotType(modifiedCraftingReagentSlotTypeId: number): Resource<ModifiedCraftingReagentSlotTypeResponse>;
|
|
1562
|
+
/**
|
|
1563
|
+
* Get a modified crafting reagent slot type index.
|
|
1564
|
+
* @returns The modified crafting reagent slot type index. See {@link ModifiedCraftingReagentSlotTypeIndexResponse}.
|
|
1565
|
+
*/
|
|
1566
|
+
declare function modifiedCraftingReagentSlotTypeIndex(): Resource<ModifiedCraftingReagentSlotTypeIndexResponse>;
|
|
1567
|
+
|
|
1240
1568
|
/**
|
|
1241
1569
|
* The response for a mount index.
|
|
1242
1570
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -1295,6 +1623,24 @@ interface MountSearchResponseItem extends KeyBase {
|
|
|
1295
1623
|
};
|
|
1296
1624
|
}
|
|
1297
1625
|
|
|
1626
|
+
/**
|
|
1627
|
+
* Get a mount by ID.
|
|
1628
|
+
* @param mountId The mount ID.
|
|
1629
|
+
* @returns The mount. See {@link MountResponse}.
|
|
1630
|
+
*/
|
|
1631
|
+
declare function mount(mountId: number): Resource<MountResponse>;
|
|
1632
|
+
/**
|
|
1633
|
+
* Get a mount index.
|
|
1634
|
+
* @returns The mount index. See {@link MountIndexResponse}.
|
|
1635
|
+
*/
|
|
1636
|
+
declare function mountIndex(): Resource<MountIndexResponse>;
|
|
1637
|
+
/**
|
|
1638
|
+
* Get a mount search.
|
|
1639
|
+
* @param options The search parameters. See {@link MountSearchParameters}.
|
|
1640
|
+
* @returns The search results. See {@link SearchResponse}.
|
|
1641
|
+
*/
|
|
1642
|
+
declare function mountSearch(options: MountSearchParameters): Resource<SearchResponse<MountSearchResponseItem>, Omit<MountSearchParameters, 'name' | 'locale'>>;
|
|
1643
|
+
|
|
1298
1644
|
/**
|
|
1299
1645
|
* The response for a Mythic Keystone affix index.
|
|
1300
1646
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -1322,6 +1668,22 @@ interface MythicKeystoneAffixMediaResponse extends ResponseBase {
|
|
|
1322
1668
|
id: number;
|
|
1323
1669
|
}
|
|
1324
1670
|
|
|
1671
|
+
/**
|
|
1672
|
+
* Get a list of all Mythic Keystone affixes.
|
|
1673
|
+
* @returns A list of all Mythic Keystone affixes. See {@link MythicKeystoneAffixIndexResponse}
|
|
1674
|
+
*/
|
|
1675
|
+
declare function mythicKeystoneAffix(mythicKeystoneAffixId: number): Resource<MythicKeystoneAffixResponse>;
|
|
1676
|
+
/**
|
|
1677
|
+
* Get a list of all Mythic Keystone affixes.
|
|
1678
|
+
* @returns A list of all Mythic Keystone affixes. See {@link MythicKeystoneAffixIndexResponse}
|
|
1679
|
+
*/
|
|
1680
|
+
declare function mythicKeystoneAffixIndex(): Resource<MythicKeystoneAffixIndexResponse>;
|
|
1681
|
+
/**
|
|
1682
|
+
* Get a list of all Mythic Keystone affix media.
|
|
1683
|
+
* @returns A list of all Mythic Keystone affix media. See {@link MythicKeystoneAffixMediaResponse}
|
|
1684
|
+
*/
|
|
1685
|
+
declare function mythicKeystoneAffixMedia(mythicKeystoneAffixId: number): Resource<MythicKeystoneAffixMediaResponse>;
|
|
1686
|
+
|
|
1325
1687
|
/**
|
|
1326
1688
|
* The response for a Mythic Keystone dungeon index.
|
|
1327
1689
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -1399,6 +1761,45 @@ interface MythicKeystoneSeasonResponse extends ResponseBase {
|
|
|
1399
1761
|
season_name: string | null;
|
|
1400
1762
|
}
|
|
1401
1763
|
|
|
1764
|
+
/**
|
|
1765
|
+
* Get a Mythic Keystone dungeon by ID.
|
|
1766
|
+
* @param mythicKeystoneDungeonId The Mythic Keystone dungeon ID.
|
|
1767
|
+
* @returns The Mythic Keystone dungeon. See {@link MythicKeystoneDungeonResponse}.
|
|
1768
|
+
*/
|
|
1769
|
+
declare function mythicKeystoneDungeon(mythicKeystoneDungeonId: number): Resource<MythicKeystoneDungeonResponse>;
|
|
1770
|
+
/**
|
|
1771
|
+
* Get a Mythic Keystone dungeon index.
|
|
1772
|
+
* @returns The Mythic Keystone dungeon index. See {@link MythicKeystoneDungeonIndexResponse}.
|
|
1773
|
+
*/
|
|
1774
|
+
declare function mythicKeystoneDungeonIndex(): Resource<MythicKeystoneDungeonIndexResponse>;
|
|
1775
|
+
/**
|
|
1776
|
+
* Get a Mythic Keystone index.
|
|
1777
|
+
* @returns The Mythic Keystone index. See {@link MythicKeystoneIndexResponse}.
|
|
1778
|
+
*/
|
|
1779
|
+
declare function mythicKeystoneIndex(): Resource<MythicKeystoneIndexResponse>;
|
|
1780
|
+
/**
|
|
1781
|
+
* Get a Mythic Keystone period by ID.
|
|
1782
|
+
* @param mythicKeystonePeriodId The Mythic Keystone period ID.
|
|
1783
|
+
* @returns The Mythic Keystone period. See {@link MythicKeystonePeriodResponse}.
|
|
1784
|
+
*/
|
|
1785
|
+
declare function mythicKeystonePeriod(mythicKeystonePeriodId: number): Resource<MythicKeystonePeriodResponse>;
|
|
1786
|
+
/**
|
|
1787
|
+
* Get a Mythic Keystone period index.
|
|
1788
|
+
* @returns The Mythic Keystone period index. See {@link MythicKeystonePeriodIndexResponse}.
|
|
1789
|
+
*/
|
|
1790
|
+
declare function mythicKeystonePeriodIndex(): Resource<MythicKeystonePeriodIndexResponse>;
|
|
1791
|
+
/**
|
|
1792
|
+
* Get a Mythic Keystone season by ID.
|
|
1793
|
+
* @param mythicKeystoneSeasonId The Mythic Keystone season ID.
|
|
1794
|
+
* @returns The Mythic Keystone season. See {@link MythicKeystoneSeasonResponse}.
|
|
1795
|
+
*/
|
|
1796
|
+
declare function mythicKeystoneSeason(mythicKeystoneSeasonId: number): Resource<MythicKeystoneSeasonResponse>;
|
|
1797
|
+
/**
|
|
1798
|
+
* Get a Mythic Keystone season index.
|
|
1799
|
+
* @returns The Mythic Keystone season index. See {@link MythicKeystoneSeasonIndexResponse}.
|
|
1800
|
+
*/
|
|
1801
|
+
declare function mythicKeystoneSeasonIndex(): Resource<MythicKeystoneSeasonIndexResponse>;
|
|
1802
|
+
|
|
1402
1803
|
/**
|
|
1403
1804
|
* The response for a Mythic Keystone leaderboard index.
|
|
1404
1805
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -1457,6 +1858,21 @@ interface MythicRating {
|
|
|
1457
1858
|
rating: number;
|
|
1458
1859
|
}
|
|
1459
1860
|
|
|
1861
|
+
/**
|
|
1862
|
+
* Get a Mythic Keystone leaderboard by connected realm ID, dungeon ID, and period.
|
|
1863
|
+
* @param connectedRealmId The connected realm ID.
|
|
1864
|
+
* @param dungeonId The dungeon ID.
|
|
1865
|
+
* @param period The period ID.
|
|
1866
|
+
* @returns The Mythic Keystone leaderboard. See {@link MythicKeystoneLeaderboardResponse}.
|
|
1867
|
+
*/
|
|
1868
|
+
declare function mythicKeystoneLeaderboard(connectedRealmId: number, dungeonId: number, period: number): Resource<MythicKeystoneLeaderboardResponse>;
|
|
1869
|
+
/**
|
|
1870
|
+
* Get a Mythic Keystone leaderboard index by connected realm ID.
|
|
1871
|
+
* @param connectedRealmId The connected realm ID.
|
|
1872
|
+
* @returns The Mythic Keystone leaderboard index. See {@link MythicKeystoneLeaderboardIndexResponse}.
|
|
1873
|
+
*/
|
|
1874
|
+
declare function mythicKeystoneLeaderboardIndex(connectedRealmId: number): Resource<MythicKeystoneLeaderboardIndexResponse>;
|
|
1875
|
+
|
|
1460
1876
|
/**
|
|
1461
1877
|
* The response for a Mythic Raid leaderboard.
|
|
1462
1878
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -1489,6 +1905,14 @@ interface JournalInstance extends KeyBase {
|
|
|
1489
1905
|
id: number;
|
|
1490
1906
|
}
|
|
1491
1907
|
|
|
1908
|
+
/**
|
|
1909
|
+
* Get a Mythic Raid leaderboard by raid and faction.
|
|
1910
|
+
* @param raid The slug of the raid.
|
|
1911
|
+
* @param faction The faction. Either 'alliance' or 'horde'.
|
|
1912
|
+
* @returns The Mythic Raid leaderboard. See {@link MythicRaidLeaderboardResponse}.
|
|
1913
|
+
*/
|
|
1914
|
+
declare function mythicRaidLeaderboard(raid: string, faction: Lowercase<keyof typeof Factions>): Resource<MythicRaidLeaderboardResponse>;
|
|
1915
|
+
|
|
1492
1916
|
/**
|
|
1493
1917
|
* The response for a pet index.
|
|
1494
1918
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -1564,6 +1988,41 @@ interface PetAbilityMediaResponse extends ResponseBase {
|
|
|
1564
1988
|
id: number;
|
|
1565
1989
|
}
|
|
1566
1990
|
|
|
1991
|
+
/**
|
|
1992
|
+
* Get a pet by ID.
|
|
1993
|
+
* @param petId The pet ID.
|
|
1994
|
+
* @returns The pet. See {@link PetResponse}.
|
|
1995
|
+
*/
|
|
1996
|
+
declare function pet(petId: number): Resource<PetResponse>;
|
|
1997
|
+
/**
|
|
1998
|
+
* Get a pet index.
|
|
1999
|
+
* @returns The pet index. See {@link PetIndexResponse}.
|
|
2000
|
+
*/
|
|
2001
|
+
declare function petIndex(): Resource<PetIndexResponse>;
|
|
2002
|
+
/**
|
|
2003
|
+
* Get a pet media by ID.
|
|
2004
|
+
* @param petId The pet ID.
|
|
2005
|
+
* @returns The pet media. See {@link PetMediaResponse}.
|
|
2006
|
+
*/
|
|
2007
|
+
declare function petMedia(petId: number): Resource<PetMediaResponse>;
|
|
2008
|
+
/**
|
|
2009
|
+
* Get a pet ability by ID.
|
|
2010
|
+
* @param petAbilityId The pet ability ID.
|
|
2011
|
+
* @returns The pet ability. See {@link PetAbilityResponse}.
|
|
2012
|
+
*/
|
|
2013
|
+
declare function petAbility(petAbilityId: number): Resource<PetAbilityResponse>;
|
|
2014
|
+
/**
|
|
2015
|
+
* Get a pet ability index.
|
|
2016
|
+
* @returns The pet ability index. See {@link PetAbilityIndexResponse}.
|
|
2017
|
+
*/
|
|
2018
|
+
declare function petAbilityIndex(): Resource<PetAbilityIndexResponse>;
|
|
2019
|
+
/**
|
|
2020
|
+
* Get a pet ability media by ID.
|
|
2021
|
+
* @param petAbilityId The pet ability ID.
|
|
2022
|
+
* @returns The pet ability media. See {@link PetAbilityMediaResponse}.
|
|
2023
|
+
*/
|
|
2024
|
+
declare function petAbilityMedia(petAbilityId: number): Resource<PetAbilityMediaResponse>;
|
|
2025
|
+
|
|
1567
2026
|
/**
|
|
1568
2027
|
* The response for a playable class index.
|
|
1569
2028
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -1608,6 +2067,30 @@ interface TalentSlot {
|
|
|
1608
2067
|
unlock_player_level: number;
|
|
1609
2068
|
}
|
|
1610
2069
|
|
|
2070
|
+
/**
|
|
2071
|
+
* Get a playable class by ID.
|
|
2072
|
+
* @param playableClassId The playable class ID.
|
|
2073
|
+
* @returns The playable class. See {@link PlayableClassResponse}.
|
|
2074
|
+
*/
|
|
2075
|
+
declare function playableClass(playableClassId: number): Resource<PlayableClassResponse>;
|
|
2076
|
+
/**
|
|
2077
|
+
* Get a playable class index.
|
|
2078
|
+
* @returns The playable class index. See {@link PlayableClassIndexResponse}.
|
|
2079
|
+
*/
|
|
2080
|
+
declare function playableClassIndex(): Resource<PlayableClassIndexResponse>;
|
|
2081
|
+
/**
|
|
2082
|
+
* Get playable class media by ID.
|
|
2083
|
+
* @param playableClassId The playable class ID.
|
|
2084
|
+
* @returns The playable class media. See {@link PlayableClassMediaResponse}.
|
|
2085
|
+
*/
|
|
2086
|
+
declare function playableClassMedia(playableClassId: number): Resource<PlayableClassMediaResponse>;
|
|
2087
|
+
/**
|
|
2088
|
+
* Get a playable class's PvP talent slots by ID.
|
|
2089
|
+
* @param playableClassId The playable class ID.
|
|
2090
|
+
* @returns The playable class's PvP talent slots. See {@link PvpTalentSlotsResponse}.
|
|
2091
|
+
*/
|
|
2092
|
+
declare function pvpTalentSlots(playableClassId: number): Resource<PvpTalentSlotsResponse>;
|
|
2093
|
+
|
|
1611
2094
|
/**
|
|
1612
2095
|
* The playable race index response.
|
|
1613
2096
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -1627,6 +2110,18 @@ interface PlayableRaceResponse extends ResponseBase, NameId {
|
|
|
1627
2110
|
playable_classes: Array<NameIdKey>;
|
|
1628
2111
|
}
|
|
1629
2112
|
|
|
2113
|
+
/**
|
|
2114
|
+
* Get a playable race by ID.
|
|
2115
|
+
* @param playableRaceId The playable race ID.
|
|
2116
|
+
* @returns The playable race. See {@link PlayableRaceResponse}.
|
|
2117
|
+
*/
|
|
2118
|
+
declare function playableRace(playableRaceId: number): Resource<PlayableRaceResponse>;
|
|
2119
|
+
/**
|
|
2120
|
+
* Get a playable race index.
|
|
2121
|
+
* @returns The playable race index. See {@link PlayableRaceIndexResponse}.
|
|
2122
|
+
*/
|
|
2123
|
+
declare function playableRaceIndex(): Resource<PlayableRaceIndexResponse>;
|
|
2124
|
+
|
|
1630
2125
|
/**
|
|
1631
2126
|
* The response for a playable specialization index.
|
|
1632
2127
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -1679,6 +2174,24 @@ interface PlayableSpecializationMediaResponse extends ResponseBase {
|
|
|
1679
2174
|
id: number;
|
|
1680
2175
|
}
|
|
1681
2176
|
|
|
2177
|
+
/**
|
|
2178
|
+
* Get a playable specialization by ID.
|
|
2179
|
+
* @param specializationId The playable specialization ID.
|
|
2180
|
+
* @returns The playable specialization. See {@link PlayableSpecializationResponse}.
|
|
2181
|
+
*/
|
|
2182
|
+
declare function playableSpecialization(specializationId: number): Resource<PlayableSpecializationResponse>;
|
|
2183
|
+
/**
|
|
2184
|
+
* Get a playable specialization index.
|
|
2185
|
+
* @returns The playable specialization index. See {@link PlayableSpecializationIndexResponse}.
|
|
2186
|
+
*/
|
|
2187
|
+
declare function playableSpecializationIndex(): Resource<PlayableSpecializationIndexResponse>;
|
|
2188
|
+
/**
|
|
2189
|
+
* Get a playable specialization media by ID.
|
|
2190
|
+
* @param specializationId The playable specialization ID.
|
|
2191
|
+
* @returns The playable specialization media. See {@link PlayableSpecializationMediaResponse}.
|
|
2192
|
+
*/
|
|
2193
|
+
declare function playableSpecializationMedia(specializationId: number): Resource<PlayableSpecializationMediaResponse>;
|
|
2194
|
+
|
|
1682
2195
|
/**
|
|
1683
2196
|
* The response for a power type index.
|
|
1684
2197
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -1693,6 +2206,18 @@ interface PowerTypeIndexResponse extends ResponseBase {
|
|
|
1693
2206
|
interface PowerTypeResponse extends ResponseBase, NameId {
|
|
1694
2207
|
}
|
|
1695
2208
|
|
|
2209
|
+
/**
|
|
2210
|
+
* Get a power type by ID.
|
|
2211
|
+
* @param powerTypeId The power type ID.
|
|
2212
|
+
* @returns The power type. See {@link PowerTypeResponse}.
|
|
2213
|
+
*/
|
|
2214
|
+
declare function powerType(powerTypeId: number): Resource<PowerTypeResponse>;
|
|
2215
|
+
/**
|
|
2216
|
+
* Get a power type index.
|
|
2217
|
+
* @returns The power type index. See {@link PowerTypeIndexResponse}.
|
|
2218
|
+
*/
|
|
2219
|
+
declare function powerTypeIndex(): Resource<PowerTypeIndexResponse>;
|
|
2220
|
+
|
|
1696
2221
|
/**
|
|
1697
2222
|
* The response for a profession index.
|
|
1698
2223
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -1764,6 +2289,43 @@ interface RecipeMediaResponse extends ResponseBase {
|
|
|
1764
2289
|
id: number;
|
|
1765
2290
|
}
|
|
1766
2291
|
|
|
2292
|
+
/**
|
|
2293
|
+
* Get a profession by ID.
|
|
2294
|
+
* @param professionId The profession ID.
|
|
2295
|
+
* @returns The profession. See {@link ProfessionResponse}.
|
|
2296
|
+
*/
|
|
2297
|
+
declare function profession(professionId: number): Resource<ProfessionResponse>;
|
|
2298
|
+
/**
|
|
2299
|
+
* Get a profession index.
|
|
2300
|
+
* @returns The profession index. See {@link ProfessionIndexResponse}.
|
|
2301
|
+
*/
|
|
2302
|
+
declare function professionIndex(): Resource<ProfessionIndexResponse>;
|
|
2303
|
+
/**
|
|
2304
|
+
* Get profession media by ID.
|
|
2305
|
+
* @param professionId The profession ID.
|
|
2306
|
+
* @returns The profession media. See {@link ProfessionMediaResponse}.
|
|
2307
|
+
*/
|
|
2308
|
+
declare function professionMedia(professionId: number): Resource<ProfessionMediaResponse>;
|
|
2309
|
+
/**
|
|
2310
|
+
* Get a profession's skill tier by ID.
|
|
2311
|
+
* @param professionId The profession ID.
|
|
2312
|
+
* @param skillTierId The skill tier ID.
|
|
2313
|
+
* @returns The profession's skill tier. See {@link ProfessionSkillTierResponse}.
|
|
2314
|
+
*/
|
|
2315
|
+
declare function professionSkillTier(professionId: number, skillTierId: number): Resource<ProfessionSkillTierResponse>;
|
|
2316
|
+
/**
|
|
2317
|
+
* Get a recipe by ID.
|
|
2318
|
+
* @param recipeId The recipe ID.
|
|
2319
|
+
* @returns The recipe. See {@link RecipeResponse}.
|
|
2320
|
+
*/
|
|
2321
|
+
declare function recipe(recipeId: number): Resource<RecipeResponse>;
|
|
2322
|
+
/**
|
|
2323
|
+
* Get recipe media by ID.
|
|
2324
|
+
* @param recipeId The recipe ID.
|
|
2325
|
+
* @returns The recipe media. See {@link RecipeMediaResponse}.
|
|
2326
|
+
*/
|
|
2327
|
+
declare function recipeMedia(recipeId: number): Resource<RecipeMediaResponse>;
|
|
2328
|
+
|
|
1767
2329
|
/**
|
|
1768
2330
|
* The response for a PvP leaderboard.
|
|
1769
2331
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -1850,6 +2412,37 @@ interface PvpSeasonResponse extends ResponseBase {
|
|
|
1850
2412
|
season_name?: string;
|
|
1851
2413
|
}
|
|
1852
2414
|
|
|
2415
|
+
/**
|
|
2416
|
+
* Get a PvP leaderboard by PvP season ID and bracket.
|
|
2417
|
+
* @param pvpSeasonId The PvP season ID.
|
|
2418
|
+
* @param bracket The PvP bracket.
|
|
2419
|
+
* @returns The PvP leaderboard. See {@link PvpLeaderboardResponse}.
|
|
2420
|
+
*/
|
|
2421
|
+
declare function pvpLeaderboard(pvpSeasonId: number, bracket: string): Resource<PvpLeaderboardResponse>;
|
|
2422
|
+
/**
|
|
2423
|
+
* Get a PvP leaderboard index by PvP season ID.
|
|
2424
|
+
* @param pvpSeasonId The PvP season ID.
|
|
2425
|
+
* @returns The PvP leaderboard index. See {@link PvpLeaderboardIndexResponse}.
|
|
2426
|
+
*/
|
|
2427
|
+
declare function pvpLeaderboardIndex(pvpSeasonId: number): Resource<PvpLeaderboardIndexResponse>;
|
|
2428
|
+
/**
|
|
2429
|
+
* Get a PvP reward index by PvP season ID.
|
|
2430
|
+
* @param pvpSeasonId The PvP season ID.
|
|
2431
|
+
* @returns The PvP reward index. See {@link PvpRewardsIndexResponse}.
|
|
2432
|
+
*/
|
|
2433
|
+
declare function pvpRewardsIndex(pvpSeasonId: number): Resource<PvpRewardsIndexResponse>;
|
|
2434
|
+
/**
|
|
2435
|
+
* Get a PvP season by ID.
|
|
2436
|
+
* @param pvpSeasonId The PvP season ID.
|
|
2437
|
+
* @returns The PvP season. See {@link PvpSeasonResponse}.
|
|
2438
|
+
*/
|
|
2439
|
+
declare function pvpSeason(pvpSeasonId: number): Resource<PvpSeasonResponse>;
|
|
2440
|
+
/**
|
|
2441
|
+
* Get a PvP season index.
|
|
2442
|
+
* @returns The PvP season index. See {@link PvpSeasonIndexResponse}.
|
|
2443
|
+
*/
|
|
2444
|
+
declare function pvpSeasonIndex(): Resource<PvpSeasonIndexResponse>;
|
|
2445
|
+
|
|
1853
2446
|
/**
|
|
1854
2447
|
* The response for a PvP tier index.
|
|
1855
2448
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -1884,6 +2477,24 @@ interface PvpTierMediaResponse extends ResponseBase {
|
|
|
1884
2477
|
id: number;
|
|
1885
2478
|
}
|
|
1886
2479
|
|
|
2480
|
+
/**
|
|
2481
|
+
* Get a PvP tier by ID.
|
|
2482
|
+
* @param pvpTierId The PvP tier ID.
|
|
2483
|
+
* @returns The PvP tier. See {@link PvpTierResponse}.
|
|
2484
|
+
*/
|
|
2485
|
+
declare function pvpTier(pvpTierId: number): Resource<PvpTierResponse>;
|
|
2486
|
+
/**
|
|
2487
|
+
* Get a PvP tier index.
|
|
2488
|
+
* @returns The PvP tier index. See {@link PvpTierIndexResponse}.
|
|
2489
|
+
*/
|
|
2490
|
+
declare function pvpTierIndex(): Resource<PvpTierIndexResponse>;
|
|
2491
|
+
/**
|
|
2492
|
+
* Get PvP tier media by ID.
|
|
2493
|
+
* @param pvpTierId The PvP tier ID.
|
|
2494
|
+
* @returns The PvP tier media. See {@link PvpTierMediaResponse}.
|
|
2495
|
+
*/
|
|
2496
|
+
declare function pvpTierMedia(pvpTierId: number): Resource<PvpTierMediaResponse>;
|
|
2497
|
+
|
|
1887
2498
|
/**
|
|
1888
2499
|
* The response for a quest index.
|
|
1889
2500
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -1983,6 +2594,69 @@ interface QuestTypeResponse extends ResponseBase {
|
|
|
1983
2594
|
quests: Array<NameIdKey>;
|
|
1984
2595
|
}
|
|
1985
2596
|
|
|
2597
|
+
/**
|
|
2598
|
+
* Get a quest by ID.
|
|
2599
|
+
* @param questId The quest ID.
|
|
2600
|
+
* @returns The quest. See {@link QuestResponse}.
|
|
2601
|
+
*/
|
|
2602
|
+
declare function quest(questId: number): Resource<QuestResponse>;
|
|
2603
|
+
/**
|
|
2604
|
+
* Get a quest index.
|
|
2605
|
+
* @returns The quest index. See {@link QuestIndexResponse}.
|
|
2606
|
+
*/
|
|
2607
|
+
declare function questIndex(): Resource<QuestIndexResponse>;
|
|
2608
|
+
/**
|
|
2609
|
+
* Get a quest area by ID.
|
|
2610
|
+
* @param questAreaId The quest area ID.
|
|
2611
|
+
* @returns The quest area. See {@link QuestAreaResponse}.
|
|
2612
|
+
*/
|
|
2613
|
+
declare function questArea(questAreaId: number): Resource<QuestAreaResponse>;
|
|
2614
|
+
/**
|
|
2615
|
+
* Get a quest area index.
|
|
2616
|
+
* @returns The quest area index. See {@link QuestAreaIndexResponse}.
|
|
2617
|
+
*/
|
|
2618
|
+
declare function questAreaIndex(): Resource<QuestAreaIndexResponse>;
|
|
2619
|
+
/**
|
|
2620
|
+
* Get a quest category by ID.
|
|
2621
|
+
* @param questCategoryId The quest category ID.
|
|
2622
|
+
* @returns The quest category. See {@link QuestCategoryResponse}.
|
|
2623
|
+
*/
|
|
2624
|
+
declare function questCategory(questCategoryId: number): Resource<QuestCategoryResponse>;
|
|
2625
|
+
/**
|
|
2626
|
+
* Get a quest category index.
|
|
2627
|
+
* @returns The quest category index. See {@link QuestCategoryIndexResponse}.
|
|
2628
|
+
*/
|
|
2629
|
+
declare function questCategoryIndex(): Resource<QuestCategoryIndexResponse>;
|
|
2630
|
+
/**
|
|
2631
|
+
* Get a quest type by ID.
|
|
2632
|
+
* @param questTypeId The quest type ID.
|
|
2633
|
+
* @returns The quest type. See {@link QuestTypeResponse}.
|
|
2634
|
+
*/
|
|
2635
|
+
declare function questType(questTypeId: number): Resource<QuestTypeResponse>;
|
|
2636
|
+
/**
|
|
2637
|
+
* Get a quest type index.
|
|
2638
|
+
* @returns The quest type index. See {@link QuestTypeIndexResponse}.
|
|
2639
|
+
*/
|
|
2640
|
+
declare function questTypeIndex(): Resource<QuestTypeIndexResponse>;
|
|
2641
|
+
|
|
2642
|
+
/**
|
|
2643
|
+
* Get a realm by slug.
|
|
2644
|
+
* @param realmSlug The realm slug.
|
|
2645
|
+
* @returns The realm. See {@link RealmResponse}.
|
|
2646
|
+
*/
|
|
2647
|
+
declare function realm(realmSlug: string): Resource<RealmResponse>;
|
|
2648
|
+
/**
|
|
2649
|
+
* Get a realm index.
|
|
2650
|
+
* @returns The realm index. See {@link RealmIndexResponse}.
|
|
2651
|
+
*/
|
|
2652
|
+
declare function realmIndex(): Resource<RealmIndexResponse>;
|
|
2653
|
+
/**
|
|
2654
|
+
* Search for realms.
|
|
2655
|
+
* @param options The search parameters. See {@link RealmSearchParameters}.
|
|
2656
|
+
* @returns The search results. See {@link SearchResponse}.
|
|
2657
|
+
*/
|
|
2658
|
+
declare function realmSearch(options: RealmSearchParameters): Resource<SearchResponse<RealmSearchResponseItem>, RealmSearchParameters>;
|
|
2659
|
+
|
|
1986
2660
|
/**
|
|
1987
2661
|
* The response for a region index.
|
|
1988
2662
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -2001,6 +2675,18 @@ interface RegionResponse extends ResponseBase, NameId {
|
|
|
2001
2675
|
patch_string: string;
|
|
2002
2676
|
}
|
|
2003
2677
|
|
|
2678
|
+
/**
|
|
2679
|
+
* Get a region by ID.
|
|
2680
|
+
* @param regionId The region ID.
|
|
2681
|
+
* @returns The region. See {@link RegionResponse}.
|
|
2682
|
+
*/
|
|
2683
|
+
declare function region(regionId: number): Resource<RegionResponse>;
|
|
2684
|
+
/**
|
|
2685
|
+
* Get a region index.
|
|
2686
|
+
* @returns The region index. See {@link RegionIndexResponse}.
|
|
2687
|
+
*/
|
|
2688
|
+
declare function regionIndex(): Resource<RegionIndexResponse>;
|
|
2689
|
+
|
|
2004
2690
|
/**
|
|
2005
2691
|
* The response for a reputation faction index.
|
|
2006
2692
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -2049,6 +2735,29 @@ interface Tier {
|
|
|
2049
2735
|
id: number;
|
|
2050
2736
|
}
|
|
2051
2737
|
|
|
2738
|
+
/**
|
|
2739
|
+
* Get a reputation faction by ID.
|
|
2740
|
+
* @param reputationFactionId The reputation faction ID.
|
|
2741
|
+
* @returns The reputation faction. See {@link ReputationFactionResponse}.
|
|
2742
|
+
*/
|
|
2743
|
+
declare function reputationFaction(reputationFactionId: number): Resource<ReputationFactionResponse>;
|
|
2744
|
+
/**
|
|
2745
|
+
* Get a reputation faction index.
|
|
2746
|
+
* @returns The reputation faction index. See {@link ReputationFactionIndexResponse}.
|
|
2747
|
+
*/
|
|
2748
|
+
declare function reputationFactionIndex(): Resource<ReputationFactionIndexResponse>;
|
|
2749
|
+
/**
|
|
2750
|
+
* Get a reputation tier by ID.
|
|
2751
|
+
* @param reputationTiersId The reputation tier ID.
|
|
2752
|
+
* @returns The reputation tier. See {@link ReputationTiersResponse}.
|
|
2753
|
+
*/
|
|
2754
|
+
declare function reputationTiers(reputationTiersId: number): Resource<ReputationTiersResponse>;
|
|
2755
|
+
/**
|
|
2756
|
+
* Get a reputation tier index.
|
|
2757
|
+
* @returns The reputation tier index. See {@link ReputationTiersIndexResponse}.
|
|
2758
|
+
*/
|
|
2759
|
+
declare function reputationTiersIndex(): Resource<ReputationTiersIndexResponse>;
|
|
2760
|
+
|
|
2052
2761
|
/**
|
|
2053
2762
|
* The response for a spell.
|
|
2054
2763
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -2092,6 +2801,25 @@ interface SpellSearchResponseItem extends KeyBase {
|
|
|
2092
2801
|
};
|
|
2093
2802
|
}
|
|
2094
2803
|
|
|
2804
|
+
/**
|
|
2805
|
+
* Get a spell by ID.
|
|
2806
|
+
* @param spellId The spell ID.
|
|
2807
|
+
* @returns The spell. See {@link SpellResponse}.
|
|
2808
|
+
*/
|
|
2809
|
+
declare function spell(spellId: number): Resource<SpellResponse>;
|
|
2810
|
+
/**
|
|
2811
|
+
* Get spell media by ID.
|
|
2812
|
+
* @param spellId The spell ID.
|
|
2813
|
+
* @returns The spell media. See {@link SpellMediaResponse}.
|
|
2814
|
+
*/
|
|
2815
|
+
declare function spellMedia(spellId: number): Resource<SpellMediaResponse>;
|
|
2816
|
+
/**
|
|
2817
|
+
* Get a spell search.
|
|
2818
|
+
* @param options The spell search options. See {@link SpellSearchParameters}.
|
|
2819
|
+
* @returns The spell search. See {@link SearchResponse}.
|
|
2820
|
+
*/
|
|
2821
|
+
declare function spellSearch(options: SpellSearchParameters): Resource<SearchResponse<SpellSearchResponseItem>, Omit<SpellSearchParameters, 'name' | 'locale'>>;
|
|
2822
|
+
|
|
2095
2823
|
/**
|
|
2096
2824
|
* The response for a pvp talent index.
|
|
2097
2825
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -2250,6 +2978,47 @@ interface Rank {
|
|
|
2250
2978
|
tooltip?: Tooltip;
|
|
2251
2979
|
}
|
|
2252
2980
|
|
|
2981
|
+
/**
|
|
2982
|
+
* Get a PvP talent by ID.
|
|
2983
|
+
* @param pvpTalentId The PvP talent ID.
|
|
2984
|
+
* @returns The PvP talent. See {@link PvpTalentResponse}.
|
|
2985
|
+
*/
|
|
2986
|
+
declare function pvpTalent(pvpTalentId: number): Resource<PvpTalentResponse>;
|
|
2987
|
+
/**
|
|
2988
|
+
* Get a PvP talent index.
|
|
2989
|
+
* @returns The PvP talent index. See {@link PvpTalentIndexResponse}.
|
|
2990
|
+
*/
|
|
2991
|
+
declare function pvpTalentIndex(): Resource<PvpTalentIndexResponse>;
|
|
2992
|
+
/**
|
|
2993
|
+
* Get a talent by ID.
|
|
2994
|
+
* @param talentId The talent ID.
|
|
2995
|
+
* @returns The talent. See {@link TalentResponse}.
|
|
2996
|
+
*/
|
|
2997
|
+
declare function talent(talentId: number): Resource<TalentResponse>;
|
|
2998
|
+
/**
|
|
2999
|
+
* Get a talent index.
|
|
3000
|
+
* @returns The talent index. See {@link TalentIndexResponse}.
|
|
3001
|
+
*/
|
|
3002
|
+
declare function talentIndex(): Resource<TalentIndexResponse>;
|
|
3003
|
+
/**
|
|
3004
|
+
* Get a talent tree by ID.
|
|
3005
|
+
* @param talentTreeId The talent tree ID.
|
|
3006
|
+
* @param specId The playable specialization ID.
|
|
3007
|
+
* @returns The talent tree. See {@link TalentTreeResponse}.
|
|
3008
|
+
*/
|
|
3009
|
+
declare function talentTree(talentTreeId: number, specId: number): Resource<TalentTreeResponse>;
|
|
3010
|
+
/**
|
|
3011
|
+
* Get a talent tree index.
|
|
3012
|
+
* @returns The talent tree index. See {@link TalentTreeIndexResponse}.
|
|
3013
|
+
*/
|
|
3014
|
+
declare function talentTreeIndex(): Resource<TalentTreeIndexResponse>;
|
|
3015
|
+
/**
|
|
3016
|
+
* Get talent tree nodes by talent tree ID.
|
|
3017
|
+
* @param talentTreeId The talent tree ID.
|
|
3018
|
+
* @returns The talent tree nodes. See {@link TalentTreeNodesResponse}.
|
|
3019
|
+
*/
|
|
3020
|
+
declare function talentTreeNodes(talentTreeId: number): Resource<TalentTreeNodesResponse>;
|
|
3021
|
+
|
|
2253
3022
|
/**
|
|
2254
3023
|
* The response for a tech talent index.
|
|
2255
3024
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -2299,6 +3068,35 @@ interface TechTalentTreeResponse extends ResponseBase {
|
|
|
2299
3068
|
talents: Array<NameIdKey>;
|
|
2300
3069
|
}
|
|
2301
3070
|
|
|
3071
|
+
/**
|
|
3072
|
+
* Get a tech talent by ID.
|
|
3073
|
+
* @param techTalentId The tech talent ID.
|
|
3074
|
+
* @returns The tech talent. See {@link TechTalentResponse}.
|
|
3075
|
+
*/
|
|
3076
|
+
declare function techTalent(techTalentId: number): Resource<TechTalentResponse>;
|
|
3077
|
+
/**
|
|
3078
|
+
* Get a tech talent index.
|
|
3079
|
+
* @returns The tech talent index. See {@link TechTalentIndexResponse}.
|
|
3080
|
+
*/
|
|
3081
|
+
declare function techTalentIndex(): Resource<TechTalentIndexResponse>;
|
|
3082
|
+
/**
|
|
3083
|
+
* Get tech talent media by ID.
|
|
3084
|
+
* @param techTalentId The tech talent ID.
|
|
3085
|
+
* @returns The tech talent media. See {@link TechTalentMediaResponse}.
|
|
3086
|
+
*/
|
|
3087
|
+
declare function techTalentMedia(techTalentId: number): Resource<TechTalentMediaResponse>;
|
|
3088
|
+
/**
|
|
3089
|
+
* Get a tech talent tree by ID.
|
|
3090
|
+
* @param techTalentTreeId The tech talent tree ID.
|
|
3091
|
+
* @returns The tech talent tree. See {@link TechTalentTreeResponse}.
|
|
3092
|
+
*/
|
|
3093
|
+
declare function techTalentTree(techTalentTreeId: number): Resource<TechTalentTreeResponse>;
|
|
3094
|
+
/**
|
|
3095
|
+
* Get a tech talent tree index.
|
|
3096
|
+
* @returns The tech talent tree index. See {@link TechTalentTreeIndexResponse}.
|
|
3097
|
+
*/
|
|
3098
|
+
declare function techTalentTreeIndex(): Resource<TechTalentTreeIndexResponse>;
|
|
3099
|
+
|
|
2302
3100
|
/**
|
|
2303
3101
|
* The response for a title index.
|
|
2304
3102
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -2314,6 +3112,18 @@ interface TitleResponse extends ResponseBase, NameId {
|
|
|
2314
3112
|
gender_name: Gender;
|
|
2315
3113
|
}
|
|
2316
3114
|
|
|
3115
|
+
/**
|
|
3116
|
+
* Get a title by ID.
|
|
3117
|
+
* @param titleId The title ID.
|
|
3118
|
+
* @returns The title. See {@link TitleResponse}.
|
|
3119
|
+
*/
|
|
3120
|
+
declare function title(titleId: number): Resource<TitleResponse>;
|
|
3121
|
+
/**
|
|
3122
|
+
* Get a title index.
|
|
3123
|
+
* @returns The title index. See {@link TitleIndexResponse}.
|
|
3124
|
+
*/
|
|
3125
|
+
declare function titleIndex(): Resource<TitleIndexResponse>;
|
|
3126
|
+
|
|
2317
3127
|
/**
|
|
2318
3128
|
* The response for a toy index.
|
|
2319
3129
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -2340,6 +3150,18 @@ interface Source {
|
|
|
2340
3150
|
name: string;
|
|
2341
3151
|
}
|
|
2342
3152
|
|
|
3153
|
+
/**
|
|
3154
|
+
* Get a toy by ID.
|
|
3155
|
+
* @param toyId The toy ID.
|
|
3156
|
+
* @returns The toy. See {@link ToyResponse}.
|
|
3157
|
+
*/
|
|
3158
|
+
declare function toy(toyId: number): Resource<ToyResponse>;
|
|
3159
|
+
/**
|
|
3160
|
+
* Get a toy index.
|
|
3161
|
+
* @returns The toy index. See {@link ToyIndexResponse}.
|
|
3162
|
+
*/
|
|
3163
|
+
declare function toyIndex(): Resource<ToyIndexResponse>;
|
|
3164
|
+
|
|
2343
3165
|
/**
|
|
2344
3166
|
* The response for a WoW token.
|
|
2345
3167
|
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
|
|
@@ -2349,851 +3171,156 @@ interface WowTokenResponse extends ResponseBase {
|
|
|
2349
3171
|
price: number;
|
|
2350
3172
|
}
|
|
2351
3173
|
|
|
3174
|
+
/**
|
|
3175
|
+
* Get the current WoW token price.
|
|
3176
|
+
* @returns The WoW token price. See {@link WowTokenResponse}.
|
|
3177
|
+
*/
|
|
3178
|
+
declare function wowToken(): Resource<WowTokenResponse>;
|
|
3179
|
+
|
|
2352
3180
|
/**
|
|
2353
3181
|
* The Blizzard API for World of Warcraft.
|
|
2354
3182
|
* @see https://develop.battle.net/documentation/world-of-warcraft
|
|
2355
3183
|
*/
|
|
2356
3184
|
declare const wow: {
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
path: string;
|
|
2497
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2498
|
-
parameters?: Record<string, never> | undefined;
|
|
2499
|
-
_responseType?: ReputationTiersIndexResponse | undefined;
|
|
2500
|
-
};
|
|
2501
|
-
region: (regionId: number) => {
|
|
2502
|
-
path: string;
|
|
2503
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2504
|
-
parameters?: Record<string, never> | undefined;
|
|
2505
|
-
_responseType?: RegionResponse | undefined;
|
|
2506
|
-
};
|
|
2507
|
-
regionIndex: () => {
|
|
2508
|
-
path: string;
|
|
2509
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2510
|
-
parameters?: Record<string, never> | undefined;
|
|
2511
|
-
_responseType?: RegionIndexResponse | undefined;
|
|
2512
|
-
};
|
|
2513
|
-
realm: (realmSlug: string) => {
|
|
2514
|
-
path: string;
|
|
2515
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2516
|
-
parameters?: Record<string, never> | undefined;
|
|
2517
|
-
_responseType?: RealmResponse | undefined;
|
|
2518
|
-
};
|
|
2519
|
-
realmIndex: () => {
|
|
2520
|
-
path: string;
|
|
2521
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2522
|
-
parameters?: Record<string, never> | undefined;
|
|
2523
|
-
_responseType?: RealmIndexResponse | undefined;
|
|
2524
|
-
};
|
|
2525
|
-
realmSearch: (options: RealmSearchParameters) => {
|
|
2526
|
-
path: string;
|
|
2527
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2528
|
-
parameters?: RealmSearchParameters | undefined;
|
|
2529
|
-
_responseType?: _blizzard_api_core.SearchResponse<RealmSearchResponseItem> | undefined;
|
|
2530
|
-
};
|
|
2531
|
-
quest: (questId: number) => {
|
|
2532
|
-
path: string;
|
|
2533
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2534
|
-
parameters?: Record<string, never> | undefined;
|
|
2535
|
-
_responseType?: QuestResponse | undefined;
|
|
2536
|
-
};
|
|
2537
|
-
questIndex: () => {
|
|
2538
|
-
path: string;
|
|
2539
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2540
|
-
parameters?: Record<string, never> | undefined;
|
|
2541
|
-
_responseType?: QuestIndexResponse | undefined;
|
|
2542
|
-
};
|
|
2543
|
-
questArea: (questAreaId: number) => {
|
|
2544
|
-
path: string;
|
|
2545
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2546
|
-
parameters?: Record<string, never> | undefined;
|
|
2547
|
-
_responseType?: QuestAreaResponse | undefined;
|
|
2548
|
-
};
|
|
2549
|
-
questAreaIndex: () => {
|
|
2550
|
-
path: string;
|
|
2551
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2552
|
-
parameters?: Record<string, never> | undefined;
|
|
2553
|
-
_responseType?: QuestAreaIndexResponse | undefined;
|
|
2554
|
-
};
|
|
2555
|
-
questCategory: (questCategoryId: number) => {
|
|
2556
|
-
path: string;
|
|
2557
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2558
|
-
parameters?: Record<string, never> | undefined;
|
|
2559
|
-
_responseType?: QuestCategoryResponse | undefined;
|
|
2560
|
-
};
|
|
2561
|
-
questCategoryIndex: () => {
|
|
2562
|
-
path: string;
|
|
2563
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2564
|
-
parameters?: Record<string, never> | undefined;
|
|
2565
|
-
_responseType?: QuestCategoryIndexResponse | undefined;
|
|
2566
|
-
};
|
|
2567
|
-
questType: (questTypeId: number) => {
|
|
2568
|
-
path: string;
|
|
2569
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2570
|
-
parameters?: Record<string, never> | undefined;
|
|
2571
|
-
_responseType?: QuestTypeResponse | undefined;
|
|
2572
|
-
};
|
|
2573
|
-
questTypeIndex: () => {
|
|
2574
|
-
path: string;
|
|
2575
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2576
|
-
parameters?: Record<string, never> | undefined;
|
|
2577
|
-
_responseType?: QuestTypeIndexResponse | undefined;
|
|
2578
|
-
};
|
|
2579
|
-
pvpTier: (pvpTierId: number) => {
|
|
2580
|
-
path: string;
|
|
2581
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2582
|
-
parameters?: Record<string, never> | undefined;
|
|
2583
|
-
_responseType?: PvpTierResponse | undefined;
|
|
2584
|
-
};
|
|
2585
|
-
pvpTierIndex: () => {
|
|
2586
|
-
path: string;
|
|
2587
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2588
|
-
parameters?: Record<string, never> | undefined;
|
|
2589
|
-
_responseType?: PvpTierIndexResponse | undefined;
|
|
2590
|
-
};
|
|
2591
|
-
pvpTierMedia: (pvpTierId: number) => {
|
|
2592
|
-
path: string;
|
|
2593
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2594
|
-
parameters?: Record<string, never> | undefined;
|
|
2595
|
-
_responseType?: PvpTierMediaResponse | undefined;
|
|
2596
|
-
};
|
|
2597
|
-
pvpLeaderboard: (pvpSeasonId: number, bracket: string) => {
|
|
2598
|
-
path: string;
|
|
2599
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2600
|
-
parameters?: Record<string, never> | undefined;
|
|
2601
|
-
_responseType?: PvpLeaderboardResponse | undefined;
|
|
2602
|
-
};
|
|
2603
|
-
pvpLeaderboardIndex: (pvpSeasonId: number) => {
|
|
2604
|
-
path: string;
|
|
2605
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2606
|
-
parameters?: Record<string, never> | undefined;
|
|
2607
|
-
_responseType?: PvpLeaderboardIndexResponse | undefined;
|
|
2608
|
-
};
|
|
2609
|
-
pvpRewardsIndex: (pvpSeasonId: number) => {
|
|
2610
|
-
path: string;
|
|
2611
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2612
|
-
parameters?: Record<string, never> | undefined;
|
|
2613
|
-
_responseType?: PvpRewardsIndexResponse | undefined;
|
|
2614
|
-
};
|
|
2615
|
-
pvpSeason: (pvpSeasonId: number) => {
|
|
2616
|
-
path: string;
|
|
2617
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2618
|
-
parameters?: Record<string, never> | undefined;
|
|
2619
|
-
_responseType?: PvpSeasonResponse | undefined;
|
|
2620
|
-
};
|
|
2621
|
-
pvpSeasonIndex: () => {
|
|
2622
|
-
path: string;
|
|
2623
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2624
|
-
parameters?: Record<string, never> | undefined;
|
|
2625
|
-
_responseType?: PvpSeasonIndexResponse | undefined;
|
|
2626
|
-
};
|
|
2627
|
-
profession: (professionId: number) => {
|
|
2628
|
-
path: string;
|
|
2629
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2630
|
-
parameters?: Record<string, never> | undefined;
|
|
2631
|
-
_responseType?: ProfessionResponse | undefined;
|
|
2632
|
-
};
|
|
2633
|
-
professionIndex: () => {
|
|
2634
|
-
path: string;
|
|
2635
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2636
|
-
parameters?: Record<string, never> | undefined;
|
|
2637
|
-
_responseType?: ProfessionIndexResponse | undefined;
|
|
2638
|
-
};
|
|
2639
|
-
professionMedia: (professionId: number) => {
|
|
2640
|
-
path: string;
|
|
2641
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2642
|
-
parameters?: Record<string, never> | undefined;
|
|
2643
|
-
_responseType?: ProfessionMediaResponse | undefined;
|
|
2644
|
-
};
|
|
2645
|
-
professionSkillTier: (professionId: number, skillTierId: number) => {
|
|
2646
|
-
path: string;
|
|
2647
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2648
|
-
parameters?: Record<string, never> | undefined;
|
|
2649
|
-
_responseType?: ProfessionSkillTierResponse | undefined;
|
|
2650
|
-
};
|
|
2651
|
-
recipe: (recipeId: number) => {
|
|
2652
|
-
path: string;
|
|
2653
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2654
|
-
parameters?: Record<string, never> | undefined;
|
|
2655
|
-
_responseType?: RecipeResponse | undefined;
|
|
2656
|
-
};
|
|
2657
|
-
recipeMedia: (recipeId: number) => {
|
|
2658
|
-
path: string;
|
|
2659
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2660
|
-
parameters?: Record<string, never> | undefined;
|
|
2661
|
-
_responseType?: RecipeMediaResponse | undefined;
|
|
2662
|
-
};
|
|
2663
|
-
powerType: (powerTypeId: number) => {
|
|
2664
|
-
path: string;
|
|
2665
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2666
|
-
parameters?: Record<string, never> | undefined;
|
|
2667
|
-
_responseType?: PowerTypeResponse | undefined;
|
|
2668
|
-
};
|
|
2669
|
-
powerTypeIndex: () => {
|
|
2670
|
-
path: string;
|
|
2671
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2672
|
-
parameters?: Record<string, never> | undefined;
|
|
2673
|
-
_responseType?: PowerTypeIndexResponse | undefined;
|
|
2674
|
-
};
|
|
2675
|
-
playableSpecialization: (specializationId: number) => {
|
|
2676
|
-
path: string;
|
|
2677
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2678
|
-
parameters?: Record<string, never> | undefined;
|
|
2679
|
-
_responseType?: PlayableSpecializationResponse | undefined;
|
|
2680
|
-
};
|
|
2681
|
-
playableSpecializationIndex: () => {
|
|
2682
|
-
path: string;
|
|
2683
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2684
|
-
parameters?: Record<string, never> | undefined;
|
|
2685
|
-
_responseType?: PlayableSpecializationIndexResponse | undefined;
|
|
2686
|
-
};
|
|
2687
|
-
playableSpecializationMedia: (specializationId: number) => {
|
|
2688
|
-
path: string;
|
|
2689
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2690
|
-
parameters?: Record<string, never> | undefined;
|
|
2691
|
-
_responseType?: PlayableSpecializationMediaResponse | undefined;
|
|
2692
|
-
};
|
|
2693
|
-
playableRace: (playableRaceId: number) => {
|
|
2694
|
-
path: string;
|
|
2695
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2696
|
-
parameters?: Record<string, never> | undefined;
|
|
2697
|
-
_responseType?: PlayableRaceResponse | undefined;
|
|
2698
|
-
};
|
|
2699
|
-
playableRaceIndex: () => {
|
|
2700
|
-
path: string;
|
|
2701
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2702
|
-
parameters?: Record<string, never> | undefined;
|
|
2703
|
-
_responseType?: PlayableRaceIndexResponse | undefined;
|
|
2704
|
-
};
|
|
2705
|
-
playableClass: (playableClassId: number) => {
|
|
2706
|
-
path: string;
|
|
2707
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2708
|
-
parameters?: Record<string, never> | undefined;
|
|
2709
|
-
_responseType?: PlayableClassResponse | undefined;
|
|
2710
|
-
};
|
|
2711
|
-
playableClassIndex: () => {
|
|
2712
|
-
path: string;
|
|
2713
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2714
|
-
parameters?: Record<string, never> | undefined;
|
|
2715
|
-
_responseType?: PlayableClassIndexResponse | undefined;
|
|
2716
|
-
};
|
|
2717
|
-
playableClassMedia: (playableClassId: number) => {
|
|
2718
|
-
path: string;
|
|
2719
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2720
|
-
parameters?: Record<string, never> | undefined;
|
|
2721
|
-
_responseType?: PlayableClassMediaResponse | undefined;
|
|
2722
|
-
};
|
|
2723
|
-
pvpTalentSlots: (playableClassId: number) => {
|
|
2724
|
-
path: string;
|
|
2725
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2726
|
-
parameters?: Record<string, never> | undefined;
|
|
2727
|
-
_responseType?: PvpTalentSlotsResponse | undefined;
|
|
2728
|
-
};
|
|
2729
|
-
pet: (petId: number) => {
|
|
2730
|
-
path: string;
|
|
2731
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2732
|
-
parameters?: Record<string, never> | undefined;
|
|
2733
|
-
_responseType?: PetResponse | undefined;
|
|
2734
|
-
};
|
|
2735
|
-
petIndex: () => {
|
|
2736
|
-
path: string;
|
|
2737
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2738
|
-
parameters?: Record<string, never> | undefined;
|
|
2739
|
-
_responseType?: PetIndexResponse | undefined;
|
|
2740
|
-
};
|
|
2741
|
-
petMedia: (petId: number) => {
|
|
2742
|
-
path: string;
|
|
2743
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2744
|
-
parameters?: Record<string, never> | undefined;
|
|
2745
|
-
_responseType?: PetMediaResponse | undefined;
|
|
2746
|
-
};
|
|
2747
|
-
petAbility: (petAbilityId: number) => {
|
|
2748
|
-
path: string;
|
|
2749
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2750
|
-
parameters?: Record<string, never> | undefined;
|
|
2751
|
-
_responseType?: PetAbilityResponse | undefined;
|
|
2752
|
-
};
|
|
2753
|
-
petAbilityIndex: () => {
|
|
2754
|
-
path: string;
|
|
2755
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2756
|
-
parameters?: Record<string, never> | undefined;
|
|
2757
|
-
_responseType?: PetAbilityIndexResponse | undefined;
|
|
2758
|
-
};
|
|
2759
|
-
petAbilityMedia: (petAbilityId: number) => {
|
|
2760
|
-
path: string;
|
|
2761
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2762
|
-
parameters?: Record<string, never> | undefined;
|
|
2763
|
-
_responseType?: PetAbilityMediaResponse | undefined;
|
|
2764
|
-
};
|
|
2765
|
-
mythicRaidLeaderboard: (raid: string, faction: "alliance" | "horde") => {
|
|
2766
|
-
path: string;
|
|
2767
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2768
|
-
parameters?: Record<string, never> | undefined;
|
|
2769
|
-
_responseType?: MythicRaidLeaderboardResponse | undefined;
|
|
2770
|
-
};
|
|
2771
|
-
mythicKeystoneLeaderboard: (connectedRealmId: number, dungeonId: number, period: number) => {
|
|
2772
|
-
path: string;
|
|
2773
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2774
|
-
parameters?: Record<string, never> | undefined;
|
|
2775
|
-
_responseType?: MythicKeystoneLeaderboardResponse | undefined;
|
|
2776
|
-
};
|
|
2777
|
-
mythicKeystoneLeaderboardIndex: (connectedRealmId: number) => {
|
|
2778
|
-
path: string;
|
|
2779
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2780
|
-
parameters?: Record<string, never> | undefined;
|
|
2781
|
-
_responseType?: MythicKeystoneLeaderboardIndexResponse | undefined;
|
|
2782
|
-
};
|
|
2783
|
-
mythicKeystoneDungeon: (mythicKeystoneDungeonId: number) => {
|
|
2784
|
-
path: string;
|
|
2785
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2786
|
-
parameters?: Record<string, never> | undefined;
|
|
2787
|
-
_responseType?: MythicKeystoneDungeonResponse | undefined;
|
|
2788
|
-
};
|
|
2789
|
-
mythicKeystoneDungeonIndex: () => {
|
|
2790
|
-
path: string;
|
|
2791
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2792
|
-
parameters?: Record<string, never> | undefined;
|
|
2793
|
-
_responseType?: MythicKeystoneDungeonIndexResponse | undefined;
|
|
2794
|
-
};
|
|
2795
|
-
mythicKeystoneIndex: () => {
|
|
2796
|
-
path: string;
|
|
2797
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2798
|
-
parameters?: Record<string, never> | undefined;
|
|
2799
|
-
_responseType?: MythicKeystoneIndexResponse | undefined;
|
|
2800
|
-
};
|
|
2801
|
-
mythicKeystonePeriod: (mythicKeystonePeriodId: number) => {
|
|
2802
|
-
path: string;
|
|
2803
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2804
|
-
parameters?: Record<string, never> | undefined;
|
|
2805
|
-
_responseType?: MythicKeystonePeriodResponse | undefined;
|
|
2806
|
-
};
|
|
2807
|
-
mythicKeystonePeriodIndex: () => {
|
|
2808
|
-
path: string;
|
|
2809
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2810
|
-
parameters?: Record<string, never> | undefined;
|
|
2811
|
-
_responseType?: MythicKeystonePeriodIndexResponse | undefined;
|
|
2812
|
-
};
|
|
2813
|
-
mythicKeystoneSeason: (mythicKeystoneSeasonId: number) => {
|
|
2814
|
-
path: string;
|
|
2815
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2816
|
-
parameters?: Record<string, never> | undefined;
|
|
2817
|
-
_responseType?: MythicKeystoneSeasonResponse | undefined;
|
|
2818
|
-
};
|
|
2819
|
-
mythicKeystoneSeasonIndex: () => {
|
|
2820
|
-
path: string;
|
|
2821
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2822
|
-
parameters?: Record<string, never> | undefined;
|
|
2823
|
-
_responseType?: MythicKeystoneSeasonIndexResponse | undefined;
|
|
2824
|
-
};
|
|
2825
|
-
mythicKeystoneAffix: (mythicKeystoneAffixId: number) => {
|
|
2826
|
-
path: string;
|
|
2827
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2828
|
-
parameters?: Record<string, never> | undefined;
|
|
2829
|
-
_responseType?: MythicKeystoneAffixResponse | undefined;
|
|
2830
|
-
};
|
|
2831
|
-
mythicKeystoneAffixIndex: () => {
|
|
2832
|
-
path: string;
|
|
2833
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2834
|
-
parameters?: Record<string, never> | undefined;
|
|
2835
|
-
_responseType?: MythicKeystoneAffixIndexResponse | undefined;
|
|
2836
|
-
};
|
|
2837
|
-
mythicKeystoneAffixMedia: (mythicKeystoneAffixId: number) => {
|
|
2838
|
-
path: string;
|
|
2839
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2840
|
-
parameters?: Record<string, never> | undefined;
|
|
2841
|
-
_responseType?: MythicKeystoneAffixMediaResponse | undefined;
|
|
2842
|
-
};
|
|
2843
|
-
mount: (mountId: number) => {
|
|
2844
|
-
path: string;
|
|
2845
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2846
|
-
parameters?: Record<string, never> | undefined;
|
|
2847
|
-
_responseType?: MountResponse | undefined;
|
|
2848
|
-
};
|
|
2849
|
-
mountIndex: () => {
|
|
2850
|
-
path: string;
|
|
2851
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2852
|
-
parameters?: Record<string, never> | undefined;
|
|
2853
|
-
_responseType?: MountIndexResponse | undefined;
|
|
2854
|
-
};
|
|
2855
|
-
mountSearch: (options: MountSearchParameters) => {
|
|
2856
|
-
path: string;
|
|
2857
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2858
|
-
parameters?: Omit<MountSearchParameters, "name" | "locale"> | undefined;
|
|
2859
|
-
_responseType?: _blizzard_api_core.SearchResponse<MountSearchResponseItem> | undefined;
|
|
2860
|
-
};
|
|
2861
|
-
modifiedCraftingCategory: (modifiedCraftingCategoryId: number) => {
|
|
2862
|
-
path: string;
|
|
2863
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2864
|
-
parameters?: Record<string, never> | undefined;
|
|
2865
|
-
_responseType?: ModifiedCraftingCategoryResponse | undefined;
|
|
2866
|
-
};
|
|
2867
|
-
modifiedCraftingCategoryIndex: () => {
|
|
2868
|
-
path: string;
|
|
2869
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2870
|
-
parameters?: Record<string, never> | undefined;
|
|
2871
|
-
_responseType?: ModifiedCraftingCategoryIndexResponse | undefined;
|
|
2872
|
-
};
|
|
2873
|
-
modifiedCraftingIndex: () => {
|
|
2874
|
-
path: string;
|
|
2875
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2876
|
-
parameters?: Record<string, never> | undefined;
|
|
2877
|
-
_responseType?: ModifiedCraftingIndexResponse | undefined;
|
|
2878
|
-
};
|
|
2879
|
-
modifiedCraftingReagentSlotType: (modifiedCraftingReagentSlotTypeId: number) => {
|
|
2880
|
-
path: string;
|
|
2881
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2882
|
-
parameters?: Record<string, never> | undefined;
|
|
2883
|
-
_responseType?: ModifiedCraftingReagentSlotTypeResponse | undefined;
|
|
2884
|
-
};
|
|
2885
|
-
modifiedCraftingReagentSlotTypeIndex: () => {
|
|
2886
|
-
path: string;
|
|
2887
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2888
|
-
parameters?: Record<string, never> | undefined;
|
|
2889
|
-
_responseType?: ModifiedCraftingReagentSlotTypeIndexResponse | undefined;
|
|
2890
|
-
};
|
|
2891
|
-
mediaSearch: (options: MediaSearchParameters) => {
|
|
2892
|
-
path: string;
|
|
2893
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2894
|
-
parameters?: MediaSearchParameters | undefined;
|
|
2895
|
-
_responseType?: _blizzard_api_core.SearchResponse<MediaSearchResponseItem> | undefined;
|
|
2896
|
-
};
|
|
2897
|
-
journalEncounter: (journalEncounterId: number) => {
|
|
2898
|
-
path: string;
|
|
2899
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2900
|
-
parameters?: Record<string, never> | undefined;
|
|
2901
|
-
_responseType?: JournalEncounterResponse | undefined;
|
|
2902
|
-
};
|
|
2903
|
-
journalEncounterIndex: () => {
|
|
2904
|
-
path: string;
|
|
2905
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2906
|
-
parameters?: Record<string, never> | undefined;
|
|
2907
|
-
_responseType?: JournalEncounterIndexResponse | undefined;
|
|
2908
|
-
};
|
|
2909
|
-
journalEncounterSearch: (options: JournalEncounterSearchParameters) => {
|
|
2910
|
-
path: string;
|
|
2911
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2912
|
-
parameters?: Omit<JournalEncounterSearchParameters, "locale" | "instanceName"> | undefined;
|
|
2913
|
-
_responseType?: _blizzard_api_core.SearchResponse<JournalEncounterSearchResponseItem> | undefined;
|
|
2914
|
-
};
|
|
2915
|
-
journalExpansion: (journalExpansionId: number) => {
|
|
2916
|
-
path: string;
|
|
2917
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2918
|
-
parameters?: Record<string, never> | undefined;
|
|
2919
|
-
_responseType?: JournalExpansionResponse | undefined;
|
|
2920
|
-
};
|
|
2921
|
-
journalExpansionIndex: () => {
|
|
2922
|
-
path: string;
|
|
2923
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2924
|
-
parameters?: Record<string, never> | undefined;
|
|
2925
|
-
_responseType?: JournalExpansionIndexResponse | undefined;
|
|
2926
|
-
};
|
|
2927
|
-
journalInstance: (journalInstanceId: number) => {
|
|
2928
|
-
path: string;
|
|
2929
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2930
|
-
parameters?: Record<string, never> | undefined;
|
|
2931
|
-
_responseType?: JournalInstanceResponse | undefined;
|
|
2932
|
-
};
|
|
2933
|
-
journalInstanceIndex: () => {
|
|
2934
|
-
path: string;
|
|
2935
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2936
|
-
parameters?: Record<string, never> | undefined;
|
|
2937
|
-
_responseType?: JournalInstanceIndexResponse | undefined;
|
|
2938
|
-
};
|
|
2939
|
-
journalInstanceMedia: (journalInstanceId: number) => {
|
|
2940
|
-
path: string;
|
|
2941
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2942
|
-
parameters?: Record<string, never> | undefined;
|
|
2943
|
-
_responseType?: JournalInstanceMediaResponse | undefined;
|
|
2944
|
-
};
|
|
2945
|
-
item: (itemId: number) => {
|
|
2946
|
-
path: string;
|
|
2947
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2948
|
-
parameters?: Record<string, never> | undefined;
|
|
2949
|
-
_responseType?: ItemResponse | undefined;
|
|
2950
|
-
};
|
|
2951
|
-
itemClass: (itemClassId: number) => {
|
|
2952
|
-
path: string;
|
|
2953
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2954
|
-
parameters?: Record<string, never> | undefined;
|
|
2955
|
-
_responseType?: ItemClassResponse | undefined;
|
|
2956
|
-
};
|
|
2957
|
-
itemSubClass: (itemClassId: number, itemSubclassId: number) => {
|
|
2958
|
-
path: string;
|
|
2959
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2960
|
-
parameters?: Record<string, never> | undefined;
|
|
2961
|
-
_responseType?: ItemSubClassResponse | undefined;
|
|
2962
|
-
};
|
|
2963
|
-
itemClassIndex: () => {
|
|
2964
|
-
path: string;
|
|
2965
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2966
|
-
parameters?: Record<string, never> | undefined;
|
|
2967
|
-
_responseType?: ItemClassIndexResponse | undefined;
|
|
2968
|
-
};
|
|
2969
|
-
itemMedia: (itemId: number) => {
|
|
2970
|
-
path: string;
|
|
2971
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2972
|
-
parameters?: Record<string, never> | undefined;
|
|
2973
|
-
_responseType?: ItemMediaResponse | undefined;
|
|
2974
|
-
};
|
|
2975
|
-
itemSet: (itemSetId: number) => {
|
|
2976
|
-
path: string;
|
|
2977
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2978
|
-
parameters?: Record<string, never> | undefined;
|
|
2979
|
-
_responseType?: ItemSetResponse | undefined;
|
|
2980
|
-
};
|
|
2981
|
-
itemSetIndex: () => {
|
|
2982
|
-
path: string;
|
|
2983
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2984
|
-
parameters?: Record<string, never> | undefined;
|
|
2985
|
-
_responseType?: ItemSetIndexResponse | undefined;
|
|
2986
|
-
};
|
|
2987
|
-
itemSearch: (options: ItemSearchParameters) => {
|
|
2988
|
-
path: string;
|
|
2989
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2990
|
-
parameters?: Omit<ItemSearchParameters, "name" | "locale"> | undefined;
|
|
2991
|
-
_responseType?: _blizzard_api_core.SearchResponse<ItemSearchResponseItem> | undefined;
|
|
2992
|
-
};
|
|
2993
|
-
heirloom: (heirloomId: number) => {
|
|
2994
|
-
path: string;
|
|
2995
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
2996
|
-
parameters?: Record<string, never> | undefined;
|
|
2997
|
-
_responseType?: HeirloomResponse | undefined;
|
|
2998
|
-
};
|
|
2999
|
-
heirloomIndex: () => {
|
|
3000
|
-
path: string;
|
|
3001
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3002
|
-
parameters?: Record<string, never> | undefined;
|
|
3003
|
-
_responseType?: HeirloomIndexResponse | undefined;
|
|
3004
|
-
};
|
|
3005
|
-
guildCrestComponentsIndex: () => {
|
|
3006
|
-
path: string;
|
|
3007
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3008
|
-
parameters?: Record<string, never> | undefined;
|
|
3009
|
-
_responseType?: GuildCrestComponentsIndexResponse | undefined;
|
|
3010
|
-
};
|
|
3011
|
-
guildCrestBorder: (borderId: number) => {
|
|
3012
|
-
path: string;
|
|
3013
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3014
|
-
parameters?: Record<string, never> | undefined;
|
|
3015
|
-
_responseType?: GuildCrestBorderEmblemResponse | undefined;
|
|
3016
|
-
};
|
|
3017
|
-
guildCrestEmblem: (emblemId: number) => {
|
|
3018
|
-
path: string;
|
|
3019
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3020
|
-
parameters?: Record<string, never> | undefined;
|
|
3021
|
-
_responseType?: GuildCrestBorderEmblemResponse | undefined;
|
|
3022
|
-
};
|
|
3023
|
-
creature: (creatureId: number) => {
|
|
3024
|
-
path: string;
|
|
3025
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3026
|
-
parameters?: Record<string, never> | undefined;
|
|
3027
|
-
_responseType?: CreatureResponse | undefined;
|
|
3028
|
-
};
|
|
3029
|
-
creatureDisplayMedia: (creatureDisplayId: number) => {
|
|
3030
|
-
path: string;
|
|
3031
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3032
|
-
parameters?: Record<string, never> | undefined;
|
|
3033
|
-
_responseType?: CreatureDisplayMediaResponse | undefined;
|
|
3034
|
-
};
|
|
3035
|
-
creatureFamily: (creatureFamilyId: number) => {
|
|
3036
|
-
path: string;
|
|
3037
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3038
|
-
parameters?: Record<string, never> | undefined;
|
|
3039
|
-
_responseType?: CreatureFamilyResponse | undefined;
|
|
3040
|
-
};
|
|
3041
|
-
creatureFamilyIndex: () => {
|
|
3042
|
-
path: string;
|
|
3043
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3044
|
-
parameters?: Record<string, never> | undefined;
|
|
3045
|
-
_responseType?: CreatureFamilyIndexResponse | undefined;
|
|
3046
|
-
};
|
|
3047
|
-
creatureFamilyMedia: (creatureFamilyId: number) => {
|
|
3048
|
-
path: string;
|
|
3049
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3050
|
-
parameters?: Record<string, never> | undefined;
|
|
3051
|
-
_responseType?: CreatureFamilyMediaResponse | undefined;
|
|
3052
|
-
};
|
|
3053
|
-
creatureType: (creatureTypeId: number) => {
|
|
3054
|
-
path: string;
|
|
3055
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3056
|
-
parameters?: Record<string, never> | undefined;
|
|
3057
|
-
_responseType?: CreatureTypeResponse | undefined;
|
|
3058
|
-
};
|
|
3059
|
-
creatureTypeIndex: () => {
|
|
3060
|
-
path: string;
|
|
3061
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3062
|
-
parameters?: Record<string, never> | undefined;
|
|
3063
|
-
_responseType?: CreatureTypeIndexResponse | undefined;
|
|
3064
|
-
};
|
|
3065
|
-
creatureSearch: (options: CreatureSearchParameters) => {
|
|
3066
|
-
path: string;
|
|
3067
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3068
|
-
parameters?: Omit<CreatureSearchParameters, "name" | "locale"> | undefined;
|
|
3069
|
-
_responseType?: _blizzard_api_core.SearchResponse<CreatureSearchResponseItem> | undefined;
|
|
3070
|
-
};
|
|
3071
|
-
conduit: (conduitId: number) => {
|
|
3072
|
-
path: string;
|
|
3073
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3074
|
-
parameters?: Record<string, never> | undefined;
|
|
3075
|
-
_responseType?: ConduitResponse | undefined;
|
|
3076
|
-
};
|
|
3077
|
-
conduitIndex: () => {
|
|
3078
|
-
path: string;
|
|
3079
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3080
|
-
parameters?: Record<string, never> | undefined;
|
|
3081
|
-
_responseType?: ConduitIndexResponse | undefined;
|
|
3082
|
-
};
|
|
3083
|
-
covenant: (covenantId: number) => {
|
|
3084
|
-
path: string;
|
|
3085
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3086
|
-
parameters?: Record<string, never> | undefined;
|
|
3087
|
-
_responseType?: CovenantResponse | undefined;
|
|
3088
|
-
};
|
|
3089
|
-
covenantIndex: () => {
|
|
3090
|
-
path: string;
|
|
3091
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3092
|
-
parameters?: Record<string, never> | undefined;
|
|
3093
|
-
_responseType?: CovenantIndexResponse | undefined;
|
|
3094
|
-
};
|
|
3095
|
-
covenantMedia: (covenantId: number) => {
|
|
3096
|
-
path: string;
|
|
3097
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3098
|
-
parameters?: Record<string, never> | undefined;
|
|
3099
|
-
_responseType?: CovenantMediaResponse | undefined;
|
|
3100
|
-
};
|
|
3101
|
-
soulbind: (soulbindId: number) => {
|
|
3102
|
-
path: string;
|
|
3103
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3104
|
-
parameters?: Record<string, never> | undefined;
|
|
3105
|
-
_responseType?: SoulbindResponse | undefined;
|
|
3106
|
-
};
|
|
3107
|
-
soulbindIndex: () => {
|
|
3108
|
-
path: string;
|
|
3109
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3110
|
-
parameters?: Record<string, never> | undefined;
|
|
3111
|
-
_responseType?: SoulbindIndexResponse | undefined;
|
|
3112
|
-
};
|
|
3113
|
-
connectedRealmIndex: () => {
|
|
3114
|
-
path: string;
|
|
3115
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3116
|
-
parameters?: Record<string, never> | undefined;
|
|
3117
|
-
_responseType?: ConnectedRealmIndexResponse | undefined;
|
|
3118
|
-
};
|
|
3119
|
-
connectedRealm: (connectedRealmId: number) => {
|
|
3120
|
-
path: string;
|
|
3121
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3122
|
-
parameters?: Record<string, never> | undefined;
|
|
3123
|
-
_responseType?: ConnectedRealmResponse | undefined;
|
|
3124
|
-
};
|
|
3125
|
-
connectedRealmSearch: (options: ConnectedRealmSearchParameters) => {
|
|
3126
|
-
path: string;
|
|
3127
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3128
|
-
parameters?: ConnectedRealmSearchParameters | undefined;
|
|
3129
|
-
_responseType?: _blizzard_api_core.SearchResponse<ConnectedRealmSearchResponseItem> | undefined;
|
|
3130
|
-
};
|
|
3131
|
-
azeriteEssence: (azeriteEssenceId: number) => {
|
|
3132
|
-
path: string;
|
|
3133
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3134
|
-
parameters?: Record<string, never> | undefined;
|
|
3135
|
-
_responseType?: AzeriteEssenceResponse | undefined;
|
|
3136
|
-
};
|
|
3137
|
-
azeriteEssenceIndex: () => {
|
|
3138
|
-
path: string;
|
|
3139
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3140
|
-
parameters?: Record<string, never> | undefined;
|
|
3141
|
-
_responseType?: AzeriteEssenceIndexResponse | undefined;
|
|
3142
|
-
};
|
|
3143
|
-
azeriteEssenceMedia: (azeriteEssenceId: number) => {
|
|
3144
|
-
path: string;
|
|
3145
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3146
|
-
parameters?: Record<string, never> | undefined;
|
|
3147
|
-
_responseType?: AzeriteEssenceMediaResponse | undefined;
|
|
3148
|
-
};
|
|
3149
|
-
azeriteEssenceSearch: (options: AzeriteEssenceSearchParameters) => {
|
|
3150
|
-
path: string;
|
|
3151
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3152
|
-
parameters?: AzeriteEssenceSearchParameters | undefined;
|
|
3153
|
-
_responseType?: _blizzard_api_core.SearchResponse<AzeriteEssenceSearchResponseItem> | undefined;
|
|
3154
|
-
};
|
|
3155
|
-
auctions: (connectedRealmId: number) => {
|
|
3156
|
-
path: string;
|
|
3157
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3158
|
-
parameters?: Record<string, never> | undefined;
|
|
3159
|
-
_responseType?: AuctionHouseResponse | undefined;
|
|
3160
|
-
};
|
|
3161
|
-
commodities: () => {
|
|
3162
|
-
path: string;
|
|
3163
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3164
|
-
parameters?: Record<string, never> | undefined;
|
|
3165
|
-
_responseType?: AuctionHouseCommoditiesResponse | undefined;
|
|
3166
|
-
};
|
|
3167
|
-
achievementCategory: (achievementCategoryId: number) => {
|
|
3168
|
-
path: string;
|
|
3169
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3170
|
-
parameters?: Record<string, never> | undefined;
|
|
3171
|
-
_responseType?: AchievementCategoryResponse | undefined;
|
|
3172
|
-
};
|
|
3173
|
-
achievementCategoryIndex: () => {
|
|
3174
|
-
path: string;
|
|
3175
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3176
|
-
parameters?: Record<string, never> | undefined;
|
|
3177
|
-
_responseType?: AchievementCategoryIndexResponse | undefined;
|
|
3178
|
-
};
|
|
3179
|
-
achievement: (achievementId: number) => {
|
|
3180
|
-
path: string;
|
|
3181
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3182
|
-
parameters?: Record<string, never> | undefined;
|
|
3183
|
-
_responseType?: AchievementResponse | undefined;
|
|
3184
|
-
};
|
|
3185
|
-
achievementIndex: () => {
|
|
3186
|
-
path: string;
|
|
3187
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3188
|
-
parameters?: Record<string, never> | undefined;
|
|
3189
|
-
_responseType?: AchievementIndexResponse | undefined;
|
|
3190
|
-
};
|
|
3191
|
-
achievementMedia: (achievementId: number) => {
|
|
3192
|
-
path: string;
|
|
3193
|
-
namespace?: _blizzard_api_core.BlizzardNamespaces | undefined;
|
|
3194
|
-
parameters?: Record<string, never> | undefined;
|
|
3195
|
-
_responseType?: AchievementMediaResponse | undefined;
|
|
3196
|
-
};
|
|
3185
|
+
achievement: typeof achievement;
|
|
3186
|
+
achievementCategory: typeof achievementCategory;
|
|
3187
|
+
achievementCategoryIndex: typeof achievementCategoryIndex;
|
|
3188
|
+
achievementIndex: typeof achievementIndex;
|
|
3189
|
+
achievementMedia: typeof achievementMedia;
|
|
3190
|
+
auctions: typeof auctions;
|
|
3191
|
+
commodities: typeof commodities;
|
|
3192
|
+
azeriteEssence: typeof azeriteEssence;
|
|
3193
|
+
azeriteEssenceIndex: typeof azeriteEssenceIndex;
|
|
3194
|
+
azeriteEssenceMedia: typeof azeriteEssenceMedia;
|
|
3195
|
+
azeriteEssenceSearch: typeof azeriteEssenceSearch;
|
|
3196
|
+
connectedRealm: typeof connectedRealm;
|
|
3197
|
+
connectedRealmIndex: typeof connectedRealmIndex;
|
|
3198
|
+
connectedRealmSearch: typeof connectedRealmSearch;
|
|
3199
|
+
conduit: typeof conduit;
|
|
3200
|
+
conduitIndex: typeof conduitIndex;
|
|
3201
|
+
covenant: typeof covenant;
|
|
3202
|
+
covenantIndex: typeof covenantIndex;
|
|
3203
|
+
covenantMedia: typeof covenantMedia;
|
|
3204
|
+
soulbind: typeof soulbind;
|
|
3205
|
+
soulbindIndex: typeof soulbindIndex;
|
|
3206
|
+
creature: typeof creature;
|
|
3207
|
+
creatureDisplayMedia: typeof creatureDisplayMedia;
|
|
3208
|
+
creatureFamily: typeof creatureFamily;
|
|
3209
|
+
creatureFamilyIndex: typeof creatureFamilyIndex;
|
|
3210
|
+
creatureFamilyMedia: typeof creatureFamilyMedia;
|
|
3211
|
+
creatureType: typeof creatureType;
|
|
3212
|
+
creatureTypeIndex: typeof creatureTypeIndex;
|
|
3213
|
+
creatureSearch: typeof creatureSearch;
|
|
3214
|
+
guildCrestComponentsIndex: typeof guildCrestComponentsIndex;
|
|
3215
|
+
guildCrestBorder: typeof guildCrestBorder;
|
|
3216
|
+
guildCrestEmblem: typeof guildCrestEmblem;
|
|
3217
|
+
heirloom: typeof heirloom;
|
|
3218
|
+
heirloomIndex: typeof heirloomIndex;
|
|
3219
|
+
item: typeof item;
|
|
3220
|
+
itemClass: typeof itemClass;
|
|
3221
|
+
itemSubClass: typeof itemSubClass;
|
|
3222
|
+
itemClassIndex: typeof itemClassIndex;
|
|
3223
|
+
itemMedia: typeof itemMedia;
|
|
3224
|
+
itemSet: typeof itemSet;
|
|
3225
|
+
itemSetIndex: typeof itemSetIndex;
|
|
3226
|
+
itemSearch: typeof itemSearch;
|
|
3227
|
+
journalEncounter: typeof journalEncounter;
|
|
3228
|
+
journalEncounterIndex: typeof journalEncounterIndex;
|
|
3229
|
+
journalEncounterSearch: typeof journalEncounterSearch;
|
|
3230
|
+
journalExpansion: typeof journalExpansion;
|
|
3231
|
+
journalExpansionIndex: typeof journalExpansionIndex;
|
|
3232
|
+
journalInstance: typeof journalInstance;
|
|
3233
|
+
journalInstanceIndex: typeof journalInstanceIndex;
|
|
3234
|
+
journalInstanceMedia: typeof journalInstanceMedia;
|
|
3235
|
+
mediaSearch: typeof mediaSearch;
|
|
3236
|
+
modifiedCraftingCategory: typeof modifiedCraftingCategory;
|
|
3237
|
+
modifiedCraftingCategoryIndex: typeof modifiedCraftingCategoryIndex;
|
|
3238
|
+
modifiedCraftingIndex: typeof modifiedCraftingIndex;
|
|
3239
|
+
modifiedCraftingReagentSlotType: typeof modifiedCraftingReagentSlotType;
|
|
3240
|
+
modifiedCraftingReagentSlotTypeIndex: typeof modifiedCraftingReagentSlotTypeIndex;
|
|
3241
|
+
mount: typeof mount;
|
|
3242
|
+
mountIndex: typeof mountIndex;
|
|
3243
|
+
mountSearch: typeof mountSearch;
|
|
3244
|
+
mythicKeystoneAffix: typeof mythicKeystoneAffix;
|
|
3245
|
+
mythicKeystoneAffixIndex: typeof mythicKeystoneAffixIndex;
|
|
3246
|
+
mythicKeystoneAffixMedia: typeof mythicKeystoneAffixMedia;
|
|
3247
|
+
mythicKeystoneDungeon: typeof mythicKeystoneDungeon;
|
|
3248
|
+
mythicKeystoneDungeonIndex: typeof mythicKeystoneDungeonIndex;
|
|
3249
|
+
mythicKeystoneIndex: typeof mythicKeystoneIndex;
|
|
3250
|
+
mythicKeystonePeriod: typeof mythicKeystonePeriod;
|
|
3251
|
+
mythicKeystonePeriodIndex: typeof mythicKeystonePeriodIndex;
|
|
3252
|
+
mythicKeystoneSeason: typeof mythicKeystoneSeason;
|
|
3253
|
+
mythicKeystoneSeasonIndex: typeof mythicKeystoneSeasonIndex;
|
|
3254
|
+
mythicKeystoneLeaderboard: typeof mythicKeystoneLeaderboard;
|
|
3255
|
+
mythicKeystoneLeaderboardIndex: typeof mythicKeystoneLeaderboardIndex;
|
|
3256
|
+
mythicRaidLeaderboard: typeof mythicRaidLeaderboard;
|
|
3257
|
+
pet: typeof pet;
|
|
3258
|
+
petIndex: typeof petIndex;
|
|
3259
|
+
petMedia: typeof petMedia;
|
|
3260
|
+
petAbility: typeof petAbility;
|
|
3261
|
+
petAbilityIndex: typeof petAbilityIndex;
|
|
3262
|
+
petAbilityMedia: typeof petAbilityMedia;
|
|
3263
|
+
playableClass: typeof playableClass;
|
|
3264
|
+
playableClassIndex: typeof playableClassIndex;
|
|
3265
|
+
playableClassMedia: typeof playableClassMedia;
|
|
3266
|
+
pvpTalentSlots: typeof pvpTalentSlots;
|
|
3267
|
+
playableRace: typeof playableRace;
|
|
3268
|
+
playableRaceIndex: typeof playableRaceIndex;
|
|
3269
|
+
playableSpecialization: typeof playableSpecialization;
|
|
3270
|
+
playableSpecializationIndex: typeof playableSpecializationIndex;
|
|
3271
|
+
playableSpecializationMedia: typeof playableSpecializationMedia;
|
|
3272
|
+
powerType: typeof powerType;
|
|
3273
|
+
powerTypeIndex: typeof powerTypeIndex;
|
|
3274
|
+
profession: typeof profession;
|
|
3275
|
+
professionIndex: typeof professionIndex;
|
|
3276
|
+
professionMedia: typeof professionMedia;
|
|
3277
|
+
professionSkillTier: typeof professionSkillTier;
|
|
3278
|
+
recipe: typeof recipe;
|
|
3279
|
+
recipeMedia: typeof recipeMedia;
|
|
3280
|
+
pvpLeaderboard: typeof pvpLeaderboard;
|
|
3281
|
+
pvpLeaderboardIndex: typeof pvpLeaderboardIndex;
|
|
3282
|
+
pvpRewardsIndex: typeof pvpRewardsIndex;
|
|
3283
|
+
pvpSeason: typeof pvpSeason;
|
|
3284
|
+
pvpSeasonIndex: typeof pvpSeasonIndex;
|
|
3285
|
+
pvpTier: typeof pvpTier;
|
|
3286
|
+
pvpTierIndex: typeof pvpTierIndex;
|
|
3287
|
+
pvpTierMedia: typeof pvpTierMedia;
|
|
3288
|
+
quest: typeof quest;
|
|
3289
|
+
questIndex: typeof questIndex;
|
|
3290
|
+
questArea: typeof questArea;
|
|
3291
|
+
questAreaIndex: typeof questAreaIndex;
|
|
3292
|
+
questCategory: typeof questCategory;
|
|
3293
|
+
questCategoryIndex: typeof questCategoryIndex;
|
|
3294
|
+
questType: typeof questType;
|
|
3295
|
+
questTypeIndex: typeof questTypeIndex;
|
|
3296
|
+
realm: typeof realm;
|
|
3297
|
+
realmIndex: typeof realmIndex;
|
|
3298
|
+
realmSearch: typeof realmSearch;
|
|
3299
|
+
region: typeof region;
|
|
3300
|
+
regionIndex: typeof regionIndex;
|
|
3301
|
+
reputationFaction: typeof reputationFaction;
|
|
3302
|
+
reputationFactionIndex: typeof reputationFactionIndex;
|
|
3303
|
+
reputationTiers: typeof reputationTiers;
|
|
3304
|
+
reputationTiersIndex: typeof reputationTiersIndex;
|
|
3305
|
+
spell: typeof spell;
|
|
3306
|
+
spellMedia: typeof spellMedia;
|
|
3307
|
+
spellSearch: typeof spellSearch;
|
|
3308
|
+
pvpTalent: typeof pvpTalent;
|
|
3309
|
+
pvpTalentIndex: typeof pvpTalentIndex;
|
|
3310
|
+
talentIndex: typeof talentIndex;
|
|
3311
|
+
talentTree: typeof talentTree;
|
|
3312
|
+
talentTreeIndex: typeof talentTreeIndex;
|
|
3313
|
+
talentTreeNodes: typeof talentTreeNodes;
|
|
3314
|
+
techTalent: typeof techTalent;
|
|
3315
|
+
techTalentIndex: typeof techTalentIndex;
|
|
3316
|
+
techTalentMedia: typeof techTalentMedia;
|
|
3317
|
+
techTalentTree: typeof techTalentTree;
|
|
3318
|
+
techTalentTreeIndex: typeof techTalentTreeIndex;
|
|
3319
|
+
title: typeof title;
|
|
3320
|
+
titleIndex: typeof titleIndex;
|
|
3321
|
+
toy: typeof toy;
|
|
3322
|
+
toyIndex: typeof toyIndex;
|
|
3323
|
+
wowToken: typeof wowToken;
|
|
3197
3324
|
};
|
|
3198
3325
|
|
|
3199
|
-
export { type AchievementCategoryIndexResponse, type AchievementCategoryResponse, type AchievementIndexResponse, type AchievementMediaResponse, type AchievementResponse, type AuctionHouseCommoditiesResponse, type AuctionHouseResponse, type AzeriteEssenceIndexResponse, type AzeriteEssenceMediaResponse, type AzeriteEssenceResponse, type AzeriteEssenceSearchParameters, type AzeriteEssenceSearchResponseItem, type ConduitIndexResponse, type ConduitResponse, type ConnectedRealmIndexResponse, type ConnectedRealmResponse, type ConnectedRealmSearchParameters, type ConnectedRealmSearchResponseItem, type CovenantIndexResponse, type CovenantMediaResponse, type CovenantResponse, type CreatureDisplayMediaResponse, type CreatureFamilyIndexResponse, type CreatureFamilyMediaResponse, type CreatureFamilyResponse, type CreatureResponse, type CreatureSearchParameters, type CreatureSearchResponseItem, type CreatureTypeIndexResponse, type CreatureTypeResponse, type GuildCrestBorderEmblemResponse, type GuildCrestComponentsIndexResponse, type HeirloomIndexResponse, type HeirloomResponse, type ItemClassIndexResponse, type ItemClassResponse, type ItemMediaResponse, type ItemResponse, type ItemSearchParameters, type ItemSearchResponseItem, type ItemSetIndexResponse, type ItemSetResponse, type ItemSubClassResponse, type JournalEncounterIndexResponse, type JournalEncounterResponse, type JournalEncounterSearchParameters, type JournalEncounterSearchResponseItem, type JournalExpansionIndexResponse, type JournalExpansionResponse, type JournalInstanceIndexResponse, type JournalInstanceMediaResponse, type JournalInstanceResponse, type MediaSearchParameters, type MediaSearchResponseItem, type ModifiedCraftingCategoryIndexResponse, type ModifiedCraftingCategoryResponse, type ModifiedCraftingIndexResponse, type ModifiedCraftingReagentSlotTypeIndexResponse, type ModifiedCraftingReagentSlotTypeResponse, type MountIndexResponse, type MountResponse, type MountSearchParameters, type MountSearchResponseItem, type MythicKeystoneAffixIndexResponse, type MythicKeystoneAffixMediaResponse, type MythicKeystoneAffixResponse, type MythicKeystoneDungeonIndexResponse, type MythicKeystoneDungeonResponse, type MythicKeystoneIndexResponse, type MythicKeystoneLeaderboardIndexResponse, type MythicKeystoneLeaderboardResponse, type MythicKeystonePeriodIndexResponse, type MythicKeystonePeriodResponse, type MythicKeystoneSeasonIndexResponse, type MythicKeystoneSeasonResponse, type MythicRaidLeaderboardResponse, type PetAbilityIndexResponse, type PetAbilityMediaResponse, type PetAbilityResponse, type PetIndexResponse, type PetMediaResponse, type PetResponse, type PlayableClassIndexResponse, type PlayableClassMediaResponse, type PlayableClassResponse, type PlayableRaceIndexResponse, type PlayableRaceResponse, type PlayableSpecializationIndexResponse, type PlayableSpecializationMediaResponse, type PlayableSpecializationResponse, type PowerTypeIndexResponse, type PowerTypeResponse, type ProfessionIndexResponse, type ProfessionMediaResponse, type ProfessionResponse, type ProfessionSkillTierResponse, type PvpLeaderboardIndexResponse, type PvpLeaderboardResponse, type PvpRewardsIndexResponse, type PvpSeasonIndexResponse, type PvpSeasonResponse, type PvpTalentIndexResponse, type PvpTalentResponse, type PvpTalentSlotsResponse, type PvpTierIndexResponse, type PvpTierMediaResponse, type PvpTierResponse, type QuestAreaIndexResponse, type QuestAreaResponse, type QuestCategoryIndexResponse, type QuestCategoryResponse, type QuestIndexResponse, type QuestResponse, type QuestTypeIndexResponse, type QuestTypeResponse, type RealmCategory, type RealmIndexResponse, type RealmResponse, type RealmSearchParameters, type RealmSearchResponseItem, type RealmTimezone, type RealmType, type RealmTypeCapitalized, type RecipeMediaResponse, type RecipeResponse, type RegionIndexResponse, type RegionResponse, type ReputationFactionIndexResponse, type ReputationFactionResponse, type ReputationTiersIndexResponse, type ReputationTiersResponse, type SoulbindIndexResponse, type SoulbindResponse, type SpellMediaResponse, type SpellResponse, type SpellSearchParameters, type SpellSearchResponseItem, type TalentIndexResponse, type TalentResponse, type TalentTreeIndexResponse, type TalentTreeNodesResponse, type TalentTreeResponse, type TechTalentIndexResponse, type TechTalentMediaResponse, type TechTalentResponse, type TechTalentTreeIndexResponse, type TechTalentTreeResponse, type TitleIndexResponse, type TitleResponse, type ToyIndexResponse, type ToyResponse, type WithoutUnderscore, type WowTokenResponse, wow };
|
|
3326
|
+
export { type AchievementCategoryIndexResponse, type AchievementCategoryResponse, type AchievementIndexResponse, type AchievementMediaResponse, type AchievementResponse, type AuctionHouseCommoditiesResponse, type AuctionHouseResponse, type AzeriteEssenceIndexResponse, type AzeriteEssenceMediaResponse, type AzeriteEssenceResponse, type AzeriteEssenceSearchParameters, type AzeriteEssenceSearchResponseItem, type ConduitIndexResponse, type ConduitResponse, type ConnectedRealmIndexResponse, type ConnectedRealmResponse, type ConnectedRealmSearchParameters, type ConnectedRealmSearchResponseItem, type CovenantIndexResponse, type CovenantMediaResponse, type CovenantResponse, type CreatureDisplayMediaResponse, type CreatureFamilyIndexResponse, type CreatureFamilyMediaResponse, type CreatureFamilyResponse, type CreatureResponse, type CreatureSearchParameters, type CreatureSearchResponseItem, type CreatureTypeIndexResponse, type CreatureTypeResponse, type GuildCrestBorderEmblemResponse, type GuildCrestComponentsIndexResponse, type HeirloomIndexResponse, type HeirloomResponse, type ItemClassIndexResponse, type ItemClassResponse, type ItemMediaResponse, type ItemResponse, type ItemSearchParameters, type ItemSearchResponseItem, type ItemSetIndexResponse, type ItemSetResponse, type ItemSubClassResponse, type JournalEncounterIndexResponse, type JournalEncounterResponse, type JournalEncounterSearchParameters, type JournalEncounterSearchResponseItem, type JournalExpansionIndexResponse, type JournalExpansionResponse, type JournalInstanceIndexResponse, type JournalInstanceMediaResponse, type JournalInstanceResponse, type MediaSearchParameters, type MediaSearchResponseItem, type ModifiedCraftingCategoryIndexResponse, type ModifiedCraftingCategoryResponse, type ModifiedCraftingIndexResponse, type ModifiedCraftingReagentSlotTypeIndexResponse, type ModifiedCraftingReagentSlotTypeResponse, type MountIndexResponse, type MountResponse, type MountSearchParameters, type MountSearchResponseItem, type MythicKeystoneAffixIndexResponse, type MythicKeystoneAffixMediaResponse, type MythicKeystoneAffixResponse, type MythicKeystoneDungeonIndexResponse, type MythicKeystoneDungeonResponse, type MythicKeystoneIndexResponse, type MythicKeystoneLeaderboardIndexResponse, type MythicKeystoneLeaderboardResponse, type MythicKeystonePeriodIndexResponse, type MythicKeystonePeriodResponse, type MythicKeystoneSeasonIndexResponse, type MythicKeystoneSeasonResponse, type MythicRaidLeaderboardResponse, type PetAbilityIndexResponse, type PetAbilityMediaResponse, type PetAbilityResponse, type PetIndexResponse, type PetMediaResponse, type PetResponse, type PlayableClassIndexResponse, type PlayableClassMediaResponse, type PlayableClassResponse, type PlayableRaceIndexResponse, type PlayableRaceResponse, type PlayableSpecializationIndexResponse, type PlayableSpecializationMediaResponse, type PlayableSpecializationResponse, type PowerTypeIndexResponse, type PowerTypeResponse, type ProfessionIndexResponse, type ProfessionMediaResponse, type ProfessionResponse, type ProfessionSkillTierResponse, type PvpLeaderboardIndexResponse, type PvpLeaderboardResponse, type PvpRewardsIndexResponse, type PvpSeasonIndexResponse, type PvpSeasonResponse, type PvpTalentIndexResponse, type PvpTalentResponse, type PvpTalentSlotsResponse, type PvpTierIndexResponse, type PvpTierMediaResponse, type PvpTierResponse, type QuestAreaIndexResponse, type QuestAreaResponse, type QuestCategoryIndexResponse, type QuestCategoryResponse, type QuestIndexResponse, type QuestResponse, type QuestTypeIndexResponse, type QuestTypeResponse, type RealmCategory, type RealmIndexResponse, type RealmResponse, type RealmSearchParameters, type RealmSearchResponseItem, type RealmTimezone, type RealmType, type RealmTypeCapitalized, type RecipeMediaResponse, type RecipeResponse, type RegionIndexResponse, type RegionResponse, type ReputationFactionIndexResponse, type ReputationFactionResponse, type ReputationTiersIndexResponse, type ReputationTiersResponse, type SoulbindIndexResponse, type SoulbindResponse, type SpellMediaResponse, type SpellResponse, type SpellSearchParameters, type SpellSearchResponseItem, type TalentIndexResponse, type TalentResponse, type TalentTreeIndexResponse, type TalentTreeNodesResponse, type TalentTreeResponse, type TechTalentIndexResponse, type TechTalentMediaResponse, type TechTalentResponse, type TechTalentTreeIndexResponse, type TechTalentTreeResponse, type TitleIndexResponse, type TitleResponse, type ToyIndexResponse, type ToyResponse, type WithoutUnderscore, type WowTokenResponse, achievement, achievementCategory, achievementCategoryIndex, achievementIndex, achievementMedia, auctions, azeriteEssence, azeriteEssenceIndex, azeriteEssenceMedia, azeriteEssenceSearch, commodities, conduit, conduitIndex, connectedRealm, connectedRealmIndex, connectedRealmSearch, covenant, covenantIndex, covenantMedia, creature, creatureDisplayMedia, creatureFamily, creatureFamilyIndex, creatureFamilyMedia, creatureSearch, creatureType, creatureTypeIndex, guildCrestBorder, guildCrestComponentsIndex, guildCrestEmblem, heirloom, heirloomIndex, item, itemClass, itemClassIndex, itemMedia, itemSearch, itemSet, itemSetIndex, itemSubClass, journalEncounter, journalEncounterIndex, journalEncounterSearch, journalExpansion, journalExpansionIndex, journalInstance, journalInstanceIndex, journalInstanceMedia, mediaSearch, modifiedCraftingCategory, modifiedCraftingCategoryIndex, modifiedCraftingIndex, modifiedCraftingReagentSlotType, modifiedCraftingReagentSlotTypeIndex, mount, mountIndex, mountSearch, mythicKeystoneAffix, mythicKeystoneAffixIndex, mythicKeystoneAffixMedia, mythicKeystoneDungeon, mythicKeystoneDungeonIndex, mythicKeystoneIndex, mythicKeystoneLeaderboard, mythicKeystoneLeaderboardIndex, mythicKeystonePeriod, mythicKeystonePeriodIndex, mythicKeystoneSeason, mythicKeystoneSeasonIndex, mythicRaidLeaderboard, pet, petAbility, petAbilityIndex, petAbilityMedia, petIndex, petMedia, playableClass, playableClassIndex, playableClassMedia, playableRace, playableRaceIndex, playableSpecialization, playableSpecializationIndex, playableSpecializationMedia, powerType, powerTypeIndex, profession, professionIndex, professionMedia, professionSkillTier, pvpLeaderboard, pvpLeaderboardIndex, pvpRewardsIndex, pvpSeason, pvpSeasonIndex, pvpTalent, pvpTalentIndex, pvpTalentSlots, pvpTier, pvpTierIndex, pvpTierMedia, quest, questArea, questAreaIndex, questCategory, questCategoryIndex, questIndex, questType, questTypeIndex, realm, realmIndex, realmSearch, recipe, recipeMedia, region, regionIndex, reputationFaction, reputationFactionIndex, reputationTiers, reputationTiersIndex, soulbind, soulbindIndex, spell, spellMedia, spellSearch, talent, talentIndex, talentTree, talentTreeIndex, talentTreeNodes, techTalent, techTalentIndex, techTalentMedia, techTalentTree, techTalentTreeIndex, title, titleIndex, toy, toyIndex, wow, wowToken };
|