bnstooltips 1.11.1 → 1.12.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.
@@ -2,7 +2,7 @@
2
2
  * BnsItemStorage.WebApi
3
3
  * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
4
  *
5
- * OpenAPI spec version: v1
5
+ * OpenAPI spec version: v2
6
6
  *
7
7
  *
8
8
  * NOTE: This file is auto generated by the swagger code generator program.
@@ -276,6 +276,12 @@ export interface BnsItemDto {
276
276
  * @memberof BnsItemDto
277
277
  */
278
278
  refinementPoints?: number;
279
+ /**
280
+ *
281
+ * @type {Array<SlateStoneDto>}
282
+ * @memberof BnsItemDto
283
+ */
284
+ slateStones?: Array<SlateStoneDto>;
279
285
  }
280
286
  /**
281
287
  *
@@ -800,6 +806,27 @@ export interface ItemUpgradeInfoDto {
800
806
  */
801
807
  offerItemLevel?: number;
802
808
  }
809
+ /**
810
+ *
811
+ * @export
812
+ * @interface ItemWithStagesDto
813
+ */
814
+ export interface ItemWithStagesDto {
815
+ /**
816
+ *
817
+ * @type {BnsItemDto}
818
+ * @memberof ItemWithStagesDto
819
+ */
820
+ item?: BnsItemDto;
821
+ /**
822
+ *
823
+ * @type {{ [key: string]: string; }}
824
+ * @memberof ItemWithStagesDto
825
+ */
826
+ jsonDiffPatchesForIds?: {
827
+ [key: string]: string;
828
+ };
829
+ }
803
830
  /**
804
831
  *
805
832
  * @export
@@ -907,6 +934,43 @@ export interface SkillModifierGroupDto {
907
934
  */
908
935
  modifiers?: Array<SkillModifierDto>;
909
936
  }
937
+ /**
938
+ *
939
+ * @export
940
+ * @interface SlateStoneDto
941
+ */
942
+ export interface SlateStoneDto {
943
+ /**
944
+ *
945
+ * @type {string}
946
+ * @memberof SlateStoneDto
947
+ */
948
+ name?: string;
949
+ /**
950
+ *
951
+ * @type {number}
952
+ * @memberof SlateStoneDto
953
+ */
954
+ grade?: number;
955
+ /**
956
+ *
957
+ * @type {ItemIconDto}
958
+ * @memberof SlateStoneDto
959
+ */
960
+ icon?: ItemIconDto;
961
+ /**
962
+ *
963
+ * @type {ItemIconDto}
964
+ * @memberof SlateStoneDto
965
+ */
966
+ iconCase?: ItemIconDto;
967
+ /**
968
+ *
969
+ * @type {Array<ItemStatDto>}
970
+ * @memberof SlateStoneDto
971
+ */
972
+ stats?: Array<ItemStatDto>;
973
+ }
910
974
  /**
911
975
  * BnsItemApi - fetch parameter creator
912
976
  * @export
@@ -922,6 +986,16 @@ export declare const BnsItemApiFetchParamCreator: (configuration?: Configuration
922
986
  * @throws {RequiredError}
923
987
  */
924
988
  bnsItemAddedOrModifiedItemsGet(added: boolean, modified: boolean, region: string, patch?: string, options?: any): FetchArgs;
989
+ /**
990
+ *
991
+ * @param {number} [itemId]
992
+ * @param {number} [itemLevel]
993
+ * @param {string} [region]
994
+ * @param {string} [patch]
995
+ * @param {*} [options] Override http request option.
996
+ * @throws {RequiredError}
997
+ */
998
+ bnsItemAllStagesForItemGet(itemId?: number, itemLevel?: number, region?: string, patch?: string, options?: any): FetchArgs;
925
999
  /**
926
1000
  *
927
1001
  * @param {number} [itemId]
@@ -1037,6 +1111,16 @@ export declare const BnsItemApiFp: (configuration?: Configuration) => {
1037
1111
  * @throws {RequiredError}
1038
1112
  */
1039
1113
  bnsItemAddedOrModifiedItemsGet(added: boolean, modified: boolean, region: string, patch?: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<BnsItemDto>>;
1114
+ /**
1115
+ *
1116
+ * @param {number} [itemId]
1117
+ * @param {number} [itemLevel]
1118
+ * @param {string} [region]
1119
+ * @param {string} [patch]
1120
+ * @param {*} [options] Override http request option.
1121
+ * @throws {RequiredError}
1122
+ */
1123
+ bnsItemAllStagesForItemGet(itemId?: number, itemLevel?: number, region?: string, patch?: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<ItemWithStagesDto>;
1040
1124
  /**
1041
1125
  *
1042
1126
  * @param {number} [itemId]
@@ -1152,6 +1236,16 @@ export declare const BnsItemApiFactory: (configuration?: Configuration, fetch?:
1152
1236
  * @throws {RequiredError}
1153
1237
  */
1154
1238
  bnsItemAddedOrModifiedItemsGet(added: boolean, modified: boolean, region: string, patch?: string, options?: any): Promise<BnsItemDto[]>;
1239
+ /**
1240
+ *
1241
+ * @param {number} [itemId]
1242
+ * @param {number} [itemLevel]
1243
+ * @param {string} [region]
1244
+ * @param {string} [patch]
1245
+ * @param {*} [options] Override http request option.
1246
+ * @throws {RequiredError}
1247
+ */
1248
+ bnsItemAllStagesForItemGet(itemId?: number, itemLevel?: number, region?: string, patch?: string, options?: any): Promise<ItemWithStagesDto>;
1155
1249
  /**
1156
1250
  *
1157
1251
  * @param {number} [itemId]
@@ -1270,6 +1364,17 @@ export declare class BnsItemApi extends BaseAPI {
1270
1364
  * @memberof BnsItemApi
1271
1365
  */
1272
1366
  bnsItemAddedOrModifiedItemsGet(added: boolean, modified: boolean, region: string, patch?: string, options?: any): Promise<BnsItemDto[]>;
1367
+ /**
1368
+ *
1369
+ * @param {number} [itemId]
1370
+ * @param {number} [itemLevel]
1371
+ * @param {string} [region]
1372
+ * @param {string} [patch]
1373
+ * @param {*} [options] Override http request option.
1374
+ * @throws {RequiredError}
1375
+ * @memberof BnsItemApi
1376
+ */
1377
+ bnsItemAllStagesForItemGet(itemId?: number, itemLevel?: number, region?: string, patch?: string, options?: any): Promise<ItemWithStagesDto>;
1273
1378
  /**
1274
1379
  *
1275
1380
  * @param {number} [itemId]
@@ -2,7 +2,7 @@
2
2
  * BnsItemStorage.WebApi
3
3
  * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
4
  *
5
- * OpenAPI spec version: v1
5
+ * OpenAPI spec version: v2
6
6
  *
7
7
  *
8
8
  * NOTE: This file is auto generated by the swagger code generator program.
@@ -2,7 +2,7 @@
2
2
  * BnsItemStorage.WebApi
3
3
  * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
4
  *
5
- * OpenAPI spec version: v1
5
+ * OpenAPI spec version: v2
6
6
  *
7
7
  *
8
8
  * NOTE: This file is auto generated by the swagger code generator program.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bnstooltips",
3
- "version": "1.11.1",
3
+ "version": "1.12.0",
4
4
  "description": "Blade & Soul style tooltips",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.es.js",