bnstooltips 1.6.5 → 1.7.2

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.
@@ -174,6 +174,12 @@ export interface BnsItemDto {
174
174
  * @memberof BnsItemDto
175
175
  */
176
176
  skillModifierGroups?: Array<SkillModifierGroupDto>;
177
+ /**
178
+ *
179
+ * @type {ItemImproveDto}
180
+ * @memberof BnsItemDto
181
+ */
182
+ itemImprove?: ItemImproveDto;
177
183
  /**
178
184
  *
179
185
  * @type {Array<ItemSkillDto>}
@@ -410,6 +416,117 @@ export interface ItemIconDto {
410
416
  */
411
417
  iconIndex?: number;
412
418
  }
419
+ /**
420
+ *
421
+ * @export
422
+ * @interface ItemImproveCostOptionDto
423
+ */
424
+ export interface ItemImproveCostOptionDto {
425
+ /**
426
+ *
427
+ * @type {number}
428
+ * @memberof ItemImproveCostOptionDto
429
+ */
430
+ moneyCost?: number;
431
+ /**
432
+ *
433
+ * @type {ItemRefWithCount}
434
+ * @memberof ItemImproveCostOptionDto
435
+ */
436
+ mainItemCost?: ItemRefWithCount;
437
+ /**
438
+ *
439
+ * @type {Array<ItemRefWithCount>}
440
+ * @memberof ItemImproveCostOptionDto
441
+ */
442
+ subItemCost?: Array<ItemRefWithCount>;
443
+ /**
444
+ *
445
+ * @type {boolean}
446
+ * @memberof ItemImproveCostOptionDto
447
+ */
448
+ isRandom?: boolean;
449
+ }
450
+ /**
451
+ *
452
+ * @export
453
+ * @interface ItemImproveDto
454
+ */
455
+ export interface ItemImproveDto {
456
+ /**
457
+ *
458
+ * @type {Array<ItemImproveCostOptionDto>}
459
+ * @memberof ItemImproveDto
460
+ */
461
+ upgradeOptions?: Array<ItemImproveCostOptionDto>;
462
+ /**
463
+ *
464
+ * @type {ItemRefWithCount}
465
+ * @memberof ItemImproveDto
466
+ */
467
+ itemNext?: ItemRefWithCount;
468
+ /**
469
+ *
470
+ * @type {ItemRefWithCount}
471
+ * @memberof ItemImproveDto
472
+ */
473
+ itemPrev?: ItemRefWithCount;
474
+ /**
475
+ *
476
+ * @type {boolean}
477
+ * @memberof ItemImproveDto
478
+ */
479
+ fixedAllOptions?: boolean;
480
+ /**
481
+ *
482
+ * @type {boolean}
483
+ * @memberof ItemImproveDto
484
+ */
485
+ useMileageSave?: boolean;
486
+ /**
487
+ *
488
+ * @type {Array<ItemImproveEffectOptionDto>}
489
+ * @memberof ItemImproveDto
490
+ */
491
+ bonusEffectOptions?: Array<ItemImproveEffectOptionDto>;
492
+ }
493
+ /**
494
+ *
495
+ * @export
496
+ * @interface ItemImproveEffectOptionDto
497
+ */
498
+ export interface ItemImproveEffectOptionDto {
499
+ /**
500
+ *
501
+ * @type {string}
502
+ * @memberof ItemImproveEffectOptionDto
503
+ */
504
+ statName?: string;
505
+ /**
506
+ *
507
+ * @type {number}
508
+ * @memberof ItemImproveEffectOptionDto
509
+ */
510
+ statValue?: number;
511
+ /**
512
+ *
513
+ * @type {boolean}
514
+ * @memberof ItemImproveEffectOptionDto
515
+ */
516
+ isEffect?: boolean;
517
+ /**
518
+ *
519
+ * @type {string}
520
+ * @memberof ItemImproveEffectOptionDto
521
+ */
522
+ effectDescription?: string;
523
+ /**
524
+ *
525
+ * @type {ItemIconDto}
526
+ * @memberof ItemImproveEffectOptionDto
527
+ */
528
+ icon?: ItemIconDto;
529
+ }
413
530
  /**
414
531
  *
415
532
  * @export
@@ -878,6 +995,12 @@ export declare const BnsItemApiFetchParamCreator: (configuration?: Configuration
878
995
  * @throws {RequiredError}
879
996
  */
