warframe-worldstate-parser 2.25.0 → 2.25.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/lib/Fissure.js CHANGED
@@ -2,10 +2,6 @@
2
2
 
3
3
  const WorldstateObject = require('./WorldstateObject');
4
4
 
5
- /**
6
- * @typedef {Object} ContentFissure
7
- * @property
8
- */
9
5
  /**
10
6
  * Represents a fissure mission
11
7
  * @extends {WorldstateObject}
package/lib/Mission.js CHANGED
@@ -68,7 +68,7 @@ module.exports = class Mission {
68
68
  * The factions that the players must fight in the mission
69
69
  * @type {string}
70
70
  */
71
- this.faction = translator.faction(data.faction, 'en');
71
+ this.factionKey = translator.faction(data.faction, 'en');
72
72
 
73
73
  /**
74
74
  * The mission's reward
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "warframe-worldstate-parser",
3
- "version": "2.25.0",
3
+ "version": "2.25.1",
4
4
  "description": "An Open parser for Warframe's Worldstate in Javascript",
5
5
  "types": "./types/main.d.ts",
6
6
  "main": "main.js",
@@ -50,6 +50,11 @@ declare class Mission {
50
50
  * @type {string}
51
51
  */
52
52
  faction: string;
53
+ /**
54
+ * The factions that the players must fight in the mission
55
+ * @type {string}
56
+ */
57
+ factionKey: string;
53
58
  /**
54
59
  * The mission's reward
55
60
  * @type {?Reward}