@blizzard-api/wow 1.2.2 → 2.0.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 DELETED
@@ -1,1674 +0,0 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- // src/account-profile/account-profile.ts
6
- var accountProfileBase = "/profile/user/wow";
7
- function accountProfileSummary(token) {
8
- return {
9
- namespace: "profile",
10
- path: `${accountProfileBase}`,
11
- token
12
- };
13
- }
14
- function protectedCharacterProfileSummary(realmId, characterId, token) {
15
- return {
16
- namespace: "profile",
17
- path: `${accountProfileBase}/protected-character/${realmId}-${characterId}`,
18
- token
19
- };
20
- }
21
- function accountCollectionsIndex(token) {
22
- return {
23
- namespace: "profile",
24
- path: `${accountProfileBase}/collections`,
25
- token
26
- };
27
- }
28
- function accountHeirloomsCollectionSummary(token) {
29
- return {
30
- namespace: "profile",
31
- path: `${accountProfileBase}/collections/heirlooms`,
32
- token
33
- };
34
- }
35
- function accountMountsCollectionSummary(token) {
36
- return {
37
- namespace: "profile",
38
- path: `${accountProfileBase}/collections/mounts`,
39
- token
40
- };
41
- }
42
- function accountPetsCollectionSummary(token) {
43
- return {
44
- namespace: "profile",
45
- path: `${accountProfileBase}/collections/pets`,
46
- token
47
- };
48
- }
49
- function accountToysCollectionSummary(token) {
50
- return {
51
- namespace: "profile",
52
- path: `${accountProfileBase}/collections/toys`,
53
- token
54
- };
55
- }
56
- function accountTransmogsCollectionSummary(token) {
57
- return {
58
- namespace: "profile",
59
- path: `${accountProfileBase}/collections/transmogs`,
60
- token
61
- };
62
- }
63
-
64
- // src/base.ts
65
- var base = "/data/wow";
66
- var mediaBase = `${base}/media`;
67
- var searchBase = `${base}/search`;
68
-
69
- // src/achievements/achievements.ts
70
- var achievementBase = `${base}/achievement`;
71
- var achievementCategoryBase = `${base}/achievement-category`;
72
- function achievementCategory(achievementCategoryId) {
73
- return {
74
- namespace: "static",
75
- path: `${achievementCategoryBase}/${achievementCategoryId}`
76
- };
77
- }
78
- function achievementCategoryIndex() {
79
- return {
80
- namespace: "static",
81
- path: `${achievementCategoryBase}/index`
82
- };
83
- }
84
- function achievement(achievementId) {
85
- return {
86
- namespace: "static",
87
- path: `${achievementBase}/${achievementId}`
88
- };
89
- }
90
- function achievementIndex() {
91
- return {
92
- namespace: "static",
93
- path: `${achievementBase}/index`
94
- };
95
- }
96
- function achievementMedia(achievementId) {
97
- return { namespace: "static", path: `${mediaBase}/achievement/${achievementId}` };
98
- }
99
-
100
- // src/auction-house/auction-house.ts
101
- function auctions(connectedRealmId) {
102
- return {
103
- namespace: "dynamic",
104
- path: `${base}/connected-realm/${connectedRealmId}/auctions`
105
- };
106
- }
107
- function commodities() {
108
- return {
109
- namespace: "dynamic",
110
- path: `${base}/auctions/commodities`
111
- };
112
- }
113
-
114
- // src/azerite-essence/azerite-essence.ts
115
- function azeriteEssence(azeriteEssenceId) {
116
- return {
117
- namespace: "static",
118
- path: `${base}/azerite-essence/${azeriteEssenceId}`
119
- };
120
- }
121
- function azeriteEssenceIndex() {
122
- return {
123
- namespace: "static",
124
- path: `${base}/azerite-essence/index`
125
- };
126
- }
127
- function azeriteEssenceMedia(azeriteEssenceId) {
128
- return { namespace: "static", path: `${mediaBase}/azerite-essence/${azeriteEssenceId}` };
129
- }
130
- function azeriteEssenceSearch(options) {
131
- return {
132
- namespace: "static",
133
- parameters: {
134
- _page: options._page,
135
- "allowed_specializations.id": options["allowed_specializations.id"],
136
- orderby: Array.isArray(options.orderby) ? options.orderby.join(",") : options.orderby
137
- },
138
- path: `${searchBase}/azerite-essence`
139
- };
140
- }
141
-
142
- // src/character-achievements/character-achievements.ts
143
- var basePath = "/profile/wow/character";
144
- function characterAchievementsSummary(realmSlug, characterName) {
145
- return {
146
- namespace: "profile",
147
- path: `${basePath}/${realmSlug}/${characterName.toLowerCase()}/achievements`
148
- };
149
- }
150
- function characterAchievementStatistics(realmSlug, characterName) {
151
- return {
152
- namespace: "profile",
153
- path: `${basePath}/${realmSlug}/${characterName.toLowerCase()}/achievements/statistics`
154
- };
155
- }
156
-
157
- // src/character-appearance/character-appearance.ts
158
- function characterAppearanceSummary(realmSlug, characterName) {
159
- return {
160
- namespace: "profile",
161
- path: `/profile/wow/character/${realmSlug}/${characterName.toLowerCase()}/appearance`
162
- };
163
- }
164
-
165
- // src/character-collections/character-collections.ts
166
- var basePath2 = "/profile/wow/character";
167
- function characterCollectionsIndex(realmSlug, characterName) {
168
- return {
169
- namespace: "profile",
170
- path: `${basePath2}/${realmSlug}/${characterName}/collections`
171
- };
172
- }
173
- function characterHeirloomsCollectionSummary(realmSlug, characterName) {
174
- return {
175
- namespace: "profile",
176
- path: `${basePath2}/${realmSlug}/${characterName}/collections/heirlooms`
177
- };
178
- }
179
- function characterMountsCollectionSummary(realmSlug, characterName) {
180
- return {
181
- namespace: "profile",
182
- path: `${basePath2}/${realmSlug}/${characterName}/collections/mounts`
183
- };
184
- }
185
- function characterPetsCollectionSummary(realmSlug, characterName) {
186
- return {
187
- namespace: "profile",
188
- path: `${basePath2}/${realmSlug}/${characterName}/collections/pets`
189
- };
190
- }
191
- function characterToysCollectionSummary(realmSlug, characterName) {
192
- return {
193
- namespace: "profile",
194
- path: `${basePath2}/${realmSlug}/${characterName}/collections/toys`
195
- };
196
- }
197
- function characterTransmogCollectionSummary(realmSlug, characterName) {
198
- return {
199
- namespace: "profile",
200
- path: `${basePath2}/${realmSlug}/${characterName}/collections/transmogs`
201
- };
202
- }
203
-
204
- // src/character-encounters/character-encounters.ts
205
- var bathPase = "profile/wow/character";
206
- function characterEncountersSummary(realmSlug, characterName) {
207
- return {
208
- namespace: "profile",
209
- path: `${bathPase}/${realmSlug}/${characterName.toLowerCase()}/encounters`
210
- };
211
- }
212
- function characterDungeons(realmSlug, characterName) {
213
- return {
214
- namespace: "profile",
215
- path: `${bathPase}/${realmSlug}/${characterName.toLowerCase()}/encounters/dungeons`
216
- };
217
- }
218
- function characterRaids(realmSlug, characterName) {
219
- return {
220
- namespace: "profile",
221
- path: `${bathPase}/${realmSlug}/${characterName.toLowerCase()}/encounters/raids`
222
- };
223
- }
224
-
225
- // src/character-equipment/character-equipment.ts
226
- function characterEquipmentSummary(realmSlug, characterName) {
227
- return {
228
- namespace: "profile",
229
- path: `/profile/wow/character/${realmSlug}/${characterName.toLowerCase()}/equipment`
230
- };
231
- }
232
-
233
- // src/character-hunter-pets/character-hunter-pets.ts
234
- function characterHunterPetsSummary(realmSlug, characterName) {
235
- return {
236
- namespace: "profile",
237
- path: `/profile/wow/character/${realmSlug}/${characterName}/hunter-pets`
238
- };
239
- }
240
-
241
- // src/character-media/character-media.ts
242
- function characterMediaSummary(realmSlug, characterName) {
243
- return {
244
- namespace: "profile",
245
- path: `/profile/wow/character/${realmSlug}/${characterName}/character-media`
246
- };
247
- }
248
-
249
- // src/character-mythic-keystone-profile/character-mythic-keystone-profile.ts
250
- function characterMythicKeystoneProfileIndex(realmSlug, characterName) {
251
- return {
252
- namespace: "profile",
253
- path: `/profile/wow/character/${realmSlug}/${characterName}/mythic-keystone-profile`
254
- };
255
- }
256
- function characterMythicKeystoneSeasonDetails(realmSlug, characterName, seasonId) {
257
- return {
258
- namespace: "profile",
259
- path: `/profile/wow/character/${realmSlug}/${characterName}/mythic-keystone-profile/season/${seasonId}`
260
- };
261
- }
262
-
263
- // src/character-professions/character-professions.ts
264
- function characterProfessionsSummary(realmSlug, characterName) {
265
- return {
266
- namespace: "profile",
267
- path: `/profile/wow/character/${realmSlug}/${characterName.toLowerCase()}/professions`
268
- };
269
- }
270
-
271
- // src/character-profile/character-profile.ts
272
- function characterProfileSummary(realmSlug, characterName) {
273
- return {
274
- namespace: "profile",
275
- path: `/profile/wow/character/${realmSlug}/${characterName.toLowerCase()}`
276
- };
277
- }
278
- function characterProfileStatus(realmSlug, characterName) {
279
- return {
280
- namespace: "profile",
281
- path: `/profile/wow/character/${realmSlug}/${characterName.toLowerCase()}/status`
282
- };
283
- }
284
-
285
- // src/character-pvp/character-pvp.ts
286
- function characterPvpSummary(realmSlug, characterName) {
287
- return {
288
- namespace: "profile",
289
- path: `/profile/wow/character/${realmSlug}/${characterName.toLowerCase()}/pvp-summary`
290
- };
291
- }
292
-
293
- // src/character-quests/character-quests.ts
294
- function characterQuests(realmSlug, characterName) {
295
- return {
296
- namespace: "profile",
297
- path: `/profile/wow/character/${realmSlug}/${characterName}/quests`
298
- };
299
- }
300
- function characterCompletedQuests(realmSlug, characterName) {
301
- return {
302
- namespace: "profile",
303
- path: `/profile/wow/character/${realmSlug}/${characterName}/quests/completed`
304
- };
305
- }
306
-
307
- // src/character-reputations/character-reputations.ts
308
- function characterReputationsSummary(realmSlug, characterName) {
309
- return {
310
- namespace: "profile",
311
- path: `/profile/wow/character/${realmSlug}/${characterName}/reputations`
312
- };
313
- }
314
-
315
- // src/character-soulbinds/character-soulbinds.ts
316
- function characterSoulbinds(realmSlug, characterName) {
317
- return {
318
- namespace: "profile",
319
- path: `/profile/wow/character/${realmSlug}/${characterName.toLowerCase()}/soulbinds`
320
- };
321
- }
322
-
323
- // src/character-specializations/character-specializations.ts
324
- function characterSpecializationsSummary(realmSlug, characterName) {
325
- return {
326
- namespace: "profile",
327
- path: `/profile/wow/character/${realmSlug}/${characterName}/specializations`
328
- };
329
- }
330
-
331
- // src/character-statistics/character-statistics.ts
332
- function characterStatisticsSummary(realmSlug, characterName) {
333
- return {
334
- namespace: "profile",
335
- path: `/profile/wow/character/${realmSlug}/${characterName}/statistics`
336
- };
337
- }
338
-
339
- // src/character-titles/character-titles.ts
340
- function characterTitlesSummary(realmSlug, characterName) {
341
- return {
342
- namespace: "profile",
343
- path: `/profile/wow/character/${realmSlug}/${characterName}/titles`
344
- };
345
- }
346
-
347
- // src/connected-realm/connected-realm.ts
348
- function connectedRealmIndex() {
349
- return {
350
- namespace: "dynamic",
351
- path: `${base}/connected-realm/index`
352
- };
353
- }
354
- function connectedRealm(connectedRealmId) {
355
- return {
356
- namespace: "dynamic",
357
- path: `${base}/connected-realm/${connectedRealmId}`
358
- };
359
- }
360
- function connectedRealmSearch(options) {
361
- return {
362
- namespace: "dynamic",
363
- parameters: {
364
- _page: options._page,
365
- orderby: Array.isArray(options.orderby) ? options.orderby.join(",") : options.orderby,
366
- "realms.timezone": options["realms.timezone"],
367
- "status.type": options["status.type"]
368
- },
369
- path: `${base}/search/connected-realm`
370
- };
371
- }
372
-
373
- // src/covenant/covenant.ts
374
- function conduit(conduitId) {
375
- return {
376
- namespace: "static",
377
- path: `${base}/covenant/conduit/${conduitId}`
378
- };
379
- }
380
- function conduitIndex() {
381
- return {
382
- namespace: "static",
383
- path: `${base}/covenant/conduit/index`
384
- };
385
- }
386
- function covenant(covenantId) {
387
- return {
388
- namespace: "static",
389
- path: `${base}/covenant/${covenantId}`
390
- };
391
- }
392
- function covenantIndex() {
393
- return {
394
- namespace: "static",
395
- path: `${base}/covenant/index`
396
- };
397
- }
398
- function covenantMedia(covenantId) {
399
- return {
400
- namespace: "static",
401
- path: `${mediaBase}/covenant/${covenantId}`
402
- };
403
- }
404
- function soulbind(soulbindId) {
405
- return {
406
- namespace: "static",
407
- path: `${base}/covenant/soulbind/${soulbindId}`
408
- };
409
- }
410
- function soulbindIndex() {
411
- return {
412
- namespace: "static",
413
- path: `${base}/covenant/soulbind/index`
414
- };
415
- }
416
-
417
- // src/creature/creature.ts
418
- function creature(creatureId) {
419
- return {
420
- namespace: "static",
421
- path: `${base}/creature/${creatureId}`
422
- };
423
- }
424
- function creatureDisplayMedia(creatureDisplayId) {
425
- return {
426
- namespace: "static",
427
- path: `${mediaBase}/creature-display/${creatureDisplayId}`
428
- };
429
- }
430
- function creatureFamily(creatureFamilyId) {
431
- return {
432
- namespace: "static",
433
- path: `${base}/creature-family/${creatureFamilyId}`
434
- };
435
- }
436
- function creatureFamilyIndex() {
437
- return {
438
- namespace: "static",
439
- path: `${base}/creature-family/index`
440
- };
441
- }
442
- function creatureFamilyMedia(creatureFamilyId) {
443
- return {
444
- namespace: "static",
445
- path: `${mediaBase}/creature-family/${creatureFamilyId}`
446
- };
447
- }
448
- function creatureType(creatureTypeId) {
449
- return {
450
- namespace: "static",
451
- path: `${base}/creature-type/${creatureTypeId}`
452
- };
453
- }
454
- function creatureTypeIndex() {
455
- return {
456
- namespace: "static",
457
- path: `${base}/creature-type/index`
458
- };
459
- }
460
- function creatureSearch(options) {
461
- return {
462
- namespace: "static",
463
- parameters: {
464
- _page: options._page,
465
- [`name.${options.locale}`]: options.name,
466
- orderby: Array.isArray(options.orderby) ? options.orderby.join(",") : options.orderby
467
- },
468
- path: `${searchBase}/creature`
469
- };
470
- }
471
-
472
- // src/guild/guild.ts
473
- var basePath3 = "/data/wow/guild";
474
- function guild(realmSlug, nameSlug) {
475
- return {
476
- namespace: "profile",
477
- path: `${basePath3}/${realmSlug}/${nameSlug}`
478
- };
479
- }
480
- function guildActivity(realmSlug, nameSlug) {
481
- return {
482
- namespace: "profile",
483
- path: `${basePath3}/${realmSlug}/${nameSlug}/activity`
484
- };
485
- }
486
- function guildAchievements(realmSlug, nameSlug) {
487
- return {
488
- namespace: "profile",
489
- path: `${basePath3}/${realmSlug}/${nameSlug}/achievements`
490
- };
491
- }
492
- function guildRoster(realmSlug, nameSlug) {
493
- return {
494
- namespace: "profile",
495
- path: `${basePath3}/${realmSlug}/${nameSlug}/roster`
496
- };
497
- }
498
-
499
- // src/guild-crest/guild-crest.ts
500
- function guildCrestComponentsIndex() {
501
- return {
502
- namespace: "static",
503
- path: `${base}/guild-crest/index`
504
- };
505
- }
506
- function guildCrestBorder(borderId) {
507
- return {
508
- namespace: "static",
509
- path: `${mediaBase}/guild-crest/border/${borderId}`
510
- };
511
- }
512
- function guildCrestEmblem(emblemId) {
513
- return {
514
- namespace: "static",
515
- path: `${mediaBase}/guild-crest/emblem/${emblemId}`
516
- };
517
- }
518
-
519
- // src/heirloom/heirloom.ts
520
- function heirloom(heirloomId) {
521
- return {
522
- namespace: "static",
523
- path: `${base}/heirloom/${heirloomId}`
524
- };
525
- }
526
- function heirloomIndex() {
527
- return {
528
- namespace: "static",
529
- path: `${base}/heirloom/index`
530
- };
531
- }
532
-
533
- // src/item/item.ts
534
- function item(itemId) {
535
- return {
536
- namespace: "static",
537
- path: `${base}/item/${itemId}`
538
- };
539
- }
540
- function itemClass(itemClassId) {
541
- return {
542
- namespace: "static",
543
- path: `${base}/item-class/${itemClassId}`
544
- };
545
- }
546
- function itemSubClass(itemClassId, itemSubclassId) {
547
- return {
548
- namespace: "static",
549
- path: `${base}/item-class/${itemClassId}/item-subclass/${itemSubclassId}`
550
- };
551
- }
552
- function itemClassIndex() {
553
- return {
554
- namespace: "static",
555
- path: `${base}/item-class/index`
556
- };
557
- }
558
- function itemMedia(itemId) {
559
- return {
560
- namespace: "static",
561
- path: `${mediaBase}/item/${itemId}`
562
- };
563
- }
564
- function itemSet(itemSetId) {
565
- return {
566
- namespace: "static",
567
- path: `${base}/item-set/${itemSetId}`
568
- };
569
- }
570
- function itemSetIndex() {
571
- return {
572
- namespace: "static",
573
- path: `${base}/item-set/index`
574
- };
575
- }
576
- function itemSearch(options) {
577
- return {
578
- namespace: "static",
579
- parameters: {
580
- _page: options._page,
581
- [`name.${options.locale}`]: options.name,
582
- orderby: Array.isArray(options.orderby) ? options.orderby.join(",") : options.orderby
583
- },
584
- path: `${searchBase}/item`
585
- };
586
- }
587
-
588
- // src/journal/journal.ts
589
- function journalEncounter(journalEncounterId) {
590
- return {
591
- namespace: "static",
592
- path: `${base}/journal-encounter/${journalEncounterId}`
593
- };
594
- }
595
- function journalEncounterIndex() {
596
- return {
597
- namespace: "static",
598
- path: `${base}/journal-encounter/index`
599
- };
600
- }
601
- function journalEncounterSearch(options) {
602
- return {
603
- namespace: "static",
604
- parameters: {
605
- _page: options._page,
606
- [`instance.name.${options.locale}`]: options.instanceName,
607
- orderby: Array.isArray(options.orderby) ? options.orderby.join(",") : options.orderby
608
- },
609
- path: `${searchBase}/journal-encounter`
610
- };
611
- }
612
- function journalExpansion(journalExpansionId) {
613
- return {
614
- namespace: "static",
615
- path: `${base}/journal-expansion/${journalExpansionId}`
616
- };
617
- }
618
- function journalExpansionIndex() {
619
- return {
620
- namespace: "static",
621
- path: `${base}/journal-expansion/index`
622
- };
623
- }
624
- function journalInstance(journalInstanceId) {
625
- return {
626
- namespace: "static",
627
- path: `${base}/journal-instance/${journalInstanceId}`
628
- };
629
- }
630
- function journalInstanceIndex() {
631
- return {
632
- namespace: "static",
633
- path: `${base}/journal-instance/index`
634
- };
635
- }
636
- function journalInstanceMedia(journalInstanceId) {
637
- return {
638
- namespace: "static",
639
- path: `${mediaBase}/journal-instance/${journalInstanceId}`
640
- };
641
- }
642
-
643
- // src/media-search/media-search.ts
644
- function mediaSearch(options) {
645
- return {
646
- namespace: "static",
647
- parameters: {
648
- _page: options._page,
649
- orderby: Array.isArray(options.orderby) ? options.orderby.join(",") : options.orderby,
650
- tags: options.tags
651
- },
652
- path: `${searchBase}/media`
653
- };
654
- }
655
-
656
- // src/modified-crafting/modified-crafting.ts
657
- function modifiedCraftingCategory(modifiedCraftingCategoryId) {
658
- return {
659
- namespace: "static",
660
- path: `${base}/modified-crafting/category/${modifiedCraftingCategoryId}`
661
- };
662
- }
663
- function modifiedCraftingCategoryIndex() {
664
- return {
665
- namespace: "static",
666
- path: `${base}/modified-crafting/category/index`
667
- };
668
- }
669
- function modifiedCraftingIndex() {
670
- return {
671
- namespace: "static",
672
- path: `${base}/modified-crafting/index`
673
- };
674
- }
675
- function modifiedCraftingReagentSlotType(modifiedCraftingReagentSlotTypeId) {
676
- return {
677
- namespace: "static",
678
- path: `${base}/modified-crafting/reagent-slot-type/${modifiedCraftingReagentSlotTypeId}`
679
- };
680
- }
681
- function modifiedCraftingReagentSlotTypeIndex() {
682
- return {
683
- namespace: "static",
684
- path: `${base}/modified-crafting/reagent-slot-type/index`
685
- };
686
- }
687
-
688
- // src/mount/mount.ts
689
- function mount(mountId) {
690
- return {
691
- namespace: "static",
692
- path: `${base}/mount/${mountId}`
693
- };
694
- }
695
- function mountIndex() {
696
- return {
697
- namespace: "static",
698
- path: `${base}/mount/index`
699
- };
700
- }
701
- function mountSearch(options) {
702
- return {
703
- namespace: "static",
704
- parameters: {
705
- _page: options._page,
706
- [`name.${options.locale}`]: options.name,
707
- orderby: Array.isArray(options.orderby) ? options.orderby.join(",") : options.orderby
708
- },
709
- path: `${searchBase}/mount`
710
- };
711
- }
712
-
713
- // src/mythic-keystone-affix/mythic-keystone-affix.ts
714
- function mythicKeystoneAffix(mythicKeystoneAffixId) {
715
- return {
716
- namespace: "static",
717
- path: `${base}/keystone-affix/${mythicKeystoneAffixId}`
718
- };
719
- }
720
- function mythicKeystoneAffixIndex() {
721
- return {
722
- namespace: "static",
723
- path: `${base}/keystone-affix/index`
724
- };
725
- }
726
- function mythicKeystoneAffixMedia(mythicKeystoneAffixId) {
727
- return {
728
- namespace: "static",
729
- path: `${mediaBase}/keystone-affix/${mythicKeystoneAffixId}`
730
- };
731
- }
732
-
733
- // src/mythic-keystone-dungeon/mythic-keystone-dungeon.ts
734
- function mythicKeystoneDungeon(mythicKeystoneDungeonId) {
735
- return {
736
- namespace: "dynamic",
737
- path: `${base}/mythic-keystone/dungeon/${mythicKeystoneDungeonId}`
738
- };
739
- }
740
- function mythicKeystoneDungeonIndex() {
741
- return {
742
- namespace: "dynamic",
743
- path: `${base}/mythic-keystone/dungeon/index`
744
- };
745
- }
746
- function mythicKeystoneIndex() {
747
- return {
748
- namespace: "dynamic",
749
- path: `${base}/mythic-keystone/index`
750
- };
751
- }
752
- function mythicKeystonePeriod(mythicKeystonePeriodId) {
753
- return {
754
- namespace: "dynamic",
755
- path: `${base}/mythic-keystone/period/${mythicKeystonePeriodId}`
756
- };
757
- }
758
- function mythicKeystonePeriodIndex() {
759
- return {
760
- namespace: "dynamic",
761
- path: `${base}/mythic-keystone/period/index`
762
- };
763
- }
764
- function mythicKeystoneSeason(mythicKeystoneSeasonId) {
765
- return {
766
- namespace: "dynamic",
767
- path: `${base}/mythic-keystone/season/${mythicKeystoneSeasonId}`
768
- };
769
- }
770
- function mythicKeystoneSeasonIndex() {
771
- return {
772
- namespace: "dynamic",
773
- path: `${base}/mythic-keystone/season/index`
774
- };
775
- }
776
-
777
- // src/mythic-keystone-leaderboard/mythic-keystone-leaderboard.ts
778
- function mythicKeystoneLeaderboard(connectedRealmId, dungeonId, period) {
779
- return {
780
- namespace: "dynamic",
781
- path: `${base}/connected-realm/${connectedRealmId}/mythic-leaderboard/${dungeonId}/period/${period}`
782
- };
783
- }
784
- function mythicKeystoneLeaderboardIndex(connectedRealmId) {
785
- return {
786
- namespace: "dynamic",
787
- path: `${base}/connected-realm/${connectedRealmId}/mythic-leaderboard/index`
788
- };
789
- }
790
-
791
- // src/mythic-raid-leaderboard/mythic-raid-leaderboard.ts
792
- function mythicRaidLeaderboard(raid, faction) {
793
- return {
794
- namespace: "dynamic",
795
- path: `${base}/leaderboard/hall-of-fame/${raid}/${faction}`
796
- };
797
- }
798
-
799
- // src/pet/pet.ts
800
- function pet(petId) {
801
- return {
802
- namespace: "static",
803
- path: `${base}/pet/${petId}`
804
- };
805
- }
806
- function petIndex() {
807
- return {
808
- namespace: "static",
809
- path: `${base}/pet/index`
810
- };
811
- }
812
- function petMedia(petId) {
813
- return {
814
- namespace: "static",
815
- path: `${mediaBase}/pet/${petId}`
816
- };
817
- }
818
- function petAbility(petAbilityId) {
819
- return {
820
- namespace: "static",
821
- path: `${base}/pet-ability/${petAbilityId}`
822
- };
823
- }
824
- function petAbilityIndex() {
825
- return {
826
- namespace: "static",
827
- path: `${base}/pet-ability/index`
828
- };
829
- }
830
- function petAbilityMedia(petAbilityId) {
831
- return {
832
- namespace: "static",
833
- path: `${mediaBase}/pet-ability/${petAbilityId}`
834
- };
835
- }
836
-
837
- // src/playable-class/playable-class.ts
838
- function playableClass(playableClassId) {
839
- return {
840
- namespace: "static",
841
- path: `${base}/playable-class/${playableClassId}`
842
- };
843
- }
844
- function playableClassIndex() {
845
- return {
846
- namespace: "static",
847
- path: `${base}/playable-class/index`
848
- };
849
- }
850
- function playableClassMedia(playableClassId) {
851
- return {
852
- namespace: "static",
853
- path: `${mediaBase}/playable-class/${playableClassId}`
854
- };
855
- }
856
- function pvpTalentSlots(playableClassId) {
857
- return {
858
- namespace: "static",
859
- path: `${base}/playable-class/${playableClassId}/pvp-talent-slots`
860
- };
861
- }
862
-
863
- // src/playable-race/playable-race.ts
864
- function playableRace(playableRaceId) {
865
- return {
866
- namespace: "static",
867
- path: `${base}/playable-race/${playableRaceId}`
868
- };
869
- }
870
- function playableRaceIndex() {
871
- return {
872
- namespace: "static",
873
- path: `${base}/playable-race/index`
874
- };
875
- }
876
-
877
- // src/playable-specialization/playable-specialization.ts
878
- function playableSpecialization(specializationId) {
879
- return {
880
- namespace: "static",
881
- path: `${base}/playable-specialization/${specializationId}`
882
- };
883
- }
884
- function playableSpecializationIndex() {
885
- return {
886
- namespace: "static",
887
- path: `${base}/playable-specialization/index`
888
- };
889
- }
890
- function playableSpecializationMedia(specializationId) {
891
- return {
892
- namespace: "static",
893
- path: `${mediaBase}/playable-specialization/${specializationId}`
894
- };
895
- }
896
-
897
- // src/power-type/power-type.ts
898
- function powerType(powerTypeId) {
899
- return {
900
- namespace: "static",
901
- path: `${base}/power-type/${powerTypeId}`
902
- };
903
- }
904
- function powerTypeIndex() {
905
- return {
906
- namespace: "static",
907
- path: `${base}/power-type/index`
908
- };
909
- }
910
-
911
- // src/profession/profession.ts
912
- function profession(professionId) {
913
- return {
914
- namespace: "static",
915
- path: `${base}/profession/${professionId}`
916
- };
917
- }
918
- function professionIndex() {
919
- return {
920
- namespace: "static",
921
- path: `${base}/profession/index`
922
- };
923
- }
924
- function professionMedia(professionId) {
925
- return {
926
- namespace: "static",
927
- path: `${mediaBase}/profession/${professionId}`
928
- };
929
- }
930
- function professionSkillTier(professionId, skillTierId) {
931
- return {
932
- namespace: "static",
933
- path: `${base}/profession/${professionId}/skill-tier/${skillTierId}`
934
- };
935
- }
936
- function recipe(recipeId) {
937
- return {
938
- namespace: "static",
939
- path: `${base}/recipe/${recipeId}`
940
- };
941
- }
942
- function recipeMedia(recipeId) {
943
- return {
944
- namespace: "static",
945
- path: `${mediaBase}/recipe/${recipeId}`
946
- };
947
- }
948
-
949
- // src/pvp-season/pvp-season.ts
950
- function pvpLeaderboard(pvpSeasonId, bracket) {
951
- return {
952
- namespace: "dynamic",
953
- path: `${base}/pvp-season/${pvpSeasonId}/pvp-leaderboard/${bracket}`
954
- };
955
- }
956
- function pvpLeaderboardIndex(pvpSeasonId) {
957
- return {
958
- namespace: "dynamic",
959
- path: `${base}/pvp-season/${pvpSeasonId}/pvp-leaderboard/index`
960
- };
961
- }
962
- function pvpRewardsIndex(pvpSeasonId) {
963
- return {
964
- namespace: "dynamic",
965
- path: `${base}/pvp-season/${pvpSeasonId}/pvp-reward/index`
966
- };
967
- }
968
- function pvpSeason(pvpSeasonId) {
969
- return {
970
- namespace: "dynamic",
971
- path: `${base}/pvp-season/${pvpSeasonId}`
972
- };
973
- }
974
- function pvpSeasonIndex() {
975
- return {
976
- namespace: "dynamic",
977
- path: `${base}/pvp-season/index`
978
- };
979
- }
980
-
981
- // src/pvp-tier/pvp-tier.ts
982
- function pvpTier(pvpTierId) {
983
- return {
984
- namespace: "static",
985
- path: `${base}/pvp-tier/${pvpTierId}`
986
- };
987
- }
988
- function pvpTierIndex() {
989
- return {
990
- namespace: "static",
991
- path: `${base}/pvp-tier/index`
992
- };
993
- }
994
- function pvpTierMedia(pvpTierId) {
995
- return {
996
- namespace: "static",
997
- path: `${mediaBase}/pvp-tier/${pvpTierId}`
998
- };
999
- }
1000
-
1001
- // src/quest/quest.ts
1002
- function quest(questId) {
1003
- return {
1004
- namespace: "static",
1005
- path: `${base}/quest/${questId}`
1006
- };
1007
- }
1008
- function questIndex() {
1009
- return {
1010
- namespace: "static",
1011
- path: `${base}/quest/index`
1012
- };
1013
- }
1014
- function questArea(questAreaId) {
1015
- return {
1016
- namespace: "static",
1017
- path: `${base}/quest/area/${questAreaId}`
1018
- };
1019
- }
1020
- function questAreaIndex() {
1021
- return {
1022
- namespace: "static",
1023
- path: `${base}/quest/area/index`
1024
- };
1025
- }
1026
- function questCategory(questCategoryId) {
1027
- return {
1028
- namespace: "static",
1029
- path: `${base}/quest/category/${questCategoryId}`
1030
- };
1031
- }
1032
- function questCategoryIndex() {
1033
- return {
1034
- namespace: "static",
1035
- path: `${base}/quest/category/index`
1036
- };
1037
- }
1038
- function questType(questTypeId) {
1039
- return {
1040
- namespace: "static",
1041
- path: `${base}/quest/type/${questTypeId}`
1042
- };
1043
- }
1044
- function questTypeIndex() {
1045
- return {
1046
- namespace: "static",
1047
- path: `${base}/quest/type/index`
1048
- };
1049
- }
1050
-
1051
- // src/realm/realm.ts
1052
- function realm(realmSlug) {
1053
- return {
1054
- namespace: "dynamic",
1055
- path: `${base}/realm/${realmSlug}`
1056
- };
1057
- }
1058
- function realmIndex() {
1059
- return {
1060
- namespace: "dynamic",
1061
- path: `${base}/realm/index`
1062
- };
1063
- }
1064
- function realmSearch(options) {
1065
- return {
1066
- namespace: "dynamic",
1067
- parameters: {
1068
- _page: options._page,
1069
- orderby: Array.isArray(options.orderby) ? options.orderby.join(",") : options.orderby,
1070
- timezone: options.timezone
1071
- },
1072
- path: `${searchBase}/realm`
1073
- };
1074
- }
1075
-
1076
- // src/region/region.ts
1077
- function region(regionId) {
1078
- return {
1079
- namespace: "dynamic",
1080
- path: `${base}/region/${regionId}`
1081
- };
1082
- }
1083
- function regionIndex() {
1084
- return {
1085
- namespace: "dynamic",
1086
- path: `${base}/region/index`
1087
- };
1088
- }
1089
-
1090
- // src/reputations/reputations.ts
1091
- function reputationFaction(reputationFactionId) {
1092
- return {
1093
- namespace: "static",
1094
- path: `${base}/reputation-faction/${reputationFactionId}`
1095
- };
1096
- }
1097
- function reputationFactionIndex() {
1098
- return {
1099
- namespace: "static",
1100
- path: `${base}/reputation-faction/index`
1101
- };
1102
- }
1103
- function reputationTiers(reputationTiersId) {
1104
- return {
1105
- namespace: "static",
1106
- path: `${base}/reputation-tiers/${reputationTiersId}`
1107
- };
1108
- }
1109
- function reputationTiersIndex() {
1110
- return {
1111
- namespace: "static",
1112
- path: `${base}/reputation-tiers/index`
1113
- };
1114
- }
1115
-
1116
- // src/spell/spell.ts
1117
- function spell(spellId) {
1118
- return {
1119
- namespace: "static",
1120
- path: `${base}/spell/${spellId}`
1121
- };
1122
- }
1123
- function spellMedia(spellId) {
1124
- return {
1125
- namespace: "static",
1126
- path: `${mediaBase}/spell/${spellId}`
1127
- };
1128
- }
1129
- function spellSearch(options) {
1130
- return {
1131
- namespace: "static",
1132
- parameters: {
1133
- _page: options._page,
1134
- [`name.${options.locale}`]: options.name,
1135
- orderby: Array.isArray(options.orderby) ? options.orderby.join(",") : options.orderby
1136
- },
1137
- path: `${searchBase}/spell`
1138
- };
1139
- }
1140
-
1141
- // src/talent/talent.ts
1142
- function pvpTalent(pvpTalentId) {
1143
- return {
1144
- namespace: "static",
1145
- path: `${base}/pvp-talent/${pvpTalentId}`
1146
- };
1147
- }
1148
- function pvpTalentIndex() {
1149
- return {
1150
- namespace: "static",
1151
- path: `${base}/pvp-talent/index`
1152
- };
1153
- }
1154
- function talent(talentId) {
1155
- return {
1156
- namespace: "static",
1157
- path: `${base}/talent/${talentId}`
1158
- };
1159
- }
1160
- function talentIndex() {
1161
- return {
1162
- namespace: "static",
1163
- path: `${base}/talent/index`
1164
- };
1165
- }
1166
- function talentTree(talentTreeId, specId) {
1167
- return {
1168
- namespace: "static",
1169
- path: `${base}/talent-tree/${talentTreeId}/playable-specialization/${specId}`
1170
- };
1171
- }
1172
- function talentTreeIndex() {
1173
- return {
1174
- namespace: "static",
1175
- path: `${base}/talent-tree/index`
1176
- };
1177
- }
1178
- function talentTreeNodes(talentTreeId) {
1179
- return {
1180
- namespace: "static",
1181
- path: `${base}/talent-tree/${talentTreeId}`
1182
- };
1183
- }
1184
-
1185
- // src/tech-talent/tech-talent.ts
1186
- function techTalent(techTalentId) {
1187
- return {
1188
- namespace: "static",
1189
- path: `${base}/tech-talent/${techTalentId}`
1190
- };
1191
- }
1192
- function techTalentIndex() {
1193
- return {
1194
- namespace: "static",
1195
- path: `${base}/tech-talent/index`
1196
- };
1197
- }
1198
- function techTalentMedia(techTalentId) {
1199
- return {
1200
- namespace: "static",
1201
- path: `${mediaBase}/tech-talent/${techTalentId}`
1202
- };
1203
- }
1204
- function techTalentTree(techTalentTreeId) {
1205
- return {
1206
- namespace: "static",
1207
- path: `${base}/tech-talent-tree/${techTalentTreeId}`
1208
- };
1209
- }
1210
- function techTalentTreeIndex() {
1211
- return {
1212
- namespace: "static",
1213
- path: `${base}/tech-talent-tree/index`
1214
- };
1215
- }
1216
-
1217
- // src/title/title.ts
1218
- function title(titleId) {
1219
- return {
1220
- namespace: "static",
1221
- path: `${base}/title/${titleId}`
1222
- };
1223
- }
1224
- function titleIndex() {
1225
- return {
1226
- namespace: "static",
1227
- path: `${base}/title/index`
1228
- };
1229
- }
1230
-
1231
- // src/toy/toy.ts
1232
- function toy(toyId) {
1233
- return {
1234
- namespace: "static",
1235
- path: `${base}/toy/${toyId}`
1236
- };
1237
- }
1238
- function toyIndex() {
1239
- return {
1240
- namespace: "static",
1241
- path: `${base}/toy/index`
1242
- };
1243
- }
1244
-
1245
- // src/wow-token/wow-token.ts
1246
- function wowToken() {
1247
- return {
1248
- namespace: "dynamic",
1249
- path: `${base}/token/index`
1250
- };
1251
- }
1252
-
1253
- // src/index.ts
1254
- var wow = {
1255
- //Account Profile
1256
- accountCollectionsIndex,
1257
- accountHeirloomsCollectionSummary,
1258
- accountMountsCollectionSummary,
1259
- accountPetsCollectionSummary,
1260
- accountProfileSummary,
1261
- accountToysCollectionSummary,
1262
- accountTransmogsCollectionSummary,
1263
- protectedCharacterProfileSummary,
1264
- //Achievements
1265
- achievement,
1266
- achievementCategory,
1267
- achievementCategoryIndex,
1268
- achievementIndex,
1269
- achievementMedia,
1270
- //Auction House
1271
- auctions,
1272
- commodities,
1273
- //Azerite Essence
1274
- azeriteEssence,
1275
- azeriteEssenceIndex,
1276
- azeriteEssenceMedia,
1277
- azeriteEssenceSearch,
1278
- //Character Achievements
1279
- characterAchievementsSummary,
1280
- characterAchievementStatistics,
1281
- //Character Appearance
1282
- characterAppearanceSummary,
1283
- //Character Collections
1284
- characterCollectionsIndex,
1285
- characterHeirloomsCollectionSummary,
1286
- characterMountsCollectionSummary,
1287
- characterPetsCollectionSummary,
1288
- characterToysCollectionSummary,
1289
- characterTransmogCollectionSummary,
1290
- //Character Encounters
1291
- characterDungeons,
1292
- characterEncountersSummary,
1293
- characterRaids,
1294
- //Character Equipment
1295
- characterEquipmentSummary,
1296
- //Character Hunter Pets
1297
- characterHunterPetsSummary,
1298
- //Character Media
1299
- characterMediaSummary,
1300
- //Character Mythic Keystone Profile
1301
- characterMythicKeystoneProfileIndex,
1302
- characterMythicKeystoneSeasonDetails,
1303
- //Character Professions
1304
- characterProfessionsSummary,
1305
- //Character Profile
1306
- characterProfileStatus,
1307
- characterProfileSummary,
1308
- //Character PvP
1309
- characterPvpSummary,
1310
- //Character Quests
1311
- characterCompletedQuests,
1312
- characterQuests,
1313
- //Character Reputations
1314
- characterReputationsSummary,
1315
- //Character Soulbinds
1316
- characterSoulbinds,
1317
- //Character Specializations
1318
- characterSpecializationsSummary,
1319
- //Character Statistics
1320
- characterStatisticsSummary,
1321
- //Character Titles
1322
- characterTitlesSummary,
1323
- //Connected Realm
1324
- connectedRealm,
1325
- connectedRealmIndex,
1326
- connectedRealmSearch,
1327
- //Covenant
1328
- conduit,
1329
- conduitIndex,
1330
- covenant,
1331
- covenantIndex,
1332
- covenantMedia,
1333
- soulbind,
1334
- soulbindIndex,
1335
- //Creature
1336
- creature,
1337
- creatureDisplayMedia,
1338
- creatureFamily,
1339
- creatureFamilyIndex,
1340
- creatureFamilyMedia,
1341
- creatureSearch,
1342
- creatureType,
1343
- creatureTypeIndex,
1344
- //Guild
1345
- guild,
1346
- guildAchievements,
1347
- guildActivity,
1348
- guildRoster,
1349
- //Guild Crest
1350
- guildCrestBorder,
1351
- guildCrestComponentsIndex,
1352
- guildCrestEmblem,
1353
- //Heirloom
1354
- heirloom,
1355
- heirloomIndex,
1356
- //Item
1357
- item,
1358
- itemClass,
1359
- itemClassIndex,
1360
- itemMedia,
1361
- itemSearch,
1362
- itemSet,
1363
- itemSetIndex,
1364
- itemSubClass,
1365
- //Journal
1366
- journalEncounter,
1367
- journalEncounterIndex,
1368
- journalEncounterSearch,
1369
- journalExpansion,
1370
- journalExpansionIndex,
1371
- journalInstance,
1372
- journalInstanceIndex,
1373
- journalInstanceMedia,
1374
- //Media Search
1375
- mediaSearch,
1376
- //Modified Crafting
1377
- modifiedCraftingCategory,
1378
- modifiedCraftingCategoryIndex,
1379
- modifiedCraftingIndex,
1380
- modifiedCraftingReagentSlotType,
1381
- modifiedCraftingReagentSlotTypeIndex,
1382
- //Mount
1383
- mount,
1384
- mountIndex,
1385
- mountSearch,
1386
- //Mythic Keystone Affix
1387
- mythicKeystoneAffix,
1388
- mythicKeystoneAffixIndex,
1389
- mythicKeystoneAffixMedia,
1390
- //Mythic Keystone Dungeon
1391
- mythicKeystoneDungeon,
1392
- mythicKeystoneDungeonIndex,
1393
- mythicKeystoneIndex,
1394
- mythicKeystonePeriod,
1395
- mythicKeystonePeriodIndex,
1396
- mythicKeystoneSeason,
1397
- mythicKeystoneSeasonIndex,
1398
- //Mythic Keystone Leaderboard
1399
- mythicKeystoneLeaderboard,
1400
- mythicKeystoneLeaderboardIndex,
1401
- //Mythic Raid Leaderboard
1402
- mythicRaidLeaderboard,
1403
- //Pet
1404
- pet,
1405
- petAbility,
1406
- petAbilityIndex,
1407
- petAbilityMedia,
1408
- petIndex,
1409
- petMedia,
1410
- //Playable Class
1411
- playableClass,
1412
- playableClassIndex,
1413
- playableClassMedia,
1414
- pvpTalentSlots,
1415
- //Playable
1416
- playableRace,
1417
- playableRaceIndex,
1418
- //Playable Specialization
1419
- playableSpecialization,
1420
- playableSpecializationIndex,
1421
- playableSpecializationMedia,
1422
- //Power Type
1423
- powerType,
1424
- powerTypeIndex,
1425
- //Profession
1426
- profession,
1427
- professionIndex,
1428
- professionMedia,
1429
- professionSkillTier,
1430
- recipe,
1431
- recipeMedia,
1432
- //Pvp Season
1433
- pvpLeaderboard,
1434
- pvpLeaderboardIndex,
1435
- pvpRewardsIndex,
1436
- pvpSeason,
1437
- pvpSeasonIndex,
1438
- //Pvp Tier
1439
- pvpTier,
1440
- pvpTierIndex,
1441
- pvpTierMedia,
1442
- //Quest
1443
- quest,
1444
- questArea,
1445
- questAreaIndex,
1446
- questCategory,
1447
- questCategoryIndex,
1448
- questIndex,
1449
- questType,
1450
- questTypeIndex,
1451
- //Realm
1452
- realm,
1453
- realmIndex,
1454
- realmSearch,
1455
- //Region
1456
- region,
1457
- regionIndex,
1458
- //Reputations
1459
- reputationFaction,
1460
- reputationFactionIndex,
1461
- reputationTiers,
1462
- reputationTiersIndex,
1463
- //Spell
1464
- spell,
1465
- spellMedia,
1466
- spellSearch,
1467
- //Talent
1468
- pvpTalent,
1469
- pvpTalentIndex,
1470
- talentIndex,
1471
- talentTree,
1472
- talentTreeIndex,
1473
- talentTreeNodes,
1474
- //Tech Talent
1475
- techTalent,
1476
- techTalentIndex,
1477
- techTalentMedia,
1478
- techTalentTree,
1479
- techTalentTreeIndex,
1480
- //Title
1481
- title,
1482
- titleIndex,
1483
- //Toy
1484
- toy,
1485
- toyIndex,
1486
- //WoW Token
1487
- wowToken
1488
- };
1489
- var src_default = wow;
1490
-
1491
- exports.accountCollectionsIndex = accountCollectionsIndex;
1492
- exports.accountHeirloomsCollectionSummary = accountHeirloomsCollectionSummary;
1493
- exports.accountMountsCollectionSummary = accountMountsCollectionSummary;
1494
- exports.accountPetsCollectionSummary = accountPetsCollectionSummary;
1495
- exports.accountProfileSummary = accountProfileSummary;
1496
- exports.accountToysCollectionSummary = accountToysCollectionSummary;
1497
- exports.accountTransmogsCollectionSummary = accountTransmogsCollectionSummary;
1498
- exports.achievement = achievement;
1499
- exports.achievementCategory = achievementCategory;
1500
- exports.achievementCategoryIndex = achievementCategoryIndex;
1501
- exports.achievementIndex = achievementIndex;
1502
- exports.achievementMedia = achievementMedia;
1503
- exports.auctions = auctions;
1504
- exports.azeriteEssence = azeriteEssence;
1505
- exports.azeriteEssenceIndex = azeriteEssenceIndex;
1506
- exports.azeriteEssenceMedia = azeriteEssenceMedia;
1507
- exports.azeriteEssenceSearch = azeriteEssenceSearch;
1508
- exports.characterAchievementStatistics = characterAchievementStatistics;
1509
- exports.characterAchievementsSummary = characterAchievementsSummary;
1510
- exports.characterAppearanceSummary = characterAppearanceSummary;
1511
- exports.characterCollectionsIndex = characterCollectionsIndex;
1512
- exports.characterCompletedQuests = characterCompletedQuests;
1513
- exports.characterDungeons = characterDungeons;
1514
- exports.characterEncountersSummary = characterEncountersSummary;
1515
- exports.characterEquipmentSummary = characterEquipmentSummary;
1516
- exports.characterHeirloomsCollectionSummary = characterHeirloomsCollectionSummary;
1517
- exports.characterHunterPetsSummary = characterHunterPetsSummary;
1518
- exports.characterMediaSummary = characterMediaSummary;
1519
- exports.characterMountsCollectionSummary = characterMountsCollectionSummary;
1520
- exports.characterMythicKeystoneProfileIndex = characterMythicKeystoneProfileIndex;
1521
- exports.characterMythicKeystoneSeasonDetails = characterMythicKeystoneSeasonDetails;
1522
- exports.characterPetsCollectionSummary = characterPetsCollectionSummary;
1523
- exports.characterProfessionsSummary = characterProfessionsSummary;
1524
- exports.characterProfileStatus = characterProfileStatus;
1525
- exports.characterProfileSummary = characterProfileSummary;
1526
- exports.characterPvpSummary = characterPvpSummary;
1527
- exports.characterQuests = characterQuests;
1528
- exports.characterRaids = characterRaids;
1529
- exports.characterReputationsSummary = characterReputationsSummary;
1530
- exports.characterSoulbinds = characterSoulbinds;
1531
- exports.characterSpecializationsSummary = characterSpecializationsSummary;
1532
- exports.characterStatisticsSummary = characterStatisticsSummary;
1533
- exports.characterTitlesSummary = characterTitlesSummary;
1534
- exports.characterToysCollectionSummary = characterToysCollectionSummary;
1535
- exports.characterTransmogCollectionSummary = characterTransmogCollectionSummary;
1536
- exports.commodities = commodities;
1537
- exports.conduit = conduit;
1538
- exports.conduitIndex = conduitIndex;
1539
- exports.connectedRealm = connectedRealm;
1540
- exports.connectedRealmIndex = connectedRealmIndex;
1541
- exports.connectedRealmSearch = connectedRealmSearch;
1542
- exports.covenant = covenant;
1543
- exports.covenantIndex = covenantIndex;
1544
- exports.covenantMedia = covenantMedia;
1545
- exports.creature = creature;
1546
- exports.creatureDisplayMedia = creatureDisplayMedia;
1547
- exports.creatureFamily = creatureFamily;
1548
- exports.creatureFamilyIndex = creatureFamilyIndex;
1549
- exports.creatureFamilyMedia = creatureFamilyMedia;
1550
- exports.creatureSearch = creatureSearch;
1551
- exports.creatureType = creatureType;
1552
- exports.creatureTypeIndex = creatureTypeIndex;
1553
- exports.default = src_default;
1554
- exports.guild = guild;
1555
- exports.guildAchievements = guildAchievements;
1556
- exports.guildActivity = guildActivity;
1557
- exports.guildCrestBorder = guildCrestBorder;
1558
- exports.guildCrestComponentsIndex = guildCrestComponentsIndex;
1559
- exports.guildCrestEmblem = guildCrestEmblem;
1560
- exports.guildRoster = guildRoster;
1561
- exports.heirloom = heirloom;
1562
- exports.heirloomIndex = heirloomIndex;
1563
- exports.item = item;
1564
- exports.itemClass = itemClass;
1565
- exports.itemClassIndex = itemClassIndex;
1566
- exports.itemMedia = itemMedia;
1567
- exports.itemSearch = itemSearch;
1568
- exports.itemSet = itemSet;
1569
- exports.itemSetIndex = itemSetIndex;
1570
- exports.itemSubClass = itemSubClass;
1571
- exports.journalEncounter = journalEncounter;
1572
- exports.journalEncounterIndex = journalEncounterIndex;
1573
- exports.journalEncounterSearch = journalEncounterSearch;
1574
- exports.journalExpansion = journalExpansion;
1575
- exports.journalExpansionIndex = journalExpansionIndex;
1576
- exports.journalInstance = journalInstance;
1577
- exports.journalInstanceIndex = journalInstanceIndex;
1578
- exports.journalInstanceMedia = journalInstanceMedia;
1579
- exports.mediaSearch = mediaSearch;
1580
- exports.modifiedCraftingCategory = modifiedCraftingCategory;
1581
- exports.modifiedCraftingCategoryIndex = modifiedCraftingCategoryIndex;
1582
- exports.modifiedCraftingIndex = modifiedCraftingIndex;
1583
- exports.modifiedCraftingReagentSlotType = modifiedCraftingReagentSlotType;
1584
- exports.modifiedCraftingReagentSlotTypeIndex = modifiedCraftingReagentSlotTypeIndex;
1585
- exports.mount = mount;
1586
- exports.mountIndex = mountIndex;
1587
- exports.mountSearch = mountSearch;
1588
- exports.mythicKeystoneAffix = mythicKeystoneAffix;
1589
- exports.mythicKeystoneAffixIndex = mythicKeystoneAffixIndex;
1590
- exports.mythicKeystoneAffixMedia = mythicKeystoneAffixMedia;
1591
- exports.mythicKeystoneDungeon = mythicKeystoneDungeon;
1592
- exports.mythicKeystoneDungeonIndex = mythicKeystoneDungeonIndex;
1593
- exports.mythicKeystoneIndex = mythicKeystoneIndex;
1594
- exports.mythicKeystoneLeaderboard = mythicKeystoneLeaderboard;
1595
- exports.mythicKeystoneLeaderboardIndex = mythicKeystoneLeaderboardIndex;
1596
- exports.mythicKeystonePeriod = mythicKeystonePeriod;
1597
- exports.mythicKeystonePeriodIndex = mythicKeystonePeriodIndex;
1598
- exports.mythicKeystoneSeason = mythicKeystoneSeason;
1599
- exports.mythicKeystoneSeasonIndex = mythicKeystoneSeasonIndex;
1600
- exports.mythicRaidLeaderboard = mythicRaidLeaderboard;
1601
- exports.pet = pet;
1602
- exports.petAbility = petAbility;
1603
- exports.petAbilityIndex = petAbilityIndex;
1604
- exports.petAbilityMedia = petAbilityMedia;
1605
- exports.petIndex = petIndex;
1606
- exports.petMedia = petMedia;
1607
- exports.playableClass = playableClass;
1608
- exports.playableClassIndex = playableClassIndex;
1609
- exports.playableClassMedia = playableClassMedia;
1610
- exports.playableRace = playableRace;
1611
- exports.playableRaceIndex = playableRaceIndex;
1612
- exports.playableSpecialization = playableSpecialization;
1613
- exports.playableSpecializationIndex = playableSpecializationIndex;
1614
- exports.playableSpecializationMedia = playableSpecializationMedia;
1615
- exports.powerType = powerType;
1616
- exports.powerTypeIndex = powerTypeIndex;
1617
- exports.profession = profession;
1618
- exports.professionIndex = professionIndex;
1619
- exports.professionMedia = professionMedia;
1620
- exports.professionSkillTier = professionSkillTier;
1621
- exports.protectedCharacterProfileSummary = protectedCharacterProfileSummary;
1622
- exports.pvpLeaderboard = pvpLeaderboard;
1623
- exports.pvpLeaderboardIndex = pvpLeaderboardIndex;
1624
- exports.pvpRewardsIndex = pvpRewardsIndex;
1625
- exports.pvpSeason = pvpSeason;
1626
- exports.pvpSeasonIndex = pvpSeasonIndex;
1627
- exports.pvpTalent = pvpTalent;
1628
- exports.pvpTalentIndex = pvpTalentIndex;
1629
- exports.pvpTalentSlots = pvpTalentSlots;
1630
- exports.pvpTier = pvpTier;
1631
- exports.pvpTierIndex = pvpTierIndex;
1632
- exports.pvpTierMedia = pvpTierMedia;
1633
- exports.quest = quest;
1634
- exports.questArea = questArea;
1635
- exports.questAreaIndex = questAreaIndex;
1636
- exports.questCategory = questCategory;
1637
- exports.questCategoryIndex = questCategoryIndex;
1638
- exports.questIndex = questIndex;
1639
- exports.questType = questType;
1640
- exports.questTypeIndex = questTypeIndex;
1641
- exports.realm = realm;
1642
- exports.realmIndex = realmIndex;
1643
- exports.realmSearch = realmSearch;
1644
- exports.recipe = recipe;
1645
- exports.recipeMedia = recipeMedia;
1646
- exports.region = region;
1647
- exports.regionIndex = regionIndex;
1648
- exports.reputationFaction = reputationFaction;
1649
- exports.reputationFactionIndex = reputationFactionIndex;
1650
- exports.reputationTiers = reputationTiers;
1651
- exports.reputationTiersIndex = reputationTiersIndex;
1652
- exports.soulbind = soulbind;
1653
- exports.soulbindIndex = soulbindIndex;
1654
- exports.spell = spell;
1655
- exports.spellMedia = spellMedia;
1656
- exports.spellSearch = spellSearch;
1657
- exports.talent = talent;
1658
- exports.talentIndex = talentIndex;
1659
- exports.talentTree = talentTree;
1660
- exports.talentTreeIndex = talentTreeIndex;
1661
- exports.talentTreeNodes = talentTreeNodes;
1662
- exports.techTalent = techTalent;
1663
- exports.techTalentIndex = techTalentIndex;
1664
- exports.techTalentMedia = techTalentMedia;
1665
- exports.techTalentTree = techTalentTree;
1666
- exports.techTalentTreeIndex = techTalentTreeIndex;
1667
- exports.title = title;
1668
- exports.titleIndex = titleIndex;
1669
- exports.toy = toy;
1670
- exports.toyIndex = toyIndex;
1671
- exports.wow = wow;
1672
- exports.wowToken = wowToken;
1673
- //# sourceMappingURL=index.cjs.map
1674
- //# sourceMappingURL=index.cjs.map