bnstooltips 1.23.3 → 1.24.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.
@@ -1,1488 +0,0 @@
1
- /**
2
- * BnsItemStorage.WebApi
3
- * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
- *
5
- * OpenAPI spec version: v2
6
- *
7
- *
8
- * NOTE: This file is auto generated by the swagger code generator program.
9
- * https://github.com/swagger-api/swagger-codegen.git
10
- * Do not edit the file manually.
11
- */
12
- /// <reference path="../../src/itemapiclient/custom.d.ts" />
13
- import { Configuration } from "./configuration";
14
- /**
15
- *
16
- * @export
17
- */
18
- export declare const COLLECTION_FORMATS: {
19
- csv: string;
20
- ssv: string;
21
- tsv: string;
22
- pipes: string;
23
- };
24
- /**
25
- *
26
- * @export
27
- * @interface FetchAPI
28
- */
29
- export interface FetchAPI {
30
- (url: string, init?: any): Promise<Response>;
31
- }
32
- /**
33
- *
34
- * @export
35
- * @interface FetchArgs
36
- */
37
- export interface FetchArgs {
38
- url: string;
39
- options: any;
40
- }
41
- /**
42
- *
43
- * @export
44
- * @class BaseAPI
45
- */
46
- export declare class BaseAPI {
47
- protected basePath: string;
48
- protected fetch: FetchAPI;
49
- protected configuration: Configuration;
50
- constructor(configuration?: Configuration, basePath?: string, fetch?: FetchAPI);
51
- }
52
- /**
53
- *
54
- * @export
55
- * @class RequiredError
56
- * @extends {Error}
57
- */
58
- export declare class RequiredError extends Error {
59
- field: string;
60
- name: "RequiredError";
61
- constructor(field: string, msg?: string);
62
- }
63
- /**
64
- *
65
- * @export
66
- * @interface BnsItemDto
67
- */
68
- export interface BnsItemDto {
69
- /**
70
- *
71
- * @type {number}
72
- * @memberof BnsItemDto
73
- */
74
- id?: number;
75
- /**
76
- *
77
- * @type {number}
78
- * @memberof BnsItemDto
79
- */
80
- level?: number;
81
- /**
82
- *
83
- * @type {number}
84
- * @memberof BnsItemDto
85
- */
86
- gearScore?: number;
87
- /**
88
- *
89
- * @type {number}
90
- * @memberof BnsItemDto
91
- */
92
- itemScore?: number;
93
- /**
94
- *
95
- * @type {number}
96
- * @memberof BnsItemDto
97
- */
98
- fusionScore?: number;
99
- /**
100
- *
101
- * @type {string}
102
- * @memberof BnsItemDto
103
- */
104
- name?: string;
105
- /**
106
- *
107
- * @type {Array<ItemCategoryDto>}
108
- * @memberof BnsItemDto
109
- */
110
- categories?: Array<ItemCategoryDto>;
111
- /**
112
- *
113
- * @type {ItemIconDto}
114
- * @memberof BnsItemDto
115
- */
116
- icon?: ItemIconDto;
117
- /**
118
- *
119
- * @type {number}
120
- * @memberof BnsItemDto
121
- */
122
- grade?: number;
123
- /**
124
- *
125
- * @type {Array<RequiredClassDto>}
126
- * @memberof BnsItemDto
127
- */
128
- classRequired?: Array<RequiredClassDto>;
129
- /**
130
- *
131
- * @type {Array<ItemStatDto>}
132
- * @memberof BnsItemDto
133
- */
134
- stats?: Array<ItemStatDto>;
135
- /**
136
- *
137
- * @type {number}
138
- * @memberof BnsItemDto
139
- */
140
- randomSubStatCount?: number;
141
- /**
142
- *
143
- * @type {Array<ItemRandomStatDto>}
144
- * @memberof BnsItemDto
145
- */
146
- randomStats?: Array<ItemRandomStatDto>;
147
- /**
148
- *
149
- * @type {string}
150
- * @memberof BnsItemDto
151
- */
152
- mainInfo?: string;
153
- /**
154
- *
155
- * @type {string}
156
- * @memberof BnsItemDto
157
- */
158
- subInfo?: string;
159
- /**
160
- *
161
- * @type {number}
162
- * @memberof BnsItemDto
163
- */
164
- cooldownInMs?: number;
165
- /**
166
- *
167
- * @type {number}
168
- * @memberof BnsItemDto
169
- */
170
- bgCooldownInMs?: number;
171
- /**
172
- *
173
- * @type {Array<SkillModifierGroupDto>}
174
- * @memberof BnsItemDto
175
- */
176
- skillModifierGroups?: Array<SkillModifierGroupDto>;
177
- /**
178
- *
179
- * @type {ItemImproveDto}
180
- * @memberof BnsItemDto
181
- */
182
- itemImprove?: ItemImproveDto;
183
- /**
184
- *
185
- * @type {Array<ItemSkillDto>}
186
- * @memberof BnsItemDto
187
- */
188
- skills?: Array<ItemSkillDto>;
189
- /**
190
- *
191
- * @type {string}
192
- * @memberof BnsItemDto
193
- */
194
- topText?: string;
195
- /**
196
- *
197
- * @type {ItemSetBonusDto}
198
- * @memberof BnsItemDto
199
- */
200
- setBonus?: ItemSetBonusDto;
201
- /**
202
- *
203
- * @type {Array<ItemDescriptionDto>}
204
- * @memberof BnsItemDto
205
- */
206
- descriptions?: Array<ItemDescriptionDto>;
207
- /**
208
- *
209
- * @type {Array<DecomposeRewardDto>}
210
- * @memberof BnsItemDto
211
- */
212
- decomposeRewards?: Array<DecomposeRewardDto>;
213
- /**
214
- *
215
- * @type {string}
216
- * @memberof BnsItemDto
217
- */
218
- flavorText?: string;
219
- /**
220
- *
221
- * @type {string}
222
- * @memberof BnsItemDto
223
- */
224
- usableGroup?: string;
225
- /**
226
- *
227
- * @type {number}
228
- * @memberof BnsItemDto
229
- */
230
- levelRequired?: number;
231
- /**
232
- *
233
- * @type {boolean}
234
- * @memberof BnsItemDto
235
- */
236
- boundToAccount?: boolean;
237
- /**
238
- *
239
- * @type {boolean}
240
- * @memberof BnsItemDto
241
- */
242
- unableToTrade?: boolean;
243
- /**
244
- *
245
- * @type {ItemSealingDto}
246
- * @memberof BnsItemDto
247
- */
248
- sealing?: ItemSealingDto;
249
- /**
250
- *
251
- * @type {ItemAccountTransferDto}
252
- * @memberof BnsItemDto
253
- */
254
- accountTransfer?: ItemAccountTransferDto;
255
- /**
256
- *
257
- * @type {ItemUpgradeInfoDto}
258
- * @memberof BnsItemDto
259
- */
260
- upgradeInfo?: ItemUpgradeInfoDto;
261
- /**
262
- *
263
- * @type {Array<ItemTransformDto>}
264
- * @memberof BnsItemDto
265
- */
266
- itemTransforms?: Array<ItemTransformDto>;
267
- /**
268
- *
269
- * @type {number}
270
- * @memberof BnsItemDto
271
- */
272
- setPoints?: number;
273
- /**
274
- *
275
- * @type {number}
276
- * @memberof BnsItemDto
277
- */
278
- refinementPoints?: number;
279
- /**
280
- *
281
- * @type {Array<SlateStoneDto>}
282
- * @memberof BnsItemDto
283
- */
284
- slateStones?: Array<SlateStoneDto>;
285
- }
286
- /**
287
- *
288
- * @export
289
- * @interface DecomposeRewardDto
290
- */
291
- export interface DecomposeRewardDto {
292
- /**
293
- *
294
- * @type {Array<ItemRefWithCount>}
295
- * @memberof DecomposeRewardDto
296
- */
297
- fixedItems?: Array<ItemRefWithCount>;
298
- /**
299
- *
300
- * @type {Array<ItemRefWithCount>}
301
- * @memberof DecomposeRewardDto
302
- */
303
- randomItems?: Array<ItemRefWithCount>;
304
- /**
305
- *
306
- * @type {Array<ItemRefWithCount>}
307
- * @memberof DecomposeRewardDto
308
- */
309
- selectItems?: Array<ItemRefWithCount>;
310
- }
311
- /**
312
- *
313
- * @export
314
- * @interface EffectDto
315
- */
316
- export interface EffectDto {
317
- /**
318
- *
319
- * @type {string}
320
- * @memberof EffectDto
321
- */
322
- description?: string;
323
- }
324
- /**
325
- *
326
- * @export
327
- * @interface Int32StringTuple
328
- */
329
- export interface Int32StringTuple {
330
- /**
331
- *
332
- * @type {number}
333
- * @memberof Int32StringTuple
334
- */
335
- item1?: number;
336
- /**
337
- *
338
- * @type {string}
339
- * @memberof Int32StringTuple
340
- */
341
- item2?: string;
342
- }
343
- /**
344
- *
345
- * @export
346
- * @interface ItemAccountTransferDto
347
- */
348
- export interface ItemAccountTransferDto {
349
- /**
350
- *
351
- * @type {Array<ItemRefWithCount>}
352
- * @memberof ItemAccountTransferDto
353
- */
354
- requiredItems?: Array<ItemRefWithCount>;
355
- /**
356
- *
357
- * @type {number}
358
- * @memberof ItemAccountTransferDto
359
- */
360
- moneyCost?: number;
361
- }
362
- /**
363
- *
364
- * @export
365
- * @interface ItemCategoryDto
366
- */
367
- export interface ItemCategoryDto {
368
- /**
369
- *
370
- * @type {string}
371
- * @memberof ItemCategoryDto
372
- */
373
- technicalName?: string;
374
- /**
375
- *
376
- * @type {string}
377
- * @memberof ItemCategoryDto
378
- */
379
- localizedName?: string;
380
- /**
381
- *
382
- * @type {number}
383
- * @memberof ItemCategoryDto
384
- */
385
- index?: number;
386
- }
387
- /**
388
- *
389
- * @export
390
- * @interface ItemDescriptionDto
391
- */
392
- export interface ItemDescriptionDto {
393
- /**
394
- *
395
- * @type {string}
396
- * @memberof ItemDescriptionDto
397
- */
398
- title?: string;
399
- /**
400
- *
401
- * @type {string}
402
- * @memberof ItemDescriptionDto
403
- */
404
- text?: string;
405
- }
406
- /**
407
- *
408
- * @export
409
- * @interface ItemIconDto
410
- */
411
- export interface ItemIconDto {
412
- /**
413
- *
414
- * @type {string}
415
- * @memberof ItemIconDto
416
- */
417
- iconPath?: string;
418
- /**
419
- *
420
- * @type {number}
421
- * @memberof ItemIconDto
422
- */
423
- iconIndex?: number;
424
- }
425
- /**
426
- *
427
- * @export
428
- * @interface ItemImproveCostOptionDto
429
- */
430
- export interface ItemImproveCostOptionDto {
431
- /**
432
- *
433
- * @type {number}
434
- * @memberof ItemImproveCostOptionDto
435
- */
436
- moneyCost?: number;
437
- /**
438
- *
439
- * @type {ItemRefWithCount}
440
- * @memberof ItemImproveCostOptionDto
441
- */
442
- mainItemCost?: ItemRefWithCount;
443
- /**
444
- *
445
- * @type {Array<ItemRefWithCount>}
446
- * @memberof ItemImproveCostOptionDto
447
- */
448
- subItemCost?: Array<ItemRefWithCount>;
449
- /**
450
- *
451
- * @type {boolean}
452
- * @memberof ItemImproveCostOptionDto
453
- */
454
- isRandom?: boolean;
455
- }
456
- /**
457
- *
458
- * @export
459
- * @interface ItemImproveDto
460
- */
461
- export interface ItemImproveDto {
462
- /**
463
- *
464
- * @type {Array<ItemImproveCostOptionDto>}
465
- * @memberof ItemImproveDto
466
- */
467
- upgradeOptions?: Array<ItemImproveCostOptionDto>;
468
- /**
469
- *
470
- * @type {ItemRefWithCount}
471
- * @memberof ItemImproveDto
472
- */
473
- itemNext?: ItemRefWithCount;
474
- /**
475
- *
476
- * @type {ItemRefWithCount}
477
- * @memberof ItemImproveDto
478
- */
479
- itemPrev?: ItemRefWithCount;
480
- /**
481
- *
482
- * @type {boolean}
483
- * @memberof ItemImproveDto
484
- */
485
- fixedAllOptions?: boolean;
486
- /**
487
- *
488
- * @type {boolean}
489
- * @memberof ItemImproveDto
490
- */
491
- useMileageSave?: boolean;
492
- /**
493
- *
494
- * @type {Array<ItemImproveEffectOptionDto>}
495
- * @memberof ItemImproveDto
496
- */
497
- bonusEffectOptions?: Array<ItemImproveEffectOptionDto>;
498
- }
499
- /**
500
- *
501
- * @export
502
- * @interface ItemImproveEffectOptionDto
503
- */
504
- export interface ItemImproveEffectOptionDto {
505
- /**
506
- *
507
- * @type {string}
508
- * @memberof ItemImproveEffectOptionDto
509
- */
510
- statName?: string;
511
- /**
512
- *
513
- * @type {number}
514
- * @memberof ItemImproveEffectOptionDto
515
- */
516
- statValue?: number;
517
- /**
518
- *
519
- * @type {boolean}
520
- * @memberof ItemImproveEffectOptionDto
521
- */
522
- isEffect?: boolean;
523
- /**
524
- *
525
- * @type {string}
526
- * @memberof ItemImproveEffectOptionDto
527
- */
528
- effectDescription?: string;
529
- /**
530
- *
531
- * @type {ItemIconDto}
532
- * @memberof ItemImproveEffectOptionDto
533
- */
534
- icon?: ItemIconDto;
535
- }
536
- /**
537
- *
538
- * @export
539
- * @interface ItemRandomStatDto
540
- */
541
- export interface ItemRandomStatDto {
542
- /**
543
- *
544
- * @type {string}
545
- * @memberof ItemRandomStatDto
546
- */
547
- name?: string;
548
- /**
549
- *
550
- * @type {number}
551
- * @memberof ItemRandomStatDto
552
- */
553
- min?: number;
554
- /**
555
- *
556
- * @type {number}
557
- * @memberof ItemRandomStatDto
558
- */
559
- max?: number;
560
- /**
561
- *
562
- * @type {boolean}
563
- * @memberof ItemRandomStatDto
564
- */
565
- isPercentage?: boolean;
566
- /**
567
- *
568
- * @type {boolean}
569
- * @memberof ItemRandomStatDto
570
- */
571
- isMainStat?: boolean;
572
- /**
573
- *
574
- * @type {boolean}
575
- * @memberof ItemRandomStatDto
576
- */
577
- isFixedSubStat?: boolean;
578
- }
579
- /**
580
- *
581
- * @export
582
- * @interface ItemRefWithCount
583
- */
584
- export interface ItemRefWithCount {
585
- /**
586
- *
587
- * @type {number}
588
- * @memberof ItemRefWithCount
589
- */
590
- itemId?: number;
591
- /**
592
- *
593
- * @type {number}
594
- * @memberof ItemRefWithCount
595
- */
596
- itemLevel?: number;
597
- /**
598
- *
599
- * @type {number}
600
- * @memberof ItemRefWithCount
601
- */
602
- min?: number;
603
- /**
604
- *
605
- * @type {number}
606
- * @memberof ItemRefWithCount
607
- */
608
- max?: number;
609
- /**
610
- *
611
- * @type {boolean}
612
- * @memberof ItemRefWithCount
613
- */
614
- isMinMax?: boolean;
615
- /**
616
- *
617
- * @type {boolean}
618
- * @memberof ItemRefWithCount
619
- */
620
- isRandom?: boolean;
621
- }
622
- /**
623
- *
624
- * @export
625
- * @interface ItemSealingDto
626
- */
627
- export interface ItemSealingDto {
628
- /**
629
- *
630
- * @type {Array<ItemRefWithCount>}
631
- * @memberof ItemSealingDto
632
- */
633
- sealConsumeItems?: Array<ItemRefWithCount>;
634
- /**
635
- *
636
- * @type {number}
637
- * @memberof ItemSealingDto
638
- */
639
- sealAcquireItemId?: number;
640
- /**
641
- *
642
- * @type {number}
643
- * @memberof ItemSealingDto
644
- */
645
- sealAcquireItemLevel?: number;
646
- }
647
- /**
648
- *
649
- * @export
650
- * @interface ItemSetBonusDto
651
- */
652
- export interface ItemSetBonusDto {
653
- /**
654
- *
655
- * @type {string}
656
- * @memberof ItemSetBonusDto
657
- */
658
- setName?: string;
659
- /**
660
- *
661
- * @type {Array<SetItemDto>}
662
- * @memberof ItemSetBonusDto
663
- */
664
- setItems?: Array<SetItemDto>;
665
- /**
666
- *
667
- * @type {Array<ItemSetBonusStageDto>}
668
- * @memberof ItemSetBonusDto
669
- */
670
- setBonusStages?: Array<ItemSetBonusStageDto>;
671
- }
672
- /**
673
- *
674
- * @export
675
- * @interface ItemSetBonusStageDto
676
- */
677
- export interface ItemSetBonusStageDto {
678
- /**
679
- *
680
- * @type {number}
681
- * @memberof ItemSetBonusStageDto
682
- */
683
- setNumber?: number;
684
- /**
685
- *
686
- * @type {Array<EffectDto>}
687
- * @memberof ItemSetBonusStageDto
688
- */
689
- effects?: Array<EffectDto>;
690
- /**
691
- *
692
- * @type {Array<SkillModifierGroupDto>}
693
- * @memberof ItemSetBonusStageDto
694
- */
695
- skillModifiers?: Array<SkillModifierGroupDto>;
696
- }
697
- /**
698
- *
699
- * @export
700
- * @interface ItemSkillDto
701
- */
702
- export interface ItemSkillDto {
703
- /**
704
- *
705
- * @type {string}
706
- * @memberof ItemSkillDto
707
- */
708
- title?: string;
709
- /**
710
- *
711
- * @type {string}
712
- * @memberof ItemSkillDto
713
- */
714
- description?: string;
715
- /**
716
- *
717
- * @type {string}
718
- * @memberof ItemSkillDto
719
- */
720
- jobstyle?: string;
721
- }
722
- /**
723
- *
724
- * @export
725
- * @interface ItemStatDto
726
- */
727
- export interface ItemStatDto {
728
- /**
729
- *
730
- * @type {string}
731
- * @memberof ItemStatDto
732
- */
733
- name?: string;
734
- /**
735
- *
736
- * @type {number}
737
- * @memberof ItemStatDto
738
- */
739
- value?: number;
740
- /**
741
- *
742
- * @type {boolean}
743
- * @memberof ItemStatDto
744
- */
745
- isPercentage?: boolean;
746
- /**
747
- *
748
- * @type {boolean}
749
- * @memberof ItemStatDto
750
- */
751
- isMainStat?: boolean;
752
- }
753
- /**
754
- *
755
- * @export
756
- * @interface ItemTransformDto
757
- */
758
- export interface ItemTransformDto {
759
- /**
760
- *
761
- * @type {number}
762
- * @memberof ItemTransformDto
763
- */
764
- moneyCost?: number;
765
- /**
766
- *
767
- * @type {Array<ItemRefWithCount>}
768
- * @memberof ItemTransformDto
769
- */
770
- itemCost?: Array<ItemRefWithCount>;
771
- /**
772
- *
773
- * @type {ItemRefWithCount}
774
- * @memberof ItemTransformDto
775
- */
776
- itemReward?: ItemRefWithCount;
777
- }
778
- /**
779
- *
780
- * @export
781
- * @interface ItemUpgradeInfoDto
782
- */
783
- export interface ItemUpgradeInfoDto {
784
- /**
785
- *
786
- * @type {number}
787
- * @memberof ItemUpgradeInfoDto
788
- */
789
- moneyCost?: number;
790
- /**
791
- *
792
- * @type {Array<ItemRefWithCount>}
793
- * @memberof ItemUpgradeInfoDto
794
- */
795
- itemCost?: Array<ItemRefWithCount>;
796
- /**
797
- *
798
- * @type {number}
799
- * @memberof ItemUpgradeInfoDto
800
- */
801
- offerItemId?: number;
802
- /**
803
- *
804
- * @type {number}
805
- * @memberof ItemUpgradeInfoDto
806
- */
807
- offerItemLevel?: number;
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
- }
830
- /**
831
- *
832
- * @export
833
- * @interface PatchesListPatch
834
- */
835
- export interface PatchesListPatch {
836
- /**
837
- *
838
- * @type {string}
839
- * @memberof PatchesListPatch
840
- */
841
- _short?: string;
842
- /**
843
- *
844
- * @type {string}
845
- * @memberof PatchesListPatch
846
- */
847
- text?: string;
848
- /**
849
- *
850
- * @type {number}
851
- * @memberof PatchesListPatch
852
- */
853
- index?: number;
854
- }
855
- /**
856
- *
857
- * @export
858
- * @interface RequiredClassDto
859
- */
860
- export interface RequiredClassDto {
861
- /**
862
- *
863
- * @type {string}
864
- * @memberof RequiredClassDto
865
- */
866
- enName?: string;
867
- /**
868
- *
869
- * @type {string}
870
- * @memberof RequiredClassDto
871
- */
872
- technicalName?: string;
873
- }
874
- /**
875
- *
876
- * @export
877
- * @interface SetItemDto
878
- */
879
- export interface SetItemDto {
880
- /**
881
- *
882
- * @type {string}
883
- * @memberof SetItemDto
884
- */
885
- itemName?: string;
886
- /**
887
- *
888
- * @type {ItemIconDto}
889
- * @memberof SetItemDto
890
- */
891
- itemIcon?: ItemIconDto;
892
- }
893
- /**
894
- *
895
- * @export
896
- * @interface SkillModifierDto
897
- */
898
- export interface SkillModifierDto {
899
- /**
900
- *
901
- * @type {Array<Int32StringTuple>}
902
- * @memberof SkillModifierDto
903
- */
904
- skills?: Array<Int32StringTuple>;
905
- /**
906
- *
907
- * @type {string}
908
- * @memberof SkillModifierDto
909
- */
910
- verb?: string;
911
- /**
912
- *
913
- * @type {number}
914
- * @memberof SkillModifierDto
915
- */
916
- value?: number;
917
- }
918
- /**
919
- *
920
- * @export
921
- * @interface SkillModifierGroupDto
922
- */
923
- export interface SkillModifierGroupDto {
924
- /**
925
- *
926
- * @type {string}
927
- * @memberof SkillModifierGroupDto
928
- */
929
- jobstyle?: string;
930
- /**
931
- *
932
- * @type {Array<SkillModifierDto>}
933
- * @memberof SkillModifierGroupDto
934
- */
935
- modifiers?: Array<SkillModifierDto>;
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
- }
974
- /**
975
- * BnsItemApi - fetch parameter creator
976
- * @export
977
- */
978
- export declare const BnsItemApiFetchParamCreator: (configuration?: Configuration) => {
979
- /**
980
- *
981
- * @param {boolean} added
982
- * @param {boolean} modified
983
- * @param {string} region
984
- * @param {string} [patch]
985
- * @param {*} [options] Override http request option.
986
- * @throws {RequiredError}
987
- */
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;
999
- /**
1000
- *
1001
- * @param {number} [itemId]
1002
- * @param {number} [itemLevel]
1003
- * @param {string} [region]
1004
- * @param {string} [patch]
1005
- * @param {*} [options] Override http request option.
1006
- * @throws {RequiredError}
1007
- */
1008
- bnsItemAllUpgradesForItemGet(itemId?: number, itemLevel?: number, region?: string, patch?: string, options?: any): FetchArgs;
1009
- /**
1010
- *
1011
- * @param {string} idLevel
1012
- * @param {string} region
1013
- * @param {boolean} [light]
1014
- * @param {string} [patch]
1015
- * @param {*} [options] Override http request option.
1016
- * @throws {RequiredError}
1017
- */
1018
- bnsItemItemByStringGet(idLevel: string, region: string, light?: boolean, patch?: string, options?: any): FetchArgs;
1019
- /**
1020
- *
1021
- * @param {number} id
1022
- * @param {number} level
1023
- * @param {string} region
1024
- * @param {boolean} [light]
1025
- * @param {string} [patch]
1026
- * @param {*} [options] Override http request option.
1027
- * @throws {RequiredError}
1028
- */
1029
- bnsItemItemGet(id: number, level: number, region: string, light?: boolean, patch?: string, options?: any): FetchArgs;
1030
- /**
1031
- *
1032
- * @param {string} region
1033
- * @param {string} [category]
1034
- * @param {string} [technicalJobName]
1035
- * @param {string} [gradesString]
1036
- * @param {string} [minGs]
1037
- * @param {string} [patch]
1038
- * @param {boolean} [noDupes]
1039
- * @param {*} [options] Override http request option.
1040
- * @throws {RequiredError}
1041
- */
1042
- bnsItemItemsByCategoryGet(region: string, category?: string, technicalJobName?: string, gradesString?: string, minGs?: string, patch?: string, noDupes?: boolean, options?: any): FetchArgs;
1043
- /**
1044
- *
1045
- * @param {string} name
1046
- * @param {string} region
1047
- * @param {string} [patch]
1048
- * @param {*} [options] Override http request option.
1049
- * @throws {RequiredError}
1050
- */
1051
- bnsItemItemsByNameGet(name: string, region: string, patch?: string, options?: any): FetchArgs;
1052
- /**
1053
- *
1054
- * @param {number} count
1055
- * @param {string} region
1056
- * @param {number} [offset]
1057
- * @param {string} [patch]
1058
- * @param {*} [options] Override http request option.
1059
- * @throws {RequiredError}
1060
- */
1061
- bnsItemItemsGet(count: number, region: string, offset?: number, patch?: string, options?: any): FetchArgs;
1062
- /**
1063
- *
1064
- * @param {string} region
1065
- * @param {*} [options] Override http request option.
1066
- * @throws {RequiredError}
1067
- */
1068
- bnsItemLatestPatchGet(region: string, options?: any): FetchArgs;
1069
- /**
1070
- *
1071
- * @param {string} region
1072
- * @param {*} [options] Override http request option.
1073
- * @throws {RequiredError}
1074
- */
1075
- bnsItemPatchesGet(region: string, options?: any): FetchArgs;
1076
- /**
1077
- *
1078
- * @param {*} [options] Override http request option.
1079
- * @throws {RequiredError}
1080
- */
1081
- bnsItemPingGet(options?: any): FetchArgs;
1082
- /**
1083
- *
1084
- * @param {*} [options] Override http request option.
1085
- * @throws {RequiredError}
1086
- */
1087
- bnsItemRegionsGet(options?: any): FetchArgs;
1088
- /**
1089
- *
1090
- * @param {string} region
1091
- * @param {string} itemType
1092
- * @param {string} technicalJobName
1093
- * @param {string} [patch]
1094
- * @param {*} [options] Override http request option.
1095
- * @throws {RequiredError}
1096
- */
1097
- bnsItemYastItemsGet(region: string, itemType: string, technicalJobName: string, patch?: string, options?: any): FetchArgs;
1098
- };
1099
- /**
1100
- * BnsItemApi - functional programming interface
1101
- * @export
1102
- */
1103
- export declare const BnsItemApiFp: (configuration?: Configuration) => {
1104
- /**
1105
- *
1106
- * @param {boolean} added
1107
- * @param {boolean} modified
1108
- * @param {string} region
1109
- * @param {string} [patch]
1110
- * @param {*} [options] Override http request option.
1111
- * @throws {RequiredError}
1112
- */
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>;
1124
- /**
1125
- *
1126
- * @param {number} [itemId]
1127
- * @param {number} [itemLevel]
1128
- * @param {string} [region]
1129
- * @param {string} [patch]
1130
- * @param {*} [options] Override http request option.
1131
- * @throws {RequiredError}
1132
- */
1133
- bnsItemAllUpgradesForItemGet(itemId?: number, itemLevel?: number, region?: string, patch?: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<BnsItemDto>>;
1134
- /**
1135
- *
1136
- * @param {string} idLevel
1137
- * @param {string} region
1138
- * @param {boolean} [light]
1139
- * @param {string} [patch]
1140
- * @param {*} [options] Override http request option.
1141
- * @throws {RequiredError}
1142
- */
1143
- bnsItemItemByStringGet(idLevel: string, region: string, light?: boolean, patch?: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<BnsItemDto>;
1144
- /**
1145
- *
1146
- * @param {number} id
1147
- * @param {number} level
1148
- * @param {string} region
1149
- * @param {boolean} [light]
1150
- * @param {string} [patch]
1151
- * @param {*} [options] Override http request option.
1152
- * @throws {RequiredError}
1153
- */
1154
- bnsItemItemGet(id: number, level: number, region: string, light?: boolean, patch?: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<BnsItemDto>;
1155
- /**
1156
- *
1157
- * @param {string} region
1158
- * @param {string} [category]
1159
- * @param {string} [technicalJobName]
1160
- * @param {string} [gradesString]
1161
- * @param {string} [minGs]
1162
- * @param {string} [patch]
1163
- * @param {boolean} [noDupes]
1164
- * @param {*} [options] Override http request option.
1165
- * @throws {RequiredError}
1166
- */
1167
- bnsItemItemsByCategoryGet(region: string, category?: string, technicalJobName?: string, gradesString?: string, minGs?: string, patch?: string, noDupes?: boolean, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<BnsItemDto>>;
1168
- /**
1169
- *
1170
- * @param {string} name
1171
- * @param {string} region
1172
- * @param {string} [patch]
1173
- * @param {*} [options] Override http request option.
1174
- * @throws {RequiredError}
1175
- */
1176
- bnsItemItemsByNameGet(name: string, region: string, patch?: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<BnsItemDto>>;
1177
- /**
1178
- *
1179
- * @param {number} count
1180
- * @param {string} region
1181
- * @param {number} [offset]
1182
- * @param {string} [patch]
1183
- * @param {*} [options] Override http request option.
1184
- * @throws {RequiredError}
1185
- */
1186
- bnsItemItemsGet(count: number, region: string, offset?: number, patch?: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<BnsItemDto>>;
1187
- /**
1188
- *
1189
- * @param {string} region
1190
- * @param {*} [options] Override http request option.
1191
- * @throws {RequiredError}
1192
- */
1193
- bnsItemLatestPatchGet(region: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<PatchesListPatch>;
1194
- /**
1195
- *
1196
- * @param {string} region
1197
- * @param {*} [options] Override http request option.
1198
- * @throws {RequiredError}
1199
- */
1200
- bnsItemPatchesGet(region: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<PatchesListPatch>>;
1201
- /**
1202
- *
1203
- * @param {*} [options] Override http request option.
1204
- * @throws {RequiredError}
1205
- */
1206
- bnsItemPingGet(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<string>;
1207
- /**
1208
- *
1209
- * @param {*} [options] Override http request option.
1210
- * @throws {RequiredError}
1211
- */
1212
- bnsItemRegionsGet(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<string>>;
1213
- /**
1214
- *
1215
- * @param {string} region
1216
- * @param {string} itemType
1217
- * @param {string} technicalJobName
1218
- * @param {string} [patch]
1219
- * @param {*} [options] Override http request option.
1220
- * @throws {RequiredError}
1221
- */
1222
- bnsItemYastItemsGet(region: string, itemType: string, technicalJobName: string, patch?: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<BnsItemDto>>;
1223
- };
1224
- /**
1225
- * BnsItemApi - factory interface
1226
- * @export
1227
- */
1228
- export declare const BnsItemApiFactory: (configuration?: Configuration, fetch?: FetchAPI, basePath?: string) => {
1229
- /**
1230
- *
1231
- * @param {boolean} added
1232
- * @param {boolean} modified
1233
- * @param {string} region
1234
- * @param {string} [patch]
1235
- * @param {*} [options] Override http request option.
1236
- * @throws {RequiredError}
1237
- */
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>;
1249
- /**
1250
- *
1251
- * @param {number} [itemId]
1252
- * @param {number} [itemLevel]
1253
- * @param {string} [region]
1254
- * @param {string} [patch]
1255
- * @param {*} [options] Override http request option.
1256
- * @throws {RequiredError}
1257
- */
1258
- bnsItemAllUpgradesForItemGet(itemId?: number, itemLevel?: number, region?: string, patch?: string, options?: any): Promise<BnsItemDto[]>;
1259
- /**
1260
- *
1261
- * @param {string} idLevel
1262
- * @param {string} region
1263
- * @param {boolean} [light]
1264
- * @param {string} [patch]
1265
- * @param {*} [options] Override http request option.
1266
- * @throws {RequiredError}
1267
- */
1268
- bnsItemItemByStringGet(idLevel: string, region: string, light?: boolean, patch?: string, options?: any): Promise<BnsItemDto>;
1269
- /**
1270
- *
1271
- * @param {number} id
1272
- * @param {number} level
1273
- * @param {string} region
1274
- * @param {boolean} [light]
1275
- * @param {string} [patch]
1276
- * @param {*} [options] Override http request option.
1277
- * @throws {RequiredError}
1278
- */
1279
- bnsItemItemGet(id: number, level: number, region: string, light?: boolean, patch?: string, options?: any): Promise<BnsItemDto>;
1280
- /**
1281
- *
1282
- * @param {string} region
1283
- * @param {string} [category]
1284
- * @param {string} [technicalJobName]
1285
- * @param {string} [gradesString]
1286
- * @param {string} [minGs]
1287
- * @param {string} [patch]
1288
- * @param {boolean} [noDupes]
1289
- * @param {*} [options] Override http request option.
1290
- * @throws {RequiredError}
1291
- */
1292
- bnsItemItemsByCategoryGet(region: string, category?: string, technicalJobName?: string, gradesString?: string, minGs?: string, patch?: string, noDupes?: boolean, options?: any): Promise<BnsItemDto[]>;
1293
- /**
1294
- *
1295
- * @param {string} name
1296
- * @param {string} region
1297
- * @param {string} [patch]
1298
- * @param {*} [options] Override http request option.
1299
- * @throws {RequiredError}
1300
- */
1301
- bnsItemItemsByNameGet(name: string, region: string, patch?: string, options?: any): Promise<BnsItemDto[]>;
1302
- /**
1303
- *
1304
- * @param {number} count
1305
- * @param {string} region
1306
- * @param {number} [offset]
1307
- * @param {string} [patch]
1308
- * @param {*} [options] Override http request option.
1309
- * @throws {RequiredError}
1310
- */
1311
- bnsItemItemsGet(count: number, region: string, offset?: number, patch?: string, options?: any): Promise<BnsItemDto[]>;
1312
- /**
1313
- *
1314
- * @param {string} region
1315
- * @param {*} [options] Override http request option.
1316
- * @throws {RequiredError}
1317
- */
1318
- bnsItemLatestPatchGet(region: string, options?: any): Promise<PatchesListPatch>;
1319
- /**
1320
- *
1321
- * @param {string} region
1322
- * @param {*} [options] Override http request option.
1323
- * @throws {RequiredError}
1324
- */
1325
- bnsItemPatchesGet(region: string, options?: any): Promise<PatchesListPatch[]>;
1326
- /**
1327
- *
1328
- * @param {*} [options] Override http request option.
1329
- * @throws {RequiredError}
1330
- */
1331
- bnsItemPingGet(options?: any): Promise<string>;
1332
- /**
1333
- *
1334
- * @param {*} [options] Override http request option.
1335
- * @throws {RequiredError}
1336
- */
1337
- bnsItemRegionsGet(options?: any): Promise<string[]>;
1338
- /**
1339
- *
1340
- * @param {string} region
1341
- * @param {string} itemType
1342
- * @param {string} technicalJobName
1343
- * @param {string} [patch]
1344
- * @param {*} [options] Override http request option.
1345
- * @throws {RequiredError}
1346
- */
1347
- bnsItemYastItemsGet(region: string, itemType: string, technicalJobName: string, patch?: string, options?: any): Promise<BnsItemDto[]>;
1348
- };
1349
- /**
1350
- * BnsItemApi - object-oriented interface
1351
- * @export
1352
- * @class BnsItemApi
1353
- * @extends {BaseAPI}
1354
- */
1355
- export declare class BnsItemApi extends BaseAPI {
1356
- /**
1357
- *
1358
- * @param {boolean} added
1359
- * @param {boolean} modified
1360
- * @param {string} region
1361
- * @param {string} [patch]
1362
- * @param {*} [options] Override http request option.
1363
- * @throws {RequiredError}
1364
- * @memberof BnsItemApi
1365
- */
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>;
1378
- /**
1379
- *
1380
- * @param {number} [itemId]
1381
- * @param {number} [itemLevel]
1382
- * @param {string} [region]
1383
- * @param {string} [patch]
1384
- * @param {*} [options] Override http request option.
1385
- * @throws {RequiredError}
1386
- * @memberof BnsItemApi
1387
- */
1388
- bnsItemAllUpgradesForItemGet(itemId?: number, itemLevel?: number, region?: string, patch?: string, options?: any): Promise<BnsItemDto[]>;
1389
- /**
1390
- *
1391
- * @param {string} idLevel
1392
- * @param {string} region
1393
- * @param {boolean} [light]
1394
- * @param {string} [patch]
1395
- * @param {*} [options] Override http request option.
1396
- * @throws {RequiredError}
1397
- * @memberof BnsItemApi
1398
- */
1399
- bnsItemItemByStringGet(idLevel: string, region: string, light?: boolean, patch?: string, options?: any): Promise<BnsItemDto>;
1400
- /**
1401
- *
1402
- * @param {number} id
1403
- * @param {number} level
1404
- * @param {string} region
1405
- * @param {boolean} [light]
1406
- * @param {string} [patch]
1407
- * @param {*} [options] Override http request option.
1408
- * @throws {RequiredError}
1409
- * @memberof BnsItemApi
1410
- */
1411
- bnsItemItemGet(id: number, level: number, region: string, light?: boolean, patch?: string, options?: any): Promise<BnsItemDto>;
1412
- /**
1413
- *
1414
- * @param {string} region
1415
- * @param {string} [category]
1416
- * @param {string} [technicalJobName]
1417
- * @param {string} [gradesString]
1418
- * @param {string} [minGs]
1419
- * @param {string} [patch]
1420
- * @param {boolean} [noDupes]
1421
- * @param {*} [options] Override http request option.
1422
- * @throws {RequiredError}
1423
- * @memberof BnsItemApi
1424
- */
1425
- bnsItemItemsByCategoryGet(region: string, category?: string, technicalJobName?: string, gradesString?: string, minGs?: string, patch?: string, noDupes?: boolean, options?: any): Promise<BnsItemDto[]>;
1426
- /**
1427
- *
1428
- * @param {string} name
1429
- * @param {string} region
1430
- * @param {string} [patch]
1431
- * @param {*} [options] Override http request option.
1432
- * @throws {RequiredError}
1433
- * @memberof BnsItemApi
1434
- */
1435
- bnsItemItemsByNameGet(name: string, region: string, patch?: string, options?: any): Promise<BnsItemDto[]>;
1436
- /**
1437
- *
1438
- * @param {number} count
1439
- * @param {string} region
1440
- * @param {number} [offset]
1441
- * @param {string} [patch]
1442
- * @param {*} [options] Override http request option.
1443
- * @throws {RequiredError}
1444
- * @memberof BnsItemApi
1445
- */
1446
- bnsItemItemsGet(count: number, region: string, offset?: number, patch?: string, options?: any): Promise<BnsItemDto[]>;
1447
- /**
1448
- *
1449
- * @param {string} region
1450
- * @param {*} [options] Override http request option.
1451
- * @throws {RequiredError}
1452
- * @memberof BnsItemApi
1453
- */
1454
- bnsItemLatestPatchGet(region: string, options?: any): Promise<PatchesListPatch>;
1455
- /**
1456
- *
1457
- * @param {string} region
1458
- * @param {*} [options] Override http request option.
1459
- * @throws {RequiredError}
1460
- * @memberof BnsItemApi
1461
- */
1462
- bnsItemPatchesGet(region: string, options?: any): Promise<PatchesListPatch[]>;
1463
- /**
1464
- *
1465
- * @param {*} [options] Override http request option.
1466
- * @throws {RequiredError}
1467
- * @memberof BnsItemApi
1468
- */
1469
- bnsItemPingGet(options?: any): Promise<string>;
1470
- /**
1471
- *
1472
- * @param {*} [options] Override http request option.
1473
- * @throws {RequiredError}
1474
- * @memberof BnsItemApi
1475
- */
1476
- bnsItemRegionsGet(options?: any): Promise<string[]>;
1477
- /**
1478
- *
1479
- * @param {string} region
1480
- * @param {string} itemType
1481
- * @param {string} technicalJobName
1482
- * @param {string} [patch]
1483
- * @param {*} [options] Override http request option.
1484
- * @throws {RequiredError}
1485
- * @memberof BnsItemApi
1486
- */
1487
- bnsItemYastItemsGet(region: string, itemType: string, technicalJobName: string, patch?: string, options?: any): Promise<BnsItemDto[]>;
1488
- }