@blizzard-api/wow 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.cjs +20 -20
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +65 -65
- package/dist/index.d.ts +65 -65
- package/dist/index.js +20 -20
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -56,7 +56,7 @@ This package is specifically for World of Warcraft (retail or modern), and as su
|
|
|
56
56
|
|
|
57
57
|
## Notes on Types
|
|
58
58
|
|
|
59
|
-
The types are manually created from using the Blizzard API documentation, and are as accurate as possible with smoke testing each endpoint. However, no-one is perfect so there is likely be some discrepancies. If you encounter any issues with the types from this package, please open an issue or a pull request.
|
|
59
|
+
The types are manually created from using the Blizzard API documentation, and are as accurate as possible with smoke testing each endpoint. However, no-one is perfect so there is likely to be some discrepancies. If you encounter any issues with the types from this package, please open an issue or a pull request.
|
|
60
60
|
|
|
61
61
|
## Client
|
|
62
62
|
|
package/dist/index.cjs
CHANGED
|
@@ -469,26 +469,6 @@ function creatureSearch(options) {
|
|
|
469
469
|
};
|
|
470
470
|
}
|
|
471
471
|
|
|
472
|
-
// src/guild-crest/guild-crest.ts
|
|
473
|
-
function guildCrestComponentsIndex() {
|
|
474
|
-
return {
|
|
475
|
-
namespace: "static",
|
|
476
|
-
path: `${base}/guild-crest/index`
|
|
477
|
-
};
|
|
478
|
-
}
|
|
479
|
-
function guildCrestBorder(borderId) {
|
|
480
|
-
return {
|
|
481
|
-
namespace: "static",
|
|
482
|
-
path: `${mediaBase}/guild-crest/border/${borderId}`
|
|
483
|
-
};
|
|
484
|
-
}
|
|
485
|
-
function guildCrestEmblem(emblemId) {
|
|
486
|
-
return {
|
|
487
|
-
namespace: "static",
|
|
488
|
-
path: `${mediaBase}/guild-crest/emblem/${emblemId}`
|
|
489
|
-
};
|
|
490
|
-
}
|
|
491
|
-
|
|
492
472
|
// src/guild/guild.ts
|
|
493
473
|
var basePath3 = "/data/wow/guild";
|
|
494
474
|
function guild(realmSlug, nameSlug) {
|
|
@@ -516,6 +496,26 @@ function guildRoster(realmSlug, nameSlug) {
|
|
|
516
496
|
};
|
|
517
497
|
}
|
|
518
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
519
|
// src/heirloom/heirloom.ts
|
|
520
520
|
function heirloom(heirloomId) {
|
|
521
521
|
return {
|