warframe-public-export-plus 0.2.4 → 0.2.6

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
@@ -174,11 +174,22 @@ export interface IIntrinsicRank {
174
174
 
175
175
  export interface IKey {
176
176
  name: string;
177
- description: string;
178
- icon: string;
177
+ description?: string;
178
+ icon?: string;
179
179
  parentName: string;
180
180
  codexSecret: boolean;
181
181
  excludeFromCodex?: boolean;
182
+ chainStages?: {
183
+ key?: string;
184
+ itemsToGiveWhenTriggered: string[];
185
+ }[];
186
+ rewards?: ({
187
+ rewardType: "RT_STORE_ITEM" | "RT_RECIPE" | "RT_RESOURCE";
188
+ itemType: string;
189
+ } | {
190
+ rewardType: "RT_CREDITS";
191
+ amount: number;
192
+ })[];
182
193
  }
183
194
 
184
195
  export interface IModSet {
@@ -284,13 +295,15 @@ export interface IRegion {
284
295
  secondaryFactionName?: string;
285
296
  minEnemyLevel: number;
286
297
  maxEnemyLevel: number;
287
- masteryExp?: number;
298
+ masteryExp: number;
299
+ rewardManifests: string[];
288
300
  darkSectorData?: {
289
301
  resourceBonus: number;
290
302
  xpBonus: number;
291
303
  weaponXpBonusFor: "Rifles" | "Melee" | "Shotguns" | "Pistols";
292
304
  weaponXpBonusVal: number;
293
305
  };
306
+ questReq?: string;
294
307
  }
295
308
 
296
309
  export interface IRelic {
@@ -332,6 +345,7 @@ export interface ISentinel {
332
345
  excludeFromCodex?: boolean;
333
346
  description: string;
334
347
  productCategory: "SpecialItems" | "KubrowPets" | "Sentinels";
348
+ defaultWeapon?: string;
335
349
  }
336
350
 
337
351
  export interface ISortieReward {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "warframe-public-export-plus",
3
- "version": "0.2.4",
3
+ "version": "0.2.6",
4
4
  "repository": "github:calamity-inc/warframe-public-export-plus"
5
5
  }