@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.cjs CHANGED
@@ -230,6 +230,793 @@ 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
+ itemClass: (itemClassId) => {
280
+ return {
281
+ path: `${base}/item-class/${itemClassId}`,
282
+ namespace: "static"
283
+ };
284
+ },
285
+ itemSubclass: (itemClassId, itemSubclassId) => {
286
+ return {
287
+ path: `${base}/item-class/${itemClassId}/item-subclass/${itemSubclassId}`,
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}/keystone-affix/${mythicKeystoneAffixId}`,
449
+ namespace: "static"
450
+ };
451
+ },
452
+ mythicKeystoneAffixIndex: () => {
453
+ return {
454
+ path: `${base}/keystone-affix/index`,
455
+ namespace: "static"
456
+ };
457
+ },
458
+ mythicKeystoneAffixMedia: (mythicKeystoneAffixId) => {
459
+ return {
460
+ path: `${mediaBase}/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
+ mythicRaidLeaderboard: (raid, faction) => {
531
+ return {
532
+ path: `${base}/leaderboard/hall-of-fame/${raid}/${faction}`,
533
+ namespace: "dynamic"
534
+ };
535
+ }
536
+ };
537
+
538
+ // src/pet/pet.ts
539
+ var petApi = {
540
+ pet: (petId) => {
541
+ return {
542
+ path: `${base}/pet/${petId}`,
543
+ namespace: "static"
544
+ };
545
+ },
546
+ petIndex: () => {
547
+ return {
548
+ path: `${base}/pet/index`,
549
+ namespace: "static"
550
+ };
551
+ },
552
+ petMedia: (petId) => {
553
+ return {
554
+ path: `${mediaBase}/pet/${petId}`,
555
+ namespace: "static"
556
+ };
557
+ },
558
+ petAbility: (petAbilityId) => {
559
+ return {
560
+ path: `${base}/pet-ability/${petAbilityId}`,
561
+ namespace: "static"
562
+ };
563
+ },
564
+ petAbilityIndex: () => {
565
+ return {
566
+ path: `${base}/pet-ability/index`,
567
+ namespace: "static"
568
+ };
569
+ },
570
+ petAbilityMedia: (petAbilityId) => {
571
+ return {
572
+ path: `${mediaBase}/pet-ability/${petAbilityId}`,
573
+ namespace: "static"
574
+ };
575
+ }
576
+ };
577
+
578
+ // src/playable-class/playable-class.ts
579
+ var playableClassApi = {
580
+ playableClass: (playableClassId) => {
581
+ return {
582
+ path: `${base}/playable-class/${playableClassId}`,
583
+ namespace: "static"
584
+ };
585
+ },
586
+ playableClassIndex: () => {
587
+ return {
588
+ path: `${base}/playable-class/index`,
589
+ namespace: "static"
590
+ };
591
+ },
592
+ playableClassMedia: (playableClassId) => {
593
+ return {
594
+ path: `${mediaBase}/playable-class/${playableClassId}`,
595
+ namespace: "static"
596
+ };
597
+ },
598
+ pvpTalentSlots: (playableClassId) => {
599
+ return {
600
+ path: `${base}/playable-class/${playableClassId}/pvp-talent-slots`,
601
+ namespace: "static"
602
+ };
603
+ }
604
+ };
605
+
606
+ // src/playable-race/playable-race.ts
607
+ var playableRaceApi = {
608
+ playableRace: (playableRaceId) => {
609
+ return {
610
+ path: `${base}/playable-race/${playableRaceId}`,
611
+ namespace: "static"
612
+ };
613
+ },
614
+ playableRaceIndex: () => {
615
+ return {
616
+ path: `${base}/playable-race/index`,
617
+ namespace: "static"
618
+ };
619
+ }
620
+ };
621
+
622
+ // src/playable-specialization/playable-specialization.ts
623
+ var playableSpecializationApi = {
624
+ playableSpecialization: (specializationId) => {
625
+ return {
626
+ path: `${base}/playable-specialization/${specializationId}`,
627
+ namespace: "static"
628
+ };
629
+ },
630
+ playableSpecializationIndex: () => {
631
+ return {
632
+ path: `${base}/playable-specialization/index`,
633
+ namespace: "static"
634
+ };
635
+ },
636
+ playableSpecializationMedia: (specializationId) => {
637
+ return {
638
+ path: `${mediaBase}/playable-specialization/${specializationId}`,
639
+ namespace: "static"
640
+ };
641
+ }
642
+ };
643
+
644
+ // src/power-type/power-type.ts
645
+ var powerTypeApi = {
646
+ powerType: (powerTypeId) => {
647
+ return {
648
+ path: `${base}/power-type/${powerTypeId}`,
649
+ namespace: "static"
650
+ };
651
+ },
652
+ powerTypeIndex: () => {
653
+ return {
654
+ path: `${base}/power-type/index`,
655
+ namespace: "static"
656
+ };
657
+ }
658
+ };
659
+
660
+ // src/profession/profession.ts
661
+ var professionApi = {
662
+ profession: (professionId) => {
663
+ return {
664
+ path: `${base}/profession/${professionId}`,
665
+ namespace: "static"
666
+ };
667
+ },
668
+ professionIndex: () => {
669
+ return {
670
+ path: `${base}/profession/index`,
671
+ namespace: "static"
672
+ };
673
+ },
674
+ professionMedia: (professionId) => {
675
+ return {
676
+ path: `${mediaBase}/profession/${professionId}`,
677
+ namespace: "static"
678
+ };
679
+ },
680
+ professionSkillTier: (professionId, skillTierId) => {
681
+ return {
682
+ path: `${base}/profession/${professionId}/skill-tier/${skillTierId}`,
683
+ namespace: "static"
684
+ };
685
+ },
686
+ recipe: (recipeId) => {
687
+ return {
688
+ path: `${base}/recipe/${recipeId}`,
689
+ namespace: "static"
690
+ };
691
+ },
692
+ recipeMedia: (recipeId) => {
693
+ return {
694
+ path: `${mediaBase}/recipe/${recipeId}`,
695
+ namespace: "static"
696
+ };
697
+ }
698
+ };
699
+
700
+ // src/pvp-season/pvp-season.ts
701
+ var pvpSeasonApi = {
702
+ pvpLeaderboard: (pvpSeasonId, bracket) => {
703
+ return {
704
+ path: `${base}/pvp-season/${pvpSeasonId}/pvp-leaderboard/${bracket}`,
705
+ namespace: "dynamic"
706
+ };
707
+ },
708
+ pvpLeaderboardIndex: (pvpSeasonId) => {
709
+ return {
710
+ path: `${base}/pvp-season/${pvpSeasonId}/pvp-leaderboard/index`,
711
+ namespace: "dynamic"
712
+ };
713
+ },
714
+ pvpRewardsIndex: (pvpSeasonId) => {
715
+ return {
716
+ path: `${base}/pvp-season/${pvpSeasonId}/pvp-reward/index`,
717
+ namespace: "dynamic"
718
+ };
719
+ },
720
+ pvpSeason: (pvpSeasonId) => {
721
+ return {
722
+ path: `${base}/pvp-season/${pvpSeasonId}`,
723
+ namespace: "dynamic"
724
+ };
725
+ },
726
+ pvpSeasonIndex: () => {
727
+ return {
728
+ path: `${base}/pvp-season/index`,
729
+ namespace: "dynamic"
730
+ };
731
+ }
732
+ };
733
+
734
+ // src/pvp-tier/pvp-tier.ts
735
+ var pvpTierApi = {
736
+ pvpTier: (pvpTierId) => {
737
+ return {
738
+ path: `${base}/pvp-tier/${pvpTierId}`,
739
+ namespace: "static"
740
+ };
741
+ },
742
+ pvpTierIndex: () => {
743
+ return {
744
+ path: `${base}/pvp-tier/index`,
745
+ namespace: "static"
746
+ };
747
+ },
748
+ pvpTierMedia: (pvpTierId) => {
749
+ return {
750
+ path: `${mediaBase}/pvp-tier/${pvpTierId}`,
751
+ namespace: "static"
752
+ };
753
+ }
754
+ };
755
+
756
+ // src/quest/quest.ts
757
+ var questApi = {
758
+ quest: (questId) => {
759
+ return {
760
+ path: `${base}/quest/${questId}`,
761
+ namespace: "static"
762
+ };
763
+ },
764
+ questIndex: () => {
765
+ return {
766
+ path: `${base}/quest/index`,
767
+ namespace: "static"
768
+ };
769
+ },
770
+ questArea: (questAreaId) => {
771
+ return {
772
+ path: `${base}/quest/area/${questAreaId}`,
773
+ namespace: "static"
774
+ };
775
+ },
776
+ questAreaIndex: () => {
777
+ return {
778
+ path: `${base}/quest/area/index`,
779
+ namespace: "static"
780
+ };
781
+ },
782
+ questCategory: (questCategoryId) => {
783
+ return {
784
+ path: `${base}/quest/category/${questCategoryId}`,
785
+ namespace: "static"
786
+ };
787
+ },
788
+ questCategoryIndex: () => {
789
+ return {
790
+ path: `${base}/quest/category/index`,
791
+ namespace: "static"
792
+ };
793
+ },
794
+ questType: (questTypeId) => {
795
+ return {
796
+ path: `${base}/quest/type/${questTypeId}`,
797
+ namespace: "static"
798
+ };
799
+ },
800
+ questTypeIndex: () => {
801
+ return {
802
+ path: `${base}/quest/type/index`,
803
+ namespace: "static"
804
+ };
805
+ }
806
+ };
807
+
808
+ // src/realm/realm.ts
809
+ var realmApi = {
810
+ realm: (realmSlug) => {
811
+ return {
812
+ path: `${base}/realm/${realmSlug}`,
813
+ namespace: "dynamic"
814
+ };
815
+ },
816
+ realmIndex: () => {
817
+ return {
818
+ path: `${base}/realm/index`,
819
+ namespace: "dynamic"
820
+ };
821
+ }
822
+ //TODO Improve search endpoints
823
+ //realmSearch: (): Resource<void> => {
824
+ // return {
825
+ // path: `${base}/realm/search`,
826
+ // namespace: 'dynamic',
827
+ // };
828
+ //},
829
+ };
830
+
831
+ // src/region/region.ts
832
+ var regionApi = {
833
+ region: (regionId) => {
834
+ return {
835
+ path: `${base}/region/${regionId}`,
836
+ namespace: "dynamic"
837
+ };
838
+ },
839
+ regionIndex: () => {
840
+ return {
841
+ path: `${base}/region/index`,
842
+ namespace: "dynamic"
843
+ };
844
+ }
845
+ };
846
+
847
+ // src/reputations/reputations.ts
848
+ var reputationApi = {
849
+ reputationFaction: (reputationFactionId) => {
850
+ return {
851
+ path: `${base}/reputation-faction/${reputationFactionId}`,
852
+ namespace: "static"
853
+ };
854
+ },
855
+ reputationFactionIndex: () => {
856
+ return {
857
+ path: `${base}/reputation-faction/index`,
858
+ namespace: "static"
859
+ };
860
+ },
861
+ reputationTiers: (reputationTiersId) => {
862
+ return {
863
+ path: `${base}/reputation-tiers/${reputationTiersId}`,
864
+ namespace: "static"
865
+ };
866
+ },
867
+ reputationTiersIndex: () => {
868
+ return {
869
+ path: `${base}/reputation-tiers/index`,
870
+ namespace: "static"
871
+ };
872
+ }
873
+ };
874
+
875
+ // src/spell/spell.ts
876
+ var spellApi = {
877
+ spell: (spellId) => {
878
+ return {
879
+ path: `${base}/spell/${spellId}`,
880
+ namespace: "static"
881
+ };
882
+ },
883
+ spellMedia: (spellId) => {
884
+ return {
885
+ path: `${mediaBase}/spell/${spellId}`,
886
+ namespace: "static"
887
+ };
888
+ }
889
+ //TODO Improve search endpoints
890
+ //spellSearch: (): Resource<void> => {
891
+ // return {
892
+ // path: `${base}/spell/search`,
893
+ // namespace: 'static',
894
+ // };
895
+ //},
896
+ };
897
+
898
+ // src/talent/talent.ts
899
+ var talentApi = {
900
+ pvpTalent: (pvpTalentId) => {
901
+ return {
902
+ path: `${base}/pvp-talent/${pvpTalentId}`,
903
+ namespace: "static"
904
+ };
905
+ },
906
+ pvpTalentIndex: () => {
907
+ return {
908
+ path: `${base}/pvp-talent/index`,
909
+ namespace: "static"
910
+ };
911
+ },
912
+ talent: (talentId) => {
913
+ return {
914
+ path: `${base}/talent/${talentId}`,
915
+ namespace: "static"
916
+ };
917
+ },
918
+ talentIndex: () => {
919
+ return {
920
+ path: `${base}/talent/index`,
921
+ namespace: "static"
922
+ };
923
+ },
924
+ talentTree: (talentTreeId, specId) => {
925
+ return {
926
+ path: `${base}/talent-tree/${talentTreeId}/playable-specialization/${specId}`,
927
+ namespace: "static"
928
+ };
929
+ },
930
+ talentTreeIndex: () => {
931
+ return {
932
+ path: `${base}/talent-tree/index`,
933
+ namespace: "static"
934
+ };
935
+ },
936
+ talentTreeNodes: (talentTreeId) => {
937
+ return {
938
+ path: `${base}/talent-tree/${talentTreeId}`,
939
+ namespace: "static"
940
+ };
941
+ }
942
+ };
943
+
944
+ // src/tech-talent/tech-talent.ts
945
+ var techTalentApi = {
946
+ techTalent: (techTalentId) => {
947
+ return {
948
+ path: `${base}/tech-talent/${techTalentId}`,
949
+ namespace: "static"
950
+ };
951
+ },
952
+ techTalentIndex: () => {
953
+ return {
954
+ path: `${base}/tech-talent/index`,
955
+ namespace: "static"
956
+ };
957
+ },
958
+ techTalentMedia: (techTalentId) => {
959
+ return {
960
+ path: `${mediaBase}/tech-talent/${techTalentId}`,
961
+ namespace: "static"
962
+ };
963
+ },
964
+ techTalentTree: (techTalentTreeId) => {
965
+ return {
966
+ path: `${base}/tech-talent-tree/${techTalentTreeId}`,
967
+ namespace: "static"
968
+ };
969
+ },
970
+ techTalentTreeIndex: () => {
971
+ return {
972
+ path: `${base}/tech-talent-tree/index`,
973
+ namespace: "static"
974
+ };
975
+ }
976
+ };
977
+
978
+ // src/title/title.ts
979
+ var titleApi = {
980
+ title: (titleId) => {
981
+ return {
982
+ path: `${base}/title/${titleId}`,
983
+ namespace: "static"
984
+ };
985
+ },
986
+ titleIndex: () => {
987
+ return {
988
+ path: `${base}/title/index`,
989
+ namespace: "static"
990
+ };
991
+ }
992
+ };
993
+
994
+ // src/toy/toy.ts
995
+ var toyApi = {
996
+ toy: (toyId) => {
997
+ return {
998
+ path: `${base}/toy/${toyId}`,
999
+ namespace: "static"
1000
+ };
1001
+ },
1002
+ toyIndex: () => {
1003
+ return {
1004
+ path: `${base}/toy/index`,
1005
+ namespace: "static"
1006
+ };
1007
+ }
1008
+ };
1009
+
1010
+ // src/wow-token/wow-token.ts
1011
+ var wowTokenApi = {
1012
+ wowToken: () => {
1013
+ return {
1014
+ path: `${base}/token/index`,
1015
+ namespace: "dynamic"
1016
+ };
1017
+ }
1018
+ };
1019
+
233
1020
  // src/index.ts
