@blizzard-api/wow 0.0.6 → 0.0.7

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