bnstooltips 1.6.1 → 1.6.4
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/build/NpcTooltip/NpcTooltip.d.ts +5 -0
- package/build/NpcTooltip/NpcTooltip.types.d.ts +11 -0
- package/build/NpcTooltip/SubComponents/ItemBuyLimit.d.ts +6 -0
- package/build/NpcTooltip/SubComponents/Money.d.ts +5 -0
- package/build/NpcTooltip/SubComponents/NpcStoreEntry.d.ts +8 -0
- package/build/NpcTooltip/SubComponents/NpcStores.d.ts +9 -0
- package/build/NpcTooltip/SubComponents/StoreItemBuyPriceEntry.d.ts +8 -0
- package/build/NpcTooltip/SubComponents/StoreTogge.d.ts +8 -0
- package/build/NpcTooltip/SubComponents/StoreToggleBar.d.ts +8 -0
- package/build/Utilities/Helpers.d.ts +6 -0
- package/build/Utilities/INpc.d.ts +39 -0
- package/build/Utilities/ItemDownloadClient.d.ts +1 -1
- package/build/Utilities/Models.d.ts +2 -1
- package/build/index.d.ts +2 -0
- package/build/index.es.js +284 -17
- package/build/index.es.js.map +1 -1
- package/build/index.js +284 -16
- package/build/index.js.map +1 -1
- package/build/itemapiclient/api.d.ts +12 -0
- package/package.json +1 -1
|
@@ -258,6 +258,18 @@ export interface BnsItemDto {
|
|
|
258
258
|
* @memberof BnsItemDto
|
|
259
259
|
*/
|
|
260
260
|
itemTransforms?: Array<ItemTransformDto>;
|
|
261
|
+
/**
|
|
262
|
+
*
|
|
263
|
+
* @type {number}
|
|
264
|
+
* @memberof BnsItemDto
|
|
265
|
+
*/
|
|
266
|
+
setPoints?: number;
|
|
267
|
+
/**
|
|
268
|
+
*
|
|
269
|
+
* @type {number}
|
|
270
|
+
* @memberof BnsItemDto
|
|
271
|
+
*/
|
|
272
|
+
refinementPoints?: number;
|
|
261
273
|
}
|
|
262
274
|
/**
|
|
263
275
|
*
|