234
1021
  var wow = {
235
1022
  ...achievementApi,
@@ -237,7 +1024,36 @@ var wow = {
237
1024
  ...azeriteEssenceApi,
238
1025
  ...connectedRealmApi,
239
1026
  ...covenantApi,
240
- ...creatureApi
1027
+ ...creatureApi,
1028
+ ...guildCrestApi,
1029
+ ...heirloomApi,
1030
+ ...itemApi,
1031
+ ...journalApi,
1032
+ ...mediaSearchApi,
1033
+ ...modifiedCraftingApi,
1034
+ ...mountApi,
1035
+ ...mythicKeystoneAffixApi,
1036
+ ...mythicKeystoneDungeonApi,
1037
+ ...mythicKeystoneLeaderboardApi,
1038
+ ...mythicRaidLeaderboardApi,
1039
+ ...petApi,
1040
+ ...playableClassApi,
1041
+ ...playableRaceApi,
1042
+ ...playableSpecializationApi,
1043
+ ...powerTypeApi,
1044
+ ...professionApi,
1045
+ ...pvpSeasonApi,
1046
+ ...pvpTierApi,
1047
+ ...questApi,
1048
+ ...realmApi,
1049
+ ...regionApi,
1050
+ ...reputationApi,
1051
+ ...spellApi,
1052
+ ...talentApi,
1053
+ ...techTalentApi,
1054
+ ...titleApi,
1055
+ ...toyApi,
1056
+ ...wowTokenApi
241
1057
  };
242
1058
  // Annotate the CommonJS export names for ESM import in node:
243
1059
  0 && (module.exports = {