warframe-worldstate-data 2.15.0 → 2.16.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.
@@ -18845,5 +18845,14 @@
18845
18845
  "RegeneratingEnemies": {
18846
18846
  "value": "Hostile Regeneration",
18847
18847
  "desc": "Enemy health slowly regenerates."
18848
+ },
18849
+ "/Lotus/Types/Gameplay/NarmerSorties/ArchonCrystalBorealMythic": {
18850
+ "value": "Tauforged Azure Archon Shard"
18851
+ },
18852
+ "/Lotus/Types/Gameplay/NarmerSorties/ArchonCrystalNiraMythic": {
18853
+ "value": "Tauforged Amber Archon Shard"
18854
+ },
18855
+ "/Lotus/Types/Gameplay/NarmerSorties/ArchonCrystalAmarMythic": {
18856
+ "value": "Tauforged Crimson Archon Shard"
18848
18857
  }
18849
- }
18858
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "warframe-worldstate-data",
3
- "version": "2.15.0",
3
+ "version": "2.16.0",
4
4
  "description": "Warframe data for use with warframe-worldstate-parser",
5
5
  "keywords": [
6
6
  "warframe-worldstate",
package/safeImport.js CHANGED
@@ -6,7 +6,7 @@
6
6
  */
7
7
  const safeImport = async (path, fallback = {}) => {
8
8
  try {
9
- const mod = await import(path, path.includes('.json') ? { assert: { type: 'json' } } : {});
9
+ const mod = await import(path, path.includes('.json') ? { with: { type: 'json' } } : {});
10
10
  if (mod?.default) return mod.default;
11
11
  return mod;
12
12
  } catch (error) {