warframe-worldstate-parser 2.26.2 → 2.27.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/lib/DailyDeal.js CHANGED
@@ -35,6 +35,12 @@ class DailyDeal {
35
35
  */
36
36
  this.item = translator.languageString(data.StoreItem, locale);
37
37
 
38
+ /**
39
+ * The uniqueName for the item on sale.
40
+ * @type {string}
41
+ */
42
+ this.uniqueName = data.StoreItem;
43
+
38
44
  /**
39
45
  * The date and time at which the deal will expire
40
46
  * @type {Date}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "warframe-worldstate-parser",
3
- "version": "2.26.2",
3
+ "version": "2.27.0",
4
4
  "description": "An Open parser for Warframe's Worldstate in Javascript",
5
5
  "types": "./types/main.d.ts",
6
6
  "main": "main.js",
@@ -34,6 +34,11 @@ declare class DailyDeal {
34
34
  * @type {string}
35
35
  */
36
36
  item: string;
37
+ /**
38
+ * The uniqueName for the item on sale.
39
+ * @type {string}
40
+ */
41
+ uniqueName: string;
37
42
  /**
38
43
  * The date and time at which the deal will expire
39
44
  * @type {Date}