@blizzard-api/wow 0.0.6 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -204,6 +204,793 @@ var creatureApi = {
204
204
  },*/
205
205
  };
206
206
 
207
+ // src/guild-crest/guild-crest.ts
208
+ var guildCrestApi = {
209
+ guildCrestComponentsIndex: () => {
210
+ return {
211
+ path: `${base}/guild-crest/index`,
212
+ namespace: "static"
213
+ };
214
+ },
215
+ guildCrestBorder: (borderId) => {
216
+ return {
217
+ path: `${mediaBase}/guild-crest/border/${borderId}`,
218
+ namespace: "static"
219
+ };
220
+ },
221
+ guildCrestEmblem: (emblemId) => {
222
+ return {
223
+ path: `${mediaBase}/guild-crest/emblem/${emblemId}`,
224
+ namespace: "static"
225
+ };
226
+ }
227
+ };
228
+
229
+ // src/heirloom/heirloom.ts
230
+ var heirloomApi = {
231
+ heirloom: (heirloomId) => {
232
+ return {
233
+ path: `${base}/heirloom/${heirloomId}`,
234
+ namespace: "static"
235
+ };
236
+ },
237
+ heirloomIndex: () => {
238
+ return {
239
+ path: `${base}/heirloom/index`,
240
+ namespace: "static"
241
+ };
242
+ }
243
+ };
244
+
245
+ // src/item/item.ts
246
+ var itemApi = {
247
+ item: (itemId) => {
248
+ return {
249
+ path: `${base}/item/${itemId}`,
250
+ namespace: "static"
251
+ };
252
+ },
253
+ itemClass: (itemClassId) => {
254
+ return {
255
+ path: `${base}/item-class/${itemClassId}`,
256
+ namespace: "static"
257
+ };
258
+ },
259
+ itemSubclass: (itemClassId, itemSubclassId) => {
260
+ return {
261
+ path: `${base}/item-class/${itemClassId}/item-subclass/${itemSubclassId}`,
262
+ namespace: "static"
263
+ };
264
+ },
265
+ itemClassIndex: () => {
266
+ return {
267
+ path: `${base}/item-class/index`,
268
+ namespace: "static"
269
+ };
270
+ },
271
+ itemMedia: (itemId) => {
272
+ return {
273
+ path: `${mediaBase}/item/${itemId}`,
274
+ namespace: "static"
275
+ };
276
+ },
277
+ itemSet: (itemSetId) => {
278
+ return {
279
+ path: `${base}/item-set/${itemSetId}`,
280
+ namespace: "static"
281
+ };
282
+ },
283
+ itemSetIndex: () => {
284
+ return {
285
+ path: `${base}/item-set/index`,
286
+ namespace: "static"
287
+ };
288
+ }
289
+ // TODO Improve search endpoints
290
+ //itemSearch: (): Resource<void> => {
291
+ // return {
292
+ // path: `${base}/search/item`,
293
+ // namespace: 'static',
294
+ // };
295
+ //},
296
+ };
297
+
298
+ // src/journal/journal.ts
299
+ var journalApi = {
300
+ journalEncounter: (journalEncounterId) => {
301
+ return {
302
+ path: `${base}/journal-encounter/${journalEncounterId}`,
303
+ namespace: "static"
304
+ };
305
+ },
306
+ journalEncounterIndex: () => {
307
+ return {
308
+ path: `${base}/journal-encounter/index`,
309
+ namespace: "static"
310
+ };
311
+ },
312
+ //TODO Improve search endpoints
313
+ //journalEncounterSearch: (): Resource<void> => {
314
+ // return {
315
+ // path: `${base}/journal-encounter/search`,
316
+ // namespace: 'static',
317
+ // };
318
+ //},
319
+ journalExpansion: (journalExpansionId) => {
320
+ return {
321
+ path: `${base}/journal-expansion/${journalExpansionId}`,
322
+ namespace: "static"
323
+ };
324
+ },
325
+ journalExpansionIndex: () => {
326
+ return {
327
+ path: `${base}/journal-expansion/index`,
328
+ namespace: "static"
329
+ };
330
+ },
331
+ journalInstance: (journalInstanceId) => {
332
+ return {
333
+ path: `${base}/journal-instance/${journalInstanceId}`,
334
+ namespace: "static"
335
+ };
336
+ },
337
+ journalInstanceIndex: () => {
338
+ return {
339
+ path: `${base}/journal-instance/index`,
340
+ namespace: "static"
341
+ };
342
+ },
343
+ journalInstanceMedia: (journalInstanceId) => {
344
+ return {
345
+ path: `${mediaBase}/journal-instance/${journalInstanceId}`,
346
+ namespace: "static"
347
+ };
348
+ }
349
+ };
350
+
351
+ // src/media-search/media-search.ts
352
+ var mediaSearchApi = {
353
+ mediaSearch: () => {
354
+ return {
355
+ path: `${base}/search/media`,
356
+ namespace: "static"
357
+ };
358
+ }
359
+ };
360
+
361
+ // src/modified-crafting/modified-crafting.ts
362
+ var modifiedCraftingApi = {
363
+ modifiedCraftingCategory: (modifiedCraftingCategoryId) => {
364
+ return {
365
+ path: `${base}/modified-crafting/category/${modifiedCraftingCategoryId}`,
366
+ namespace: "static"
367
+ };
368
+ },
369
+ modifiedCraftingCategoryIndex: () => {
370
+ return {
371
+ path: `${base}/modified-crafting/category/index`,
372
+ namespace: "static"
373
+ };
374
+ },
375
+ modifiedCraftingIndex: () => {
376
+ return {
377
+ path: `${base}/modified-crafting/index`,
378
+ namespace: "static"
379
+ };
380
+ },
381
+ modifiedCraftingReagentSlotType: (modifiedCraftingReagentSlotTypeId) => {
382
+ return {
383
+ path: `${base}/modified-crafting/reagent-slot-type/${modifiedCraftingReagentSlotTypeId}`,
384
+ namespace: "static"
385
+ };
386
+ },
387
+ modifiedCraftingReagentSlotTypeIndex: () => {
388
+ return {
389
+ path: `${base}/modified-crafting/reagent-slot-type/index`,
390
+ namespace: "static"
391
+ };
392
+ }
393
+ };
394
+
395
+ // src/mount/mount.ts
396
+ var mountApi = {
397
+ mount: (mountId) => {
398
+ return {
399
+ path: `${base}/mount/${mountId}`,
400
+ namespace: "static"
401
+ };
402
+ },
403
+ mountIndex: () => {
404
+ return {
405
+ path: `${base}/mount/index`,
406
+ namespace: "static"
407
+ };
408
+ }
409
+ //TODO Improve search endpoints
410
+ //mountSearch: (): Resource<void> => {
411
+ // return {
412
+ // path: `${base}/mount/search`,
413
+ // namespace: 'static',
414
+ // };
415
+ //},
416
+ };
417
+
418
+ // src/mythic-keystone-affix/mythic-keystone-affix.ts
419
+ var mythicKeystoneAffixApi = {
420
+ mythicKeystoneAffix: (mythicKeystoneAffixId) => {
421
+ return {
422
+ path: `${base}/keystone-affix/${mythicKeystoneAffixId}`,
423
+ namespace: "static"
424
+ };
425
+ },
426
+ mythicKeystoneAffixIndex: () => {
427
+ return {
428
+ path: `${base}/keystone-affix/index`,
429
+ namespace: "static"
430
+ };
431
+ },
432
+ mythicKeystoneAffixMedia: (mythicKeystoneAffixId) => {
433
+ return {
434
+ path: `${mediaBase}/keystone-affix/${mythicKeystoneAffixId}`,
435
+ namespace: "static"
436
+ };
437
+ }
438
+ };
439
+
440
+ // src/mythic-keystone-dungeon/mythic-keystone-dungeon.ts
441
+ var mythicKeystoneDungeonApi = {
442
+ mythicKeystoneDungeon: (mythicKeystoneDungeonId) => {
443
+ return {
444
+ path: `${base}/mythic-keystone/dungeon/${mythicKeystoneDungeonId}`,
445
+ namespace: "dynamic"
446
+ };
447
+ },
448
+ mythicKeystoneDungeonIndex: () => {
449
+ return {
450
+ path: `${base}/mythic-keystone/dungeon/index`,
451
+ namespace: "dynamic"
452
+ };
453
+ },
454
+ mythicKeystoneIndex: () => {
455
+ return {
456
+ path: `${base}/mythic-keystone/index`,
457
+ namespace: "dynamic"
458
+ };
459
+ },
460
+ mythicKeystonePeriod: (mythicKeystonePeriodId) => {
461
+ return {
462
+ path: `${base}/mythic-keystone/period/${mythicKeystonePeriodId}`,
463
+ namespace: "dynamic"
464
+ };
465
+ },
466
+ mythicKeystonePeriodIndex: () => {
467
+ return {
468
+ path: `${base}/mythic-keystone/period/index`,
469
+ namespace: "dynamic"
470
+ };
471
+ },
472
+ mythicKeystoneSeason: (mythicKeystoneSeasonId) => {
473
+ return {
474
+ path: `${base}/mythic-keystone/season/${mythicKeystoneSeasonId}`,
475
+ namespace: "dynamic"
476
+ };
477
+ },
478
+ mythicKeystoneSeasonIndex: () => {
479
+ return {
480
+ path: `${base}/mythic-keystone/season/index`,
481
+ namespace: "dynamic"
482
+ };
483
+ }
484
+ };
485
+
486
+ // src/mythic-keystone-leaderboard/mythic-keystone-leaderboard.ts
487
+ var mythicKeystoneLeaderboardApi = {
488
+ mythicKeystoneLeaderboard: (connectedRealmId, dungeonId, period) => {
489
+ return {
490
+ path: `${base}/connected-realm/${connectedRealmId}/mythic-leaderboard/${dungeonId}/period/${period}`,
491
+ namespace: "dynamic"
492
+ };
493
+ },
494
+ mythicKeystoneLeaderboardIndex: (connectedRealmId) => {
495
+ return {
496
+ path: `${base}/connected-realm/${connectedRealmId}/mythic-leaderboard/index`,
497
+ namespace: "dynamic"
498
+ };
499
+ }
500
+ };
501
+
502
+ // src/mythic-raid-leaderboard/mythic-raid-leaderboard.ts
503
+ var mythicRaidLeaderboardApi = {
504
+ mythicRaidLeaderboard: (raid, faction) => {
505
+ return {
506
+ path: `${base}/leaderboard/hall-of-fame/${raid}/${faction}`,
507
+ namespace: "dynamic"
508
+ };
509
+ }
510
+ };
511
+
512
+ // src/pet/pet.ts
513
+ var petApi = {
514
+ pet: (petId) => {
515
+ return {
516
+ path: `${base}/pet/${petId}`,
517
+ namespace: "static"
518
+ };
519
+ },
520
+ petIndex: () => {
521
+ return {
522
+ path: `${base}/pet/index`,
523
+ namespace: "static"
524
+ };
525
+ },
526
+ petMedia: (petId) => {
527
+ return {
528
+ path: `${mediaBase}/pet/${petId}`,
529
+ namespace: "static"
530
+ };
531
+ },
532
+ petAbility: (petAbilityId) => {
533
+ return {
534
+ path: `${base}/pet-ability/${petAbilityId}`,
535
+ namespace: "static"
536
+ };
537
+ },
538
+ petAbilityIndex: () => {
539
+ return {
540
+ path: `${base}/pet-ability/index`,
541
+ namespace: "static"
542
+ };
543
+ },
544
+ petAbilityMedia: (petAbilityId) => {
545
+ return {
546
+ path: `${mediaBase}/pet-ability/${petAbilityId}`,
547
+ namespace: "static"
548
+ };
549
+ }
550
+ };
551
+
552
+ // src/playable-class/playable-class.ts
553
+ var playableClassApi = {
554
+ playableClass: (playableClassId) => {
555
+ return {
556
+ path: `${base}/playable-class/${playableClassId}`,
557
+ namespace: "static"
558
+ };
559
+ },
560
+ playableClassIndex: () => {
561
+ return {
562
+ path: `${base}/playable-class/index`,
563
+ namespace: "static"
564
+ };
565
+ },
566
+ playableClassMedia: (playableClassId) => {
567
+ return {
568
+ path: `${mediaBase}/playable-class/${playableClassId}`,
569
+ namespace: "static"
570
+ };
571
+ },
572
+ pvpTalentSlots: (playableClassId) => {
573
+ return {
574
+ path: `${base}/playable-class/${playableClassId}/pvp-talent-slots`,
575
+ namespace: "static"
576
+ };
577
+ }
578
+ };
579
+
580
+ // src/playable-race/playable-race.ts
581
+ var playableRaceApi = {
582
+ playableRace: (playableRaceId) => {
583
+ return {
584
+ path: `${base}/playable-race/${playableRaceId}`,
585
+ namespace: "static"
586
+ };
587
+ },
588
+ playableRaceIndex: () => {
589
+ return {
590
+ path: `${base}/playable-race/index`,
591
+ namespace: "static"
592
+ };
593
+ }
594
+ };
595
+
596
+ // src/playable-specialization/playable-specialization.ts
597
+ var playableSpecializationApi = {
598
+ playableSpecialization: (specializationId) => {
599
+ return {
600
+ path: `${base}/playable-specialization/${specializationId}`,
601
+ namespace: "static"
602
+ };
603
+ },
604
+ playableSpecializationIndex: () => {
605
+ return {
606
+ path: `${base}/playable-specialization/index`,
607
+ namespace: "static"
608
+ };
609
+ },
610
+ playableSpecializationMedia: (specializationId) => {
611
+ return {
612
+ path: `${mediaBase}/playable-specialization/${specializationId}`,
613
+ namespace: "static"
614
+ };
615
+ }
616
+ };
617
+
618
+ // src/power-type/power-type.ts
619
+ var powerTypeApi = {
620
+ powerType: (powerTypeId) => {
621
+ return {
622
+ path: `${base}/power-type/${powerTypeId}`,
623
+ namespace: "static"
624
+ };
625
+ },
626
+ powerTypeIndex: () => {
627
+ return {
628
+ path: `${base}/power-type/index`,
629
+ namespace: "static"
630
+ };
631
+ }
632
+ };
633
+
634
+ // src/profession/profession.ts
635
+ var professionApi = {
636
+ profession: (professionId) => {
637
+ return {
638
+ path: `${base}/profession/${professionId}`,
639
+ namespace: "static"
640
+ };
641
+ },
642
+ professionIndex: () => {
643
+ return {
644
+ path: `${base}/profession/index`,
645
+ namespace: "static"
646
+ };
647
+ },
648
+ professionMedia: (professionId) => {
649
+ return {
650
+ path: `${mediaBase}/profession/${professionId}`,
651
+ namespace: "static"
652
+ };
653
+ },
654
+ professionSkillTier: (professionId, skillTierId) => {
655
+ return {
656
+ path: `${base}/profession/${professionId}/skill-tier/${skillTierId}`,
657
+ namespace: "static"
658
+ };
659
+ },
660
+ recipe: (recipeId) => {
661
+ return {
662
+ path: `${base}/recipe/${recipeId}`,
663
+ namespace: "static"
664
+ };
665
+ },
666
+ recipeMedia: (recipeId) => {
667
+ return {
668
+ path: `${mediaBase}/recipe/${recipeId}`,
669
+ namespace: "static"
670
+ };
671
+ }
672
+ };
673
+
674
+ // src/pvp-season/pvp-season.ts
675
+ var pvpSeasonApi = {
676
+ pvpLeaderboard: (pvpSeasonId, bracket) => {
677
+ return {
678
+ path: `${base}/pvp-season/${pvpSeasonId}/pvp-leaderboard/${bracket}`,
679
+ namespace: "dynamic"
680
+ };
681
+ },
682
+ pvpLeaderboardIndex: (pvpSeasonId) => {
683
+ return {
684
+ path: `${base}/pvp-season/${pvpSeasonId}/pvp-leaderboard/index`,
685
+ namespace: "dynamic"
686
+ };
687
+ },
688
+ pvpRewardsIndex: (pvpSeasonId) => {
689
+ return {
690
+ path: `${base}/pvp-season/${pvpSeasonId}/pvp-reward/index`,
691
+ namespace: "dynamic"
692
+ };
693
+ },
694
+ pvpSeason: (pvpSeasonId) => {
695
+ return {
696
+ path: `${base}/pvp-season/${pvpSeasonId}`,
697
+ namespace: "dynamic"
698
+ };
699
+ },
700
+ pvpSeasonIndex: () => {
701
+ return {
702
+ path: `${base}/pvp-season/index`,
703
+ namespace: "dynamic"
704
+ };
705
+ }
706
+ };
707
+
708
+ // src/pvp-tier/pvp-tier.ts
709
+ var pvpTierApi = {
710
+ pvpTier: (pvpTierId) => {
711
+ return {
712
+ path: `${base}/pvp-tier/${pvpTierId}`,
713
+ namespace: "static"
714
+ };
715
+ },
716
+ pvpTierIndex: () => {
717
+ return {
718
+ path: `${base}/pvp-tier/index`,
719
+ namespace: "static"
720
+ };
721
+ },
722
+ pvpTierMedia: (pvpTierId) => {
723
+ return {
724
+ path: `${mediaBase}/pvp-tier/${pvpTierId}`,
725
+ namespace: "static"
726
+ };
727
+ }
728
+ };
729
+
730
+ // src/quest/quest.ts
731
+ var questApi = {
732
+ quest: (questId) => {
733
+ return {
734
+ path: `${base}/quest/${questId}`,
735
+ namespace: "static"
736
+ };
737
+ },
738
+ questIndex: () => {
739
+ return {
740
+ path: `${base}/quest/index`,
741
+ namespace: "static"
742
+ };
743
+ },
744
+ questArea: (questAreaId) => {
745
+ return {
746
+ path: `${base}/quest/area/${questAreaId}`,
747
+ namespace: "static"
748
+ };
749
+ },
750
+ questAreaIndex: () => {
751
+ return {
752
+ path: `${base}/quest/area/index`,
753
+ namespace: "static"
754
+ };
755
+ },
756
+ questCategory: (questCategoryId) => {
757
+ return {
758
+ path: `${base}/quest/category/${questCategoryId}`,
759
+ namespace: "static"
760
+ };
761
+ },
762
+ questCategoryIndex: () => {
763
+ return {
764
+ path: `${base}/quest/category/index`,
765
+ namespace: "static"
766
+ };
767
+ },
768
+ questType: (questTypeId) => {
769
+ return {
770
+ path: `${base}/quest/type/${questTypeId}`,
771
+ namespace: "static"
772
+ };
773
+ },
774
+ questTypeIndex: () => {
775
+ return {
776
+ path: `${base}/quest/type/index`,
777
+ namespace: "static"
778
+ };
779
+ }
780
+ };
781
+
782
+ // src/realm/realm.ts
783
+ var realmApi = {
784
+ realm: (realmSlug) => {
785
+ return {
786
+ path: `${base}/realm/${realmSlug}`,
787
+ namespace: "dynamic"
788
+ };
789
+ },
790
+ realmIndex: () => {
791
+ return {
792
+ path: `${base}/realm/index`,
793
+ namespace: "dynamic"
794
+ };
795
+ }
796
+ //TODO Improve search endpoints
797
+ //realmSearch: (): Resource<void> => {
798
+ // return {
799
+ // path: `${base}/realm/search`,
800
+ // namespace: 'dynamic',
801
+ // };
802
+ //},
803
+ };
804
+
805
+ // src/region/region.ts
806
+ var regionApi = {
807
+ region: (regionId) => {
808
+ return {
809
+ path: `${base}/region/${regionId}`,
810
+ namespace: "dynamic"
811
+ };
812
+ },
813
+ regionIndex: () => {
814
+ return {
815
+ path: `${base}/region/index`,
816
+ namespace: "dynamic"
817
+ };
818
+ }
819
+ };
820
+
821
+ // src/reputations/reputations.ts
822
+ var reputationApi = {
823
+ reputationFaction: (reputationFactionId) => {
824
+ return {
825
+ path: `${base}/reputation-faction/${reputationFactionId}`,
826
+ namespace: "static"
827
+ };
828
+ },
829
+ reputationFactionIndex: () => {
830
+ return {
831
+ path: `${base}/reputation-faction/index`,
832
+ namespace: "static"
833
+ };
834
+ },
835
+ reputationTiers: (reputationTiersId) => {
836
+ return {
837
+ path: `${base}/reputation-tiers/${reputationTiersId}`,
838
+ namespace: "static"
839
+ };
840
+ },
841
+ reputationTiersIndex: () => {
842
+ return {
843
+ path: `${base}/reputation-tiers/index`,
844
+ namespace: "static"
845
+ };
846
+ }
847
+ };
848
+
849
+ // src/spell/spell.ts
850
+ var spellApi = {
851
+ spell: (spellId) => {
852
+ return {
853
+ path: `${base}/spell/${spellId}`,
854
+ namespace: "static"
855
+ };
856
+ },
857
+ spellMedia: (spellId) => {
858
+ return {
859
+ path: `${mediaBase}/spell/${spellId}`,
860
+ namespace: "static"
861
+ };
862
+ }
863
+ //TODO Improve search endpoints
864
+ //spellSearch: (): Resource<void> => {
865
+ // return {
866
+ // path: `${base}/spell/search`,
867
+ // namespace: 'static',
868
+ // };
869
+ //},
870
+ };
871
+
872
+ // src/talent/talent.ts
873
+ var talentApi = {
874
+ pvpTalent: (pvpTalentId) => {
875
+ return {
876
+ path: `${base}/pvp-talent/${pvpTalentId}`,
877
+ namespace: "static"
878
+ };
879
+ },
880
+ pvpTalentIndex: () => {
881
+ return {
882
+ path: `${base}/pvp-talent/index`,
883
+ namespace: "static"
884
+ };
885
+ },
886
+ talent: (talentId) => {
887
+ return {
888
+ path: `${base}/talent/${talentId}`,
889
+ namespace: "static"
890
+ };
891
+ },
892
+ talentIndex: () => {
893
+ return {
894
+ path: `${base}/talent/index`,
895
+ namespace: "static"
896
+ };
897
+ },
898
+ talentTree: (talentTreeId, specId) => {
899
+ return {
900
+ path: `${base}/talent-tree/${talentTreeId}/playable-specialization/${specId}`,
901
+ namespace: "static"
902
+ };
903
+ },
904
+ talentTreeIndex: () => {
905
+ return {
906
+ path: `${base}/talent-tree/index`,
907
+ namespace: "static"
908
+ };
909
+ },
910
+ talentTreeNodes: (talentTreeId) => {
911
+ return {
912
+ path: `${base}/talent-tree/${talentTreeId}`,
913
+ namespace: "static"
914
+ };
915
+ }
916
+ };
917
+
918
+ // src/tech-talent/tech-talent.ts
919
+ var techTalentApi = {
920
+ techTalent: (techTalentId) => {
921
+ return {
922
+ path: `${base}/tech-talent/${techTalentId}`,
923
+ namespace: "static"
924
+ };
925
+ },
926
+ techTalentIndex: () => {
927
+ return {
928
+ path: `${base}/tech-talent/index`,
929
+ namespace: "static"
930
+ };
931
+ },
932
+ techTalentMedia: (techTalentId) => {
933
+ return {
934
+ path: `${mediaBase}/tech-talent/${techTalentId}`,
935
+ namespace: "static"
936
+ };
937
+ },
938
+ techTalentTree: (techTalentTreeId) => {
939
+ return {
940
+ path: `${base}/tech-talent-tree/${techTalentTreeId}`,
941
+ namespace: "static"
942
+ };
943
+ },
944
+ techTalentTreeIndex: () => {
945
+ return {
946
+ path: `${base}/tech-talent-tree/index`,
947
+ namespace: "static"
948
+ };
949
+ }
950
+ };
951
+
952
+ // src/title/title.ts
953
+ var titleApi = {
954
+ title: (titleId) => {
955
+ return {
956
+ path: `${base}/title/${titleId}`,
957
+ namespace: "static"
958
+ };
959
+ },
960
+ titleIndex: () => {
961
+ return {
962
+ path: `${base}/title/index`,
963
+ namespace: "static"
964
+ };
965
+ }
966
+ };
967
+
968
+ // src/toy/toy.ts
969
+ var toyApi = {
970
+ toy: (toyId) => {
971
+ return {
972
+ path: `${base}/toy/${toyId}`,
973
+ namespace: "static"
974
+ };
975
+ },
976
+ toyIndex: () => {
977
+ return {
978
+ path: `${base}/toy/index`,
979
+ namespace: "static"
980
+ };
981
+ }
982
+ };
983
+
984
+ // src/wow-token/wow-token.ts
985
+ var wowTokenApi = {
986
+ wowToken: () => {
987
+ return {
988
+ path: `${base}/token/index`,
989
+ namespace: "dynamic"
990
+ };
991
+ }
992
+ };
993
+
207
994
  // src/index.ts
