warframe-public-export-plus 0.5.105 → 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
 
@@ -219,6 +204,9 @@ export interface IChallenge {
219
204
 
220
205
  export interface IExportCodex {
221
206
  objects: Record<string, ICodexEntry>;
207
+ loreFragments: Record<string, ILoreFragment>;
208
+ songs: Record<string, ISongFragment>;
209
+ fighterFrames: Record<string, IFrameFighterFragment>;
222
210
  }
223
211
 
224
212
  export interface ICodexEntry {
@@ -229,14 +217,35 @@ export interface ICodexEntry {
229
217
  secret: boolean;
230
218
  }
231
219
 
220
+ export interface ILoreFragment {
221
+ name: string;
222
+ description?: string;
223
+ image?: string;
224
+ reqScans: number;
225
+ secretTransmission?: {
226
+ sound: string;
227
+ text: string;
228
+ };
229
+ }
230
+
231
+ export interface ISongFragment {
232
+ name: string;
233
+ song: string;
234
+ reqScans: number;
235
+ }
236
+
237
+ export interface IFrameFighterFragment {
238
+ name: string;
239
+ suit: string;
240
+ reqScans: number;
241
+ }
242
+
232
243
  export interface ICreditBundle {
233
244
  name: string;
234
245
  description?: string;
235
246
  icon: string;
236
247
  credits: number;
237
248
  platinumCost?: number;
238
- /** @deprecated renamed to platinumCost */
239
- premiumPrice?: number;
240
249
  }
241
250
 
242
251
  export interface ICustom {
@@ -323,8 +332,6 @@ export interface IDrone {
323
332
  durability: number;
324
333
  repairRate: number;
325
334
  codexSecret: boolean;
326
- /** @deprecated use capacityMultipliers */
327
- capacityMultiplier: number[];
328
335
  capacityMultipliers: Record<TRarity, number>;
329
336
  probabilities: Record<TRarity, number>;
330
337
  }
@@ -461,8 +468,6 @@ export interface IFusionBundle {
461
468
  name: string;
462
469
  description: string;
463
470
  icon: string;
464
- /** @deprecated */
465
- codexSecret: boolean;
466
471
  fusionPoints: number;
467
472
  }
468
473
 
@@ -557,16 +562,6 @@ export interface IHelminthSnack {
557
562
  }
558
563
 
559
564
  export interface IExportMisc {
560
- /** @deprecated check ExportWarframes and ExportWeapons for maxLevelCap */
561
- uniqueLevelCaps: Record<string, number>;
562
- /** @deprecated */
563
- boosterDurations: Record<TRarity, number>;
564
- /** @deprecated */
565
- npcKillRewardMultiplier: number;
566
- /** @deprecated check ExportResources for helminthSnack */
567
- helminthSnacks: Record<string, IHelminthSnack>;
568
- /** @deprecated use ExportCreditBundles */
569
- creditBundles: Record<string, number>;
570
565
  }
571
566
 
572
567
  export type TMissionType =
@@ -717,19 +712,9 @@ export interface IRegion {
717
712
  nodeType: number;
718
713
  masteryReq: number;
719
714
  missionType: TMissionType;
720
- /** @deprecated use ExportMissionTypes[missionType].index */
721
- missionIndex: number;
722
715
  missionName: string; // may differ from eMission[missionIndex].name for dual defense, conjunction survival, railjack
723
716
  faction?: TFaction;
724
- /** @deprecated use ExportFactions[faction].index */
725
- factionIndex?: number;
726
- /** @deprecated use ExportFactions[faction].name */
727
- factionName?: string;
728
717
  secondaryFaction?: TFaction;
729
- /** @deprecated use ExportFactions[secondaryFaction].index */
730
- secondaryFactionIndex?: number;
731
- /** @deprecated use ExportFactions[secondaryFaction].name */
732
- secondaryFactionName?: string;
733
718
  minEnemyLevel: number;
734
719
  maxEnemyLevel: number;
735
720
  masteryExp: number;
@@ -950,8 +935,6 @@ export interface IUpgrade {
950
935
  modSetValues?: number[];
951
936
  subtype?: string;
952
937
  excludeFromCodex?: true;
953
- /** @deprecated check `ExportBoosterPacks["/Lotus/Types/BoosterPacks/ModFuserResult"].components`, instead */
954
- canBeTransmutation?: true;
955
938
  isStarter?: true;
956
939
  isFrivolous?: true;
957
940
  tradable?: boolean;
@@ -1103,8 +1086,6 @@ export interface IWeapon {
1103
1086
  primeOmegaAttenuation?: number;
1104
1087
  creditsCost?: number;
1105
1088
  platinumCost?: number;
1106
- /** @deprecated renamed to platinumCost */
1107
- premiumPrice?: number;
1108
1089
  excludeFromMarket?: true;
1109
1090
  variantType: "VT_NORMAL" | "VT_STARTER" | "VT_VARIANT" | "VT_SYNDICATE" | "VT_PRIME" | "VT_KUVA";
1110
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.105",
3
+ "version": "0.6.0",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "exports": {