bnstooltips 1.4.4 → 1.4.8

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.
@@ -822,10 +822,11 @@ export declare const BnsItemApiFetchParamCreator: (configuration?: Configuration
822
822
  * @param {string} [gradesString]
823
823
  * @param {string} [minGs]
824
824
  * @param {string} [patch]
825
+ * @param {boolean} [noDupes]
825
826
  * @param {*} [options] Override http request option.
826
827
  * @throws {RequiredError}
827
828
  */
828
- bnsItemItemsByCategoryGet(region: string, category?: string, technicalJobName?: string, gradesString?: string, minGs?: string, patch?: string, options?: any): FetchArgs;
829
+ bnsItemItemsByCategoryGet(region: string, category?: string, technicalJobName?: string, gradesString?: string, minGs?: string, patch?: string, noDupes?: boolean, options?: any): FetchArgs;
829
830
  /**
830
831
  *
831
832
  * @param {string} name
@@ -865,6 +866,16 @@ export declare const BnsItemApiFetchParamCreator: (configuration?: Configuration
865
866
  * @throws {RequiredError}
866
867
  */
867
868
  bnsItemPingGet(options?: any): FetchArgs;
869
+ /**
870
+ *
871
+ * @param {string} region
872
+ * @param {string} itemType
873
+ * @param {string} technicalJobName
874
+ * @param {string} [patch]
875
+ * @param {*} [options] Override http request option.
876
+ * @throws {RequiredError}
877
+ */
878
+ bnsItemYastItemsGet(region: string, itemType: string, technicalJobName: string, patch?: string, options?: any): FetchArgs;
868
879
  };
869
880
  /**
870
881
  * BnsItemApi - functional programming interface
@@ -910,10 +921,11 @@ export declare const BnsItemApiFp: (configuration?: Configuration) => {
910
921
  * @param {string} [gradesString]
911
922
  * @param {string} [minGs]
912
923
  * @param {string} [patch]
924
+ * @param {boolean} [noDupes]
913
925
  * @param {*} [options] Override http request option.
914
926
  * @throws {RequiredError}
915
927
  */
916
- bnsItemItemsByCategoryGet(region: string, category?: string, technicalJobName?: string, gradesString?: string, minGs?: string, patch?: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<BnsItemDto>>;
928
+ bnsItemItemsByCategoryGet(region: string, category?: string, technicalJobName?: string, gradesString?: string, minGs?: string, patch?: string, noDupes?: boolean, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<BnsItemDto>>;
917
929
  /**
918
930
  *
919
931
  * @param {string} name
@@ -953,6 +965,16 @@ export declare const BnsItemApiFp: (configuration?: Configuration) => {
953
965
  * @throws {RequiredError}
954
966
  */
955
967
  bnsItemPingGet(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<string>;
968
+ /**
969
+ *
970
+ * @param {string} region
971
+ * @param {string} itemType
972
+ * @param {string} technicalJobName
973
+ * @param {string} [patch]
974
+ * @param {*} [options] Override http request option.
975
+ * @throws {RequiredError}
976
+ */
977
+ bnsItemYastItemsGet(region: string, itemType: string, technicalJobName: string, patch?: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<BnsItemDto>>;
956
978
  };
957
979
  /**
958
980
  * BnsItemApi - factory interface
@@ -998,10 +1020,11 @@ export declare const BnsItemApiFactory: (configuration?: Configuration, fetch?:
998
1020
  * @param {string} [gradesString]
999
1021
  * @param {string} [minGs]
1000
1022
  * @param {string} [patch]
1023
+ * @param {boolean} [noDupes]
1001
1024
  * @param {*} [options] Override http request option.
1002
1025
  * @throws {RequiredError}
1003
1026
  */
1004
- bnsItemItemsByCategoryGet(region: string, category?: string, technicalJobName?: string, gradesString?: string, minGs?: string, patch?: string, options?: any): Promise<BnsItemDto[]>;
1027
+ bnsItemItemsByCategoryGet(region: string, category?: string, technicalJobName?: string, gradesString?: string, minGs?: string, patch?: string, noDupes?: boolean, options?: any): Promise<BnsItemDto[]>;
1005
1028
  /**
1006
1029
  *
1007
1030
  * @param {string} name
@@ -1041,6 +1064,16 @@ export declare const BnsItemApiFactory: (configuration?: Configuration, fetch?:
1041
1064
  * @throws {RequiredError}
1042
1065
  */
1043
1066
  bnsItemPingGet(options?: any): Promise<string>;
1067
+ /**
1068
+ *
1069
+ * @param {string} region
1070
+ * @param {string} itemType
1071
+ * @param {string} technicalJobName
1072
+ * @param {string} [patch]
1073
+ * @param {*} [options] Override http request option.
1074
+ * @throws {RequiredError}
1075
+ */
1076
+ bnsItemYastItemsGet(region: string, itemType: string, technicalJobName: string, patch?: string, options?: any): Promise<BnsItemDto[]>;
1044
1077
  };
1045
1078
  /**
1046
1079
  * BnsItemApi - object-oriented interface
@@ -1091,11 +1124,12 @@ export declare class BnsItemApi extends BaseAPI {
1091
1124
  * @param {string} [gradesString]
1092
1125
  * @param {string} [minGs]
1093
1126
  * @param {string} [patch]
1127
+ * @param {boolean} [noDupes]
1094
1128
  * @param {*} [options] Override http request option.
1095
1129
  * @throws {RequiredError}
1096
1130
  * @memberof BnsItemApi
1097
1131
  */
1098
- bnsItemItemsByCategoryGet(region: string, category?: string, technicalJobName?: string, gradesString?: string, minGs?: string, patch?: string, options?: any): Promise<BnsItemDto[]>;
1132
+ bnsItemItemsByCategoryGet(region: string, category?: string, technicalJobName?: string, gradesString?: string, minGs?: string, patch?: string, noDupes?: boolean, options?: any): Promise<BnsItemDto[]>;
1099
1133
  /**
1100
1134
  *
1101
1135
  * @param {string} name
@@ -1140,4 +1174,15 @@ export declare class BnsItemApi extends BaseAPI {
1140
1174
  * @memberof BnsItemApi
1141
1175
  */
1142
1176
  bnsItemPingGet(options?: any): Promise<string>;
1177
+ /**
1178
+ *
1179
+ * @param {string} region
1180
+ * @param {string} itemType
1181
+ * @param {string} technicalJobName
1182
+ * @param {string} [patch]
1183
+ * @param {*} [options] Override http request option.
1184
+ * @throws {RequiredError}
1185
+ * @memberof BnsItemApi
1186
+ */
1187
+ bnsItemYastItemsGet(region: string, itemType: string, technicalJobName: string, patch?: string, options?: any): Promise<BnsItemDto[]>;
1143
1188
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bnstooltips",
3
- "version": "1.4.4",
3
+ "version": "1.4.8",
4
4
  "description": "Blade & Soul style tooltips",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.es.js",