@blizzard-api/wow 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +97 -63
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +551 -224
- package/dist/index.d.ts +551 -224
- package/dist/index.js +97 -63
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -27,6 +27,7 @@ module.exports = __toCommonJS(src_exports);
|
|
|
27
27
|
// src/base.ts
|
|
28
28
|
var base = "/data/wow";
|
|
29
29
|
var mediaBase = `${base}/media`;
|
|
30
|
+
var searchBase = `${base}/search`;
|
|
30
31
|
|
|
31
32
|
// src/achievements/achievements.ts
|
|
32
33
|
var achievementBase = `${base}/achievement`;
|
|
@@ -93,16 +94,18 @@ var azeriteEssenceApi = {
|
|
|
93
94
|
},
|
|
94
95
|
azeriteEssenceMedia: (azeriteEssenceId) => {
|
|
95
96
|
return { path: `${mediaBase}/azerite-essence/${azeriteEssenceId}`, namespace: "static" };
|
|
97
|
+
},
|
|
98
|
+
azeriteEssenceSearch: (options) => {
|
|
99
|
+
return {
|
|
100
|
+
path: `${searchBase}/azerite-essence`,
|
|
101
|
+
namespace: "static",
|
|
102
|
+
parameters: {
|
|
103
|
+
_page: options._page,
|
|
104
|
+
"allowed_specializations.id": options["allowed_specializations.id"],
|
|
105
|
+
orderby: Array.isArray(options.orderby) ? options.orderby.join(",") : options.orderby
|
|
106
|
+
}
|
|
107
|
+
};
|
|
96
108
|
}
|
|
97
|
-
// TODO Improve search endpoints
|
|
98
|
-
/**
|
|
99
|
-
* azeriteEssenceSearch: (): Resource<void> => {
|
|
100
|
-
* return {
|
|
101
|
-
* path: `${base}/search/connected-realm`,
|
|
102
|
-
* namespace: 'dynamic',
|
|
103
|
-
* };
|
|
104
|
-
* },
|
|
105
|
-
*/
|
|
106
109
|
};
|
|
107
110
|
|
|
108
111
|
// src/connected-realm/connected-realm.ts
|
|
@@ -118,16 +121,19 @@ var connectedRealmApi = {
|
|
|
118
121
|
path: `${base}/connected-realm/${connectedRealmId}`,
|
|
119
122
|
namespace: "dynamic"
|
|
120
123
|
};
|
|
124
|
+
},
|
|
125
|
+
connectedRealmSearch: (options) => {
|
|
126
|
+
return {
|
|
127
|
+
namespace: "dynamic",
|
|
128
|
+
parameters: {
|
|
129
|
+
_page: options._page,
|
|
130
|
+
orderby: Array.isArray(options.orderby) ? options.orderby.join(",") : options.orderby,
|
|
131
|
+
"status.type": options["status.type"],
|
|
132
|
+
"realms.timezone": options["realms.timezone"]
|
|
133
|
+
},
|
|
134
|
+
path: `${base}/search/connected-realm`
|
|
135
|
+
};
|
|
121
136
|
}
|
|
122
|
-
// TODO Improve search endpoints
|
|
123
|
-
/**
|
|
124
|
-
* connectedRealmSearch: (): Resource<void> => {
|
|
125
|
-
* return {
|
|
126
|
-
* path: `${base}/search/connected-realm`,
|
|
127
|
-
* namespace: 'dynamic',
|
|
128
|
-
* };
|
|
129
|
-
* },
|
|
130
|
-
*/
|
|
131
137
|
};
|
|
132
138
|
|
|
133
139
|
// src/covenant/covenant.ts
|
|
@@ -219,15 +225,18 @@ var creatureApi = {
|
|
|
219
225
|
path: `${base}/creature-type/index`,
|
|
220
226
|
namespace: "static"
|
|
221
227
|
};
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
/*
|
|
225
|
-
creatureSearch: () => {
|
|
228
|
+
},
|
|
229
|
+
creatureSearch: (options) => {
|
|
226
230
|
return {
|
|
227
|
-
|
|
228
|
-
|
|
231
|
+
namespace: "static",
|
|
232
|
+
parameters: {
|
|
233
|
+
_page: options._page,
|
|
234
|
+
orderby: Array.isArray(options.orderby) ? options.orderby.join(",") : options.orderby,
|
|
235
|
+
[`name.${options.locale}`]: options.name
|
|
236
|
+
},
|
|
237
|
+
path: `${searchBase}/creature`
|
|
229
238
|
};
|
|
230
|
-
}
|
|
239
|
+
}
|
|
231
240
|
};
|
|
232
241
|
|
|
233
242
|
// src/guild-crest/guild-crest.ts
|
|
@@ -311,14 +320,18 @@ var itemApi = {
|
|
|
311
320
|
path: `${base}/item-set/index`,
|
|
312
321
|
namespace: "static"
|
|
313
322
|
};
|
|
323
|
+
},
|
|
324
|
+
itemSearch: (options) => {
|
|
325
|
+
return {
|
|
326
|
+
namespace: "static",
|
|
327
|
+
parameters: {
|
|
328
|
+
_page: options._page,
|
|
329
|
+
orderby: Array.isArray(options.orderby) ? options.orderby.join(",") : options.orderby,
|
|
330
|
+
[`name.${options.locale}`]: options.name
|
|
331
|
+
},
|
|
332
|
+
path: `${searchBase}/item`
|
|
333
|
+
};
|
|
314
334
|
}
|
|
315
|
-
// TODO Improve search endpoints
|
|
316
|
-
//itemSearch: (): Resource<void> => {
|
|
317
|
-
// return {
|
|
318
|
-
// path: `${base}/search/item`,
|
|
319
|
-
// namespace: 'static',
|
|
320
|
-
// };
|
|
321
|
-
//},
|
|
322
335
|
};
|
|
323
336
|
|
|
324
337
|
// src/journal/journal.ts
|
|
@@ -335,13 +348,17 @@ var journalApi = {
|
|
|
335
348
|
namespace: "static"
|
|
336
349
|
};
|
|
337
350
|
},
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
351
|
+
journalEncounterSearch: (options) => {
|
|
352
|
+
return {
|
|
353
|
+
namespace: "static",
|
|
354
|
+
parameters: {
|
|
355
|
+
_page: options._page,
|
|
356
|
+
orderby: Array.isArray(options.orderby) ? options.orderby.join(",") : options.orderby,
|
|
357
|
+
[`instance.name.${options.locale}`]: options.instanceName
|
|
358
|
+
},
|
|
359
|
+
path: `${searchBase}/journal-encounter`
|
|
360
|
+
};
|
|
361
|
+
},
|
|
345
362
|
journalExpansion: (journalExpansionId) => {
|
|
346
363
|
return {
|
|
347
364
|
path: `${base}/journal-expansion/${journalExpansionId}`,
|
|
@@ -376,10 +393,15 @@ var journalApi = {
|
|
|
376
393
|
|
|
377
394
|
// src/media-search/media-search.ts
|
|
378
395
|
var mediaSearchApi = {
|
|
379
|
-
mediaSearch: () => {
|
|
396
|
+
mediaSearch: (options) => {
|
|
380
397
|
return {
|
|
381
|
-
|
|
382
|
-
|
|
398
|
+
namespace: "static",
|
|
399
|
+
parameters: {
|
|
400
|
+
_page: options._page,
|
|
401
|
+
orderby: Array.isArray(options.orderby) ? options.orderby.join(",") : options.orderby,
|
|
402
|
+
tags: options.tags
|
|
403
|
+
},
|
|
404
|
+
path: `${searchBase}/media`
|
|
383
405
|
};
|
|
384
406
|
}
|
|
385
407
|
};
|
|
@@ -431,14 +453,18 @@ var mountApi = {
|
|
|
431
453
|
path: `${base}/mount/index`,
|
|
432
454
|
namespace: "static"
|
|
433
455
|
};
|
|
456
|
+
},
|
|
457
|
+
mountSearch: (options) => {
|
|
458
|
+
return {
|
|
459
|
+
namespace: "static",
|
|
460
|
+
parameters: {
|
|
461
|
+
_page: options._page,
|
|
462
|
+
orderby: Array.isArray(options.orderby) ? options.orderby.join(",") : options.orderby,
|
|
463
|
+
[`name.${options.locale}`]: options.name
|
|
464
|
+
},
|
|
465
|
+
path: `${searchBase}/mount`
|
|
466
|
+
};
|
|
434
467
|
}
|
|
435
|
-
//TODO Improve search endpoints
|
|
436
|
-
//mountSearch: (): Resource<void> => {
|
|
437
|
-
// return {
|
|
438
|
-
// path: `${base}/mount/search`,
|
|
439
|
-
// namespace: 'static',
|
|
440
|
-
// };
|
|
441
|
-
//},
|
|
442
468
|
};
|
|
443
469
|
|
|
444
470
|
// src/mythic-keystone-affix/mythic-keystone-affix.ts
|
|
@@ -818,14 +844,18 @@ var realmApi = {
|
|
|
818
844
|
path: `${base}/realm/index`,
|
|
819
845
|
namespace: "dynamic"
|
|
820
846
|
};
|
|
847
|
+
},
|
|
848
|
+
realmSearch: (options) => {
|
|
849
|
+
return {
|
|
850
|
+
namespace: "dynamic",
|
|
851
|
+
parameters: {
|
|
852
|
+
_page: options._page,
|
|
853
|
+
orderby: Array.isArray(options.orderby) ? options.orderby.join(",") : options.orderby,
|
|
854
|
+
timezone: options.timezone
|
|
855
|
+
},
|
|
856
|
+
path: `${searchBase}/realm`
|
|
857
|
+
};
|
|
821
858
|
}
|
|
822
|
-
//TODO Improve search endpoints
|
|
823
|
-
//realmSearch: (): Resource<void> => {
|
|
824
|
-
// return {
|
|
825
|
-
// path: `${base}/realm/search`,
|
|
826
|
-
// namespace: 'dynamic',
|
|
827
|
-
// };
|
|
828
|
-
//},
|
|
829
859
|
};
|
|
830
860
|
|
|
831
861
|
// src/region/region.ts
|
|
@@ -885,14 +915,18 @@ var spellApi = {
|
|
|
885
915
|
path: `${mediaBase}/spell/${spellId}`,
|
|
886
916
|
namespace: "static"
|
|
887
917
|
};
|
|
918
|
+
},
|
|
919
|
+
spellSearch: (options) => {
|
|
920
|
+
return {
|
|
921
|
+
namespace: "static",
|
|
922
|
+
parameters: {
|
|
923
|
+
_page: options._page,
|
|
924
|
+
orderby: Array.isArray(options.orderby) ? options.orderby.join(",") : options.orderby,
|
|
925
|
+
[`name.${options.locale}`]: options.name
|
|
926
|
+
},
|
|
927
|
+
path: `${searchBase}/spell`
|
|
928
|
+
};
|
|
888
929
|
}
|
|
889
|
-
//TODO Improve search endpoints
|
|
890
|
-
//spellSearch: (): Resource<void> => {
|
|
891
|
-
// return {
|
|
892
|
-
// path: `${base}/spell/search`,
|
|
893
|
-
// namespace: 'static',
|
|
894
|
-
// };
|
|
895
|
-
//},
|
|
896
930
|
};
|
|
897
931
|
|
|
898
932
|
// src/talent/talent.ts
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts","../src/base.ts","../src/achievements/achievements.ts","../src/auction-house/auction-house.ts","../src/azerite-essence/azerite-essence.ts","../src/connected-realm/connected-realm.ts","../src/covenant/covenant.ts","../src/creature/creature.ts","../src/guild-crest/guild-crest.ts","../src/heirloom/heirloom.ts","../src/item/item.ts","../src/journal/journal.ts","../src/media-search/media-search.ts","../src/modified-crafting/modified-crafting.ts","../src/mount/mount.ts","../src/mythic-keystone-affix/mythic-keystone-affix.ts","../src/mythic-keystone-dungeon/mythic-keystone-dungeon.ts","../src/mythic-keystone-leaderboard/mythic-keystone-leaderboard.ts","../src/mythic-raid-leaderboard/mythic-raid-leaderboard.ts","../src/pet/pet.ts","../src/playable-class/playable-class.ts","../src/playable-race/playable-race.ts","../src/playable-specialization/playable-specialization.ts","../src/power-type/power-type.ts","../src/profession/profession.ts","../src/pvp-season/pvp-season.ts","../src/pvp-tier/pvp-tier.ts","../src/quest/quest.ts","../src/realm/realm.ts","../src/region/region.ts","../src/reputations/reputations.ts","../src/spell/spell.ts","../src/talent/talent.ts","../src/tech-talent/tech-talent.ts","../src/title/title.ts","../src/toy/toy.ts","../src/wow-token/wow-token.ts"],"sourcesContent":["import { achievementApi } from './achievements/achievements';\r\nimport { auctionHouseApi } from './auction-house/auction-house';\r\nimport { azeriteEssenceApi } from './azerite-essence/azerite-essence';\r\nimport { connectedRealmApi } from './connected-realm/connected-realm';\r\nimport { covenantApi } from './covenant/covenant';\r\nimport { creatureApi } from './creature/creature';\r\nimport { guildCrestApi } from './guild-crest/guild-crest';\r\nimport { heirloomApi } from './heirloom/heirloom';\r\nimport { itemApi } from './item/item';\r\nimport { journalApi } from './journal/journal';\r\nimport { mediaSearchApi } from './media-search/media-search';\r\nimport { modifiedCraftingApi } from './modified-crafting/modified-crafting';\r\nimport { mountApi } from './mount/mount';\r\nimport { mythicKeystoneAffixApi } from './mythic-keystone-affix/mythic-keystone-affix';\r\nimport { mythicKeystoneDungeonApi } from './mythic-keystone-dungeon/mythic-keystone-dungeon';\r\nimport { mythicKeystoneLeaderboardApi } from './mythic-keystone-leaderboard/mythic-keystone-leaderboard';\r\nimport { mythicRaidLeaderboardApi } from './mythic-raid-leaderboard/mythic-raid-leaderboard';\r\nimport { petApi } from './pet/pet';\r\nimport { playableClassApi } from './playable-class/playable-class';\r\nimport { playableRaceApi } from './playable-race/playable-race';\r\nimport { playableSpecializationApi } from './playable-specialization/playable-specialization';\r\nimport { powerTypeApi } from './power-type/power-type';\r\nimport { professionApi } from './profession/profession';\r\nimport { pvpSeasonApi } from './pvp-season/pvp-season';\r\nimport { pvpTierApi } from './pvp-tier/pvp-tier';\r\nimport { questApi } from './quest/quest';\r\nimport { realmApi } from './realm/realm';\r\nimport { regionApi } from './region/region';\r\nimport { reputationApi } from './reputations/reputations';\r\nimport { spellApi } from './spell/spell';\r\nimport { talentApi } from './talent/talent';\r\nimport { techTalentApi } from './tech-talent/tech-talent';\r\nimport { titleApi } from './title/title';\r\nimport { toyApi } from './toy/toy';\r\nimport { wowTokenApi } from './wow-token/wow-token';\r\n\r\nexport const wow = {\r\n ...achievementApi,\r\n ...auctionHouseApi,\r\n ...azeriteEssenceApi,\r\n ...connectedRealmApi,\r\n ...covenantApi,\r\n ...creatureApi,\r\n ...guildCrestApi,\r\n ...heirloomApi,\r\n ...itemApi,\r\n ...journalApi,\r\n ...mediaSearchApi,\r\n ...modifiedCraftingApi,\r\n ...mountApi,\r\n ...mythicKeystoneAffixApi,\r\n ...mythicKeystoneDungeonApi,\r\n ...mythicKeystoneLeaderboardApi,\r\n ...mythicRaidLeaderboardApi,\r\n ...petApi,\r\n ...playableClassApi,\r\n ...playableRaceApi,\r\n ...playableSpecializationApi,\r\n ...powerTypeApi,\r\n ...professionApi,\r\n ...pvpSeasonApi,\r\n ...pvpTierApi,\r\n ...questApi,\r\n ...realmApi,\r\n ...regionApi,\r\n ...reputationApi,\r\n ...spellApi,\r\n ...talentApi,\r\n ...techTalentApi,\r\n ...titleApi,\r\n ...toyApi,\r\n ...wowTokenApi,\r\n};\r\n\r\n//Achievements\r\nexport * from './achievements/types.js';\r\n//Auction House\r\nexport * from './auction-house/types.js';\r\n//Azerite Essence\r\nexport * from './azerite-essence/types.js';\r\n//Connected Realm\r\nexport * from './connected-realm/types.js';\r\n//Covenant\r\nexport * from './covenant/types.js';\r\n//Creature\r\nexport * from './creature/types.js';\r\n//Guild Crest\r\nexport * from './guild-crest/types.js';\r\n//Heirloom\r\nexport * from './heirloom/types.js';\r\n//Item\r\nexport * from './item/types.js';\r\n//Journal\r\nexport * from './journal/types.js';\r\n//Media Search\r\n//TODO\r\n//Modified Crafting\r\nexport * from './modified-crafting/types.js';\r\n//Mount\r\nexport * from './mount/types.js';\r\n//Mythic Keystone Affix\r\nexport * from './mythic-keystone-affix/types.js';\r\n//Mythic Keystone Dungeon\r\nexport * from './mythic-keystone-dungeon/types.js';\r\n//Mythic Keystone Leaderboard\r\nexport * from './mythic-keystone-leaderboard/types.js';\r\n//Mythic Raid Leaderboard\r\nexport * from './mythic-raid-leaderboard/types.js';\r\n//Pet\r\nexport * from './pet/types.js';\r\n//Playable Class\r\nexport * from './playable-class/types.js';\r\n//Playable Race\r\nexport * from './playable-race/types.js';\r\n//Playable Specialization\r\nexport * from './playable-specialization/types.js';\r\n//Power Type\r\nexport * from './power-type/types.js';\r\n//Profession\r\nexport * from './profession/types.js';\r\n//Pvp Season\r\nexport * from './pvp-season/types.js';\r\n//Pvp Tier\r\nexport * from './pvp-tier/types.js';\r\n//Quest\r\nexport * from './quest/types.js';\r\n//Realm\r\nexport * from './realm/types.js';\r\n//Region\r\nexport * from './region/types.js';\r\n//Reputations\r\nexport * from './reputations/types.js';\r\n//Spell\r\nexport * from './spell/types.js';\r\n//Talent\r\nexport * from './talent/types.js';\r\n//Tech Talent\r\nexport * from './tech-talent/types.js';\r\n//Title\r\nexport * from './title/types.js';\r\n//Toy\r\nexport * from './toy/types.js';\r\n//WoW Token\r\nexport * from './wow-token/types.js';\r\n","export const base = '/data/wow';\r\n\r\nexport const mediaBase = `${base}/media` as const;\r\n\r\nexport interface ResponseBase {\r\n _links: {\r\n self: {\r\n href: string;\r\n };\r\n };\r\n}\r\n\r\nexport interface KeyBase {\r\n key: {\r\n href: string;\r\n };\r\n}\r\n\r\nexport interface NameId {\r\n name: string;\r\n id: number;\r\n}\r\n\r\nexport interface NameIdKey extends KeyBase, NameId {}\r\nexport interface Color {\r\n r: number;\r\n g: number;\r\n b: number;\r\n a: number;\r\n}\r\n\r\nexport interface MediaAsset {\r\n key: string;\r\n value: string;\r\n file_data_id: number;\r\n}\r\n\r\nexport interface Gender {\r\n male: string;\r\n female: string;\r\n}\r\n\r\nexport const Factions = {\r\n ALLIANCE: 'ALLIANCE',\r\n HORDE: 'HORDE',\r\n} as const;\r\n\r\nexport interface Faction {\r\n type: keyof typeof Factions;\r\n name: Capitalize<Lowercase<keyof typeof Factions>>;\r\n}\r\n","import type { Resource } from '@blizzard-api/core';\r\nimport { base, mediaBase } from '../base';\r\nimport type {\r\n AchievementCategoryIndexResponse,\r\n AchievementCategoryResponse,\r\n AchievementIndexResponse,\r\n AchievementMediaResponse,\r\n AchievementResponse,\r\n} from './types';\r\n\r\nconst achievementBase = `${base}/achievement`;\r\nconst achievementCategoryBase = `${base}/achievement-category`;\r\n\r\nexport const achievementApi = {\r\n achievementCategory: (achievementCategoryId: number): Resource<AchievementCategoryResponse> => {\r\n return {\r\n path: `${achievementCategoryBase}/${achievementCategoryId}`,\r\n namespace: 'static',\r\n };\r\n },\r\n achievementCategoryIndex: (): Resource<AchievementCategoryIndexResponse> => {\r\n return {\r\n path: `${achievementCategoryBase}/index`,\r\n namespace: 'static',\r\n };\r\n },\r\n achievement: (achievementId: number): Resource<AchievementResponse> => {\r\n return {\r\n path: `${achievementBase}/${achievementId}`,\r\n namespace: 'static',\r\n };\r\n },\r\n achievementIndex: (): Resource<AchievementIndexResponse> => {\r\n return {\r\n path: `${achievementBase}/index`,\r\n namespace: 'static',\r\n };\r\n },\r\n achievementMedia: (achievementId: number): Resource<AchievementMediaResponse> => {\r\n return { path: `${mediaBase}/achievement/${achievementId}`, namespace: 'static' };\r\n },\r\n};\r\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { AuctionHouseCommoditiesResponse, AuctionHouseResponse } from './types';\n\nexport const auctionHouseApi = {\n auctions: (connectedRealmId: number): Resource<AuctionHouseResponse> => {\n return {\n path: `${base}/connected-realm/${connectedRealmId}/auctions`,\n namespace: 'dynamic',\n };\n },\n commodities: (): Resource<AuctionHouseCommoditiesResponse> => {\n return {\n path: `${base}/auctions/commodities`,\n namespace: 'dynamic',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type { AzeriteEssenceIndexResponse, AzeriteEssenceMediaResponse, AzeriteEssenceResponse } from './types';\n\nexport const azeriteEssenceApi = {\n azeriteEssence: (azeriteEssenceId: number): Resource<AzeriteEssenceResponse> => {\n return {\n path: `${base}/azerite-essence/${azeriteEssenceId}`,\n namespace: 'static',\n };\n },\n azeriteEssenceIndex: (): Resource<AzeriteEssenceIndexResponse> => {\n return {\n path: `${base}/azerite-essence/index`,\n namespace: 'static',\n };\n },\n azeriteEssenceMedia: (azeriteEssenceId: number): Resource<AzeriteEssenceMediaResponse> => {\n return { path: `${mediaBase}/azerite-essence/${azeriteEssenceId}`, namespace: 'static' };\n },\n // TODO Improve search endpoints\n /**\n * azeriteEssenceSearch: (): Resource<void> => {\n * return {\n * path: `${base}/search/connected-realm`,\n * namespace: 'dynamic',\n * };\n * },\n */\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { ConnectedRealmIndexResponse, ConnectedRealmResponse } from './types';\n\nexport const connectedRealmApi = {\n connectedRealmIndex: (): Resource<ConnectedRealmIndexResponse> => {\n return {\n path: `${base}/connected-realm/index`,\n namespace: 'dynamic',\n };\n },\n connectedRealm: (connectedRealmId: number): Resource<ConnectedRealmResponse> => {\n return {\n path: `${base}/connected-realm/${connectedRealmId}`,\n namespace: 'dynamic',\n };\n },\n // TODO Improve search endpoints\n /**\n * connectedRealmSearch: (): Resource<void> => {\n * return {\n * path: `${base}/search/connected-realm`,\n * namespace: 'dynamic',\n * };\n * },\n */\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type {\n ConduitIndexResponse,\n ConduitResponse,\n CovenantIndexResponse,\n CovenantMediaResponse,\n CovenantResponse,\n SoulbindIndexResponse,\n SoulbindResponse,\n} from './types';\n\nexport const covenantApi = {\n conduit: (conduitId: number): Resource<ConduitResponse> => {\n return {\n path: `${base}/covenant/conduit/${conduitId}`,\n namespace: 'static',\n };\n },\n conduitIndex: (): Resource<ConduitIndexResponse> => {\n return {\n path: `${base}/covenant/conduit/index`,\n namespace: 'static',\n };\n },\n covenant: (covenantId: number): Resource<CovenantResponse> => {\n return {\n path: `${base}/covenant/${covenantId}`,\n namespace: 'static',\n };\n },\n covenantIndex: (): Resource<CovenantIndexResponse> => {\n return {\n path: `${base}/covenant/index`,\n namespace: 'static',\n };\n },\n covenantMedia: (covenantId: number): Resource<CovenantMediaResponse> => {\n return {\n path: `${mediaBase}/covenant/${covenantId}`,\n namespace: 'static',\n };\n },\n soulbind: (soulbindId: number): Resource<SoulbindResponse> => {\n return {\n path: `${base}/covenant/soulbind/${soulbindId}`,\n namespace: 'static',\n };\n },\n soulbindIndex: (): Resource<SoulbindIndexResponse> => {\n return {\n path: `${base}/covenant/soulbind/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type {\n CreatureDisplayMediaResponse,\n CreatureFamilyIndexResponse,\n CreatureFamilyMediaResponse,\n CreatureFamilyResponse,\n CreatureResponse,\n CreatureTypeIndexResponse,\n CreatureTypeResponse,\n} from './types';\n\nexport const creatureApi = {\n creature: (creatureId: number): Resource<CreatureResponse> => {\n return {\n path: `${base}/creature/${creatureId}`,\n namespace: 'static',\n };\n },\n creatureDisplayMedia: (creatureDisplayId: number): Resource<CreatureDisplayMediaResponse> => {\n return {\n path: `${mediaBase}/creature-display/${creatureDisplayId}`,\n namespace: 'static',\n };\n },\n creatureFamily: (creatureFamilyId: number): Resource<CreatureFamilyResponse> => {\n return {\n path: `${base}/creature-family/${creatureFamilyId}`,\n namespace: 'static',\n };\n },\n creatureFamilyIndex: (): Resource<CreatureFamilyIndexResponse> => {\n return {\n path: `${base}/creature-family/index`,\n namespace: 'static',\n };\n },\n creatureFamilyMedia: (creatureFamilyId: number): Resource<CreatureFamilyMediaResponse> => {\n return {\n path: `${mediaBase}/creature-family/${creatureFamilyId}`,\n namespace: 'static',\n };\n },\n creatureType: (creatureTypeId: number): Resource<CreatureTypeResponse> => {\n return {\n path: `${base}/creature-type/${creatureTypeId}`,\n namespace: 'static',\n };\n },\n creatureTypeIndex: (): Resource<CreatureTypeIndexResponse> => {\n return {\n path: `${base}/creature-type/index`,\n namespace: 'static',\n };\n },\n //TODO Improve search\n /*\n creatureSearch: () => {\n return {\n path: `${base}/creature/search`,\n namespace: 'static',\n };\n },*/\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type { GuildCrestBorderEmblemResponse, GuildCrestComponentsIndexResponse } from './types';\n\nexport const guildCrestApi = {\n guildCrestComponentsIndex: (): Resource<GuildCrestComponentsIndexResponse> => {\n return {\n path: `${base}/guild-crest/index`,\n namespace: 'static',\n };\n },\n guildCrestBorder: (borderId: number): Resource<GuildCrestBorderEmblemResponse> => {\n return {\n path: `${mediaBase}/guild-crest/border/${borderId}`,\n namespace: 'static',\n };\n },\n guildCrestEmblem: (emblemId: number): Resource<GuildCrestBorderEmblemResponse> => {\n return {\n path: `${mediaBase}/guild-crest/emblem/${emblemId}`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { HeirloomIndexResponse, HeirloomResponse } from './types';\n\nexport const heirloomApi = {\n heirloom: (heirloomId: number): Resource<HeirloomResponse> => {\n return {\n path: `${base}/heirloom/${heirloomId}`,\n namespace: 'static',\n };\n },\n heirloomIndex: (): Resource<HeirloomIndexResponse> => {\n return {\n path: `${base}/heirloom/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type {\n ItemClassIndexResponse,\n ItemClassResponse,\n ItemMediaResponse,\n ItemResponse,\n ItemSetIndexResponse,\n ItemSetResponse,\n ItemSubclassResponse,\n} from './types';\n\nexport const itemApi = {\n item: (itemId: number): Resource<ItemResponse> => {\n return {\n path: `${base}/item/${itemId}`,\n namespace: 'static',\n };\n },\n itemClass: (itemClassId: number): Resource<ItemClassResponse> => {\n return {\n path: `${base}/item-class/${itemClassId}`,\n namespace: 'static',\n };\n },\n itemSubclass: (itemClassId: number, itemSubclassId: number): Resource<ItemSubclassResponse> => {\n return {\n path: `${base}/item-class/${itemClassId}/item-subclass/${itemSubclassId}`,\n namespace: 'static',\n };\n },\n itemClassIndex: (): Resource<ItemClassIndexResponse> => {\n return {\n path: `${base}/item-class/index`,\n namespace: 'static',\n };\n },\n itemMedia: (itemId: number): Resource<ItemMediaResponse> => {\n return {\n path: `${mediaBase}/item/${itemId}`,\n namespace: 'static',\n };\n },\n itemSet: (itemSetId: number): Resource<ItemSetResponse> => {\n return {\n path: `${base}/item-set/${itemSetId}`,\n namespace: 'static',\n };\n },\n itemSetIndex: (): Resource<ItemSetIndexResponse> => {\n return {\n path: `${base}/item-set/index`,\n namespace: 'static',\n };\n },\n // TODO Improve search endpoints\n //itemSearch: (): Resource<void> => {\n // return {\n // path: `${base}/search/item`,\n // namespace: 'static',\n // };\n //},\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type {\n JournalEncounterIndexResponse,\n JournalEncounterResponse,\n JournalExpansionIndexResponse,\n JournalExpansionResponse,\n JournalInstanceIndexResponse,\n JournalInstanceMediaResponse,\n JournalInstanceResponse,\n} from './types';\n\nexport const journalApi = {\n journalEncounter: (journalEncounterId: number): Resource<JournalEncounterResponse> => {\n return {\n path: `${base}/journal-encounter/${journalEncounterId}`,\n namespace: 'static',\n };\n },\n journalEncounterIndex: (): Resource<JournalEncounterIndexResponse> => {\n return {\n path: `${base}/journal-encounter/index`,\n namespace: 'static',\n };\n },\n //TODO Improve search endpoints\n //journalEncounterSearch: (): Resource<void> => {\n // return {\n // path: `${base}/journal-encounter/search`,\n // namespace: 'static',\n // };\n //},\n journalExpansion: (journalExpansionId: number): Resource<JournalExpansionResponse> => {\n return {\n path: `${base}/journal-expansion/${journalExpansionId}`,\n namespace: 'static',\n };\n },\n journalExpansionIndex: (): Resource<JournalExpansionIndexResponse> => {\n return {\n path: `${base}/journal-expansion/index`,\n namespace: 'static',\n };\n },\n journalInstance: (journalInstanceId: number): Resource<JournalInstanceResponse> => {\n return {\n path: `${base}/journal-instance/${journalInstanceId}`,\n namespace: 'static',\n };\n },\n journalInstanceIndex: (): Resource<JournalInstanceIndexResponse> => {\n return {\n path: `${base}/journal-instance/index`,\n namespace: 'static',\n };\n },\n journalInstanceMedia: (journalInstanceId: number): Resource<JournalInstanceMediaResponse> => {\n return {\n path: `${mediaBase}/journal-instance/${journalInstanceId}`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\n\n//TODO Improve search endpoints\nexport const mediaSearchApi = {\n mediaSearch: (): Resource<void> => {\n return {\n path: `${base}/search/media`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type {\n ModifiedCraftingCategoryIndexResponse,\n ModifiedCraftingCategoryResponse,\n ModifiedCraftingIndexResponse,\n ModifiedCraftingReagentSlotTypeIndexResponse,\n ModifiedCraftingReagentSlotTypeResponse,\n} from './types';\n\nexport const modifiedCraftingApi = {\n modifiedCraftingCategory: (modifiedCraftingCategoryId: number): Resource<ModifiedCraftingCategoryResponse> => {\n return {\n path: `${base}/modified-crafting/category/${modifiedCraftingCategoryId}`,\n namespace: 'static',\n };\n },\n modifiedCraftingCategoryIndex: (): Resource<ModifiedCraftingCategoryIndexResponse> => {\n return {\n path: `${base}/modified-crafting/category/index`,\n namespace: 'static',\n };\n },\n modifiedCraftingIndex: (): Resource<ModifiedCraftingIndexResponse> => {\n return {\n path: `${base}/modified-crafting/index`,\n namespace: 'static',\n };\n },\n modifiedCraftingReagentSlotType: (\n modifiedCraftingReagentSlotTypeId: number,\n ): Resource<ModifiedCraftingReagentSlotTypeResponse> => {\n return {\n path: `${base}/modified-crafting/reagent-slot-type/${modifiedCraftingReagentSlotTypeId}`,\n namespace: 'static',\n };\n },\n modifiedCraftingReagentSlotTypeIndex: (): Resource<ModifiedCraftingReagentSlotTypeIndexResponse> => {\n return {\n path: `${base}/modified-crafting/reagent-slot-type/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { MountIndexResponse, MountResponse } from './types';\n\nexport const mountApi = {\n mount: (mountId: number): Resource<MountResponse> => {\n return {\n path: `${base}/mount/${mountId}`,\n namespace: 'static',\n };\n },\n mountIndex: (): Resource<MountIndexResponse> => {\n return {\n path: `${base}/mount/index`,\n namespace: 'static',\n };\n },\n //TODO Improve search endpoints\n //mountSearch: (): Resource<void> => {\n // return {\n // path: `${base}/mount/search`,\n // namespace: 'static',\n // };\n //},\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type {\n MythicKeystoneAffixIndexResponse,\n MythicKeystoneAffixMediaResponse,\n MythicKeystoneAffixResponse,\n} from './types';\n\nexport const mythicKeystoneAffixApi = {\n mythicKeystoneAffix: (mythicKeystoneAffixId: number): Resource<MythicKeystoneAffixResponse> => {\n return {\n path: `${base}/keystone-affix/${mythicKeystoneAffixId}`,\n namespace: 'static',\n };\n },\n mythicKeystoneAffixIndex: (): Resource<MythicKeystoneAffixIndexResponse> => {\n return {\n path: `${base}/keystone-affix/index`,\n namespace: 'static',\n };\n },\n mythicKeystoneAffixMedia: (mythicKeystoneAffixId: number): Resource<MythicKeystoneAffixMediaResponse> => {\n return {\n path: `${mediaBase}/keystone-affix/${mythicKeystoneAffixId}`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type {\n MythicKeystoneDungeonIndexResponse,\n MythicKeystoneDungeonResponse,\n MythicKeystoneIndexResponse,\n MythicKeystonePeriodIndexResponse,\n MythicKeystonePeriodResponse,\n MythicKeystoneSeasonIndexResponse,\n MythicKeystoneSeasonResponse,\n} from './types';\n\nexport const mythicKeystoneDungeonApi = {\n mythicKeystoneDungeon: (mythicKeystoneDungeonId: number): Resource<MythicKeystoneDungeonResponse> => {\n return {\n path: `${base}/mythic-keystone/dungeon/${mythicKeystoneDungeonId}`,\n namespace: 'dynamic',\n };\n },\n mythicKeystoneDungeonIndex: (): Resource<MythicKeystoneDungeonIndexResponse> => {\n return {\n path: `${base}/mythic-keystone/dungeon/index`,\n namespace: 'dynamic',\n };\n },\n mythicKeystoneIndex: (): Resource<MythicKeystoneIndexResponse> => {\n return {\n path: `${base}/mythic-keystone/index`,\n namespace: 'dynamic',\n };\n },\n mythicKeystonePeriod: (mythicKeystonePeriodId: number): Resource<MythicKeystonePeriodResponse> => {\n return {\n path: `${base}/mythic-keystone/period/${mythicKeystonePeriodId}`,\n namespace: 'dynamic',\n };\n },\n mythicKeystonePeriodIndex: (): Resource<MythicKeystonePeriodIndexResponse> => {\n return {\n path: `${base}/mythic-keystone/period/index`,\n namespace: 'dynamic',\n };\n },\n mythicKeystoneSeason: (mythicKeystoneSeasonId: number): Resource<MythicKeystoneSeasonResponse> => {\n return {\n path: `${base}/mythic-keystone/season/${mythicKeystoneSeasonId}`,\n namespace: 'dynamic',\n };\n },\n mythicKeystoneSeasonIndex: (): Resource<MythicKeystoneSeasonIndexResponse> => {\n return {\n path: `${base}/mythic-keystone/season/index`,\n namespace: 'dynamic',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { MythicKeystoneLeaderboardIndexResponse, MythicKeystoneLeaderboardResponse } from './types';\n\nexport const mythicKeystoneLeaderboardApi = {\n mythicKeystoneLeaderboard: (\n connectedRealmId: number,\n dungeonId: number,\n period: number,\n ): Resource<MythicKeystoneLeaderboardResponse> => {\n return {\n path: `${base}/connected-realm/${connectedRealmId}/mythic-leaderboard/${dungeonId}/period/${period}`,\n namespace: 'dynamic',\n };\n },\n mythicKeystoneLeaderboardIndex: (connectedRealmId: number): Resource<MythicKeystoneLeaderboardIndexResponse> => {\n return {\n path: `${base}/connected-realm/${connectedRealmId}/mythic-leaderboard/index`,\n namespace: 'dynamic',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport type { Factions } from '../base';\nimport { base } from '../base';\nimport type { MythicRaidLeaderboardResponse } from './types';\n\nexport const mythicRaidLeaderboardApi = {\n mythicRaidLeaderboard: (\n raid: string,\n faction: Lowercase<keyof typeof Factions>,\n ): Resource<MythicRaidLeaderboardResponse> => {\n return {\n path: `${base}/leaderboard/hall-of-fame/${raid}/${faction}`,\n namespace: 'dynamic',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type {\n PetAbilityIndexResponse,\n PetAbilityMediaResponse,\n PetAbilityResponse,\n PetIndexResponse,\n PetMediaResponse,\n PetResponse,\n} from './types';\n\nexport const petApi = {\n pet: (petId: number): Resource<PetResponse> => {\n return {\n path: `${base}/pet/${petId}`,\n namespace: 'static',\n };\n },\n petIndex: (): Resource<PetIndexResponse> => {\n return {\n path: `${base}/pet/index`,\n namespace: 'static',\n };\n },\n petMedia: (petId: number): Resource<PetMediaResponse> => {\n return {\n path: `${mediaBase}/pet/${petId}`,\n namespace: 'static',\n };\n },\n petAbility: (petAbilityId: number): Resource<PetAbilityResponse> => {\n return {\n path: `${base}/pet-ability/${petAbilityId}`,\n namespace: 'static',\n };\n },\n petAbilityIndex: (): Resource<PetAbilityIndexResponse> => {\n return {\n path: `${base}/pet-ability/index`,\n namespace: 'static',\n };\n },\n petAbilityMedia: (petAbilityId: number): Resource<PetAbilityMediaResponse> => {\n return {\n path: `${mediaBase}/pet-ability/${petAbilityId}`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type {\n PlayableClassIndexResponse,\n PlayableClassMediaResponse,\n PlayableClassResponse,\n PvpTalentSlotsResponse,\n} from './types';\n\nexport const playableClassApi = {\n playableClass: (playableClassId: number): Resource<PlayableClassResponse> => {\n return {\n path: `${base}/playable-class/${playableClassId}`,\n namespace: 'static',\n };\n },\n playableClassIndex: (): Resource<PlayableClassIndexResponse> => {\n return {\n path: `${base}/playable-class/index`,\n namespace: 'static',\n };\n },\n playableClassMedia: (playableClassId: number): Resource<PlayableClassMediaResponse> => {\n return {\n path: `${mediaBase}/playable-class/${playableClassId}`,\n namespace: 'static',\n };\n },\n pvpTalentSlots: (playableClassId: number): Resource<PvpTalentSlotsResponse> => {\n return {\n path: `${base}/playable-class/${playableClassId}/pvp-talent-slots`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { PlayableRaceIndexResponse, PlayableRaceResponse } from './types';\n\nexport const playableRaceApi = {\n playableRace: (playableRaceId: number): Resource<PlayableRaceResponse> => {\n return {\n path: `${base}/playable-race/${playableRaceId}`,\n namespace: 'static',\n };\n },\n playableRaceIndex: (): Resource<PlayableRaceIndexResponse> => {\n return {\n path: `${base}/playable-race/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type {\n PlayableSpecializationIndexResponse,\n PlayableSpecializationMediaResponse,\n PlayableSpecializationResponse,\n} from './types';\n\nexport const playableSpecializationApi = {\n playableSpecialization: (specializationId: number): Resource<PlayableSpecializationResponse> => {\n return {\n path: `${base}/playable-specialization/${specializationId}`,\n namespace: 'static',\n };\n },\n playableSpecializationIndex: (): Resource<PlayableSpecializationIndexResponse> => {\n return {\n path: `${base}/playable-specialization/index`,\n namespace: 'static',\n };\n },\n playableSpecializationMedia: (specializationId: number): Resource<PlayableSpecializationMediaResponse> => {\n return {\n path: `${mediaBase}/playable-specialization/${specializationId}`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { PowerTypeIndexResponse, PowerTypeResponse } from './types';\n\nexport const powerTypeApi = {\n powerType: (powerTypeId: number): Resource<PowerTypeResponse> => {\n return {\n path: `${base}/power-type/${powerTypeId}`,\n namespace: 'static',\n };\n },\n powerTypeIndex: (): Resource<PowerTypeIndexResponse> => {\n return {\n path: `${base}/power-type/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type {\n ProfessionIndexResponse,\n ProfessionMediaResponse,\n ProfessionResponse,\n ProfessionSkillTierResponse,\n RecipeMediaResponse,\n RecipeResponse,\n} from './types';\n\nexport const professionApi = {\n profession: (professionId: number): Resource<ProfessionResponse> => {\n return {\n path: `${base}/profession/${professionId}`,\n namespace: 'static',\n };\n },\n professionIndex: (): Resource<ProfessionIndexResponse> => {\n return {\n path: `${base}/profession/index`,\n namespace: 'static',\n };\n },\n professionMedia: (professionId: number): Resource<ProfessionMediaResponse> => {\n return {\n path: `${mediaBase}/profession/${professionId}`,\n namespace: 'static',\n };\n },\n professionSkillTier: (professionId: number, skillTierId: number): Resource<ProfessionSkillTierResponse> => {\n return {\n path: `${base}/profession/${professionId}/skill-tier/${skillTierId}`,\n namespace: 'static',\n };\n },\n recipe: (recipeId: number): Resource<RecipeResponse> => {\n return {\n path: `${base}/recipe/${recipeId}`,\n namespace: 'static',\n };\n },\n recipeMedia: (recipeId: number): Resource<RecipeMediaResponse> => {\n return {\n path: `${mediaBase}/recipe/${recipeId}`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type {\n PvpLeaderboardIndexResponse,\n PvpLeaderboardResponse,\n PvpRewardsIndexResponse,\n PvpSeasonIndexResponse,\n PvpSeasonResponse,\n} from './types';\n\nexport const pvpSeasonApi = {\n pvpLeaderboard: (pvpSeasonId: number, bracket: string): Resource<PvpLeaderboardResponse> => {\n return {\n path: `${base}/pvp-season/${pvpSeasonId}/pvp-leaderboard/${bracket}`,\n namespace: 'dynamic',\n };\n },\n pvpLeaderboardIndex: (pvpSeasonId: number): Resource<PvpLeaderboardIndexResponse> => {\n return {\n path: `${base}/pvp-season/${pvpSeasonId}/pvp-leaderboard/index`,\n namespace: 'dynamic',\n };\n },\n pvpRewardsIndex: (pvpSeasonId: number): Resource<PvpRewardsIndexResponse> => {\n return {\n path: `${base}/pvp-season/${pvpSeasonId}/pvp-reward/index`,\n namespace: 'dynamic',\n };\n },\n pvpSeason: (pvpSeasonId: number): Resource<PvpSeasonResponse> => {\n return {\n path: `${base}/pvp-season/${pvpSeasonId}`,\n namespace: 'dynamic',\n };\n },\n pvpSeasonIndex: (): Resource<PvpSeasonIndexResponse> => {\n return {\n path: `${base}/pvp-season/index`,\n namespace: 'dynamic',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type { PvpTierIndexResponse, PvpTierMediaResponse, PvpTierResponse } from './types';\n\nexport const pvpTierApi = {\n pvpTier: (pvpTierId: number): Resource<PvpTierResponse> => {\n return {\n path: `${base}/pvp-tier/${pvpTierId}`,\n namespace: 'static',\n };\n },\n pvpTierIndex: (): Resource<PvpTierIndexResponse> => {\n return {\n path: `${base}/pvp-tier/index`,\n namespace: 'static',\n };\n },\n pvpTierMedia: (pvpTierId: number): Resource<PvpTierMediaResponse> => {\n return {\n path: `${mediaBase}/pvp-tier/${pvpTierId}`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type {\n QuestAreaIndexResponse,\n QuestAreaResponse,\n QuestCategoryIndexResponse,\n QuestCategoryResponse,\n QuestIndexResponse,\n QuestResponse,\n QuestTypeIndexResponse,\n QuestTypeResponse,\n} from './types';\n\nexport const questApi = {\n quest: (questId: number): Resource<QuestResponse> => {\n return {\n path: `${base}/quest/${questId}`,\n namespace: 'static',\n };\n },\n questIndex: (): Resource<QuestIndexResponse> => {\n return {\n path: `${base}/quest/index`,\n namespace: 'static',\n };\n },\n questArea: (questAreaId: number): Resource<QuestAreaResponse> => {\n return {\n path: `${base}/quest/area/${questAreaId}`,\n namespace: 'static',\n };\n },\n questAreaIndex: (): Resource<QuestAreaIndexResponse> => {\n return {\n path: `${base}/quest/area/index`,\n namespace: 'static',\n };\n },\n questCategory: (questCategoryId: number): Resource<QuestCategoryResponse> => {\n return {\n path: `${base}/quest/category/${questCategoryId}`,\n namespace: 'static',\n };\n },\n questCategoryIndex: (): Resource<QuestCategoryIndexResponse> => {\n return {\n path: `${base}/quest/category/index`,\n namespace: 'static',\n };\n },\n questType: (questTypeId: number): Resource<QuestTypeResponse> => {\n return {\n path: `${base}/quest/type/${questTypeId}`,\n namespace: 'static',\n };\n },\n questTypeIndex: (): Resource<QuestTypeIndexResponse> => {\n return {\n path: `${base}/quest/type/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { RealmIndexResponse, RealmResponse } from './types';\n\nexport const realmApi = {\n realm: (realmSlug: string): Resource<RealmResponse> => {\n return {\n path: `${base}/realm/${realmSlug}`,\n namespace: 'dynamic',\n };\n },\n realmIndex: (): Resource<RealmIndexResponse> => {\n return {\n path: `${base}/realm/index`,\n namespace: 'dynamic',\n };\n },\n //TODO Improve search endpoints\n //realmSearch: (): Resource<void> => {\n // return {\n // path: `${base}/realm/search`,\n // namespace: 'dynamic',\n // };\n //},\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { RegionIndexResponse, RegionResponse } from './types';\n\nexport const regionApi = {\n region: (regionId: number): Resource<RegionResponse> => {\n return {\n path: `${base}/region/${regionId}`,\n namespace: 'dynamic',\n };\n },\n regionIndex: (): Resource<RegionIndexResponse> => {\n return {\n path: `${base}/region/index`,\n namespace: 'dynamic',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type {\n ReputationFactionIndexResponse,\n ReputationFactionResponse,\n ReputationTiersIndexResponse,\n ReputationTiersResponse,\n} from './types';\n\nexport const reputationApi = {\n reputationFaction: (reputationFactionId: number): Resource<ReputationFactionResponse> => {\n return {\n path: `${base}/reputation-faction/${reputationFactionId}`,\n namespace: 'static',\n };\n },\n reputationFactionIndex: (): Resource<ReputationFactionIndexResponse> => {\n return {\n path: `${base}/reputation-faction/index`,\n namespace: 'static',\n };\n },\n reputationTiers: (reputationTiersId: number): Resource<ReputationTiersResponse> => {\n return {\n path: `${base}/reputation-tiers/${reputationTiersId}`,\n namespace: 'static',\n };\n },\n reputationTiersIndex: (): Resource<ReputationTiersIndexResponse> => {\n return {\n path: `${base}/reputation-tiers/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type { SpellMediaResponse, SpellResponse } from './types';\n\nexport const spellApi = {\n spell: (spellId: number): Resource<SpellResponse> => {\n return {\n path: `${base}/spell/${spellId}`,\n namespace: 'static',\n };\n },\n spellMedia: (spellId: number): Resource<SpellMediaResponse> => {\n return {\n path: `${mediaBase}/spell/${spellId}`,\n namespace: 'static',\n };\n },\n //TODO Improve search endpoints\n //spellSearch: (): Resource<void> => {\n // return {\n // path: `${base}/spell/search`,\n // namespace: 'static',\n // };\n //},\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type {\n PvpTalentIndexResponse,\n PvpTalentResponse,\n TalentIndexResponse,\n TalentResponse,\n TalentTreeIndexResponse,\n TalentTreeNodesResponse,\n TalentTreeResponse,\n} from './types';\n\nexport const talentApi = {\n pvpTalent: (pvpTalentId: number): Resource<PvpTalentResponse> => {\n return {\n path: `${base}/pvp-talent/${pvpTalentId}`,\n namespace: 'static',\n };\n },\n pvpTalentIndex: (): Resource<PvpTalentIndexResponse> => {\n return {\n path: `${base}/pvp-talent/index`,\n namespace: 'static',\n };\n },\n talent: (talentId: number): Resource<TalentResponse> => {\n return {\n path: `${base}/talent/${talentId}`,\n namespace: 'static',\n };\n },\n talentIndex: (): Resource<TalentIndexResponse> => {\n return {\n path: `${base}/talent/index`,\n namespace: 'static',\n };\n },\n talentTree: (talentTreeId: number, specId: number): Resource<TalentTreeResponse> => {\n return {\n path: `${base}/talent-tree/${talentTreeId}/playable-specialization/${specId}`,\n namespace: 'static',\n };\n },\n talentTreeIndex: (): Resource<TalentTreeIndexResponse> => {\n return {\n path: `${base}/talent-tree/index`,\n namespace: 'static',\n };\n },\n talentTreeNodes: (talentTreeId: number): Resource<TalentTreeNodesResponse> => {\n return {\n path: `${base}/talent-tree/${talentTreeId}`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type {\n TechTalentIndexResponse,\n TechTalentMediaResponse,\n TechTalentResponse,\n TechTalentTreeIndexResponse,\n TechTalentTreeResponse,\n} from './types';\n\nexport const techTalentApi = {\n techTalent: (techTalentId: number): Resource<TechTalentResponse> => {\n return {\n path: `${base}/tech-talent/${techTalentId}`,\n namespace: 'static',\n };\n },\n techTalentIndex: (): Resource<TechTalentIndexResponse> => {\n return {\n path: `${base}/tech-talent/index`,\n namespace: 'static',\n };\n },\n techTalentMedia: (techTalentId: number): Resource<TechTalentMediaResponse> => {\n return {\n path: `${mediaBase}/tech-talent/${techTalentId}`,\n namespace: 'static',\n };\n },\n techTalentTree: (techTalentTreeId: number): Resource<TechTalentTreeResponse> => {\n return {\n path: `${base}/tech-talent-tree/${techTalentTreeId}`,\n namespace: 'static',\n };\n },\n techTalentTreeIndex: (): Resource<TechTalentTreeIndexResponse> => {\n return {\n path: `${base}/tech-talent-tree/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { TitleIndexResponse, TitleResponse } from './types';\n\nexport const titleApi = {\n title: (titleId: number): Resource<TitleResponse> => {\n return {\n path: `${base}/title/${titleId}`,\n namespace: 'static',\n };\n },\n titleIndex: (): Resource<TitleIndexResponse> => {\n return {\n path: `${base}/title/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { ToyIndexResponse, ToyResponse } from './types';\n\nexport const toyApi = {\n toy: (toyId: number): Resource<ToyResponse> => {\n return {\n path: `${base}/toy/${toyId}`,\n namespace: 'static',\n };\n },\n toyIndex: (): Resource<ToyIndexResponse> => {\n return {\n path: `${base}/toy/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { WowTokenResponse } from './types';\n\nexport const wowTokenApi = {\n wowToken: (): Resource<WowTokenResponse> => {\n return {\n path: `${base}/token/index`,\n namespace: 'dynamic',\n };\n },\n};\n"],"mappings":"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","names":[]}
|
|
1
|
+
{"version":3,"sources":["../src/index.ts","../src/base.ts","../src/achievements/achievements.ts","../src/auction-house/auction-house.ts","../src/azerite-essence/azerite-essence.ts","../src/connected-realm/connected-realm.ts","../src/covenant/covenant.ts","../src/creature/creature.ts","../src/guild-crest/guild-crest.ts","../src/heirloom/heirloom.ts","../src/item/item.ts","../src/journal/journal.ts","../src/media-search/media-search.ts","../src/modified-crafting/modified-crafting.ts","../src/mount/mount.ts","../src/mythic-keystone-affix/mythic-keystone-affix.ts","../src/mythic-keystone-dungeon/mythic-keystone-dungeon.ts","../src/mythic-keystone-leaderboard/mythic-keystone-leaderboard.ts","../src/mythic-raid-leaderboard/mythic-raid-leaderboard.ts","../src/pet/pet.ts","../src/playable-class/playable-class.ts","../src/playable-race/playable-race.ts","../src/playable-specialization/playable-specialization.ts","../src/power-type/power-type.ts","../src/profession/profession.ts","../src/pvp-season/pvp-season.ts","../src/pvp-tier/pvp-tier.ts","../src/quest/quest.ts","../src/realm/realm.ts","../src/region/region.ts","../src/reputations/reputations.ts","../src/spell/spell.ts","../src/talent/talent.ts","../src/tech-talent/tech-talent.ts","../src/title/title.ts","../src/toy/toy.ts","../src/wow-token/wow-token.ts"],"sourcesContent":["import { achievementApi } from './achievements/achievements';\r\nimport { auctionHouseApi } from './auction-house/auction-house';\r\nimport { azeriteEssenceApi } from './azerite-essence/azerite-essence';\r\nimport { connectedRealmApi } from './connected-realm/connected-realm';\r\nimport { covenantApi } from './covenant/covenant';\r\nimport { creatureApi } from './creature/creature';\r\nimport { guildCrestApi } from './guild-crest/guild-crest';\r\nimport { heirloomApi } from './heirloom/heirloom';\r\nimport { itemApi } from './item/item';\r\nimport { journalApi } from './journal/journal';\r\nimport { mediaSearchApi } from './media-search/media-search';\r\nimport { modifiedCraftingApi } from './modified-crafting/modified-crafting';\r\nimport { mountApi } from './mount/mount';\r\nimport { mythicKeystoneAffixApi } from './mythic-keystone-affix/mythic-keystone-affix';\r\nimport { mythicKeystoneDungeonApi } from './mythic-keystone-dungeon/mythic-keystone-dungeon';\r\nimport { mythicKeystoneLeaderboardApi } from './mythic-keystone-leaderboard/mythic-keystone-leaderboard';\r\nimport { mythicRaidLeaderboardApi } from './mythic-raid-leaderboard/mythic-raid-leaderboard';\r\nimport { petApi } from './pet/pet';\r\nimport { playableClassApi } from './playable-class/playable-class';\r\nimport { playableRaceApi } from './playable-race/playable-race';\r\nimport { playableSpecializationApi } from './playable-specialization/playable-specialization';\r\nimport { powerTypeApi } from './power-type/power-type';\r\nimport { professionApi } from './profession/profession';\r\nimport { pvpSeasonApi } from './pvp-season/pvp-season';\r\nimport { pvpTierApi } from './pvp-tier/pvp-tier';\r\nimport { questApi } from './quest/quest';\r\nimport { realmApi } from './realm/realm';\r\nimport { regionApi } from './region/region';\r\nimport { reputationApi } from './reputations/reputations';\r\nimport { spellApi } from './spell/spell';\r\nimport { talentApi } from './talent/talent';\r\nimport { techTalentApi } from './tech-talent/tech-talent';\r\nimport { titleApi } from './title/title';\r\nimport { toyApi } from './toy/toy';\r\nimport { wowTokenApi } from './wow-token/wow-token';\r\n\r\nexport const wow = {\r\n ...achievementApi,\r\n ...auctionHouseApi,\r\n ...azeriteEssenceApi,\r\n ...connectedRealmApi,\r\n ...covenantApi,\r\n ...creatureApi,\r\n ...guildCrestApi,\r\n ...heirloomApi,\r\n ...itemApi,\r\n ...journalApi,\r\n ...mediaSearchApi,\r\n ...modifiedCraftingApi,\r\n ...mountApi,\r\n ...mythicKeystoneAffixApi,\r\n ...mythicKeystoneDungeonApi,\r\n ...mythicKeystoneLeaderboardApi,\r\n ...mythicRaidLeaderboardApi,\r\n ...petApi,\r\n ...playableClassApi,\r\n ...playableRaceApi,\r\n ...playableSpecializationApi,\r\n ...powerTypeApi,\r\n ...professionApi,\r\n ...pvpSeasonApi,\r\n ...pvpTierApi,\r\n ...questApi,\r\n ...realmApi,\r\n ...regionApi,\r\n ...reputationApi,\r\n ...spellApi,\r\n ...talentApi,\r\n ...techTalentApi,\r\n ...titleApi,\r\n ...toyApi,\r\n ...wowTokenApi,\r\n};\r\n\r\n//Achievements\r\nexport * from './achievements/types.js';\r\n//Auction House\r\nexport * from './auction-house/types.js';\r\n//Azerite Essence\r\nexport * from './azerite-essence/types.js';\r\n//Connected Realm\r\nexport * from './connected-realm/types.js';\r\n//Covenant\r\nexport * from './covenant/types.js';\r\n//Creature\r\nexport * from './creature/types.js';\r\n//Guild Crest\r\nexport * from './guild-crest/types.js';\r\n//Heirloom\r\nexport * from './heirloom/types.js';\r\n//Item\r\nexport * from './item/types.js';\r\n//Journal\r\nexport * from './journal/types.js';\r\n//Media Search\r\n//TODO\r\n//Modified Crafting\r\nexport * from './modified-crafting/types.js';\r\n//Mount\r\nexport * from './mount/types.js';\r\n//Mythic Keystone Affix\r\nexport * from './mythic-keystone-affix/types.js';\r\n//Mythic Keystone Dungeon\r\nexport * from './mythic-keystone-dungeon/types.js';\r\n//Mythic Keystone Leaderboard\r\nexport * from './mythic-keystone-leaderboard/types.js';\r\n//Mythic Raid Leaderboard\r\nexport * from './mythic-raid-leaderboard/types.js';\r\n//Pet\r\nexport * from './pet/types.js';\r\n//Playable Class\r\nexport * from './playable-class/types.js';\r\n//Playable Race\r\nexport * from './playable-race/types.js';\r\n//Playable Specialization\r\nexport * from './playable-specialization/types.js';\r\n//Power Type\r\nexport * from './power-type/types.js';\r\n//Profession\r\nexport * from './profession/types.js';\r\n//Pvp Season\r\nexport * from './pvp-season/types.js';\r\n//Pvp Tier\r\nexport * from './pvp-tier/types.js';\r\n//Quest\r\nexport * from './quest/types.js';\r\n//Realm\r\nexport * from './realm/types.js';\r\n//Region\r\nexport * from './region/types.js';\r\n//Reputations\r\nexport * from './reputations/types.js';\r\n//Spell\r\nexport * from './spell/types.js';\r\n//Talent\r\nexport * from './talent/types.js';\r\n//Tech Talent\r\nexport * from './tech-talent/types.js';\r\n//Title\r\nexport * from './title/types.js';\r\n//Toy\r\nexport * from './toy/types.js';\r\n//WoW Token\r\nexport * from './wow-token/types.js';\r\n","export const base = '/data/wow';\r\n\r\nexport const mediaBase = `${base}/media` as const;\r\n\r\nexport const searchBase = `${base}/search` as const;\r\n\r\nexport interface ResponseBase {\r\n _links: {\r\n self: {\r\n href: string;\r\n };\r\n };\r\n}\r\n\r\nexport interface KeyBase {\r\n key: {\r\n href: string;\r\n };\r\n}\r\n\r\nexport interface NameId {\r\n name: string;\r\n id: number;\r\n}\r\n\r\nexport interface NameIdKey extends KeyBase, NameId {}\r\nexport interface Color {\r\n r: number;\r\n g: number;\r\n b: number;\r\n a: number;\r\n}\r\n\r\nexport interface MediaAsset {\r\n key: string;\r\n value: string;\r\n file_data_id: number;\r\n}\r\n\r\nexport interface Gender {\r\n male: string;\r\n female: string;\r\n}\r\n\r\nexport const Factions = {\r\n ALLIANCE: 'ALLIANCE',\r\n HORDE: 'HORDE',\r\n} as const;\r\n\r\nexport interface Faction {\r\n type: keyof typeof Factions;\r\n name: Capitalize<Lowercase<keyof typeof Factions>>;\r\n}\r\n","import type { Resource } from '@blizzard-api/core';\r\nimport { base, mediaBase } from '../base';\r\nimport type {\r\n AchievementCategoryIndexResponse,\r\n AchievementCategoryResponse,\r\n AchievementIndexResponse,\r\n AchievementMediaResponse,\r\n AchievementResponse,\r\n} from './types';\r\n\r\nconst achievementBase = `${base}/achievement`;\r\nconst achievementCategoryBase = `${base}/achievement-category`;\r\n\r\nexport const achievementApi = {\r\n achievementCategory: (achievementCategoryId: number): Resource<AchievementCategoryResponse> => {\r\n return {\r\n path: `${achievementCategoryBase}/${achievementCategoryId}`,\r\n namespace: 'static',\r\n };\r\n },\r\n achievementCategoryIndex: (): Resource<AchievementCategoryIndexResponse> => {\r\n return {\r\n path: `${achievementCategoryBase}/index`,\r\n namespace: 'static',\r\n };\r\n },\r\n achievement: (achievementId: number): Resource<AchievementResponse> => {\r\n return {\r\n path: `${achievementBase}/${achievementId}`,\r\n namespace: 'static',\r\n };\r\n },\r\n achievementIndex: (): Resource<AchievementIndexResponse> => {\r\n return {\r\n path: `${achievementBase}/index`,\r\n namespace: 'static',\r\n };\r\n },\r\n achievementMedia: (achievementId: number): Resource<AchievementMediaResponse> => {\r\n return { path: `${mediaBase}/achievement/${achievementId}`, namespace: 'static' };\r\n },\r\n};\r\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { AuctionHouseCommoditiesResponse, AuctionHouseResponse } from './types';\n\nexport const auctionHouseApi = {\n auctions: (connectedRealmId: number): Resource<AuctionHouseResponse> => {\n return {\n path: `${base}/connected-realm/${connectedRealmId}/auctions`,\n namespace: 'dynamic',\n };\n },\n commodities: (): Resource<AuctionHouseCommoditiesResponse> => {\n return {\n path: `${base}/auctions/commodities`,\n namespace: 'dynamic',\n };\n },\n};\n","import type { Resource, SearchResponse } from '@blizzard-api/core';\nimport { base, mediaBase, searchBase } from '../base';\nimport type {\n AzeriteEssenceIndexResponse,\n AzeriteEssenceMediaResponse,\n AzeriteEssenceResponse,\n AzeriteEssenceSearchParameters,\n AzeriteEssenceSearchResponseItem,\n} from './types';\n\nexport const azeriteEssenceApi = {\n azeriteEssence: (azeriteEssenceId: number): Resource<AzeriteEssenceResponse> => {\n return {\n path: `${base}/azerite-essence/${azeriteEssenceId}`,\n namespace: 'static',\n };\n },\n azeriteEssenceIndex: (): Resource<AzeriteEssenceIndexResponse> => {\n return {\n path: `${base}/azerite-essence/index`,\n namespace: 'static',\n };\n },\n azeriteEssenceMedia: (azeriteEssenceId: number): Resource<AzeriteEssenceMediaResponse> => {\n return { path: `${mediaBase}/azerite-essence/${azeriteEssenceId}`, namespace: 'static' };\n },\n azeriteEssenceSearch: (\n options: AzeriteEssenceSearchParameters,\n ): Resource<SearchResponse<AzeriteEssenceSearchResponseItem>, AzeriteEssenceSearchParameters> => {\n return {\n path: `${searchBase}/azerite-essence`,\n namespace: 'static',\n parameters: {\n _page: options._page,\n 'allowed_specializations.id': options['allowed_specializations.id'],\n orderby: Array.isArray(options.orderby) ? options.orderby.join(',') : options.orderby,\n },\n };\n },\n};\n","import type { Resource, SearchResponse } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type {\n ConnectedRealmIndexResponse,\n ConnectedRealmResponse,\n ConnectedRealmSearchParameters,\n ConnectedRealmSearchResponseItem,\n} from './types';\n\nexport const connectedRealmApi = {\n connectedRealmIndex: (): Resource<ConnectedRealmIndexResponse> => {\n return {\n path: `${base}/connected-realm/index`,\n namespace: 'dynamic',\n };\n },\n connectedRealm: (connectedRealmId: number): Resource<ConnectedRealmResponse> => {\n return {\n path: `${base}/connected-realm/${connectedRealmId}`,\n namespace: 'dynamic',\n };\n },\n connectedRealmSearch: (\n options: ConnectedRealmSearchParameters,\n ): Resource<SearchResponse<ConnectedRealmSearchResponseItem>, ConnectedRealmSearchParameters> => {\n return {\n namespace: 'dynamic',\n parameters: {\n _page: options._page,\n orderby: Array.isArray(options.orderby) ? options.orderby.join(',') : options.orderby,\n 'status.type': options['status.type'],\n 'realms.timezone': options['realms.timezone'],\n },\n path: `${base}/search/connected-realm`,\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type {\n ConduitIndexResponse,\n ConduitResponse,\n CovenantIndexResponse,\n CovenantMediaResponse,\n CovenantResponse,\n SoulbindIndexResponse,\n SoulbindResponse,\n} from './types';\n\nexport const covenantApi = {\n conduit: (conduitId: number): Resource<ConduitResponse> => {\n return {\n path: `${base}/covenant/conduit/${conduitId}`,\n namespace: 'static',\n };\n },\n conduitIndex: (): Resource<ConduitIndexResponse> => {\n return {\n path: `${base}/covenant/conduit/index`,\n namespace: 'static',\n };\n },\n covenant: (covenantId: number): Resource<CovenantResponse> => {\n return {\n path: `${base}/covenant/${covenantId}`,\n namespace: 'static',\n };\n },\n covenantIndex: (): Resource<CovenantIndexResponse> => {\n return {\n path: `${base}/covenant/index`,\n namespace: 'static',\n };\n },\n covenantMedia: (covenantId: number): Resource<CovenantMediaResponse> => {\n return {\n path: `${mediaBase}/covenant/${covenantId}`,\n namespace: 'static',\n };\n },\n soulbind: (soulbindId: number): Resource<SoulbindResponse> => {\n return {\n path: `${base}/covenant/soulbind/${soulbindId}`,\n namespace: 'static',\n };\n },\n soulbindIndex: (): Resource<SoulbindIndexResponse> => {\n return {\n path: `${base}/covenant/soulbind/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource, SearchResponse } from '@blizzard-api/core';\nimport { base, mediaBase, searchBase } from '../base';\nimport type {\n CreatureDisplayMediaResponse,\n CreatureFamilyIndexResponse,\n CreatureFamilyMediaResponse,\n CreatureFamilyResponse,\n CreatureResponse,\n CreatureSearchParameters,\n CreatureSearchResponseItem,\n CreatureTypeIndexResponse,\n CreatureTypeResponse,\n} from './types';\n\nexport const creatureApi = {\n creature: (creatureId: number): Resource<CreatureResponse> => {\n return {\n path: `${base}/creature/${creatureId}`,\n namespace: 'static',\n };\n },\n creatureDisplayMedia: (creatureDisplayId: number): Resource<CreatureDisplayMediaResponse> => {\n return {\n path: `${mediaBase}/creature-display/${creatureDisplayId}`,\n namespace: 'static',\n };\n },\n creatureFamily: (creatureFamilyId: number): Resource<CreatureFamilyResponse> => {\n return {\n path: `${base}/creature-family/${creatureFamilyId}`,\n namespace: 'static',\n };\n },\n creatureFamilyIndex: (): Resource<CreatureFamilyIndexResponse> => {\n return {\n path: `${base}/creature-family/index`,\n namespace: 'static',\n };\n },\n creatureFamilyMedia: (creatureFamilyId: number): Resource<CreatureFamilyMediaResponse> => {\n return {\n path: `${mediaBase}/creature-family/${creatureFamilyId}`,\n namespace: 'static',\n };\n },\n creatureType: (creatureTypeId: number): Resource<CreatureTypeResponse> => {\n return {\n path: `${base}/creature-type/${creatureTypeId}`,\n namespace: 'static',\n };\n },\n creatureTypeIndex: (): Resource<CreatureTypeIndexResponse> => {\n return {\n path: `${base}/creature-type/index`,\n namespace: 'static',\n };\n },\n creatureSearch: (\n options: CreatureSearchParameters,\n ): Resource<SearchResponse<CreatureSearchResponseItem>, Omit<CreatureSearchParameters, 'name' | 'locale'>> => {\n return {\n namespace: 'static',\n parameters: {\n _page: options._page,\n orderby: Array.isArray(options.orderby) ? options.orderby.join(',') : options.orderby,\n [`name.${options.locale}`]: options.name,\n },\n path: `${searchBase}/creature`,\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type { GuildCrestBorderEmblemResponse, GuildCrestComponentsIndexResponse } from './types';\n\nexport const guildCrestApi = {\n guildCrestComponentsIndex: (): Resource<GuildCrestComponentsIndexResponse> => {\n return {\n path: `${base}/guild-crest/index`,\n namespace: 'static',\n };\n },\n guildCrestBorder: (borderId: number): Resource<GuildCrestBorderEmblemResponse> => {\n return {\n path: `${mediaBase}/guild-crest/border/${borderId}`,\n namespace: 'static',\n };\n },\n guildCrestEmblem: (emblemId: number): Resource<GuildCrestBorderEmblemResponse> => {\n return {\n path: `${mediaBase}/guild-crest/emblem/${emblemId}`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { HeirloomIndexResponse, HeirloomResponse } from './types';\n\nexport const heirloomApi = {\n heirloom: (heirloomId: number): Resource<HeirloomResponse> => {\n return {\n path: `${base}/heirloom/${heirloomId}`,\n namespace: 'static',\n };\n },\n heirloomIndex: (): Resource<HeirloomIndexResponse> => {\n return {\n path: `${base}/heirloom/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource, SearchResponse } from '@blizzard-api/core';\nimport { base, mediaBase, searchBase } from '../base';\nimport type {\n ItemClassIndexResponse,\n ItemClassResponse,\n ItemMediaResponse,\n ItemResponse,\n ItemSearchParameters,\n ItemSearchResponseItem,\n ItemSetIndexResponse,\n ItemSetResponse,\n ItemSubclassResponse,\n} from './types';\n\nexport const itemApi = {\n item: (itemId: number): Resource<ItemResponse> => {\n return {\n path: `${base}/item/${itemId}`,\n namespace: 'static',\n };\n },\n itemClass: (itemClassId: number): Resource<ItemClassResponse> => {\n return {\n path: `${base}/item-class/${itemClassId}`,\n namespace: 'static',\n };\n },\n itemSubclass: (itemClassId: number, itemSubclassId: number): Resource<ItemSubclassResponse> => {\n return {\n path: `${base}/item-class/${itemClassId}/item-subclass/${itemSubclassId}`,\n namespace: 'static',\n };\n },\n itemClassIndex: (): Resource<ItemClassIndexResponse> => {\n return {\n path: `${base}/item-class/index`,\n namespace: 'static',\n };\n },\n itemMedia: (itemId: number): Resource<ItemMediaResponse> => {\n return {\n path: `${mediaBase}/item/${itemId}`,\n namespace: 'static',\n };\n },\n itemSet: (itemSetId: number): Resource<ItemSetResponse> => {\n return {\n path: `${base}/item-set/${itemSetId}`,\n namespace: 'static',\n };\n },\n itemSetIndex: (): Resource<ItemSetIndexResponse> => {\n return {\n path: `${base}/item-set/index`,\n namespace: 'static',\n };\n },\n itemSearch: (\n options: ItemSearchParameters,\n ): Resource<SearchResponse<ItemSearchResponseItem>, Omit<ItemSearchParameters, 'name' | 'locale'>> => {\n return {\n namespace: 'static',\n parameters: {\n _page: options._page,\n orderby: Array.isArray(options.orderby) ? options.orderby.join(',') : options.orderby,\n [`name.${options.locale}`]: options.name,\n },\n path: `${searchBase}/item`,\n };\n },\n};\n","import type { Resource, SearchResponse } from '@blizzard-api/core';\nimport { base, mediaBase, searchBase } from '../base';\nimport type {\n JournalEncounterIndexResponse,\n JournalEncounterResponse,\n JournalEncounterSearchParameters,\n JournalEncounterSearchResponseItem,\n JournalExpansionIndexResponse,\n JournalExpansionResponse,\n JournalInstanceIndexResponse,\n JournalInstanceMediaResponse,\n JournalInstanceResponse,\n} from './types';\n\nexport const journalApi = {\n journalEncounter: (journalEncounterId: number): Resource<JournalEncounterResponse> => {\n return {\n path: `${base}/journal-encounter/${journalEncounterId}`,\n namespace: 'static',\n };\n },\n journalEncounterIndex: (): Resource<JournalEncounterIndexResponse> => {\n return {\n path: `${base}/journal-encounter/index`,\n namespace: 'static',\n };\n },\n journalEncounterSearch: (\n options: JournalEncounterSearchParameters,\n ): Resource<\n SearchResponse<JournalEncounterSearchResponseItem>,\n Omit<JournalEncounterSearchParameters, 'instanceName' | 'locale'>\n > => {\n return {\n namespace: 'static',\n parameters: {\n _page: options._page,\n orderby: Array.isArray(options.orderby) ? options.orderby.join(',') : options.orderby,\n [`instance.name.${options.locale}`]: options.instanceName,\n },\n path: `${searchBase}/journal-encounter`,\n };\n },\n journalExpansion: (journalExpansionId: number): Resource<JournalExpansionResponse> => {\n return {\n path: `${base}/journal-expansion/${journalExpansionId}`,\n namespace: 'static',\n };\n },\n journalExpansionIndex: (): Resource<JournalExpansionIndexResponse> => {\n return {\n path: `${base}/journal-expansion/index`,\n namespace: 'static',\n };\n },\n journalInstance: (journalInstanceId: number): Resource<JournalInstanceResponse> => {\n return {\n path: `${base}/journal-instance/${journalInstanceId}`,\n namespace: 'static',\n };\n },\n journalInstanceIndex: (): Resource<JournalInstanceIndexResponse> => {\n return {\n path: `${base}/journal-instance/index`,\n namespace: 'static',\n };\n },\n journalInstanceMedia: (journalInstanceId: number): Resource<JournalInstanceMediaResponse> => {\n return {\n path: `${mediaBase}/journal-instance/${journalInstanceId}`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource, SearchResponse } from '@blizzard-api/core';\nimport { searchBase } from '../base';\nimport type { MediaSearchParameters, MediaSearchResponseItem } from './types';\n\nexport const mediaSearchApi = {\n mediaSearch: (\n options: MediaSearchParameters,\n ): Resource<SearchResponse<MediaSearchResponseItem>, MediaSearchParameters> => {\n return {\n namespace: 'static',\n parameters: {\n _page: options._page,\n orderby: Array.isArray(options.orderby) ? options.orderby.join(',') : options.orderby,\n tags: options.tags,\n },\n path: `${searchBase}/media`,\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type {\n ModifiedCraftingCategoryIndexResponse,\n ModifiedCraftingCategoryResponse,\n ModifiedCraftingIndexResponse,\n ModifiedCraftingReagentSlotTypeIndexResponse,\n ModifiedCraftingReagentSlotTypeResponse,\n} from './types';\n\nexport const modifiedCraftingApi = {\n modifiedCraftingCategory: (modifiedCraftingCategoryId: number): Resource<ModifiedCraftingCategoryResponse> => {\n return {\n path: `${base}/modified-crafting/category/${modifiedCraftingCategoryId}`,\n namespace: 'static',\n };\n },\n modifiedCraftingCategoryIndex: (): Resource<ModifiedCraftingCategoryIndexResponse> => {\n return {\n path: `${base}/modified-crafting/category/index`,\n namespace: 'static',\n };\n },\n modifiedCraftingIndex: (): Resource<ModifiedCraftingIndexResponse> => {\n return {\n path: `${base}/modified-crafting/index`,\n namespace: 'static',\n };\n },\n modifiedCraftingReagentSlotType: (\n modifiedCraftingReagentSlotTypeId: number,\n ): Resource<ModifiedCraftingReagentSlotTypeResponse> => {\n return {\n path: `${base}/modified-crafting/reagent-slot-type/${modifiedCraftingReagentSlotTypeId}`,\n namespace: 'static',\n };\n },\n modifiedCraftingReagentSlotTypeIndex: (): Resource<ModifiedCraftingReagentSlotTypeIndexResponse> => {\n return {\n path: `${base}/modified-crafting/reagent-slot-type/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource, SearchResponse } from '@blizzard-api/core';\nimport { base, searchBase } from '../base';\nimport type { MountIndexResponse, MountResponse, MountSearchParameters, MountSearchResponseItem } from './types';\n\nexport const mountApi = {\n mount: (mountId: number): Resource<MountResponse> => {\n return {\n path: `${base}/mount/${mountId}`,\n namespace: 'static',\n };\n },\n mountIndex: (): Resource<MountIndexResponse> => {\n return {\n path: `${base}/mount/index`,\n namespace: 'static',\n };\n },\n mountSearch: (\n options: MountSearchParameters,\n ): Resource<SearchResponse<MountSearchResponseItem>, Omit<MountSearchParameters, 'name' | 'locale'>> => {\n return {\n namespace: 'static',\n parameters: {\n _page: options._page,\n orderby: Array.isArray(options.orderby) ? options.orderby.join(',') : options.orderby,\n [`name.${options.locale}`]: options.name,\n },\n path: `${searchBase}/mount`,\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type {\n MythicKeystoneAffixIndexResponse,\n MythicKeystoneAffixMediaResponse,\n MythicKeystoneAffixResponse,\n} from './types';\n\nexport const mythicKeystoneAffixApi = {\n mythicKeystoneAffix: (mythicKeystoneAffixId: number): Resource<MythicKeystoneAffixResponse> => {\n return {\n path: `${base}/keystone-affix/${mythicKeystoneAffixId}`,\n namespace: 'static',\n };\n },\n mythicKeystoneAffixIndex: (): Resource<MythicKeystoneAffixIndexResponse> => {\n return {\n path: `${base}/keystone-affix/index`,\n namespace: 'static',\n };\n },\n mythicKeystoneAffixMedia: (mythicKeystoneAffixId: number): Resource<MythicKeystoneAffixMediaResponse> => {\n return {\n path: `${mediaBase}/keystone-affix/${mythicKeystoneAffixId}`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type {\n MythicKeystoneDungeonIndexResponse,\n MythicKeystoneDungeonResponse,\n MythicKeystoneIndexResponse,\n MythicKeystonePeriodIndexResponse,\n MythicKeystonePeriodResponse,\n MythicKeystoneSeasonIndexResponse,\n MythicKeystoneSeasonResponse,\n} from './types';\n\nexport const mythicKeystoneDungeonApi = {\n mythicKeystoneDungeon: (mythicKeystoneDungeonId: number): Resource<MythicKeystoneDungeonResponse> => {\n return {\n path: `${base}/mythic-keystone/dungeon/${mythicKeystoneDungeonId}`,\n namespace: 'dynamic',\n };\n },\n mythicKeystoneDungeonIndex: (): Resource<MythicKeystoneDungeonIndexResponse> => {\n return {\n path: `${base}/mythic-keystone/dungeon/index`,\n namespace: 'dynamic',\n };\n },\n mythicKeystoneIndex: (): Resource<MythicKeystoneIndexResponse> => {\n return {\n path: `${base}/mythic-keystone/index`,\n namespace: 'dynamic',\n };\n },\n mythicKeystonePeriod: (mythicKeystonePeriodId: number): Resource<MythicKeystonePeriodResponse> => {\n return {\n path: `${base}/mythic-keystone/period/${mythicKeystonePeriodId}`,\n namespace: 'dynamic',\n };\n },\n mythicKeystonePeriodIndex: (): Resource<MythicKeystonePeriodIndexResponse> => {\n return {\n path: `${base}/mythic-keystone/period/index`,\n namespace: 'dynamic',\n };\n },\n mythicKeystoneSeason: (mythicKeystoneSeasonId: number): Resource<MythicKeystoneSeasonResponse> => {\n return {\n path: `${base}/mythic-keystone/season/${mythicKeystoneSeasonId}`,\n namespace: 'dynamic',\n };\n },\n mythicKeystoneSeasonIndex: (): Resource<MythicKeystoneSeasonIndexResponse> => {\n return {\n path: `${base}/mythic-keystone/season/index`,\n namespace: 'dynamic',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { MythicKeystoneLeaderboardIndexResponse, MythicKeystoneLeaderboardResponse } from './types';\n\nexport const mythicKeystoneLeaderboardApi = {\n mythicKeystoneLeaderboard: (\n connectedRealmId: number,\n dungeonId: number,\n period: number,\n ): Resource<MythicKeystoneLeaderboardResponse> => {\n return {\n path: `${base}/connected-realm/${connectedRealmId}/mythic-leaderboard/${dungeonId}/period/${period}`,\n namespace: 'dynamic',\n };\n },\n mythicKeystoneLeaderboardIndex: (connectedRealmId: number): Resource<MythicKeystoneLeaderboardIndexResponse> => {\n return {\n path: `${base}/connected-realm/${connectedRealmId}/mythic-leaderboard/index`,\n namespace: 'dynamic',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport type { Factions } from '../base';\nimport { base } from '../base';\nimport type { MythicRaidLeaderboardResponse } from './types';\n\nexport const mythicRaidLeaderboardApi = {\n mythicRaidLeaderboard: (\n raid: string,\n faction: Lowercase<keyof typeof Factions>,\n ): Resource<MythicRaidLeaderboardResponse> => {\n return {\n path: `${base}/leaderboard/hall-of-fame/${raid}/${faction}`,\n namespace: 'dynamic',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type {\n PetAbilityIndexResponse,\n PetAbilityMediaResponse,\n PetAbilityResponse,\n PetIndexResponse,\n PetMediaResponse,\n PetResponse,\n} from './types';\n\nexport const petApi = {\n pet: (petId: number): Resource<PetResponse> => {\n return {\n path: `${base}/pet/${petId}`,\n namespace: 'static',\n };\n },\n petIndex: (): Resource<PetIndexResponse> => {\n return {\n path: `${base}/pet/index`,\n namespace: 'static',\n };\n },\n petMedia: (petId: number): Resource<PetMediaResponse> => {\n return {\n path: `${mediaBase}/pet/${petId}`,\n namespace: 'static',\n };\n },\n petAbility: (petAbilityId: number): Resource<PetAbilityResponse> => {\n return {\n path: `${base}/pet-ability/${petAbilityId}`,\n namespace: 'static',\n };\n },\n petAbilityIndex: (): Resource<PetAbilityIndexResponse> => {\n return {\n path: `${base}/pet-ability/index`,\n namespace: 'static',\n };\n },\n petAbilityMedia: (petAbilityId: number): Resource<PetAbilityMediaResponse> => {\n return {\n path: `${mediaBase}/pet-ability/${petAbilityId}`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type {\n PlayableClassIndexResponse,\n PlayableClassMediaResponse,\n PlayableClassResponse,\n PvpTalentSlotsResponse,\n} from './types';\n\nexport const playableClassApi = {\n playableClass: (playableClassId: number): Resource<PlayableClassResponse> => {\n return {\n path: `${base}/playable-class/${playableClassId}`,\n namespace: 'static',\n };\n },\n playableClassIndex: (): Resource<PlayableClassIndexResponse> => {\n return {\n path: `${base}/playable-class/index`,\n namespace: 'static',\n };\n },\n playableClassMedia: (playableClassId: number): Resource<PlayableClassMediaResponse> => {\n return {\n path: `${mediaBase}/playable-class/${playableClassId}`,\n namespace: 'static',\n };\n },\n pvpTalentSlots: (playableClassId: number): Resource<PvpTalentSlotsResponse> => {\n return {\n path: `${base}/playable-class/${playableClassId}/pvp-talent-slots`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { PlayableRaceIndexResponse, PlayableRaceResponse } from './types';\n\nexport const playableRaceApi = {\n playableRace: (playableRaceId: number): Resource<PlayableRaceResponse> => {\n return {\n path: `${base}/playable-race/${playableRaceId}`,\n namespace: 'static',\n };\n },\n playableRaceIndex: (): Resource<PlayableRaceIndexResponse> => {\n return {\n path: `${base}/playable-race/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type {\n PlayableSpecializationIndexResponse,\n PlayableSpecializationMediaResponse,\n PlayableSpecializationResponse,\n} from './types';\n\nexport const playableSpecializationApi = {\n playableSpecialization: (specializationId: number): Resource<PlayableSpecializationResponse> => {\n return {\n path: `${base}/playable-specialization/${specializationId}`,\n namespace: 'static',\n };\n },\n playableSpecializationIndex: (): Resource<PlayableSpecializationIndexResponse> => {\n return {\n path: `${base}/playable-specialization/index`,\n namespace: 'static',\n };\n },\n playableSpecializationMedia: (specializationId: number): Resource<PlayableSpecializationMediaResponse> => {\n return {\n path: `${mediaBase}/playable-specialization/${specializationId}`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { PowerTypeIndexResponse, PowerTypeResponse } from './types';\n\nexport const powerTypeApi = {\n powerType: (powerTypeId: number): Resource<PowerTypeResponse> => {\n return {\n path: `${base}/power-type/${powerTypeId}`,\n namespace: 'static',\n };\n },\n powerTypeIndex: (): Resource<PowerTypeIndexResponse> => {\n return {\n path: `${base}/power-type/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type {\n ProfessionIndexResponse,\n ProfessionMediaResponse,\n ProfessionResponse,\n ProfessionSkillTierResponse,\n RecipeMediaResponse,\n RecipeResponse,\n} from './types';\n\nexport const professionApi = {\n profession: (professionId: number): Resource<ProfessionResponse> => {\n return {\n path: `${base}/profession/${professionId}`,\n namespace: 'static',\n };\n },\n professionIndex: (): Resource<ProfessionIndexResponse> => {\n return {\n path: `${base}/profession/index`,\n namespace: 'static',\n };\n },\n professionMedia: (professionId: number): Resource<ProfessionMediaResponse> => {\n return {\n path: `${mediaBase}/profession/${professionId}`,\n namespace: 'static',\n };\n },\n professionSkillTier: (professionId: number, skillTierId: number): Resource<ProfessionSkillTierResponse> => {\n return {\n path: `${base}/profession/${professionId}/skill-tier/${skillTierId}`,\n namespace: 'static',\n };\n },\n recipe: (recipeId: number): Resource<RecipeResponse> => {\n return {\n path: `${base}/recipe/${recipeId}`,\n namespace: 'static',\n };\n },\n recipeMedia: (recipeId: number): Resource<RecipeMediaResponse> => {\n return {\n path: `${mediaBase}/recipe/${recipeId}`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type {\n PvpLeaderboardIndexResponse,\n PvpLeaderboardResponse,\n PvpRewardsIndexResponse,\n PvpSeasonIndexResponse,\n PvpSeasonResponse,\n} from './types';\n\nexport const pvpSeasonApi = {\n pvpLeaderboard: (pvpSeasonId: number, bracket: string): Resource<PvpLeaderboardResponse> => {\n return {\n path: `${base}/pvp-season/${pvpSeasonId}/pvp-leaderboard/${bracket}`,\n namespace: 'dynamic',\n };\n },\n pvpLeaderboardIndex: (pvpSeasonId: number): Resource<PvpLeaderboardIndexResponse> => {\n return {\n path: `${base}/pvp-season/${pvpSeasonId}/pvp-leaderboard/index`,\n namespace: 'dynamic',\n };\n },\n pvpRewardsIndex: (pvpSeasonId: number): Resource<PvpRewardsIndexResponse> => {\n return {\n path: `${base}/pvp-season/${pvpSeasonId}/pvp-reward/index`,\n namespace: 'dynamic',\n };\n },\n pvpSeason: (pvpSeasonId: number): Resource<PvpSeasonResponse> => {\n return {\n path: `${base}/pvp-season/${pvpSeasonId}`,\n namespace: 'dynamic',\n };\n },\n pvpSeasonIndex: (): Resource<PvpSeasonIndexResponse> => {\n return {\n path: `${base}/pvp-season/index`,\n namespace: 'dynamic',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type { PvpTierIndexResponse, PvpTierMediaResponse, PvpTierResponse } from './types';\n\nexport const pvpTierApi = {\n pvpTier: (pvpTierId: number): Resource<PvpTierResponse> => {\n return {\n path: `${base}/pvp-tier/${pvpTierId}`,\n namespace: 'static',\n };\n },\n pvpTierIndex: (): Resource<PvpTierIndexResponse> => {\n return {\n path: `${base}/pvp-tier/index`,\n namespace: 'static',\n };\n },\n pvpTierMedia: (pvpTierId: number): Resource<PvpTierMediaResponse> => {\n return {\n path: `${mediaBase}/pvp-tier/${pvpTierId}`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type {\n QuestAreaIndexResponse,\n QuestAreaResponse,\n QuestCategoryIndexResponse,\n QuestCategoryResponse,\n QuestIndexResponse,\n QuestResponse,\n QuestTypeIndexResponse,\n QuestTypeResponse,\n} from './types';\n\nexport const questApi = {\n quest: (questId: number): Resource<QuestResponse> => {\n return {\n path: `${base}/quest/${questId}`,\n namespace: 'static',\n };\n },\n questIndex: (): Resource<QuestIndexResponse> => {\n return {\n path: `${base}/quest/index`,\n namespace: 'static',\n };\n },\n questArea: (questAreaId: number): Resource<QuestAreaResponse> => {\n return {\n path: `${base}/quest/area/${questAreaId}`,\n namespace: 'static',\n };\n },\n questAreaIndex: (): Resource<QuestAreaIndexResponse> => {\n return {\n path: `${base}/quest/area/index`,\n namespace: 'static',\n };\n },\n questCategory: (questCategoryId: number): Resource<QuestCategoryResponse> => {\n return {\n path: `${base}/quest/category/${questCategoryId}`,\n namespace: 'static',\n };\n },\n questCategoryIndex: (): Resource<QuestCategoryIndexResponse> => {\n return {\n path: `${base}/quest/category/index`,\n namespace: 'static',\n };\n },\n questType: (questTypeId: number): Resource<QuestTypeResponse> => {\n return {\n path: `${base}/quest/type/${questTypeId}`,\n namespace: 'static',\n };\n },\n questTypeIndex: (): Resource<QuestTypeIndexResponse> => {\n return {\n path: `${base}/quest/type/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource, SearchResponse } from '@blizzard-api/core';\nimport { base, searchBase } from '../base';\nimport type { RealmIndexResponse, RealmResponse, RealmSearchParameters, RealmSearchResponseItem } from './types';\n\nexport const realmApi = {\n realm: (realmSlug: string): Resource<RealmResponse> => {\n return {\n path: `${base}/realm/${realmSlug}`,\n namespace: 'dynamic',\n };\n },\n realmIndex: (): Resource<RealmIndexResponse> => {\n return {\n path: `${base}/realm/index`,\n namespace: 'dynamic',\n };\n },\n realmSearch: (\n options: RealmSearchParameters,\n ): Resource<SearchResponse<RealmSearchResponseItem>, RealmSearchParameters> => {\n return {\n namespace: 'dynamic',\n parameters: {\n _page: options._page,\n orderby: Array.isArray(options.orderby) ? options.orderby.join(',') : options.orderby,\n timezone: options.timezone,\n },\n path: `${searchBase}/realm`,\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { RegionIndexResponse, RegionResponse } from './types';\n\nexport const regionApi = {\n region: (regionId: number): Resource<RegionResponse> => {\n return {\n path: `${base}/region/${regionId}`,\n namespace: 'dynamic',\n };\n },\n regionIndex: (): Resource<RegionIndexResponse> => {\n return {\n path: `${base}/region/index`,\n namespace: 'dynamic',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type {\n ReputationFactionIndexResponse,\n ReputationFactionResponse,\n ReputationTiersIndexResponse,\n ReputationTiersResponse,\n} from './types';\n\nexport const reputationApi = {\n reputationFaction: (reputationFactionId: number): Resource<ReputationFactionResponse> => {\n return {\n path: `${base}/reputation-faction/${reputationFactionId}`,\n namespace: 'static',\n };\n },\n reputationFactionIndex: (): Resource<ReputationFactionIndexResponse> => {\n return {\n path: `${base}/reputation-faction/index`,\n namespace: 'static',\n };\n },\n reputationTiers: (reputationTiersId: number): Resource<ReputationTiersResponse> => {\n return {\n path: `${base}/reputation-tiers/${reputationTiersId}`,\n namespace: 'static',\n };\n },\n reputationTiersIndex: (): Resource<ReputationTiersIndexResponse> => {\n return {\n path: `${base}/reputation-tiers/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource, SearchResponse } from '@blizzard-api/core';\nimport { base, mediaBase, searchBase } from '../base';\nimport type { SpellMediaResponse, SpellResponse, SpellSearchParameters, SpellSearchResponseItem } from './types';\n\nexport const spellApi = {\n spell: (spellId: number): Resource<SpellResponse> => {\n return {\n path: `${base}/spell/${spellId}`,\n namespace: 'static',\n };\n },\n spellMedia: (spellId: number): Resource<SpellMediaResponse> => {\n return {\n path: `${mediaBase}/spell/${spellId}`,\n namespace: 'static',\n };\n },\n spellSearch: (\n options: SpellSearchParameters,\n ): Resource<SearchResponse<SpellSearchResponseItem>, Omit<SpellSearchParameters, 'name' | 'locale'>> => {\n return {\n namespace: 'static',\n parameters: {\n _page: options._page,\n orderby: Array.isArray(options.orderby) ? options.orderby.join(',') : options.orderby,\n [`name.${options.locale}`]: options.name,\n },\n path: `${searchBase}/spell`,\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type {\n PvpTalentIndexResponse,\n PvpTalentResponse,\n TalentIndexResponse,\n TalentResponse,\n TalentTreeIndexResponse,\n TalentTreeNodesResponse,\n TalentTreeResponse,\n} from './types';\n\nexport const talentApi = {\n pvpTalent: (pvpTalentId: number): Resource<PvpTalentResponse> => {\n return {\n path: `${base}/pvp-talent/${pvpTalentId}`,\n namespace: 'static',\n };\n },\n pvpTalentIndex: (): Resource<PvpTalentIndexResponse> => {\n return {\n path: `${base}/pvp-talent/index`,\n namespace: 'static',\n };\n },\n talent: (talentId: number): Resource<TalentResponse> => {\n return {\n path: `${base}/talent/${talentId}`,\n namespace: 'static',\n };\n },\n talentIndex: (): Resource<TalentIndexResponse> => {\n return {\n path: `${base}/talent/index`,\n namespace: 'static',\n };\n },\n talentTree: (talentTreeId: number, specId: number): Resource<TalentTreeResponse> => {\n return {\n path: `${base}/talent-tree/${talentTreeId}/playable-specialization/${specId}`,\n namespace: 'static',\n };\n },\n talentTreeIndex: (): Resource<TalentTreeIndexResponse> => {\n return {\n path: `${base}/talent-tree/index`,\n namespace: 'static',\n };\n },\n talentTreeNodes: (talentTreeId: number): Resource<TalentTreeNodesResponse> => {\n return {\n path: `${base}/talent-tree/${talentTreeId}`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base, mediaBase } from '../base';\nimport type {\n TechTalentIndexResponse,\n TechTalentMediaResponse,\n TechTalentResponse,\n TechTalentTreeIndexResponse,\n TechTalentTreeResponse,\n} from './types';\n\nexport const techTalentApi = {\n techTalent: (techTalentId: number): Resource<TechTalentResponse> => {\n return {\n path: `${base}/tech-talent/${techTalentId}`,\n namespace: 'static',\n };\n },\n techTalentIndex: (): Resource<TechTalentIndexResponse> => {\n return {\n path: `${base}/tech-talent/index`,\n namespace: 'static',\n };\n },\n techTalentMedia: (techTalentId: number): Resource<TechTalentMediaResponse> => {\n return {\n path: `${mediaBase}/tech-talent/${techTalentId}`,\n namespace: 'static',\n };\n },\n techTalentTree: (techTalentTreeId: number): Resource<TechTalentTreeResponse> => {\n return {\n path: `${base}/tech-talent-tree/${techTalentTreeId}`,\n namespace: 'static',\n };\n },\n techTalentTreeIndex: (): Resource<TechTalentTreeIndexResponse> => {\n return {\n path: `${base}/tech-talent-tree/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { TitleIndexResponse, TitleResponse } from './types';\n\nexport const titleApi = {\n title: (titleId: number): Resource<TitleResponse> => {\n return {\n path: `${base}/title/${titleId}`,\n namespace: 'static',\n };\n },\n titleIndex: (): Resource<TitleIndexResponse> => {\n return {\n path: `${base}/title/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { ToyIndexResponse, ToyResponse } from './types';\n\nexport const toyApi = {\n toy: (toyId: number): Resource<ToyResponse> => {\n return {\n path: `${base}/toy/${toyId}`,\n namespace: 'static',\n };\n },\n toyIndex: (): Resource<ToyIndexResponse> => {\n return {\n path: `${base}/toy/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\nimport type { WowTokenResponse } from './types';\n\nexport const wowTokenApi = {\n wowToken: (): Resource<WowTokenResponse> => {\n return {\n path: `${base}/token/index`,\n namespace: 'dynamic',\n };\n },\n};\n"],"mappings":"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","names":[]}
|