warframe-public-export-plus 0.5.104 → 0.5.106

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
@@ -219,6 +219,9 @@ export interface IChallenge {
219
219
 
220
220
  export interface IExportCodex {
221
221
  objects: Record<string, ICodexEntry>;
222
+ loreFragments: Record<string, ILoreFragment>;
223
+ songs: Record<string, ISongFragment>;
224
+ fighterFrames: Record<string, IFrameFighterFragment>;
222
225
  }
223
226
 
224
227
  export interface ICodexEntry {
@@ -229,6 +232,29 @@ export interface ICodexEntry {
229
232
  secret: boolean;
230
233
  }
231
234
 
235
+ export interface ILoreFragment {
236
+ name: string;
237
+ description?: string;
238
+ image?: string;
239
+ reqScans: number;
240
+ secretTransmission?: {
241
+ sound: string;
242
+ text: string;
243
+ };
244
+ }
245
+
246
+ export interface ISongFragment {
247
+ name: string;
248
+ song: string;
249
+ reqScans: number;
250
+ }
251
+
252
+ export interface IFrameFighterFragment {
253
+ name: string;
254
+ suit: string;
255
+ reqScans: number;
256
+ }
257
+
232
258
  export interface ICreditBundle {
233
259
  name: string;
234
260
  description?: string;
@@ -773,7 +799,7 @@ export interface IResource {
773
799
  icon: string;
774
800
  codexSecret: boolean;
775
801
  parentName: string;
776
- productCategory: "ShipDecorations" | "MiscItems" | "CrewShips" | "KubrowPetEggs" | "FusionTreasures" | "SupplyDrop" | "Ships";
802
+ productCategory: "ShipDecorations" | "MiscItems" | "CrewShips" | "FusionTreasures" | "SupplyDrop" | "Ships";
777
803
  excludeFromCodex?: true;
778
804
  showInInventory?: boolean;
779
805
  longDescription?: string;
@@ -1056,6 +1082,7 @@ export interface IPowersuit {
1056
1082
  maxLevelCap?: number;
1057
1083
  platinumCost?: number;
1058
1084
  excludeFromMarket?: true;
1085
+ introducedAt?: number;
1059
1086
  }
1060
1087
 
1061
1088
  export interface IWeapon {
@@ -1113,6 +1140,7 @@ export interface IWeapon {
1113
1140
  additionalItems?: string[];
1114
1141
  bayonetOtherWeaponType?: string;
1115
1142
  tradable: boolean;
1143
+ introducedAt?: number;
1116
1144
  }
1117
1145
 
1118
1146
  export interface IWeaponBehaviour {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "warframe-public-export-plus",
3
- "version": "0.5.104",
3
+ "version": "0.5.106",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "exports": {