208
995
  var wow = {
209
996
  ...achievementApi,
@@ -211,7 +998,36 @@ var wow = {
211
998
  ...azeriteEssenceApi,
212
999
  ...connectedRealmApi,
213
1000
  ...covenantApi,
214
- ...creatureApi
1001
+ ...creatureApi,
1002
+ ...guildCrestApi,
1003
+ ...heirloomApi,
1004
+ ...itemApi,
1005
+ ...journalApi,
1006
+ ...mediaSearchApi,
1007
+ ...modifiedCraftingApi,
1008
+ ...mountApi,
1009
+ ...mythicKeystoneAffixApi,
1010
+ ...mythicKeystoneDungeonApi,
1011
+ ...mythicKeystoneLeaderboardApi,
1012
+ ...mythicRaidLeaderboardApi,
1013
+ ...petApi,
1014
+ ...playableClassApi,
1015
+ ...playableRaceApi,
1016
+ ...playableSpecializationApi,
1017
+ ...powerTypeApi,
1018
+ ...professionApi,
1019
+ ...pvpSeasonApi,
1020
+ ...pvpTierApi,
1021
+ ...questApi,
1022
+ ...realmApi,
1023
+ ...regionApi,
1024
+ ...reputationApi,
1025
+ ...spellApi,
1026
+ ...talentApi,
1027
+ ...techTalentApi,
1028
+ ...titleApi,
1029
+ ...toyApi,
1030
+ ...wowTokenApi
215
1031
  };
216
1032
  export {
217
1033
  wow