@blizzard-api/wow 0.0.7 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -250,15 +250,15 @@ var itemApi = {
250
250
  namespace: "static"
251
251
  };
252
252
  },
253
- itemIndex: () => {
253
+ itemClass: (itemClassId) => {
254
254
  return {
255
- path: `${base}/item/index`,
255
+ path: `${base}/item-class/${itemClassId}`,
256
256
  namespace: "static"
257
257
  };
258
258
  },
259
- itemClass: (itemClassId) => {
259
+ itemSubclass: (itemClassId, itemSubclassId) => {
260
260
  return {
261
- path: `${base}/item-class/${itemClassId}`,
261
+ path: `${base}/item-class/${itemClassId}/item-subclass/${itemSubclassId}`,
262
262
  namespace: "static"
263
263
  };
264
264
  },
@@ -419,19 +419,19 @@ var mountApi = {
419
419
  var mythicKeystoneAffixApi = {
420
420
  mythicKeystoneAffix: (mythicKeystoneAffixId) => {
421
421
  return {
422
- path: `${base}/mythic-keystone-affix/${mythicKeystoneAffixId}`,
422
+ path: `${base}/keystone-affix/${mythicKeystoneAffixId}`,
423
423
  namespace: "static"
424
424
  };
425
425
  },
426
426
  mythicKeystoneAffixIndex: () => {
427
427
  return {
428
- path: `${base}/mythic-keystone-affix/index`,
428
+ path: `${base}/keystone-affix/index`,
429
429
  namespace: "static"
430
430
  };
431
431
  },
432
432
  mythicKeystoneAffixMedia: (mythicKeystoneAffixId) => {
433
433
  return {
434
- path: `${mediaBase}/mythic-keystone-affix/${mythicKeystoneAffixId}`,
434
+ path: `${mediaBase}/keystone-affix/${mythicKeystoneAffixId}`,
435
435
  namespace: "static"
436
436
  };
437
437
  }
@@ -501,7 +501,6 @@ var mythicKeystoneLeaderboardApi = {
501
501
 
502
502
  // src/mythic-raid-leaderboard/mythic-raid-leaderboard.ts
503
503
  var mythicRaidLeaderboardApi = {
504
- //TODO Implement a better type than string for raid
505
504
  mythicRaidLeaderboard: (raid, faction) => {
506
505
  return {
507
506
  path: `${base}/leaderboard/hall-of-fame/${raid}/${faction}`,
@@ -808,13 +807,13 @@ var regionApi = {
808
807
  region: (regionId) => {
809
808
  return {
810
809
  path: `${base}/region/${regionId}`,
811
- namespace: "static"
810
+ namespace: "dynamic"
812
811
  };
813
812
  },
814
813
  regionIndex: () => {
815
814
  return {
816
815
  path: `${base}/region/index`,
817
- namespace: "static"
816
+ namespace: "dynamic"
818
817
  };
819
818
  }
820
819
  };
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../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","../src/index.ts"],"sourcesContent":["export const base = '/data/wow' as const;\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","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';\n\nexport const azeriteEssenceApi = {\n azeriteEssence: (azeriteEssenceId: number): Resource<void> => {\n return {\n path: `${base}/azerite-essence/${azeriteEssenceId}`,\n namespace: 'static',\n };\n },\n azeriteEssenceIndex: (): Resource<void> => {\n return {\n path: `${base}/azerite-essence/index`,\n namespace: 'static',\n };\n },\n azeriteEssenceMedia: (azeriteEssenceId: number): Resource<void> => {\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';\n\nexport const covenantApi = {\n conduit: (conduitId: number): Resource<void> => {\n return {\n path: `${base}/covenant/conduit/${conduitId}`,\n namespace: 'static',\n };\n },\n conduitIndex: (): Resource<void> => {\n return {\n path: `${base}/covenant/conduit/index`,\n namespace: 'static',\n };\n },\n covenant: (covenantId: number): Resource<void> => {\n return {\n path: `${base}/covenant/${covenantId}`,\n namespace: 'static',\n };\n },\n covenantIndex: (): Resource<void> => {\n return {\n path: `${base}/covenant/index`,\n namespace: 'static',\n };\n },\n covenantMedia: (covenantId: number): Resource<void> => {\n return {\n path: `${mediaBase}/covenant/${covenantId}`,\n namespace: 'static',\n };\n },\n soulbind: (soulbindId: number): Resource<void> => {\n return {\n path: `${base}/covenant/soulbind/${soulbindId}`,\n namespace: 'static',\n };\n },\n soulbindIndex: (): Resource<void> => {\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';\n\nexport const creatureApi = {\n creature: (creatureId: number): Resource<void> => {\n return {\n path: `${base}/creature/${creatureId}`,\n namespace: 'static',\n };\n },\n creatureDisplayMedia: (creatureDisplayId: number): Resource<void> => {\n return {\n path: `${mediaBase}/creature-display/${creatureDisplayId}`,\n namespace: 'static',\n };\n },\n creatureFamily: (creatureFamilyId: number): Resource<void> => {\n return {\n path: `${base}/creature-family/${creatureFamilyId}`,\n namespace: 'static',\n };\n },\n creatureFamilyIndex: (): Resource<void> => {\n return {\n path: `${base}/creature-family/index`,\n namespace: 'static',\n };\n },\n creatureFamilyMedia: (creatureFamilyId: number): Resource<void> => {\n return {\n path: `${mediaBase}/creature-family/${creatureFamilyId}`,\n namespace: 'static',\n };\n },\n creatureType: (creatureTypeId: number): Resource<void> => {\n return {\n path: `${base}/creature-type/${creatureTypeId}`,\n namespace: 'static',\n };\n },\n creatureTypeIndex: (): Resource<void> => {\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';\n\nexport const guildCrestApi = {\n guildCrestComponentsIndex: (): Resource<void> => {\n return {\n path: `${base}/guild-crest/index`,\n namespace: 'static',\n };\n },\n guildCrestBorder: (borderId: number): Resource<void> => {\n return {\n path: `${mediaBase}/guild-crest/border/${borderId}`,\n namespace: 'static',\n };\n },\n guildCrestEmblem: (emblemId: number): Resource<void> => {\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';\n\nexport const heirloomApi = {\n heirloom: (heirloomId: number): Resource<void> => {\n return {\n path: `${base}/heirloom/${heirloomId}`,\n namespace: 'static',\n };\n },\n heirloomIndex: (): Resource<void> => {\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';\n\nexport const itemApi = {\n item: (itemId: number): Resource<void> => {\n return {\n path: `${base}/item/${itemId}`,\n namespace: 'static',\n };\n },\n itemIndex: (): Resource<void> => {\n return {\n path: `${base}/item/index`,\n namespace: 'static',\n };\n },\n itemClass: (itemClassId: number): Resource<void> => {\n return {\n path: `${base}/item-class/${itemClassId}`,\n namespace: 'static',\n };\n },\n itemClassIndex: (): Resource<void> => {\n return {\n path: `${base}/item-class/index`,\n namespace: 'static',\n };\n },\n itemMedia: (itemId: number): Resource<void> => {\n return {\n path: `${mediaBase}/item/${itemId}`,\n namespace: 'static',\n };\n },\n itemSet: (itemSetId: number): Resource<void> => {\n return {\n path: `${base}/item-set/${itemSetId}`,\n namespace: 'static',\n };\n },\n itemSetIndex: (): Resource<void> => {\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';\n\nexport const journalApi = {\n journalEncounter: (journalEncounterId: number): Resource<void> => {\n return {\n path: `${base}/journal-encounter/${journalEncounterId}`,\n namespace: 'static',\n };\n },\n journalEncounterIndex: (): Resource<void> => {\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<void> => {\n return {\n path: `${base}/journal-expansion/${journalExpansionId}`,\n namespace: 'static',\n };\n },\n journalExpansionIndex: (): Resource<void> => {\n return {\n path: `${base}/journal-expansion/index`,\n namespace: 'static',\n };\n },\n journalInstance: (journalInstanceId: number): Resource<void> => {\n return {\n path: `${base}/journal-instance/${journalInstanceId}`,\n namespace: 'static',\n };\n },\n journalInstanceIndex: (): Resource<void> => {\n return {\n path: `${base}/journal-instance/index`,\n namespace: 'static',\n };\n },\n journalInstanceMedia: (journalInstanceId: number): Resource<void> => {\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';\n\nexport const modifiedCraftingApi = {\n modifiedCraftingCategory: (modifiedCraftingCategoryId: number): Resource<void> => {\n return {\n path: `${base}/modified-crafting/category/${modifiedCraftingCategoryId}`,\n namespace: 'static',\n };\n },\n modifiedCraftingCategoryIndex: (): Resource<void> => {\n return {\n path: `${base}/modified-crafting/category/index`,\n namespace: 'static',\n };\n },\n modifiedCraftingIndex: (): Resource<void> => {\n return {\n path: `${base}/modified-crafting/index`,\n namespace: 'static',\n };\n },\n modifiedCraftingReagentSlotType: (modifiedCraftingReagentSlotTypeId: number): Resource<void> => {\n return {\n path: `${base}/modified-crafting/reagent-slot-type/${modifiedCraftingReagentSlotTypeId}`,\n namespace: 'static',\n };\n },\n modifiedCraftingReagentSlotTypeIndex: (): Resource<void> => {\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';\n\nexport const mountApi = {\n mount: (mountId: number): Resource<void> => {\n return {\n path: `${base}/mount/${mountId}`,\n namespace: 'static',\n };\n },\n mountIndex: (): Resource<void> => {\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';\n\nexport const mythicKeystoneAffixApi = {\n mythicKeystoneAffix: (mythicKeystoneAffixId: number): Resource<void> => {\n return {\n path: `${base}/mythic-keystone-affix/${mythicKeystoneAffixId}`,\n namespace: 'static',\n };\n },\n mythicKeystoneAffixIndex: (): Resource<void> => {\n return {\n path: `${base}/mythic-keystone-affix/index`,\n namespace: 'static',\n };\n },\n mythicKeystoneAffixMedia: (mythicKeystoneAffixId: number): Resource<void> => {\n return {\n path: `${mediaBase}/mythic-keystone-affix/${mythicKeystoneAffixId}`,\n namespace: 'static',\n };\n },\n};\n","import { base } from '../base';\n\nexport const mythicKeystoneDungeonApi = {\n mythicKeystoneDungeon: (mythicKeystoneDungeonId: number) => {\n return {\n path: `${base}/mythic-keystone/dungeon/${mythicKeystoneDungeonId}`,\n namespace: 'dynamic',\n };\n },\n mythicKeystoneDungeonIndex: () => {\n return {\n path: `${base}/mythic-keystone/dungeon/index`,\n namespace: 'dynamic',\n };\n },\n mythicKeystoneIndex: () => {\n return {\n path: `${base}/mythic-keystone/index`,\n namespace: 'dynamic',\n };\n },\n mythicKeystonePeriod: (mythicKeystonePeriodId: number) => {\n return {\n path: `${base}/mythic-keystone/period/${mythicKeystonePeriodId}`,\n namespace: 'dynamic',\n };\n },\n mythicKeystonePeriodIndex: () => {\n return {\n path: `${base}/mythic-keystone/period/index`,\n namespace: 'dynamic',\n };\n },\n mythicKeystoneSeason: (mythicKeystoneSeasonId: number) => {\n return {\n path: `${base}/mythic-keystone/season/${mythicKeystoneSeasonId}`,\n namespace: 'dynamic',\n };\n },\n mythicKeystoneSeasonIndex: () => {\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';\n\nexport const mythicKeystoneLeaderboardApi = {\n mythicKeystoneLeaderboard: (connectedRealmId: number, dungeonId: number, period: number): Resource<void> => {\n return {\n path: `${base}/connected-realm/${connectedRealmId}/mythic-leaderboard/${dungeonId}/period/${period}`,\n namespace: 'dynamic',\n };\n },\n mythicKeystoneLeaderboardIndex: (connectedRealmId: number): Resource<void> => {\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 { base } from '../base';\n\nexport const mythicRaidLeaderboardApi = {\n //TODO Implement a better type than string for raid\n mythicRaidLeaderboard: (raid: string, faction: 'alliance' | 'horde'): Resource<void> => {\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';\n\nexport const petApi = {\n pet: (petId: number): Resource<void> => {\n return {\n path: `${base}/pet/${petId}`,\n namespace: 'static',\n };\n },\n petIndex: (): Resource<void> => {\n return {\n path: `${base}/pet/index`,\n namespace: 'static',\n };\n },\n petMedia: (petId: number): Resource<void> => {\n return {\n path: `${mediaBase}/pet/${petId}`,\n namespace: 'static',\n };\n },\n petAbility: (petAbilityId: number): Resource<void> => {\n return {\n path: `${base}/pet-ability/${petAbilityId}`,\n namespace: 'static',\n };\n },\n petAbilityIndex: (): Resource<void> => {\n return {\n path: `${base}/pet-ability/index`,\n namespace: 'static',\n };\n },\n petAbilityMedia: (petAbilityId: number): Resource<void> => {\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';\n\nexport const playableClassApi = {\n playableClass: (playableClassId: number): Resource<void> => {\n return {\n path: `${base}/playable-class/${playableClassId}`,\n namespace: 'static',\n };\n },\n playableClassIndex: (): Resource<void> => {\n return {\n path: `${base}/playable-class/index`,\n namespace: 'static',\n };\n },\n playableClassMedia: (playableClassId: number): Resource<void> => {\n return {\n path: `${mediaBase}/playable-class/${playableClassId}`,\n namespace: 'static',\n };\n },\n pvpTalentSlots: (playableClassId: number): Resource<void> => {\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';\n\nexport const playableRaceApi = {\n playableRace: (playableRaceId: number): Resource<void> => {\n return {\n path: `${base}/playable-race/${playableRaceId}`,\n namespace: 'static',\n };\n },\n playableRaceIndex: (): Resource<void> => {\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';\n\nexport const playableSpecializationApi = {\n playableSpecialization: (specializationId: number): Resource<void> => {\n return {\n path: `${base}/playable-specialization/${specializationId}`,\n namespace: 'static',\n };\n },\n playableSpecializationIndex: (): Resource<void> => {\n return {\n path: `${base}/playable-specialization/index`,\n namespace: 'static',\n };\n },\n playableSpecializationMedia: (specializationId: number): Resource<void> => {\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';\n\nexport const powerTypeApi = {\n powerType: (powerTypeId: number): Resource<void> => {\n return {\n path: `${base}/power-type/${powerTypeId}`,\n namespace: 'static',\n };\n },\n powerTypeIndex: (): Resource<void> => {\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';\n\nexport const professionApi = {\n profession: (professionId: number): Resource<void> => {\n return {\n path: `${base}/profession/${professionId}`,\n namespace: 'static',\n };\n },\n professionIndex: (): Resource<void> => {\n return {\n path: `${base}/profession/index`,\n namespace: 'static',\n };\n },\n professionMedia: (professionId: number): Resource<void> => {\n return {\n path: `${mediaBase}/profession/${professionId}`,\n namespace: 'static',\n };\n },\n professionSkillTier: (professionId: number, skillTierId: number): Resource<void> => {\n return {\n path: `${base}/profession/${professionId}/skill-tier/${skillTierId}`,\n namespace: 'static',\n };\n },\n recipe: (recipeId: number): Resource<void> => {\n return {\n path: `${base}/recipe/${recipeId}`,\n namespace: 'static',\n };\n },\n recipeMedia: (recipeId: number): Resource<void> => {\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';\n\nexport const pvpSeasonApi = {\n pvpLeaderboard: (pvpSeasonId: number, bracket: string): Resource<void> => {\n return {\n path: `${base}/pvp-season/${pvpSeasonId}/pvp-leaderboard/${bracket}`,\n namespace: 'dynamic',\n };\n },\n pvpLeaderboardIndex: (pvpSeasonId: number): Resource<void> => {\n return {\n path: `${base}/pvp-season/${pvpSeasonId}/pvp-leaderboard/index`,\n namespace: 'dynamic',\n };\n },\n pvpRewardsIndex: (pvpSeasonId: number): Resource<void> => {\n return {\n path: `${base}/pvp-season/${pvpSeasonId}/pvp-reward/index`,\n namespace: 'dynamic',\n };\n },\n pvpSeason: (pvpSeasonId: number): Resource<void> => {\n return {\n path: `${base}/pvp-season/${pvpSeasonId}`,\n namespace: 'dynamic',\n };\n },\n pvpSeasonIndex: (): Resource<void> => {\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';\n\nexport const pvpTierApi = {\n pvpTier: (pvpTierId: number): Resource<void> => {\n return {\n path: `${base}/pvp-tier/${pvpTierId}`,\n namespace: 'static',\n };\n },\n pvpTierIndex: (): Resource<void> => {\n return {\n path: `${base}/pvp-tier/index`,\n namespace: 'static',\n };\n },\n pvpTierMedia: (pvpTierId: number): Resource<void> => {\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';\n\nexport const questApi = {\n quest: (questId: number): Resource<void> => {\n return {\n path: `${base}/quest/${questId}`,\n namespace: 'static',\n };\n },\n questIndex: (): Resource<void> => {\n return {\n path: `${base}/quest/index`,\n namespace: 'static',\n };\n },\n questArea: (questAreaId: number): Resource<void> => {\n return {\n path: `${base}/quest/area/${questAreaId}`,\n namespace: 'static',\n };\n },\n questAreaIndex: (): Resource<void> => {\n return {\n path: `${base}/quest/area/index`,\n namespace: 'static',\n };\n },\n questCategory: (questCategoryId: number): Resource<void> => {\n return {\n path: `${base}/quest/category/${questCategoryId}`,\n namespace: 'static',\n };\n },\n questCategoryIndex: (): Resource<void> => {\n return {\n path: `${base}/quest/category/index`,\n namespace: 'static',\n };\n },\n questType: (questTypeId: number): Resource<void> => {\n return {\n path: `${base}/quest/type/${questTypeId}`,\n namespace: 'static',\n };\n },\n questTypeIndex: (): Resource<void> => {\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';\n\nexport const realmApi = {\n realm: (realmSlug: string): Resource<void> => {\n return {\n path: `${base}/realm/${realmSlug}`,\n namespace: 'dynamic',\n };\n },\n realmIndex: (): Resource<void> => {\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';\n\nexport const regionApi = {\n region: (regionId: number): Resource<void> => {\n return {\n path: `${base}/region/${regionId}`,\n namespace: 'static',\n };\n },\n regionIndex: (): Resource<void> => {\n return {\n path: `${base}/region/index`,\n namespace: 'static',\n };\n },\n};\n","import type { Resource } from '@blizzard-api/core';\nimport { base } from '../base';\n\nexport const reputationApi = {\n reputationFaction: (reputationFactionId: number): Resource<void> => {\n return {\n path: `${base}/reputation-faction/${reputationFactionId}`,\n namespace: 'static',\n };\n },\n reputationFactionIndex: (): Resource<void> => {\n return {\n path: `${base}/reputation-faction/index`,\n namespace: 'static',\n };\n },\n reputationTiers: (reputationTiersId: number): Resource<void> => {\n return {\n path: `${base}/reputation-tiers/${reputationTiersId}`,\n namespace: 'static',\n };\n },\n reputationTiersIndex: (): Resource<void> => {\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';\n\nexport const spellApi = {\n spell: (spellId: number): Resource<void> => {\n return {\n path: `${base}/spell/${spellId}`,\n namespace: 'static',\n };\n },\n spellMedia: (spellId: number): Resource<void> => {\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';\n\nexport const talentApi = {\n pvpTalent: (pvpTalentId: number): Resource<void> => {\n return {\n path: `${base}/pvp-talent/${pvpTalentId}`,\n namespace: 'static',\n };\n },\n pvpTalentIndex: (): Resource<void> => {\n return {\n path: `${base}/pvp-talent/index`,\n namespace: 'static',\n };\n },\n talent: (talentId: number): Resource<void> => {\n return {\n path: `${base}/talent/${talentId}`,\n namespace: 'static',\n };\n },\n talentIndex: (): Resource<void> => {\n return {\n path: `${base}/talent/index`,\n namespace: 'static',\n };\n },\n talentTree: (talentTreeId: number, specId: number): Resource<void> => {\n return {\n path: `${base}/talent-tree/${talentTreeId}/playable-specialization/${specId}`,\n namespace: 'static',\n };\n },\n talentTreeIndex: (): Resource<void> => {\n return {\n path: `${base}/talent-tree/index`,\n namespace: 'static',\n };\n },\n talentTreeNodes: (talentTreeId: number): Resource<void> => {\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';\n\nexport const techTalentApi = {\n techTalent: (techTalentId: number): Resource<void> => {\n return {\n path: `${base}/tech-talent/${techTalentId}`,\n namespace: 'static',\n };\n },\n techTalentIndex: (): Resource<void> => {\n return {\n path: `${base}/tech-talent/index`,\n namespace: 'static',\n };\n },\n techTalentMedia: (techTalentId: number): Resource<void> => {\n return {\n path: `${mediaBase}/tech-talent/${techTalentId}`,\n namespace: 'static',\n };\n },\n techTalentTree: (techTalentTreeId: number): Resource<void> => {\n return {\n path: `${base}/tech-talent-tree/${techTalentTreeId}`,\n namespace: 'static',\n };\n },\n techTalentTreeIndex: (): Resource<void> => {\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';\n\nexport const titleApi = {\n title: (titleId: number): Resource<void> => {\n return {\n path: `${base}/title/${titleId}`,\n namespace: 'static',\n };\n },\n titleIndex: (): Resource<void> => {\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';\n\nexport const toyApi = {\n toy: (toyId: number): Resource<void> => {\n return {\n path: `${base}/toy/${toyId}`,\n namespace: 'static',\n };\n },\n toyIndex: (): Resource<void> => {\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';\n\nexport const wowTokenApi = {\n wowToken: (): Resource<void> => {\n return {\n path: `${base}/token/index`,\n namespace: 'dynamic',\n };\n },\n};\n","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//Connected Realm\r\nexport * from './connected-realm/types.js';\r\n"],"mappings":"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","names":[]}
1
+ {"version":3,"sources":["../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","../src/index.ts"],"sourcesContent":["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","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"],"mappings":"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","names":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blizzard-api/wow",
3
- "version": "0.0.7",
3
+ "version": "0.1.1",
4
4
  "license": "MIT",
5
5
  "author": "Putro",
6
6
  "description": "A series of helpers to interact with the World of Warcraft Blizzard API",