poe-api-manager 1.2.2 → 1.2.3
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/Changelog.md
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
+
## 1.2.3
|
|
3
|
+
- 🚀 [Added] Coffins added to itemview.
|
|
4
|
+
|
|
2
5
|
## 1.2.2
|
|
3
6
|
- 🛠️ [Fixed] Control mechanisms in API calls have been improved for better error handling.
|
|
4
7
|
- 🔄 [Changed] Updated dependencies to their latest versions for improved security and performance.
|
|
@@ -145,6 +145,11 @@ class ItemWievModule {
|
|
|
145
145
|
* Represents a submodule for blight ravaged map item information.
|
|
146
146
|
*/
|
|
147
147
|
this.blightRavagedMap = new itemSubmodules.BlightRavagedMapModule(league);
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* Represents a submodule for coffin item information.
|
|
151
|
+
*/
|
|
152
|
+
this.coffin = new itemSubmodules.CoffinModule(league);
|
|
148
153
|
}
|
|
149
154
|
}
|
|
150
155
|
|
|
@@ -27,4 +27,5 @@ module.exports = {
|
|
|
27
27
|
ClusterJewelModule: require("./subModules/ClusterJewelModule"),
|
|
28
28
|
BlightedMapModule: require("./subModules/BlightedMapModule"),
|
|
29
29
|
BlightRavagedMapModule: require("./subModules/BlightRavagedMapModule"),
|
|
30
|
+
CoffinModule: require("./subModules/CoffinModule"),
|
|
30
31
|
};
|