From 9b459f822d7c59edb03dda6e04d0d845d20a2fe6 Mon Sep 17 00:00:00 2001 From: Ornstein Date: Mon, 5 Jun 2023 09:44:09 -0400 Subject: [PATCH] feat: Show the unique name for the item on sale (#446) --- lib/DailyDeal.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/DailyDeal.js b/lib/DailyDeal.js index 9453e05ae..208c52e8b 100644 --- a/lib/DailyDeal.js +++ b/lib/DailyDeal.js @@ -35,6 +35,12 @@ class DailyDeal { */ this.item = translator.languageString(data.StoreItem, locale); + /** + * The uniqueName for the item on sale. + * @type {string} + */ + this.uniqueName = data.StoreItem; + /** * The date and time at which the deal will expire * @type {Date}