880
997
  bnsItemPingGet(options?: any): FetchArgs;
998
+ /**
999
+ *
1000
+ * @param {*} [options] Override http request option.
1001
+ * @throws {RequiredError}
1002
+ */
1003
+ bnsItemRegionsGet(options?: any): FetchArgs;
881
1004
  /**
882
1005
  *
883
1006
  * @param {string} region
@@ -977,6 +1100,12 @@ export declare const BnsItemApiFp: (configuration?: Configuration) => {
977
1100
  * @throws {RequiredError}
978
1101
  */
979
1102
  bnsItemPingGet(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<string>;
1103
+ /**
1104
+ *
1105
+ * @param {*} [options] Override http request option.
1106
+ * @throws {RequiredError}
1107
+ */
1108
+ bnsItemRegionsGet(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<string>>;
980
1109
  /**
981
1110
  *
982
1111
  * @param {string} region
@@ -1076,6 +1205,12 @@ export declare const BnsItemApiFactory: (configuration?: Configuration, fetch?:
1076
1205
  * @throws {RequiredError}
1077
1206
  */
1078
1207
  bnsItemPingGet(options?: any): Promise<string>;
1208
+ /**
1209
+ *
1210
+ * @param {*} [options] Override http request option.
1211
+ * @throws {RequiredError}
1212
+ */
1213
+ bnsItemRegionsGet(options?: any): Promise<string[]>;
1079
1214
  /**
1080
1215
  *
1081
1216
  * @param {string} region
@@ -1186,6 +1321,13 @@ export declare class BnsItemApi extends BaseAPI {
1186
1321
  * @memberof BnsItemApi
1187
1322
  */
1188
1323
  bnsItemPingGet(options?: any): Promise<string>;
1324
+ /**
1325
+ *
1326
+ * @param {*} [options] Override http request option.
1327
+ * @throws {RequiredError}
1328
+ * @memberof BnsItemApi
1329
+ */
1330
+ bnsItemRegionsGet(options?: any): Promise<string[]>;
1189
1331
  /**
1190
1332
  *
1191
1333
  * @param {string} region
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bnstooltips",
3
- "version": "1.6.5",
3
+ "version": "1.7.2",
4
4
  "description": "Blade & Soul style tooltips",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.es.js",
@@ -21,12 +21,12 @@
21
21
  "@babel/core": "^7.16.0",
22
22
  "@rollup/plugin-commonjs": "^21.0.1",
23
23
  "@rollup/plugin-node-resolve": "^13.0.6",
24
- "@storybook/addon-actions": "^6.3.12",
25
- "@storybook/addon-essentials": "^6.3.12",
26
- "@storybook/addon-links": "^6.3.12",
27
- "@storybook/builder-webpack5": "^6.3.12",
28
- "@storybook/manager-webpack5": "^6.3.12",
29
- "@storybook/react": "^6.3.12",
24
+ "@storybook/addon-actions": "^6.4.19",
25
+ "@storybook/addon-essentials": "^6.4.19",
26
+ "@storybook/addon-links": "^6.4.19",
27
+ "@storybook/builder-webpack5": "^6.4.19",
28
+ "@storybook/manager-webpack5": "^6.4.19",
29
+ "@storybook/react": "^6.4.19",
30
30
  "@testing-library/jest-dom": "^5.15.0",
31
31
  "@testing-library/react": "^12.1.2",
32
32
  "@types/jest": "^27.0.2",
@@ -45,7 +45,7 @@
45
45
  "rollup-plugin-typescript2": "^0.30.0",
46
46
  "sass-loader": "^12.3.0",
47
47
  "ts-jest": "^27.0.7",
48
- "typescript": "^4.4.4",
48
+ "typescript": "^4.7.3",
49
49
  "webpack": "*"
50
50
  },
51
51
  "peerDependencies": {