warframe-public-export-plus 0.5.106 → 0.6.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.
package/index.d.ts CHANGED
@@ -39,8 +39,6 @@ export declare const ExportGear: Record<string, IGear>;
39
39
  export declare const ExportImages: Record<string, IImage>;
40
40
  export declare const ExportIntrinsics: Record<string, IIntrinsic>;
41
41
  export declare const ExportKeys: Record<string, IKey>;
42
- /** @deprecated */
43
- export declare const ExportMisc: IExportMisc;
44
42
  export declare const ExportMissionTypes: Record<TMissionType, IMissionType>;
45
43
  export declare const ExportModSet: Record<string, IModSet>;
46
44
  export declare const ExportNightwave: IExportNightwave;
@@ -64,11 +62,6 @@ export declare const ExportWeapons: Record<string, IWeapon>;
64
62
  export declare const getScaledPowersuitValues: (uniqueName: string, rank: number) => Promise<IScaledPowersuitValues>;
65
63
  export declare const riven_unrollables: Record<string, ("WeaponArmorPiercingDamageMod" | "WeaponSlashDamageMod" | "WeaponImpactDamageMod")[]>;
66
64
 
67
- /** @deprecated use ExportFactions */
68
- export declare const eFaction: IEnumerator[];
69
- /** @deprecated use ExportMissionTypes */
70
- export declare const eMissionType: IEnumerator[];
71
-
72
65
  export type TRarity = "COMMON" | "UNCOMMON" | "RARE" | "LEGENDARY";
73
66
 
