warframe-public-export-plus 0.2.4 → 0.2.5

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 {
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.5",
4
4
  "repository": "github:calamity-inc/warframe-public-export-plus"
5
5
  }