bnstooltips 1.7.2 → 1.8.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.
Files changed (28) hide show
  1. package/build/ItemImproveEffectsTooltip/ItemImproveEffectsTooltip.d.ts +5 -0
  2. package/build/ItemImproveEffectsTooltip/ItemImproveEffectsTooltip.types.d.ts +4 -0
  3. package/build/ItemImproveEffectsTooltipWrapper/ItemImproveEffectsTooltipWrapper.d.ts +6 -0
  4. package/build/ItemImproveEffectsTooltipWrapper/ItemImproveEffectsTooltipWrapper.types.d.ts +5 -0
  5. package/build/ItemImproveSelectStageTooltip/ItemImproveSelectStageTooltip.d.ts +5 -0
  6. package/build/ItemImproveSelectStageTooltip/ItemImproveSelectStageTooltip.types.d.ts +5 -0
  7. package/build/ItemImproveSelectStageTooltipWrapper/ItemImproveSelectStageTooltipWrapper.d.ts +6 -0
  8. package/build/ItemImproveSelectStageTooltipWrapper/ItemImproveSelectStageTooltipWrapper.types.d.ts +6 -0
  9. package/build/ItemImproveTooltip/ItemImproveTooltip.d.ts +1 -1
  10. package/build/ItemImproveTooltip/ItemImproveTooltip.types.d.ts +2 -2
  11. package/build/ItemImproveTooltip/SubComponents/ItemImproveUpgradeCost.d.ts +12 -0
  12. package/build/ItemImproveTooltip/SubComponents/ItemWithText.d.ts +15 -0
  13. package/build/ItemImproveTooltip/SubComponents/MainCostSelector.d.ts +12 -0
  14. package/build/ItemImproveTooltip/SubComponents/PrevCurNext.d.ts +20 -0
  15. package/build/ItemImproveTooltip/SubComponents/SubCosts.d.ts +11 -0
  16. package/build/ItemImproveTooltipWrapper/ItemImproveTooltipWrapper.types.d.ts +2 -2
  17. package/build/ItemTooltip/SubComponents/ItemIconNameDiv.d.ts +4 -2
  18. package/build/NpcTooltip/SubComponents/Money.d.ts +2 -1
  19. package/build/TooltipBase/TooltipBase.d.ts +1 -1
  20. package/build/TooltipBase/TooltipBase.types.d.ts +1 -0
  21. package/build/Utilities/ItemDownloadClient.d.ts +2 -0
  22. package/build/index.d.ts +8 -0
  23. package/build/index.es.js +682 -189
  24. package/build/index.es.js.map +1 -1
  25. package/build/index.js +685 -188
  26. package/build/index.js.map +1 -1
  27. package/build/itemapiclient/api.d.ts +41 -0
  28. package/package.json +1 -1
@@ -922,6 +922,16 @@ export declare const BnsItemApiFetchParamCreator: (configuration?: Configuration
922
922
  * @throws {RequiredError}
923
923
  */
924
924
  bnsItemAddedOrModifiedItemsGet(added: boolean, modified: boolean, region: string, patch?: string, options?: any): FetchArgs;
925
+ /**
926
+ *
927
+ * @param {number} [itemId]
928
+ * @param {number} [itemLevel]
929
+ * @param {string} [region]
930
+ * @param {string} [patch]
931
+ * @param {*} [options] Override http request option.
932
+ * @throws {RequiredError}
933
+ */
934
+ bnsItemAllUpgradesForItemGet(itemId?: number, itemLevel?: number, region?: string, patch?: string, options?: any): FetchArgs;
925
935
  /**
926
936
  *
927
937
  * @param {string} idLevel
@@ -1027,6 +1037,16 @@ export declare const BnsItemApiFp: (configuration?: Configuration) => {
1027
1037
  * @throws {RequiredError}
1028
1038
  */
1029
1039
  bnsItemAddedOrModifiedItemsGet(added: boolean, modified: boolean, region: string, patch?: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<BnsItemDto>>;
1040
+ /**
1041
+ *
1042
+ * @param {number} [itemId]
1043
+ * @param {number} [itemLevel]
1044
+ * @param {string} [region]
1045
+ * @param {string} [patch]
1046
+ * @param {*} [options] Override http request option.
1047
+ * @throws {RequiredError}
1048
+ */
1049
+ bnsItemAllUpgradesForItemGet(itemId?: number, itemLevel?: number, region?: string, patch?: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<BnsItemDto>>;
1030
1050
  /**
1031
1051
  *
1032
1052
  * @param {string} idLevel
@@ -1132,6 +1152,16 @@ export declare const BnsItemApiFactory: (configuration?: Configuration, fetch?:
1132
1152
  * @throws {RequiredError}
1133
1153
  */
1134
1154
  bnsItemAddedOrModifiedItemsGet(added: boolean, modified: boolean, region: string, patch?: string, options?: any): Promise<BnsItemDto[]>;
1155
+ /**
1156
+ *
1157
+ * @param {number} [itemId]
1158
+ * @param {number} [itemLevel]
1159
+ * @param {string} [region]
1160
+ * @param {string} [patch]
1161
+ * @param {*} [options] Override http request option.
1162
+ * @throws {RequiredError}
1163
+ */
1164
+ bnsItemAllUpgradesForItemGet(itemId?: number, itemLevel?: number, region?: string, patch?: string, options?: any): Promise<BnsItemDto[]>;
1135
1165
  /**
1136
1166
  *
1137
1167
  * @param {string} idLevel
@@ -1240,6 +1270,17 @@ export declare class BnsItemApi extends BaseAPI {
1240
1270
  * @memberof BnsItemApi
1241
1271
  */
1242
1272
  bnsItemAddedOrModifiedItemsGet(added: boolean, modified: boolean, region: string, patch?: string, options?: any): Promise<BnsItemDto[]>;
1273
+ /**
1274
+ *
1275
+ * @param {number} [itemId]
1276
+ * @param {number} [itemLevel]
1277
+ * @param {string} [region]
1278
+ * @param {string} [patch]
1279
+ * @param {*} [options] Override http request option.
1280
+ * @throws {RequiredError}
1281
+ * @memberof BnsItemApi
1282
+ */
1283
+ bnsItemAllUpgradesForItemGet(itemId?: number, itemLevel?: number, region?: string, patch?: string, options?: any): Promise<BnsItemDto[]>;
1243
1284
  /**
1244
1285
  *
1245
1286
  * @param {string} idLevel
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bnstooltips",
3
- "version": "1.7.2",
3
+ "version": "1.8.0",
4
4
  "description": "Blade & Soul style tooltips",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.es.js",