74
67
  export interface ICountedItem {
@@ -121,8 +114,6 @@ export interface IArcane {
121
114
  rarity: TRarity;
122
115
  fusionLimit: number;
123
116
  distillPointValue?: number;
124
- /** @deprecated use excludeFromCodex */
125
- isFrivolous?: true;
126
117
  }
127
118
 
128
119
  export interface IAvionic {
@@ -187,8 +178,6 @@ export interface IBundle {
187
178
  typeName: string;
188
179
  purchaseQuantity: number;
189
180
  durabilityDays?: number; // for boosters
190
- /** @deprecated use durabilityDays */
191
- durability?: TRarity; // for boosters
192
181
  giveMaxRank?: true;
193
182
  }[];
194
183
  giftingBonus?: string;
@@ -198,10 +187,6 @@ export interface IBundle {
198
187
  excludeFromMarket?: true;
199
188
  bundledPlatinum?: number;
200
189
  platinumBundlePair?: string;
201
- /** @deprecated renamed to platinumCost */
202
- premiumPrice?: number;
203
- /** @deprecated renamed to bundledPlatinum */
204
- bundledPremiumCredits?: number;
205
190
  excludedPlatforms?: TPlatform[];
206
191
  }
207
192
 
@@ -261,8 +246,6 @@ export interface ICreditBundle {
261
246
  icon: string;
262
247
  credits: number;
263
248
  platinumCost?: number;
264
- /** @deprecated renamed to platinumCost */
265
- premiumPrice?: number;
266
249
  }
267
250
 
268
251
  export interface ICustom {
@@ -349,8 +332,6 @@ export interface IDrone {
349
332
  durability: number;
350
333
  repairRate: number;
351
334
  codexSecret: boolean;
352
- /** @deprecated use capacityMultipliers */
353
- capacityMultiplier: number[];
354
335
  capacityMultipliers: Record<TRarity, number>;
355
336
  probabilities: Record<TRarity, number>;
356
337
  }
@@ -487,8 +468,6 @@ export interface IFusionBundle {
487
468
  name: string;
488
469
  description: string;
489
470
  icon: string;
490
- /** @deprecated */
491
- codexSecret: boolean;
492
471
  fusionPoints: number;
493
472
  }
494
473
 
@@ -583,16 +562,6 @@ export interface IHelminthSnack {
583
562
  }
584
563
 
585
564
  export interface IExportMisc {
586
- /** @deprecated check ExportWarframes and ExportWeapons for maxLevelCap */
587
- uniqueLevelCaps: Record<string, number>;
588
- /** @deprecated */
589
- boosterDurations: Record<TRarity, number>;
590
- /** @deprecated */
591
- npcKillRewardMultiplier: number;
592
- /** @deprecated check ExportResources for helminthSnack */
593
- helminthSnacks: Record<string, IHelminthSnack>;
594
- /** @deprecated use ExportCreditBundles */
595
- creditBundles: Record<string, number>;
596
565
  }
597
566
 
598
567
  export type TMissionType =
@@ -743,19 +712,9 @@ export interface IRegion {
743
712
  nodeType: number;
744
713
  masteryReq: number;
745
714
  missionType: TMissionType;
746
- /** @deprecated use ExportMissionTypes[missionType].index */
747
- missionIndex: number;
748
715
  missionName: string; // may differ from eMission[missionIndex].name for dual defense, conjunction survival, railjack
749
716
  faction?: TFaction;
750
- /** @deprecated use ExportFactions[faction].index */
751
- factionIndex?: number;
752
- /** @deprecated use ExportFactions[faction].name */
753
- factionName?: string;
754
717
  secondaryFaction?: TFaction;
755
- /** @deprecated use ExportFactions[secondaryFaction].index */
756
- secondaryFactionIndex?: number;
757
- /** @deprecated use ExportFactions[secondaryFaction].name */
758
- secondaryFactionName?: string;
759
718
  minEnemyLevel: number;
760
719
  maxEnemyLevel: number;
761
720
  masteryExp: number;
@@ -976,8 +935,6 @@ export interface IUpgrade {
976
935
  modSetValues?: number[];
977
936
  subtype?: string;
978
937
  excludeFromCodex?: true;
979
- /** @deprecated check `ExportBoosterPacks["/Lotus/Types/BoosterPacks/ModFuserResult"].components`, instead */
980
- canBeTransmutation?: true;
981
938
  isStarter?: true;
982
939
  isFrivolous?: true;
983
940
  tradable?: boolean;
@@ -1129,8 +1086,6 @@ export interface IWeapon {
1129
1086
  primeOmegaAttenuation?: number;
1130
1087
  creditsCost?: number;
1131
1088
  platinumCost?: number;
1132
- /** @deprecated renamed to platinumCost */
1133
- premiumPrice?: number;
1134
1089
  excludeFromMarket?: true;
1135
1090
  variantType: "VT_NORMAL" | "VT_STARTER" | "VT_VARIANT" | "VT_SYNDICATE" | "VT_PRIME" | "VT_KUVA";
1136
1091
  partType?: string;
package/index.js CHANGED
@@ -41,7 +41,6 @@ PublicExportPlus.ExportGear = require("./ExportGear.json");
41
41
  PublicExportPlus.ExportImages = require("./ExportImages.json");
42
42
  PublicExportPlus.ExportIntrinsics = require("./ExportIntrinsics.json");
43
43
  PublicExportPlus.ExportKeys = require("./ExportKeys.json");
44
- PublicExportPlus.ExportMisc = require("./ExportMisc.json");
45
44
  PublicExportPlus.ExportMissionTypes = require("./ExportMissionTypes.json");
46
45
  PublicExportPlus.ExportModSet = require("./ExportModSet.json");
47
46
  PublicExportPlus.ExportNightwave = require("./ExportNightwave.json");
@@ -66,8 +65,4 @@ PublicExportPlus.ExportWeapons = require("./ExportWeapons.json");
66
65
  PublicExportPlus.getScaledPowersuitValues = require("./supplementals/getScaledPowersuitValues.js");
67
66
  PublicExportPlus.riven_unrollables = require("./supplementals/riven_unrollables.json");
68
67
 
69
- // deprecated supplementals
70
- PublicExportPlus.eFaction = require("./supplementals/eFaction.json");
71
- PublicExportPlus.eMissionType = require("./supplementals/eMissionType.json");
72
-
73
68
  module.exports = PublicExportPlus;
package/index.mjs CHANGED
@@ -41,7 +41,6 @@ export const {
41
41
  ExportImages,
42
42
  ExportIntrinsics,
43
43
  ExportKeys,
44
- ExportMisc,
45
44
  ExportMissionTypes,
46
45
  ExportModSet,
47
46
  ExportNightwave,
@@ -63,8 +62,6 @@ export const {
63
62
  ExportWeapons,
64
63
  getScaledPowersuitValues,
65
64
  riven_unrollables,
66
- eFaction,
67
- eMissionType,
68
65
  } = PublicExportPlus;
69
66
 
70
67
  export default PublicExportPlus;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "warframe-public-export-plus",
3
- "version": "0.5.106",
3
+ "version": "0.6.0",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "exports": {