warframe-worldstate-parser 5.3.0 → 5.3.1

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.
Files changed (45) hide show
  1. package/dist/ExternalMission-Be-eX0Pc.d.mts +95 -0
  2. package/dist/{index-BK5W1mAn.d.mts → index-BiofND5v.d.mts} +21 -18
  3. package/dist/lib/WorldState.d.mts +2 -2
  4. package/dist/lib/WorldState.mjs +16 -11
  5. package/dist/lib/models/Alert.d.mts +1 -1
  6. package/dist/lib/models/Archimedea.d.mts +2 -2
  7. package/dist/lib/models/Archimedea.mjs +79 -9
  8. package/dist/lib/models/ChallengeInstance.d.mts +1 -1
  9. package/dist/lib/models/ConclaveChallenge.d.mts +1 -1
  10. package/dist/lib/models/DailyDeal.d.mts +1 -1
  11. package/dist/lib/models/DarkSector.d.mts +1 -1
  12. package/dist/lib/models/DuviriCycle.d.mts +1 -1
  13. package/dist/lib/models/DuviriCycle.mjs +3 -3
  14. package/dist/lib/models/Fissure.d.mts +1 -1
  15. package/dist/lib/models/FlashSale.d.mts +1 -1
  16. package/dist/lib/models/GlobalUpgrade.d.mts +1 -1
  17. package/dist/lib/models/Invasion.d.mts +1 -1
  18. package/dist/lib/models/Kuva.d.mts +1 -1
  19. package/dist/lib/models/Kuva.mjs +8 -5
  20. package/dist/lib/models/Mission.d.mts +1 -1
  21. package/dist/lib/models/Reward.d.mts +1 -1
  22. package/dist/lib/models/SentientOutpost.d.mts +1 -1
  23. package/dist/lib/models/Simaris.d.mts +1 -1
  24. package/dist/lib/models/Sortie.d.mts +1 -1
  25. package/dist/lib/models/SortieVariant.d.mts +1 -1
  26. package/dist/lib/models/SyndicateJob.d.mts +1 -1
  27. package/dist/lib/models/SyndicateMission.d.mts +1 -1
  28. package/dist/lib/models/Tmp.d.mts +2 -2
  29. package/dist/lib/models/Tmp.mjs +59 -11
  30. package/dist/lib/models/VoidTrader.d.mts +1 -1
  31. package/dist/lib/models/VoidTraderItem.d.mts +1 -1
  32. package/dist/lib/models/VoidTraderSchedule.d.mts +1 -1
  33. package/dist/lib/models/WeeklyChallenge.d.mts +1 -1
  34. package/dist/lib/models/WorldEvent.d.mts +1 -1
  35. package/dist/lib/models/index.d.mts +2 -2
  36. package/dist/lib/models/index.mjs +3 -3
  37. package/dist/lib/supporting/DuviriChoice.d.mts +1 -1
  38. package/dist/lib/supporting/ExternalMission.d.mts +2 -2
  39. package/dist/lib/supporting/ExternalMission.mjs +228 -1
  40. package/dist/lib/supporting/index.d.mts +3 -3
  41. package/dist/lib/supporting/index.mjs +2 -1
  42. package/dist/main.d.mts +3 -3
  43. package/dist/main.mjs +7 -6
  44. package/package.json +1 -1
  45. package/dist/ExternalMission-DaE_6ccj.d.mts +0 -49
@@ -0,0 +1,95 @@
1
+ //#region lib/supporting/ExternalMission.d.ts
2
+ /**
3
+ * External mission data retrieved from https://10o.io/kuvalog.json
4
+ */
5
+ declare class ExternalMission {
6
+ id: string;
7
+ /**
8
+ * start time
9
+ */
10
+ activation: Date;
11
+ /**
12
+ * end timer
13
+ */
14
+ expiry: Date;
15
+ /**
16
+ * formatted node name with planet
17
+ */
18
+ node: string;
19
+ /**
20
+ * Untranslated formatted node name with planet
21
+ */
22
+ nodeKey: string;
23
+ /**
24
+ * Enemy on tile
25
+ */
26
+ enemy?: string;
27
+ /**
28
+ * Mission type of node
29
+ */
30
+ type: string;
31
+ /**
32
+ * Untranslated node mission type
33
+ */
34
+ typeKey: string;
35
+ /**
36
+ * whether or not the tile requires archwing
37
+ */
38
+ archwing: boolean;
39
+ /**
40
+ * whether or not the tile requires sharkwing
41
+ */
42
+ sharkwing: boolean;
43
+ /**
44
+ * Whether the mission is expired at the time of creation or not
45
+ */
46
+ expired: boolean;
47
+ }
48
+ /**
49
+ * External mission data retrieved from https://10o.io/kuvalog.json - Class version for OpenAPI
50
+ */
51
+ declare class ExternalMissionClass implements ExternalMission {
52
+ id: string;
53
+ /**
54
+ * start time
55
+ */
56
+ activation: Date;
57
+ /**
58
+ * end timer
59
+ */
60
+ expiry: Date;
61
+ /**
62
+ * formatted node name with planet
63
+ */
64
+ node: string;
65
+ /**
66
+ * Untranslated formatted node name with planet
67
+ */
68
+ nodeKey: string;
69
+ /**
70
+ * Enemy on tile
71
+ */
72
+ enemy?: string;
73
+ /**
74
+ * Mission type of node
75
+ */
76
+ type: string;
77
+ /**
78
+ * Untranslated node mission type
79
+ */
80
+ typeKey: string;
81
+ /**
82
+ * whether or not the tile requires archwing
83
+ */
84
+ archwing: boolean;
85
+ /**
86
+ * whether or not the tile requires sharkwing
87
+ */
88
+ sharkwing: boolean;
89
+ /**
90
+ * Whether the mission is expired at the time of creation or not
91
+ */
92
+ expired: boolean;
93
+ }
94
+ //#endregion
95
+ export { ExternalMissionClass as n, ExternalMission as t };
@@ -1,5 +1,5 @@
1
1
  import { t as Dependency } from "./Dependency-CtryMjKU.mjs";
2
- import { t as ExternalMission } from "./ExternalMission-DaE_6ccj.mjs";
2
+ import { t as ExternalMission } from "./ExternalMission-Be-eX0Pc.mjs";
3
3
  import { t as RewardType } from "./RewardTypes-DMW4dYrB.mjs";
4
4
  import { n as Identifier, r as WorldStateObject, t as BaseContentObject } from "./WorldStateObject-BgeCocs9.mjs";
5
5
  import { n as RawDarkSectorBattle, t as DarkSectorBattle } from "./DarkSectorBattle-DwaJyGk3.mjs";
@@ -287,13 +287,18 @@ interface RawArchimedeaMission {
287
287
  missionType: string;
288
288
  difficulties: Difficulty[];
289
289
  }
290
- interface ArchimedeaMissionDifficultyRisk {
290
+ declare class ArchimedeaMissionDifficultyRisk {
291
291
  key: string;
292
292
  name: string;
293
293
  description: string;
294
294
  isHard: boolean;
295
295
  }
296
- interface ArchimedeaMissionDifficulty {
296
+ declare class ArchimedeaMissionDifficulty {
297
+ key: string;
298
+ name: string;
299
+ description: string;
300
+ }
301
+ declare class PersonalModifier {
297
302
  key: string;
298
303
  name: string;
299
304
  description: string;
@@ -334,11 +339,7 @@ declare class Archimedea extends WorldStateObject {
334
339
  /**
335
340
  * Modifiers applied to the player
336
341
  */
337
- personalModifiers: {
338
- key: string;
339
- name: string;
340
- description: string;
341
- }[];
342
+ personalModifiers: PersonalModifier[];
342
343
  /**
343
344
  * @param data Data to parse
344
345
  * @param locale Locale to translate to
@@ -1343,18 +1344,20 @@ interface InitialTmp {
1343
1344
  QTCCFloofCount?: number;
1344
1345
  QTCCFloofLimit?: number;
1345
1346
  }
1347
+ declare class FaceoffBonus {
1348
+ activation: Date;
1349
+ expiry: Date;
1350
+ next: Date;
1351
+ }
1352
+ declare class QuestProgress {
1353
+ count: number;
1354
+ goal: number;
1355
+ }
1346
1356
  declare class Tmp {
1347
1357
  sentientOutposts: SentientOutpost;
1348
1358
  kinepage: Kinepage;
1349
- faceoffBonus?: {
1350
- activation: Date;
1351
- expiry: Date;
1352
- next: Date;
1353
- };
1354
- questToConquerCancer?: {
1355
- count: number;
1356
- goal: number;
1357
- };
1359
+ faceoffBonus?: FaceoffBonus;
1360
+ questToConquerCancer?: QuestProgress;
1358
1361
  constructor(json: string, deps?: Dependency);
1359
1362
  }
1360
1363
  //#endregion
@@ -1719,4 +1722,4 @@ declare class WorldEvent extends WorldStateObject {
1719
1722
  get expired(): boolean;
1720
1723
  }
1721
1724
  //#endregion
1722
- export { Difficulty as $, InvasionParticipant as A, DefenderInfo as B, SortieVariant as C, SentientOutpost as D, OutpostMission as E, RawFlashSale as F, RawChallenge as G, DailyDeal as H, Fissure as I, Archimedea as J, ChallengeInstance as K, RawFissure as L, GlobalUpgrade as M, RawGlobalUpgrade as N, Kuva as O, FlashSale as P, DeepArchimedea as Q, DuviriCycle as R, RawSortieVariant as S, Simaris as T, RawDailyDeal as U, RawDarkSector as V, ConclaveChallenge as W, ArchimedeaMissionDifficulty as X, ArchimedeaMission as Y, ArchimedeaMissionDifficultyRisk as Z, RawSyndicateJob as _, WorldEvent as a, RawMission as at, RawSortie as b, RawVoidTrader as c, getItemType as ct, RawVoidTraderItem as d, RawChoice as dt, RawArchimedea as et, VoidTraderItem as f, SyndicateMission as g, RawSyndicateMission as h, RawWorldEvent as i, Mission as it, RawInvasion as j, Invasion as k, VoidTrader as l, getItemTypeFull as lt, Tmp as m, InterimStep as n, Alert as nt, RawWeeklyChallenge as o, RawReward as ot, InitialTmp as p, RawChallengeInstance as q, ProgressStep as r, RawAlert as rt, WeeklyChallenge as s, Reward as st, InterimRewardMessage as t, RawArchimedeaMission as tt, VoidTraderSchedule as u, DuviriChoice as ut, RewardDrop as v, LibraryInfo as w, Sortie as x, SyndicateJob as y, DarkSector as z };
1725
+ export { ArchimedeaMissionDifficultyRisk as $, Kuva as A, DuviriCycle as B, Sortie as C, Simaris as D, LibraryInfo as E, RawGlobalUpgrade as F, RawDailyDeal as G, DefenderInfo as H, FlashSale as I, ChallengeInstance as J, ConclaveChallenge as K, RawFlashSale as L, InvasionParticipant as M, RawInvasion as N, OutpostMission as O, GlobalUpgrade as P, ArchimedeaMissionDifficulty as Q, Fissure as R, RawSortie as S, SortieVariant as T, RawDarkSector as U, DarkSector as V, DailyDeal as W, Archimedea as X, RawChallengeInstance as Y, ArchimedeaMission as Z, RawSyndicateMission as _, WorldEvent as a, Alert as at, RewardDrop as b, RawVoidTrader as c, RawMission as ct, RawVoidTraderItem as d, getItemType as dt, DeepArchimedea as et, VoidTraderItem as f, getItemTypeFull as ft, Tmp as g, QuestProgress as h, RawWorldEvent as i, RawArchimedeaMission as it, Invasion as j, SentientOutpost as k, VoidTrader as l, RawReward as lt, InitialTmp as m, RawChoice as mt, InterimStep as n, PersonalModifier as nt, RawWeeklyChallenge as o, RawAlert as ot, FaceoffBonus as p, DuviriChoice as pt, RawChallenge as q, ProgressStep as r, RawArchimedea as rt, WeeklyChallenge as s, Mission as st, InterimRewardMessage as t, Difficulty as tt, VoidTraderSchedule as u, Reward as ut, SyndicateMission as v, RawSortieVariant as w, SyndicateJob as x, RawSyndicateJob as y, RawFissure as z };
@@ -1,6 +1,6 @@
1
1
  import { t as Dependency } from "../Dependency-CtryMjKU.mjs";
2
- import { D as SentientOutpost, F as RawFlashSale, G as RawChallenge, H as DailyDeal, I as Fissure, J as Archimedea, L as RawFissure, M as GlobalUpgrade, N as RawGlobalUpgrade, P as FlashSale, R as DuviriCycle, T as Simaris, U as RawDailyDeal, V as RawDarkSector, W as ConclaveChallenge, a as WorldEvent, b as RawSortie, c as RawVoidTrader, dt as RawChoice, et as RawArchimedea, g as SyndicateMission, h as RawSyndicateMission, i as RawWorldEvent, j as RawInvasion, k as Invasion, l as VoidTrader, nt as Alert, o as RawWeeklyChallenge, rt as RawAlert, s as WeeklyChallenge, w as LibraryInfo, x as Sortie, z as DarkSector } from "../index-BK5W1mAn.mjs";
3
- import { t as ExternalMission } from "../ExternalMission-DaE_6ccj.mjs";
2
+ import { B as DuviriCycle, C as Sortie, D as Simaris, E as LibraryInfo, F as RawGlobalUpgrade, G as RawDailyDeal, I as FlashSale, K as ConclaveChallenge, L as RawFlashSale, N as RawInvasion, P as GlobalUpgrade, R as Fissure, S as RawSortie, U as RawDarkSector, V as DarkSector, W as DailyDeal, X as Archimedea, _ as RawSyndicateMission, a as WorldEvent, at as Alert, c as RawVoidTrader, i as RawWorldEvent, j as Invasion, k as SentientOutpost, l as VoidTrader, mt as RawChoice, o as RawWeeklyChallenge, ot as RawAlert, q as RawChallenge, rt as RawArchimedea, s as WeeklyChallenge, v as SyndicateMission, z as RawFissure } from "../index-BiofND5v.mjs";
3
+ import { t as ExternalMission } from "../ExternalMission-Be-eX0Pc.mjs";
4
4
  import { r as WorldStateObject, t as BaseContentObject } from "../WorldStateObject-BgeCocs9.mjs";
5
5
  import { r as RawCalender, t as Calendar } from "../Calendar-C99Wr_NC.mjs";
6
6
  import { t as CetusCycle } from "../CetusCycle-sbJ_VYPO.mjs";
@@ -8,12 +8,15 @@ import { ConclaveChallenge } from "./models/ConclaveChallenge.mjs";
8
8
  import { ConstructionProgress } from "./models/ConstructionProgress.mjs";
9
9
  import { DailyDeal } from "./models/DailyDeal.mjs";
10
10
  import { DarkSector } from "./models/DarkSector.mjs";
11
+ import { DuviriChoice } from "./supporting/DuviriChoice.mjs";
11
12
  import { DuviriCycle } from "./models/DuviriCycle.mjs";
12
13
  import { EarthCycle } from "./models/EarthCycle.mjs";
13
14
  import { Fissure } from "./models/Fissure.mjs";
14
15
  import { FlashSale } from "./models/FlashSale.mjs";
15
16
  import { GlobalUpgrade } from "./models/GlobalUpgrade.mjs";
16
17
  import { Invasion } from "./models/Invasion.mjs";
18
+ import { ExternalMission } from "./supporting/ExternalMission.mjs";
19
+ import "./supporting/index.mjs";
17
20
  import { Kuva } from "./models/Kuva.mjs";
18
21
  import { News } from "./models/News.mjs";
19
22
  import { Nightwave } from "./models/Nightwave.mjs";
@@ -21,8 +24,6 @@ import { PersistentEnemy } from "./models/PersistentEnemy.mjs";
21
24
  import { Simaris } from "./models/Simaris.mjs";
22
25
  import { Sortie } from "./models/Sortie.mjs";
23
26
  import { SteelPathOfferings } from "./models/SteelPathOffering.mjs";
24
- import { DuviriChoice } from "./supporting/DuviriChoice.mjs";
25
- import "./supporting/index.mjs";
26
27
  import { SyndicateMission } from "./models/SyndicateMission.mjs";
27
28
  import { Tmp } from "./models/Tmp.mjs";
28
29
  import { VallisCycle } from "./models/VallisCycle.mjs";
@@ -38,7 +39,7 @@ import { IsArray, IsDate, IsOptional, IsString, ValidateNested } from "class-val
38
39
  import wsData from "warframe-worldstate-data";
39
40
  import { parseDate } from "warframe-worldstate-data/utilities";
40
41
  //#region lib/WorldState.ts
41
- var _ref, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7, _ref8, _ref9, _ref10, _ref11, _ref12, _ref13, _ref14, _ref15, _ref16, _ref17;
42
+ var _ref, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7, _ref8, _ref9, _ref10, _ref11, _ref12, _ref13, _ref14, _ref15, _ref16, _ref17, _ref18;
42
43
  const { sortie } = wsData;
43
44
  const safeArray = (arr) => arr ?? [];
44
45
  const safeObj = (obj) => obj ?? {};
@@ -585,19 +586,23 @@ __decorate([
585
586
  __decorate([
586
587
  ApiPropertyOptional({
587
588
  description: "Kuva siphon/flood missions",
588
- type: "array"
589
+ type: [ExternalMission]
589
590
  }),
590
591
  IsOptional(),
591
592
  IsArray(),
593
+ ValidateNested({ each: true }),
594
+ Type(() => ExternalMission),
592
595
  __decorateMetadata("design:type", Array)
593
596
  ], WorldState.prototype, "kuva", void 0);
594
597
  __decorate([
595
598
  ApiPropertyOptional({
596
599
  description: "Current arbitration mission",
597
- type: "object"
600
+ type: ExternalMission
598
601
  }),
599
602
  IsOptional(),
600
- __decorateMetadata("design:type", Object)
603
+ ValidateNested(),
604
+ Type(() => ExternalMission),
605
+ __decorateMetadata("design:type", typeof (_ref13 = typeof ExternalMission !== "undefined" && ExternalMission) === "function" ? _ref13 : Object)
601
606
  ], WorldState.prototype, "arbitration", void 0);
602
607
  __decorate([ApiProperty({ description: "Sentient anomaly outposts" }), __decorateMetadata("design:type", Object)], WorldState.prototype, "sentientOutposts", void 0);
603
608
  __decorate([
@@ -607,7 +612,7 @@ __decorate([
607
612
  }),
608
613
  ValidateNested(),
609
614
  Type(() => SteelPathOfferings),
610
- __decorateMetadata("design:type", typeof (_ref13 = typeof SteelPathOfferings !== "undefined" && SteelPathOfferings) === "function" ? _ref13 : Object)
615
+ __decorateMetadata("design:type", typeof (_ref14 = typeof SteelPathOfferings !== "undefined" && SteelPathOfferings) === "function" ? _ref14 : Object)
611
616
  ], WorldState.prototype, "steelPath", void 0);
612
617
  __decorate([
613
618
  ApiProperty({
@@ -616,7 +621,7 @@ __decorate([
616
621
  }),
617
622
  ValidateNested(),
618
623
  Type(() => VoidTrader),
619
- __decorateMetadata("design:type", typeof (_ref14 = typeof VoidTrader !== "undefined" && VoidTrader) === "function" ? _ref14 : Object)
624
+ __decorateMetadata("design:type", typeof (_ref15 = typeof VoidTrader !== "undefined" && VoidTrader) === "function" ? _ref15 : Object)
620
625
  ], WorldState.prototype, "vaultTrader", void 0);
621
626
  __decorate([
622
627
  ApiProperty({
@@ -625,7 +630,7 @@ __decorate([
625
630
  }),
626
631
  ValidateNested(),
627
632
  Type(() => Sortie),
628
- __decorateMetadata("design:type", typeof (_ref15 = typeof Sortie !== "undefined" && Sortie) === "function" ? _ref15 : Object)
633
+ __decorateMetadata("design:type", typeof (_ref16 = typeof Sortie !== "undefined" && Sortie) === "function" ? _ref16 : Object)
629
634
  ], WorldState.prototype, "archonHunt", void 0);
630
635
  __decorate([
631
636
  ApiProperty({
@@ -634,7 +639,7 @@ __decorate([
634
639
  }),
635
640
  ValidateNested(),
636
641
  Type(() => DuviriCycle),
637
- __decorateMetadata("design:type", typeof (_ref16 = typeof DuviriCycle !== "undefined" && DuviriCycle) === "function" ? _ref16 : Object)
642
+ __decorateMetadata("design:type", typeof (_ref17 = typeof DuviriCycle !== "undefined" && DuviriCycle) === "function" ? _ref17 : Object)
638
643
  ], WorldState.prototype, "duviriCycle", void 0);
639
644
  __decorate([ApiProperty({ description: "Kinepage message" }), __decorateMetadata("design:type", Object)], WorldState.prototype, "kinepage", void 0);
640
645
  __decorate([
@@ -654,7 +659,7 @@ __decorate([
654
659
  }),
655
660
  ValidateNested(),
656
661
  Type(() => Calendar),
657
- __decorateMetadata("design:type", typeof (_ref17 = typeof Calendar !== "undefined" && Calendar) === "function" ? _ref17 : Object)
662
+ __decorateMetadata("design:type", typeof (_ref18 = typeof Calendar !== "undefined" && Calendar) === "function" ? _ref18 : Object)
658
663
  ], WorldState.prototype, "calendar", void 0);
659
664
  var WorldState_default = async (json, deps) => WorldState.build(json, deps);
660
665
  //#endregion
@@ -1,2 +1,2 @@
1
- import { nt as Alert, rt as RawAlert } from "../../index-BK5W1mAn.mjs";
1
+ import { at as Alert, ot as RawAlert } from "../../index-BiofND5v.mjs";
2
2
  export { Alert, RawAlert };
@@ -1,2 +1,2 @@
1
- import { $ as Difficulty, J as Archimedea, Q as DeepArchimedea, X as ArchimedeaMissionDifficulty, Y as ArchimedeaMission, Z as ArchimedeaMissionDifficultyRisk, et as RawArchimedea, tt as RawArchimedeaMission } from "../../index-BK5W1mAn.mjs";
2
- export { Archimedea, ArchimedeaMission, ArchimedeaMissionDifficulty, ArchimedeaMissionDifficultyRisk, DeepArchimedea, Difficulty, RawArchimedea, RawArchimedeaMission };
1
+ import { $ as ArchimedeaMissionDifficultyRisk, Q as ArchimedeaMissionDifficulty, X as Archimedea, Z as ArchimedeaMission, et as DeepArchimedea, it as RawArchimedeaMission, nt as PersonalModifier, rt as RawArchimedea, tt as Difficulty } from "../../index-BiofND5v.mjs";
2
+ export { Archimedea, ArchimedeaMission, ArchimedeaMissionDifficulty, ArchimedeaMissionDifficultyRisk, DeepArchimedea, Difficulty, PersonalModifier, RawArchimedea, RawArchimedeaMission };
@@ -3,9 +3,76 @@ import { WorldStateObject } from "./WorldStateObject.mjs";
3
3
  import { createHash } from "node:crypto";
4
4
  import { ApiProperty } from "@nestjs/swagger";
5
5
  import { Type } from "class-transformer";
6
- import { IsArray, IsString, ValidateNested } from "class-validator";
6
+ import { IsArray, IsBoolean, IsString, ValidateNested } from "class-validator";
7
7
  import { faction, languageDesc, languageString, missionType } from "warframe-worldstate-data/utilities";
8
8
  //#region lib/models/Archimedea.ts
9
+ var _ref;
10
+ var ArchimedeaMissionDifficultyRisk = class {
11
+ key;
12
+ name;
13
+ description;
14
+ isHard;
15
+ };
16
+ __decorate([
17
+ ApiProperty({ description: "Risk untranslated key" }),
18
+ IsString(),
19
+ __decorateMetadata("design:type", String)
20
+ ], ArchimedeaMissionDifficultyRisk.prototype, "key", void 0);
21
+ __decorate([
22
+ ApiProperty({ description: "Risk name" }),
23
+ IsString(),
24
+ __decorateMetadata("design:type", String)
25
+ ], ArchimedeaMissionDifficultyRisk.prototype, "name", void 0);
26
+ __decorate([
27
+ ApiProperty({ description: "Risk description" }),
28
+ IsString(),
29
+ __decorateMetadata("design:type", String)
30
+ ], ArchimedeaMissionDifficultyRisk.prototype, "description", void 0);
31
+ __decorate([
32
+ ApiProperty({ description: "Whether this is a hard mode risk" }),
33
+ IsBoolean(),
34
+ __decorateMetadata("design:type", Boolean)
35
+ ], ArchimedeaMissionDifficultyRisk.prototype, "isHard", void 0);
36
+ var ArchimedeaMissionDifficulty = class {
37
+ key;
38
+ name;
39
+ description;
40
+ };
41
+ __decorate([
42
+ ApiProperty({ description: "Deviation untranslated key" }),
43
+ IsString(),
44
+ __decorateMetadata("design:type", String)
45
+ ], ArchimedeaMissionDifficulty.prototype, "key", void 0);
46
+ __decorate([
47
+ ApiProperty({ description: "Deviation name" }),
48
+ IsString(),
49
+ __decorateMetadata("design:type", String)
50
+ ], ArchimedeaMissionDifficulty.prototype, "name", void 0);
51
+ __decorate([
52
+ ApiProperty({ description: "Deviation description" }),
53
+ IsString(),
54
+ __decorateMetadata("design:type", String)
55
+ ], ArchimedeaMissionDifficulty.prototype, "description", void 0);
56
+ var PersonalModifier = class {
57
+ key;
58
+ name;
59
+ description;
60
+ };
61
+ __decorate([
62
+ ApiProperty({ description: "Modifier untranslated key" }),
63
+ IsString(),
64
+ __decorateMetadata("design:type", String)
65
+ ], PersonalModifier.prototype, "key", void 0);
66
+ __decorate([
67
+ ApiProperty({ description: "Modifier name" }),
68
+ IsString(),
69
+ __decorateMetadata("design:type", String)
70
+ ], PersonalModifier.prototype, "name", void 0);
71
+ __decorate([
72
+ ApiProperty({ description: "Modifier description" }),
73
+ IsString(),
74
+ __decorateMetadata("design:type", String)
75
+ ], PersonalModifier.prototype, "description", void 0);
9
76
  /**
10
77
  * An Archimedea mission with risk and deviations
11
78
  */
@@ -69,19 +136,22 @@ __decorate([
69
136
  __decorateMetadata("design:type", String)
70
137
  ], ArchimedeaMission.prototype, "missionTypeKey", void 0);
71
138
  __decorate([
72
- ApiProperty({ description: "Deviation difficulty information" }),
139
+ ApiProperty({
140
+ description: "Deviation difficulty information",
141
+ type: () => ArchimedeaMissionDifficulty
142
+ }),
73
143
  ValidateNested(),
74
- Type(() => Object),
75
- __decorateMetadata("design:type", Object)
144
+ Type(() => ArchimedeaMissionDifficulty),
145
+ __decorateMetadata("design:type", typeof (_ref = typeof ArchimedeaMissionDifficulty !== "undefined" && ArchimedeaMissionDifficulty) === "function" ? _ref : Object)
76
146
  ], ArchimedeaMission.prototype, "deviation", void 0);
77
147
  __decorate([
78
148
  ApiProperty({
79
149
  description: "List of risks for this mission",
80
- type: [Object]
150
+ type: [ArchimedeaMissionDifficultyRisk]
81
151
  }),
82
152
  IsArray(),
83
153
  ValidateNested({ each: true }),
84
- Type(() => Object),
154
+ Type(() => ArchimedeaMissionDifficultyRisk),
85
155
  __decorateMetadata("design:type", Array)
86
156
  ], ArchimedeaMission.prototype, "risks", void 0);
87
157
  var Archimedea = class extends WorldStateObject {
@@ -152,12 +222,12 @@ __decorate([
152
222
  __decorate([
153
223
  ApiProperty({
154
224
  description: "Modifiers applied to the player",
155
- type: [Object]
225
+ type: [PersonalModifier]
156
226
  }),
157
227
  IsArray(),
158
228
  ValidateNested({ each: true }),
159
- Type(() => Object),
229
+ Type(() => PersonalModifier),
160
230
  __decorateMetadata("design:type", Array)
161
231
  ], Archimedea.prototype, "personalModifiers", void 0);
162
232
  //#endregion
163
- export { Archimedea, ArchimedeaMission };
233
+ export { Archimedea, ArchimedeaMission, ArchimedeaMissionDifficulty, ArchimedeaMissionDifficultyRisk, PersonalModifier };
@@ -1,2 +1,2 @@
1
- import { K as ChallengeInstance, q as RawChallengeInstance } from "../../index-BK5W1mAn.mjs";
1
+ import { J as ChallengeInstance, Y as RawChallengeInstance } from "../../index-BiofND5v.mjs";
2
2
  export { ChallengeInstance, RawChallengeInstance };
@@ -1,2 +1,2 @@
1
- import { G as RawChallenge, W as ConclaveChallenge } from "../../index-BK5W1mAn.mjs";
1
+ import { K as ConclaveChallenge, q as RawChallenge } from "../../index-BiofND5v.mjs";
2
2
  export { ConclaveChallenge, RawChallenge };
@@ -1,2 +1,2 @@
1
- import { H as DailyDeal, U as RawDailyDeal } from "../../index-BK5W1mAn.mjs";
1
+ import { G as RawDailyDeal, W as DailyDeal } from "../../index-BiofND5v.mjs";
2
2
  export { DailyDeal, RawDailyDeal };
@@ -1,2 +1,2 @@
1
- import { B as DefenderInfo, V as RawDarkSector, z as DarkSector } from "../../index-BK5W1mAn.mjs";
1
+ import { H as DefenderInfo, U as RawDarkSector, V as DarkSector } from "../../index-BiofND5v.mjs";
2
2
  export { DarkSector, DefenderInfo, RawDarkSector };
@@ -1,2 +1,2 @@
1
- import { R as DuviriCycle } from "../../index-BK5W1mAn.mjs";
1
+ import { B as DuviriCycle } from "../../index-BiofND5v.mjs";
2
2
  export { DuviriCycle };
@@ -1,5 +1,6 @@
1
1
  import { n as __decorateMetadata, t as __decorate } from "../../decorate-CltSo06_.mjs";
2
2
  import { WorldStateObject } from "./WorldStateObject.mjs";
3
+ import { DuviriChoice } from "../supporting/DuviriChoice.mjs";
3
4
  import { ApiProperty } from "@nestjs/swagger";
4
5
  import { Type } from "class-transformer";
5
6
  import { IsArray, IsString, ValidateNested } from "class-validator";
@@ -63,12 +64,11 @@ __decorate([
63
64
  __decorate([
64
65
  ApiProperty({
65
66
  description: "Choice options for this Cycle",
66
- type: "array",
67
- items: { type: "object" }
67
+ type: [DuviriChoice]
68
68
  }),
69
69
  IsArray(),
70
70
  ValidateNested({ each: true }),
71
- Type(() => Object),
71
+ Type(() => DuviriChoice),
72
72
  __decorateMetadata("design:type", Array)
73
73
  ], DuviriCycle.prototype, "choices", void 0);
74
74
  //#endregion
@@ -1,2 +1,2 @@
1
- import { I as Fissure, L as RawFissure } from "../../index-BK5W1mAn.mjs";
1
+ import { R as Fissure, z as RawFissure } from "../../index-BiofND5v.mjs";
2
2
  export { Fissure, RawFissure };
@@ -1,2 +1,2 @@
1
- import { F as RawFlashSale, P as FlashSale } from "../../index-BK5W1mAn.mjs";
1
+ import { I as FlashSale, L as RawFlashSale } from "../../index-BiofND5v.mjs";
2
2
  export { FlashSale, RawFlashSale };
@@ -1,2 +1,2 @@
1
- import { M as GlobalUpgrade, N as RawGlobalUpgrade } from "../../index-BK5W1mAn.mjs";
1
+ import { F as RawGlobalUpgrade, P as GlobalUpgrade } from "../../index-BiofND5v.mjs";
2
2
  export { GlobalUpgrade, RawGlobalUpgrade };
@@ -1,2 +1,2 @@
1
- import { A as InvasionParticipant, j as RawInvasion, k as Invasion } from "../../index-BK5W1mAn.mjs";
1
+ import { M as InvasionParticipant, N as RawInvasion, j as Invasion } from "../../index-BiofND5v.mjs";
2
2
  export { Invasion, InvasionParticipant, RawInvasion };
@@ -1,2 +1,2 @@
1
- import { O as Kuva } from "../../index-BK5W1mAn.mjs";
1
+ import { A as Kuva } from "../../index-BiofND5v.mjs";
2
2
  export { Kuva };
@@ -1,10 +1,13 @@
1
1
  import { n as __decorateMetadata, t as __decorate } from "../../decorate-CltSo06_.mjs";
2
+ import { ExternalMission } from "../supporting/ExternalMission.mjs";
3
+ import "../supporting/index.mjs";
2
4
  import { createHash } from "node:crypto";
3
5
  import { ApiPropertyOptional } from "@nestjs/swagger";
4
6
  import { Type } from "class-transformer";
5
7
  import { IsArray, IsOptional, ValidateNested } from "class-validator";
6
8
  import { node, nodeMissionType } from "warframe-worldstate-data/utilities";
7
9
  //#region lib/models/Kuva.ts
10
+ var _ref;
8
11
  const HOURS_2 = 72e5;
9
12
  /**
10
13
  * Truncate time for a semlar-provided mission
@@ -88,23 +91,23 @@ var Kuva = class {
88
91
  __decorate([
89
92
  ApiPropertyOptional({
90
93
  description: "Currently active kuva missions",
91
- type: [Object]
94
+ type: [ExternalMission]
92
95
  }),
93
96
  IsOptional(),
94
97
  IsArray(),
95
98
  ValidateNested({ each: true }),
96
- Type(() => Object),
99
+ Type(() => ExternalMission),
97
100
  __decorateMetadata("design:type", Array)
98
101
  ], Kuva.prototype, "kuva", void 0);
99
102
  __decorate([
100
103
  ApiPropertyOptional({
101
104
  description: "Current arbitration mission",
102
- type: Object
105
+ type: ExternalMission
103
106
  }),
104
107
  IsOptional(),
105
108
  ValidateNested(),
106
- Type(() => Object),
107
- __decorateMetadata("design:type", Object)
109
+ Type(() => ExternalMission),
110
+ __decorateMetadata("design:type", typeof (_ref = typeof ExternalMission !== "undefined" && ExternalMission) === "function" ? _ref : Object)
108
111
  ], Kuva.prototype, "arbitration", void 0);
109
112
  //#endregion
110
113
  export { Kuva };
@@ -1,2 +1,2 @@
1
- import { at as RawMission, it as Mission } from "../../index-BK5W1mAn.mjs";
1
+ import { ct as RawMission, st as Mission } from "../../index-BiofND5v.mjs";
2
2
  export { Mission, RawMission };
@@ -1,2 +1,2 @@
1
- import { ct as getItemType, lt as getItemTypeFull, ot as RawReward, st as Reward } from "../../index-BK5W1mAn.mjs";
1
+ import { dt as getItemType, ft as getItemTypeFull, lt as RawReward, ut as Reward } from "../../index-BiofND5v.mjs";
2
2
  export { RawReward, Reward, getItemType, getItemTypeFull };
@@ -1,2 +1,2 @@
1
- import { D as SentientOutpost, E as OutpostMission } from "../../index-BK5W1mAn.mjs";
1
+ import { O as OutpostMission, k as SentientOutpost } from "../../index-BiofND5v.mjs";
2
2
  export { OutpostMission, SentientOutpost };
@@ -1,2 +1,2 @@
1
- import { T as Simaris, w as LibraryInfo } from "../../index-BK5W1mAn.mjs";
1
+ import { D as Simaris, E as LibraryInfo } from "../../index-BiofND5v.mjs";
2
2
  export { LibraryInfo, Simaris };
@@ -1,2 +1,2 @@
1
- import { b as RawSortie, x as Sortie } from "../../index-BK5W1mAn.mjs";
1
+ import { C as Sortie, S as RawSortie } from "../../index-BiofND5v.mjs";
2
2
  export { RawSortie, Sortie };
@@ -1,2 +1,2 @@
1
- import { C as SortieVariant, S as RawSortieVariant } from "../../index-BK5W1mAn.mjs";
1
+ import { T as SortieVariant, w as RawSortieVariant } from "../../index-BiofND5v.mjs";
2
2
  export { RawSortieVariant, SortieVariant };
@@ -1,2 +1,2 @@
1
- import { _ as RawSyndicateJob, v as RewardDrop, y as SyndicateJob } from "../../index-BK5W1mAn.mjs";
1
+ import { b as RewardDrop, x as SyndicateJob, y as RawSyndicateJob } from "../../index-BiofND5v.mjs";
2
2
  export { RawSyndicateJob, RewardDrop, SyndicateJob };
@@ -1,2 +1,2 @@
1
- import { g as SyndicateMission, h as RawSyndicateMission } from "../../index-BK5W1mAn.mjs";
1
+ import { _ as RawSyndicateMission, v as SyndicateMission } from "../../index-BiofND5v.mjs";
2
2
  export { RawSyndicateMission, SyndicateMission };
@@ -1,2 +1,2 @@
1
- import { m as Tmp, p as InitialTmp } from "../../index-BK5W1mAn.mjs";
2
- export { InitialTmp, Tmp };
1
+ import { g as Tmp, h as QuestProgress, m as InitialTmp, p as FaceoffBonus } from "../../index-BiofND5v.mjs";
2
+ export { FaceoffBonus, InitialTmp, QuestProgress, Tmp };
@@ -3,9 +3,57 @@ import { Kinepage } from "./Kinepage.mjs";
3
3
  import { SentientOutpost } from "./SentientOutpost.mjs";
4
4
  import { ApiProperty, ApiPropertyOptional } from "@nestjs/swagger";
5
5
  import { Type } from "class-transformer";
6
- import { IsOptional, ValidateNested } from "class-validator";
6
+ import { IsDate, IsInt, IsOptional, Min, ValidateNested } from "class-validator";
7
7
  //#region lib/models/Tmp.ts
8
- var _ref, _ref2;
8
+ var _ref, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7;
9
+ var FaceoffBonus = class {
10
+ activation;
11
+ expiry;
12
+ next;
13
+ };
14
+ __decorate([
15
+ ApiProperty({
16
+ description: "Faceoff bonus activation time",
17
+ type: Date
18
+ }),
19
+ IsDate(),
20
+ Type(() => Date),
21
+ __decorateMetadata("design:type", typeof (_ref = typeof Date !== "undefined" && Date) === "function" ? _ref : Object)
22
+ ], FaceoffBonus.prototype, "activation", void 0);
23
+ __decorate([
24
+ ApiProperty({
25
+ description: "Faceoff bonus expiry time",
26
+ type: Date
27
+ }),
28
+ IsDate(),
29
+ Type(() => Date),
30
+ __decorateMetadata("design:type", typeof (_ref2 = typeof Date !== "undefined" && Date) === "function" ? _ref2 : Object)
31
+ ], FaceoffBonus.prototype, "expiry", void 0);
32
+ __decorate([
33
+ ApiProperty({
34
+ description: "Next faceoff bonus time",
35
+ type: Date
36
+ }),
37
+ IsDate(),
38
+ Type(() => Date),
39
+ __decorateMetadata("design:type", typeof (_ref3 = typeof Date !== "undefined" && Date) === "function" ? _ref3 : Object)
40
+ ], FaceoffBonus.prototype, "next", void 0);
41
+ var QuestProgress = class {
42
+ count;
43
+ goal;
44
+ };
45
+ __decorate([
46
+ ApiProperty({ description: "Current progress count" }),
47
+ IsInt(),
48
+ Min(0),
49
+ __decorateMetadata("design:type", Number)
50
+ ], QuestProgress.prototype, "count", void 0);
51
+ __decorate([
52
+ ApiProperty({ description: "Goal target" }),
53
+ IsInt(),
54
+ Min(0),
55
+ __decorateMetadata("design:type", Number)
56
+ ], QuestProgress.prototype, "goal", void 0);
9
57
  var Tmp = class {
10
58
  sentientOutposts;
11
59
  kinepage;
@@ -36,7 +84,7 @@ __decorate([
36
84
  }),
37
85
  ValidateNested(),
38
86
  Type(() => SentientOutpost),
39
- __decorateMetadata("design:type", typeof (_ref = typeof SentientOutpost !== "undefined" && SentientOutpost) === "function" ? _ref : Object)
87
+ __decorateMetadata("design:type", typeof (_ref4 = typeof SentientOutpost !== "undefined" && SentientOutpost) === "function" ? _ref4 : Object)
40
88
  ], Tmp.prototype, "sentientOutposts", void 0);
41
89
  __decorate([
42
90
  ApiProperty({
@@ -45,27 +93,27 @@ __decorate([
45
93
  }),
46
94
  ValidateNested(),
47
95
  Type(() => Kinepage),
48
- __decorateMetadata("design:type", typeof (_ref2 = typeof Kinepage !== "undefined" && Kinepage) === "function" ? _ref2 : Object)
96
+ __decorateMetadata("design:type", typeof (_ref5 = typeof Kinepage !== "undefined" && Kinepage) === "function" ? _ref5 : Object)
49
97
  ], Tmp.prototype, "kinepage", void 0);
50
98
  __decorate([
51
99
  ApiPropertyOptional({
52
100
  description: "Faceoff bonus information",
53
- type: Object
101
+ type: () => FaceoffBonus
54
102
  }),
55
103
  IsOptional(),
56
104
  ValidateNested(),
57
- Type(() => Object),
58
- __decorateMetadata("design:type", Object)
105
+ Type(() => FaceoffBonus),
106
+ __decorateMetadata("design:type", typeof (_ref6 = typeof FaceoffBonus !== "undefined" && FaceoffBonus) === "function" ? _ref6 : Object)
59
107
  ], Tmp.prototype, "faceoffBonus", void 0);
60
108
  __decorate([
61
109
  ApiPropertyOptional({
62
110
  description: "Quest to Conquer Cancer progress",
63
- type: Object
111
+ type: () => QuestProgress
64
112
  }),
65
113
  IsOptional(),
66
114
  ValidateNested(),
67
- Type(() => Object),
68
- __decorateMetadata("design:type", Object)
115
+ Type(() => QuestProgress),
116
+ __decorateMetadata("design:type", typeof (_ref7 = typeof QuestProgress !== "undefined" && QuestProgress) === "function" ? _ref7 : Object)
69
117
  ], Tmp.prototype, "questToConquerCancer", void 0);
70
118
  //#endregion
71
- export { Tmp };
119
+ export { FaceoffBonus, QuestProgress, Tmp };
@@ -1,2 +1,2 @@
1
- import { c as RawVoidTrader, l as VoidTrader } from "../../index-BK5W1mAn.mjs";
1
+ import { c as RawVoidTrader, l as VoidTrader } from "../../index-BiofND5v.mjs";
2
2
  export { RawVoidTrader, VoidTrader };
@@ -1,2 +1,2 @@
1
- import { d as RawVoidTraderItem, f as VoidTraderItem } from "../../index-BK5W1mAn.mjs";
1
+ import { d as RawVoidTraderItem, f as VoidTraderItem } from "../../index-BiofND5v.mjs";
2
2
  export { RawVoidTraderItem, VoidTraderItem };
@@ -1,2 +1,2 @@
1
- import { u as VoidTraderSchedule } from "../../index-BK5W1mAn.mjs";
1
+ import { u as VoidTraderSchedule } from "../../index-BiofND5v.mjs";
2
2
  export { VoidTraderSchedule };
@@ -1,2 +1,2 @@
1
- import { o as RawWeeklyChallenge, s as WeeklyChallenge } from "../../index-BK5W1mAn.mjs";
1
+ import { o as RawWeeklyChallenge, s as WeeklyChallenge } from "../../index-BiofND5v.mjs";
2
2
  export { RawWeeklyChallenge, WeeklyChallenge };
@@ -1,2 +1,2 @@
1
- import { a as WorldEvent, i as RawWorldEvent, n as InterimStep, r as ProgressStep, t as InterimRewardMessage } from "../../index-BK5W1mAn.mjs";
1
+ import { a as WorldEvent, i as RawWorldEvent, n as InterimStep, r as ProgressStep, t as InterimRewardMessage } from "../../index-BiofND5v.mjs";
2
2
  export { InterimRewardMessage, InterimStep, ProgressStep, RawWorldEvent, WorldEvent };
@@ -1,4 +1,4 @@
1
- import { $ as Difficulty, A as InvasionParticipant, B as DefenderInfo, C as SortieVariant, D as SentientOutpost, E as OutpostMission, F as RawFlashSale, G as RawChallenge, H as DailyDeal, I as Fissure, J as Archimedea, K as ChallengeInstance, L as RawFissure, M as GlobalUpgrade, N as RawGlobalUpgrade, O as Kuva, P as FlashSale, Q as DeepArchimedea, R as DuviriCycle, S as RawSortieVariant, T as Simaris, U as RawDailyDeal, V as RawDarkSector, W as ConclaveChallenge, X as ArchimedeaMissionDifficulty, Y as ArchimedeaMission, Z as ArchimedeaMissionDifficultyRisk, _ as RawSyndicateJob, a as WorldEvent, at as RawMission, b as RawSortie, c as RawVoidTrader, ct as getItemType, d as RawVoidTraderItem, et as RawArchimedea, f as VoidTraderItem, g as SyndicateMission, h as RawSyndicateMission, i as RawWorldEvent, it as Mission, j as RawInvasion, k as Invasion, l as VoidTrader, lt as getItemTypeFull, m as Tmp, n as InterimStep, nt as Alert, o as RawWeeklyChallenge, ot as RawReward, p as InitialTmp, q as RawChallengeInstance, r as ProgressStep, rt as RawAlert, s as WeeklyChallenge, st as Reward, t as InterimRewardMessage, tt as RawArchimedeaMission, u as VoidTraderSchedule, v as RewardDrop, w as LibraryInfo, x as Sortie, y as SyndicateJob, z as DarkSector } from "../../index-BK5W1mAn.mjs";
1
+ import { $ as ArchimedeaMissionDifficultyRisk, A as Kuva, B as DuviriCycle, C as Sortie, D as Simaris, E as LibraryInfo, F as RawGlobalUpgrade, G as RawDailyDeal, H as DefenderInfo, I as FlashSale, J as ChallengeInstance, K as ConclaveChallenge, L as RawFlashSale, M as InvasionParticipant, N as RawInvasion, O as OutpostMission, P as GlobalUpgrade, Q as ArchimedeaMissionDifficulty, R as Fissure, S as RawSortie, T as SortieVariant, U as RawDarkSector, V as DarkSector, W as DailyDeal, X as Archimedea, Y as RawChallengeInstance, Z as ArchimedeaMission, _ as RawSyndicateMission, a as WorldEvent, at as Alert, b as RewardDrop, c as RawVoidTrader, ct as RawMission, d as RawVoidTraderItem, dt as getItemType, et as DeepArchimedea, f as VoidTraderItem, ft as getItemTypeFull, g as Tmp, h as QuestProgress, i as RawWorldEvent, it as RawArchimedeaMission, j as Invasion, k as SentientOutpost, l as VoidTrader, lt as RawReward, m as InitialTmp, n as InterimStep, nt as PersonalModifier, o as RawWeeklyChallenge, ot as RawAlert, p as FaceoffBonus, q as RawChallenge, r as ProgressStep, rt as RawArchimedea, s as WeeklyChallenge, st as Mission, t as InterimRewardMessage, tt as Difficulty, u as VoidTraderSchedule, ut as Reward, v as SyndicateMission, w as RawSortieVariant, x as SyndicateJob, y as RawSyndicateJob, z as RawFissure } from "../../index-BiofND5v.mjs";
2
2
  import { n as Identifier, r as WorldStateObject, t as BaseContentObject } from "../../WorldStateObject-BgeCocs9.mjs";
3
3
  import { i as RawDay, n as DayEvent, r as RawCalender, t as Calendar } from "../../Calendar-C99Wr_NC.mjs";
4
4
  import { n as CurrentCetusCycle, t as CetusCycle } from "../../CetusCycle-sbJ_VYPO.mjs";
@@ -15,4 +15,4 @@ import { n as RawPersistentEnemy, t as PersistentEnemy } from "../../PersistentE
15
15
  import { n as SteelPathOfferings, t as Incursion } from "../../SteelPathOffering-K2Ji4d5c.mjs";
16
16
  import { t as VallisCycle } from "../../VallisCycle-BTYgGev7.mjs";
17
17
  import { n as ZarimanCycle, t as CurrentZarimanCycle } from "../../ZarimanCycle-D4YCSLmR.mjs";
18
- export { Alert, Archimedea, ArchimedeaMission, ArchimedeaMissionDifficulty, ArchimedeaMissionDifficultyRisk, BaseContentObject, Calendar, CambionCycle, CetusCycle, ChallengeInstance, ConclaveChallenge, ConstructionProgress, CurrentCetusCycle, CurrentZarimanCycle, DailyDeal, DarkSector, DarkSectorBattle, DayEvent, DeepArchimedea, DefenderInfo, Difficulty, DuviriCycle, EarthCycle, EarthCycleType, Fissure, FlashSale, GlobalUpgrade, Identifier, Incursion, InitialTmp, InterimRewardMessage, InterimStep, Invasion, InvasionParticipant, Kinepage, Kuva, LibraryInfo, MidrathCycle, Mission, News, Nightwave, NightwaveChallenge, OutpostMission, PersistentEnemy, ProgressStep, RawAlert, RawArchimedea, RawArchimedeaMission, RawCalender, RawChallenge, RawChallengeInstance, RawDailyDeal, RawDarkSector, RawDarkSectorBattle, RawDay, RawFissure, RawFlashSale, RawGlobalUpgrade, RawInvasion, RawMission, RawNews, RawNightwave, RawNightwaveChallenge, RawPersistentEnemy, RawReward, RawSortie, RawSortieVariant, RawSyndicateJob, RawSyndicateMission, RawVoidTrader, RawVoidTraderItem, RawWeeklyChallenge, RawWorldEvent, Reward, RewardDrop, SentientOutpost, Simaris, Sortie, SortieVariant, SteelPathOfferings, SyndicateJob, SyndicateMission, Tmp, VallisCycle, VoidTrader, VoidTraderItem, VoidTraderSchedule, WeeklyChallenge, WorldEvent, WorldStateObject, ZarimanCycle, getItemType, getItemTypeFull };
18
+ export { Alert, Archimedea, ArchimedeaMission, ArchimedeaMissionDifficulty, ArchimedeaMissionDifficultyRisk, BaseContentObject, Calendar, CambionCycle, CetusCycle, ChallengeInstance, ConclaveChallenge, ConstructionProgress, CurrentCetusCycle, CurrentZarimanCycle, DailyDeal, DarkSector, DarkSectorBattle, DayEvent, DeepArchimedea, DefenderInfo, Difficulty, DuviriCycle, EarthCycle, EarthCycleType, FaceoffBonus, Fissure, FlashSale, GlobalUpgrade, Identifier, Incursion, InitialTmp, InterimRewardMessage, InterimStep, Invasion, InvasionParticipant, Kinepage, Kuva, LibraryInfo, MidrathCycle, Mission, News, Nightwave, NightwaveChallenge, OutpostMission, PersistentEnemy, PersonalModifier, ProgressStep, QuestProgress, RawAlert, RawArchimedea, RawArchimedeaMission, RawCalender, RawChallenge, RawChallengeInstance, RawDailyDeal, RawDarkSector, RawDarkSectorBattle, RawDay, RawFissure, RawFlashSale, RawGlobalUpgrade, RawInvasion, RawMission, RawNews, RawNightwave, RawNightwaveChallenge, RawPersistentEnemy, RawReward, RawSortie, RawSortieVariant, RawSyndicateJob, RawSyndicateMission, RawVoidTrader, RawVoidTraderItem, RawWeeklyChallenge, RawWorldEvent, Reward, RewardDrop, SentientOutpost, Simaris, Sortie, SortieVariant, SteelPathOfferings, SyndicateJob, SyndicateMission, Tmp, VallisCycle, VoidTrader, VoidTraderItem, VoidTraderSchedule, WeeklyChallenge, WorldEvent, WorldStateObject, ZarimanCycle, getItemType, getItemTypeFull };
@@ -2,7 +2,7 @@ import { Reward, getItemType, getItemTypeFull } from "./Reward.mjs";
2
2
  import { Mission } from "./Mission.mjs";
3
3
  import { WorldStateObject } from "./WorldStateObject.mjs";
4
4
  import { Alert } from "./Alert.mjs";
5
- import { Archimedea, ArchimedeaMission } from "./Archimedea.mjs";
5
+ import { Archimedea, ArchimedeaMission, ArchimedeaMissionDifficulty, ArchimedeaMissionDifficultyRisk, PersonalModifier } from "./Archimedea.mjs";
6
6
  import { Calendar, DayEvent } from "./Calendar.mjs";
7
7
  import { CambionCycle } from "./CambionCycle.mjs";
8
8
  import { CetusCycle } from "./CetusCycle.mjs";
@@ -32,7 +32,7 @@ import { Sortie } from "./Sortie.mjs";
32
32
  import { SteelPathOfferings } from "./SteelPathOffering.mjs";
33
33
  import { SyndicateJob } from "./SyndicateJob.mjs";
34
34
  import { SyndicateMission } from "./SyndicateMission.mjs";
35
- import { Tmp } from "./Tmp.mjs";
35
+ import { FaceoffBonus, QuestProgress, Tmp } from "./Tmp.mjs";
36
36
  import { VallisCycle } from "./VallisCycle.mjs";
37
37
  import { VoidTraderItem } from "./VoidTraderItem.mjs";
38
38
  import { VoidTraderSchedule } from "./VoidTraderSchedule.mjs";
@@ -40,4 +40,4 @@ import { VoidTrader } from "./VoidTrader.mjs";
40
40
  import { WeeklyChallenge } from "./WeeklyChallenge.mjs";
41
41
  import { WorldEvent } from "./WorldEvent.mjs";
42
42
  import { ZarimanCycle } from "./ZarimanCycle.mjs";
43
- export { Alert, Archimedea, ArchimedeaMission, Calendar, CambionCycle, CetusCycle, ChallengeInstance, ConclaveChallenge, ConstructionProgress, DailyDeal, DarkSector, DarkSectorBattle, DayEvent, DuviriCycle, EarthCycle, Fissure, FlashSale, GlobalUpgrade, Invasion, Kinepage, Kuva, MidrathCycle, Mission, News, Nightwave, NightwaveChallenge, PersistentEnemy, Reward, SentientOutpost, Simaris, Sortie, SortieVariant, SteelPathOfferings, SyndicateJob, SyndicateMission, Tmp, VallisCycle, VoidTrader, VoidTraderItem, VoidTraderSchedule, WeeklyChallenge, WorldEvent, WorldStateObject, ZarimanCycle, getItemType, getItemTypeFull };
43
+ export { Alert, Archimedea, ArchimedeaMission, ArchimedeaMissionDifficulty, ArchimedeaMissionDifficultyRisk, Calendar, CambionCycle, CetusCycle, ChallengeInstance, ConclaveChallenge, ConstructionProgress, DailyDeal, DarkSector, DarkSectorBattle, DayEvent, DuviriCycle, EarthCycle, FaceoffBonus, Fissure, FlashSale, GlobalUpgrade, Invasion, Kinepage, Kuva, MidrathCycle, Mission, News, Nightwave, NightwaveChallenge, PersistentEnemy, PersonalModifier, QuestProgress, Reward, SentientOutpost, Simaris, Sortie, SortieVariant, SteelPathOfferings, SyndicateJob, SyndicateMission, Tmp, VallisCycle, VoidTrader, VoidTraderItem, VoidTraderSchedule, WeeklyChallenge, WorldEvent, WorldStateObject, ZarimanCycle, getItemType, getItemTypeFull };
@@ -1,2 +1,2 @@
1
- import { dt as RawChoice, ut as DuviriChoice } from "../../index-BK5W1mAn.mjs";
1
+ import { mt as RawChoice, pt as DuviriChoice } from "../../index-BiofND5v.mjs";
2
2
  export { DuviriChoice, RawChoice };
@@ -1,2 +1,2 @@
1
- import { t as ExternalMission } from "../../ExternalMission-DaE_6ccj.mjs";
2
- export { ExternalMission };
1
+ import { n as ExternalMissionClass, t as ExternalMission } from "../../ExternalMission-Be-eX0Pc.mjs";
2
+ export { ExternalMission, ExternalMissionClass };
@@ -1 +1,228 @@
1
- export {};
1
+ import { n as __decorateMetadata, t as __decorate } from "../../decorate-CltSo06_.mjs";
2
+ import { ApiProperty, ApiPropertyOptional } from "@nestjs/swagger";
3
+ import { Type } from "class-transformer";
4
+ import { IsBoolean, IsDate, IsOptional, IsString } from "class-validator";
5
+ //#region lib/supporting/ExternalMission.ts
6
+ var _ref, _ref2, _ref3, _ref4;
7
+ /**
8
+ * External mission data retrieved from https://10o.io/kuvalog.json
9
+ */
10
+ var ExternalMission = class {
11
+ id;
12
+ /**
13
+ * start time
14
+ */
15
+ activation;
16
+ /**
17
+ * end timer
18
+ */
19
+ expiry;
20
+ /**
21
+ * formatted node name with planet
22
+ */
23
+ node;
24
+ /**
25
+ * Untranslated formatted node name with planet
26
+ */
27
+ nodeKey;
28
+ /**
29
+ * Enemy on tile
30
+ */
31
+ enemy;
32
+ /**
33
+ * Mission type of node
34
+ */
35
+ type;
36
+ /**
37
+ * Untranslated node mission type
38
+ */
39
+ typeKey;
40
+ /**
41
+ * whether or not the tile requires archwing
42
+ */
43
+ archwing;
44
+ /**
45
+ * whether or not the tile requires sharkwing
46
+ */
47
+ sharkwing;
48
+ /**
49
+ * Whether the mission is expired at the time of creation or not
50
+ */
51
+ expired;
52
+ };
53
+ __decorate([
54
+ ApiProperty({ description: "Mission ID" }),
55
+ IsString(),
56
+ __decorateMetadata("design:type", String)
57
+ ], ExternalMission.prototype, "id", void 0);
58
+ __decorate([
59
+ ApiProperty({
60
+ description: "Start time",
61
+ type: Date
62
+ }),
63
+ IsDate(),
64
+ Type(() => Date),
65
+ __decorateMetadata("design:type", typeof (_ref = typeof Date !== "undefined" && Date) === "function" ? _ref : Object)
66
+ ], ExternalMission.prototype, "activation", void 0);
67
+ __decorate([
68
+ ApiProperty({
69
+ description: "End time",
70
+ type: Date
71
+ }),
72
+ IsDate(),
73
+ Type(() => Date),
74
+ __decorateMetadata("design:type", typeof (_ref2 = typeof Date !== "undefined" && Date) === "function" ? _ref2 : Object)
75
+ ], ExternalMission.prototype, "expiry", void 0);
76
+ __decorate([
77
+ ApiProperty({ description: "Formatted node name with planet" }),
78
+ IsString(),
79
+ __decorateMetadata("design:type", String)
80
+ ], ExternalMission.prototype, "node", void 0);
81
+ __decorate([
82
+ ApiProperty({ description: "Untranslated formatted node name with planet" }),
83
+ IsString(),
84
+ __decorateMetadata("design:type", String)
85
+ ], ExternalMission.prototype, "nodeKey", void 0);
86
+ __decorate([
87
+ ApiPropertyOptional({ description: "Enemy on tile" }),
88
+ IsOptional(),
89
+ IsString(),
90
+ __decorateMetadata("design:type", String)
91
+ ], ExternalMission.prototype, "enemy", void 0);
92
+ __decorate([
93
+ ApiProperty({ description: "Mission type of node" }),
94
+ IsString(),
95
+ __decorateMetadata("design:type", String)
96
+ ], ExternalMission.prototype, "type", void 0);
97
+ __decorate([
98
+ ApiProperty({ description: "Untranslated node mission type" }),
99
+ IsString(),
100
+ __decorateMetadata("design:type", String)
101
+ ], ExternalMission.prototype, "typeKey", void 0);
102
+ __decorate([
103
+ ApiProperty({ description: "Whether or not the tile requires archwing" }),
104
+ IsBoolean(),
105
+ __decorateMetadata("design:type", Boolean)
106
+ ], ExternalMission.prototype, "archwing", void 0);
107
+ __decorate([
108
+ ApiProperty({ description: "Whether or not the tile requires sharkwing" }),
109
+ IsBoolean(),
110
+ __decorateMetadata("design:type", Boolean)
111
+ ], ExternalMission.prototype, "sharkwing", void 0);
112
+ __decorate([
113
+ ApiProperty({ description: "Whether the mission is expired at the time of creation or not" }),
114
+ IsBoolean(),
115
+ __decorateMetadata("design:type", Boolean)
116
+ ], ExternalMission.prototype, "expired", void 0);
117
+ /**
118
+ * External mission data retrieved from https://10o.io/kuvalog.json - Class version for OpenAPI
119
+ */
120
+ var ExternalMissionClass = class {
121
+ id;
122
+ /**
123
+ * start time
124
+ */
125
+ activation;
126
+ /**
127
+ * end timer
128
+ */
129
+ expiry;
130
+ /**
131
+ * formatted node name with planet
132
+ */
133
+ node;
134
+ /**
135
+ * Untranslated formatted node name with planet
136
+ */
137
+ nodeKey;
138
+ /**
139
+ * Enemy on tile
140
+ */
141
+ enemy;
142
+ /**
143
+ * Mission type of node
144
+ */
145
+ type;
146
+ /**
147
+ * Untranslated node mission type
148
+ */
149
+ typeKey;
150
+ /**
151
+ * whether or not the tile requires archwing
152
+ */
153
+ archwing;
154
+ /**
155
+ * whether or not the tile requires sharkwing
156
+ */
157
+ sharkwing;
158
+ /**
159
+ * Whether the mission is expired at the time of creation or not
160
+ */
161
+ expired;
162
+ };
163
+ __decorate([
164
+ ApiProperty({ description: "Mission ID" }),
165
+ IsString(),
166
+ __decorateMetadata("design:type", String)
167
+ ], ExternalMissionClass.prototype, "id", void 0);
168
+ __decorate([
169
+ ApiProperty({
170
+ description: "Start time",
171
+ type: Date
172
+ }),
173
+ IsDate(),
174
+ Type(() => Date),
175
+ __decorateMetadata("design:type", typeof (_ref3 = typeof Date !== "undefined" && Date) === "function" ? _ref3 : Object)
176
+ ], ExternalMissionClass.prototype, "activation", void 0);
177
+ __decorate([
178
+ ApiProperty({
179
+ description: "End time",
180
+ type: Date
181
+ }),
182
+ IsDate(),
183
+ Type(() => Date),
184
+ __decorateMetadata("design:type", typeof (_ref4 = typeof Date !== "undefined" && Date) === "function" ? _ref4 : Object)
185
+ ], ExternalMissionClass.prototype, "expiry", void 0);
186
+ __decorate([
187
+ ApiProperty({ description: "Formatted node name with planet" }),
188
+ IsString(),
189
+ __decorateMetadata("design:type", String)
190
+ ], ExternalMissionClass.prototype, "node", void 0);
191
+ __decorate([
192
+ ApiProperty({ description: "Untranslated formatted node name with planet" }),
193
+ IsString(),
194
+ __decorateMetadata("design:type", String)
195
+ ], ExternalMissionClass.prototype, "nodeKey", void 0);
196
+ __decorate([
197
+ ApiPropertyOptional({ description: "Enemy on tile" }),
198
+ IsOptional(),
199
+ IsString(),
200
+ __decorateMetadata("design:type", String)
201
+ ], ExternalMissionClass.prototype, "enemy", void 0);
202
+ __decorate([
203
+ ApiProperty({ description: "Mission type of node" }),
204
+ IsString(),
205
+ __decorateMetadata("design:type", String)
206
+ ], ExternalMissionClass.prototype, "type", void 0);
207
+ __decorate([
208
+ ApiProperty({ description: "Untranslated node mission type" }),
209
+ IsString(),
210
+ __decorateMetadata("design:type", String)
211
+ ], ExternalMissionClass.prototype, "typeKey", void 0);
212
+ __decorate([
213
+ ApiProperty({ description: "Whether or not the tile requires archwing" }),
214
+ IsBoolean(),
215
+ __decorateMetadata("design:type", Boolean)
216
+ ], ExternalMissionClass.prototype, "archwing", void 0);
217
+ __decorate([
218
+ ApiProperty({ description: "Whether or not the tile requires sharkwing" }),
219
+ IsBoolean(),
220
+ __decorateMetadata("design:type", Boolean)
221
+ ], ExternalMissionClass.prototype, "sharkwing", void 0);
222
+ __decorate([
223
+ ApiProperty({ description: "Whether the mission is expired at the time of creation or not" }),
224
+ IsBoolean(),
225
+ __decorateMetadata("design:type", Boolean)
226
+ ], ExternalMissionClass.prototype, "expired", void 0);
227
+ //#endregion
228
+ export { ExternalMission, ExternalMissionClass };
@@ -1,9 +1,9 @@
1
1
  import { n as SolnodeData, t as KuvaLogEntry } from "../../KuvaLogEntry-B0SaM7MX.mjs";
2
2
  import { t as Dependency } from "../../Dependency-CtryMjKU.mjs";
3
- import { dt as RawChoice, ut as DuviriChoice } from "../../index-BK5W1mAn.mjs";
4
- import { t as ExternalMission } from "../../ExternalMission-DaE_6ccj.mjs";
3
+ import { mt as RawChoice, pt as DuviriChoice } from "../../index-BiofND5v.mjs";
4
+ import { n as ExternalMissionClass, t as ExternalMission } from "../../ExternalMission-Be-eX0Pc.mjs";
5
5
  import { t as fetchProxy } from "../../FetchProxy-Bgoi37sM.mjs";
6
6
  import { n as deProxy, r as wfCdn, t as cdn } from "../../ImgCdn-By4Qj9kk.mjs";
7
7
  import { i as resources, n as auras, r as nightmare } from "../../RewardData-B5TstL-h.mjs";
8
8
  import { t as RewardType } from "../../RewardTypes-DMW4dYrB.mjs";
9
- export { Dependency, DuviriChoice, ExternalMission, KuvaLogEntry, RawChoice, RewardType, SolnodeData, auras, cdn, deProxy, fetchProxy, nightmare, resources, wfCdn };
9
+ export { Dependency, DuviriChoice, ExternalMission, ExternalMissionClass, KuvaLogEntry, RawChoice, RewardType, SolnodeData, auras, cdn, deProxy, fetchProxy, nightmare, resources, wfCdn };
@@ -2,5 +2,6 @@ import { cdn, deProxy, wfCdn } from "./ImgCdn.mjs";
2
2
  import { auras, nightmare, resources } from "./RewardData.mjs";
3
3
  import "./RewardTypes.mjs";
4
4
  import { DuviriChoice } from "./DuviriChoice.mjs";
5
+ import { ExternalMission, ExternalMissionClass } from "./ExternalMission.mjs";
5
6
  import { fetchProxy } from "./FetchProxy.mjs";
6
- export { DuviriChoice, auras, cdn, deProxy, fetchProxy, nightmare, resources, wfCdn };
7
+ export { DuviriChoice, ExternalMission, ExternalMissionClass, auras, cdn, deProxy, fetchProxy, nightmare, resources, wfCdn };
package/dist/main.d.mts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { n as SolnodeData, t as KuvaLogEntry } from "./KuvaLogEntry-B0SaM7MX.mjs";
2
2
  import { t as Dependency } from "./Dependency-CtryMjKU.mjs";
3
- import { $ as Difficulty, A as InvasionParticipant, B as DefenderInfo, C as SortieVariant, D as SentientOutpost, E as OutpostMission, F as RawFlashSale, G as RawChallenge, H as DailyDeal, I as Fissure, J as Archimedea, K as ChallengeInstance, L as RawFissure, M as GlobalUpgrade, N as RawGlobalUpgrade, O as Kuva, P as FlashSale, Q as DeepArchimedea, R as DuviriCycle, S as RawSortieVariant, T as Simaris, U as RawDailyDeal, V as RawDarkSector, W as ConclaveChallenge, X as ArchimedeaMissionDifficulty, Y as ArchimedeaMission, Z as ArchimedeaMissionDifficultyRisk, _ as RawSyndicateJob, a as WorldEvent, at as RawMission, b as RawSortie, c as RawVoidTrader, ct as getItemType, d as RawVoidTraderItem, dt as RawChoice, et as RawArchimedea, f as VoidTraderItem, g as SyndicateMission, h as RawSyndicateMission, i as RawWorldEvent, it as Mission, j as RawInvasion, k as Invasion, l as VoidTrader, lt as getItemTypeFull, m as Tmp, n as InterimStep, nt as Alert, o as RawWeeklyChallenge, ot as RawReward, p as InitialTmp, q as RawChallengeInstance, r as ProgressStep, rt as RawAlert, s as WeeklyChallenge, st as Reward, t as InterimRewardMessage, tt as RawArchimedeaMission, u as VoidTraderSchedule, ut as DuviriChoice, v as RewardDrop, w as LibraryInfo, x as Sortie, y as SyndicateJob, z as DarkSector } from "./index-BK5W1mAn.mjs";
4
- import { t as ExternalMission } from "./ExternalMission-DaE_6ccj.mjs";
3
+ import { $ as ArchimedeaMissionDifficultyRisk, A as Kuva, B as DuviriCycle, C as Sortie, D as Simaris, E as LibraryInfo, F as RawGlobalUpgrade, G as RawDailyDeal, H as DefenderInfo, I as FlashSale, J as ChallengeInstance, K as ConclaveChallenge, L as RawFlashSale, M as InvasionParticipant, N as RawInvasion, O as OutpostMission, P as GlobalUpgrade, Q as ArchimedeaMissionDifficulty, R as Fissure, S as RawSortie, T as SortieVariant, U as RawDarkSector, V as DarkSector, W as DailyDeal, X as Archimedea, Y as RawChallengeInstance, Z as ArchimedeaMission, _ as RawSyndicateMission, a as WorldEvent, at as Alert, b as RewardDrop, c as RawVoidTrader, ct as RawMission, d as RawVoidTraderItem, dt as getItemType, et as DeepArchimedea, f as VoidTraderItem, ft as getItemTypeFull, g as Tmp, h as QuestProgress, i as RawWorldEvent, it as RawArchimedeaMission, j as Invasion, k as SentientOutpost, l as VoidTrader, lt as RawReward, m as InitialTmp, mt as RawChoice, n as InterimStep, nt as PersonalModifier, o as RawWeeklyChallenge, ot as RawAlert, p as FaceoffBonus, pt as DuviriChoice, q as RawChallenge, r as ProgressStep, rt as RawArchimedea, s as WeeklyChallenge, st as Mission, t as InterimRewardMessage, tt as Difficulty, u as VoidTraderSchedule, ut as Reward, v as SyndicateMission, w as RawSortieVariant, x as SyndicateJob, y as RawSyndicateJob, z as RawFissure } from "./index-BiofND5v.mjs";
4
+ import { n as ExternalMissionClass, t as ExternalMission } from "./ExternalMission-Be-eX0Pc.mjs";
5
5
  import { t as fetchProxy } from "./FetchProxy-Bgoi37sM.mjs";
6
6
  import { n as deProxy, r as wfCdn, t as cdn } from "./ImgCdn-By4Qj9kk.mjs";
7
7
  import { i as resources, n as auras, r as nightmare } from "./RewardData-B5TstL-h.mjs";
@@ -23,4 +23,4 @@ import { n as SteelPathOfferings, t as Incursion } from "./SteelPathOffering-K2J
23
23
  import { t as VallisCycle } from "./VallisCycle-BTYgGev7.mjs";
24
24
  import { n as ZarimanCycle, t as CurrentZarimanCycle } from "./ZarimanCycle-D4YCSLmR.mjs";
25
25
  import { InitialWorldState, WorldState, parseArray, parseAsyncArray } from "./lib/WorldState.mjs";
26
- export { Alert, Archimedea, ArchimedeaMission, ArchimedeaMissionDifficulty, ArchimedeaMissionDifficultyRisk, BaseContentObject, Calendar, CambionCycle, CetusCycle, ChallengeInstance, ConclaveChallenge, ConstructionProgress, CurrentCetusCycle, CurrentZarimanCycle, DailyDeal, DarkSector, DarkSectorBattle, DayEvent, DeepArchimedea, DefenderInfo, Dependency, Difficulty, DuviriChoice, DuviriCycle, EarthCycle, EarthCycleType, ExternalMission, Fissure, FlashSale, GlobalUpgrade, Identifier, Incursion, InitialTmp, InitialWorldState, InterimRewardMessage, InterimStep, Invasion, InvasionParticipant, Kinepage, Kuva, KuvaLogEntry, LibraryInfo, MidrathCycle, Mission, News, Nightwave, NightwaveChallenge, OutpostMission, PersistentEnemy, ProgressStep, RawAlert, RawArchimedea, RawArchimedeaMission, RawCalender, RawChallenge, RawChallengeInstance, RawChoice, RawDailyDeal, RawDarkSector, RawDarkSectorBattle, RawDay, RawFissure, RawFlashSale, RawGlobalUpgrade, RawInvasion, RawMission, RawNews, RawNightwave, RawNightwaveChallenge, RawPersistentEnemy, RawReward, RawSortie, RawSortieVariant, RawSyndicateJob, RawSyndicateMission, RawVoidTrader, RawVoidTraderItem, RawWeeklyChallenge, RawWorldEvent, Reward, RewardDrop, RewardType, SentientOutpost, Simaris, SolnodeData, Sortie, SortieVariant, SteelPathOfferings, SyndicateJob, SyndicateMission, Tmp, VallisCycle, VoidTrader, VoidTraderItem, VoidTraderSchedule, WeeklyChallenge, WorldEvent, WorldState, WorldState as default, WorldStateObject, ZarimanCycle, auras, cdn, deProxy, fetchProxy, getItemType, getItemTypeFull, nightmare, parseArray, parseAsyncArray, resources, wfCdn };
26
+ export { Alert, Archimedea, ArchimedeaMission, ArchimedeaMissionDifficulty, ArchimedeaMissionDifficultyRisk, BaseContentObject, Calendar, CambionCycle, CetusCycle, ChallengeInstance, ConclaveChallenge, ConstructionProgress, CurrentCetusCycle, CurrentZarimanCycle, DailyDeal, DarkSector, DarkSectorBattle, DayEvent, DeepArchimedea, DefenderInfo, Dependency, Difficulty, DuviriChoice, DuviriCycle, EarthCycle, EarthCycleType, ExternalMission, ExternalMissionClass, FaceoffBonus, Fissure, FlashSale, GlobalUpgrade, Identifier, Incursion, InitialTmp, InitialWorldState, InterimRewardMessage, InterimStep, Invasion, InvasionParticipant, Kinepage, Kuva, KuvaLogEntry, LibraryInfo, MidrathCycle, Mission, News, Nightwave, NightwaveChallenge, OutpostMission, PersistentEnemy, PersonalModifier, ProgressStep, QuestProgress, RawAlert, RawArchimedea, RawArchimedeaMission, RawCalender, RawChallenge, RawChallengeInstance, RawChoice, RawDailyDeal, RawDarkSector, RawDarkSectorBattle, RawDay, RawFissure, RawFlashSale, RawGlobalUpgrade, RawInvasion, RawMission, RawNews, RawNightwave, RawNightwaveChallenge, RawPersistentEnemy, RawReward, RawSortie, RawSortieVariant, RawSyndicateJob, RawSyndicateMission, RawVoidTrader, RawVoidTraderItem, RawWeeklyChallenge, RawWorldEvent, Reward, RewardDrop, RewardType, SentientOutpost, Simaris, SolnodeData, Sortie, SortieVariant, SteelPathOfferings, SyndicateJob, SyndicateMission, Tmp, VallisCycle, VoidTrader, VoidTraderItem, VoidTraderSchedule, WeeklyChallenge, WorldEvent, WorldState, WorldState as default, WorldStateObject, ZarimanCycle, auras, cdn, deProxy, fetchProxy, getItemType, getItemTypeFull, nightmare, parseArray, parseAsyncArray, resources, wfCdn };
package/dist/main.mjs CHANGED
@@ -4,7 +4,7 @@ import { Reward, getItemType, getItemTypeFull } from "./lib/models/Reward.mjs";
4
4
  import { Mission } from "./lib/models/Mission.mjs";
5
5
  import { WorldStateObject } from "./lib/models/WorldStateObject.mjs";
6
6
  import { Alert } from "./lib/models/Alert.mjs";
7
- import { Archimedea, ArchimedeaMission } from "./lib/models/Archimedea.mjs";
7
+ import { Archimedea, ArchimedeaMission, ArchimedeaMissionDifficulty, ArchimedeaMissionDifficultyRisk, PersonalModifier } from "./lib/models/Archimedea.mjs";
8
8
  import { Calendar, DayEvent } from "./lib/models/Calendar.mjs";
9
9
  import { CambionCycle } from "./lib/models/CambionCycle.mjs";
10
10
  import { CetusCycle } from "./lib/models/CetusCycle.mjs";
@@ -14,6 +14,7 @@ import { ConstructionProgress } from "./lib/models/ConstructionProgress.mjs";
14
14
  import { DailyDeal } from "./lib/models/DailyDeal.mjs";
15
15
  import { DarkSectorBattle } from "./lib/models/DarkSectorBattle.mjs";
16
16
  import { DarkSector } from "./lib/models/DarkSector.mjs";
17
+ import { DuviriChoice } from "./lib/supporting/DuviriChoice.mjs";
17
18
  import { DuviriCycle } from "./lib/models/DuviriCycle.mjs";
18
19
  import { EarthCycle } from "./lib/models/EarthCycle.mjs";
19
20
  import { Fissure } from "./lib/models/Fissure.mjs";
@@ -21,6 +22,9 @@ import { FlashSale } from "./lib/models/FlashSale.mjs";
21
22
  import { GlobalUpgrade } from "./lib/models/GlobalUpgrade.mjs";
22
23
  import { Invasion } from "./lib/models/Invasion.mjs";
23
24
  import { Kinepage } from "./lib/models/Kinepage.mjs";
25
+ import { ExternalMission, ExternalMissionClass } from "./lib/supporting/ExternalMission.mjs";
26
+ import { fetchProxy } from "./lib/supporting/FetchProxy.mjs";
27
+ import "./lib/supporting/index.mjs";
24
28
  import { Kuva } from "./lib/models/Kuva.mjs";
25
29
  import { MidrathCycle } from "./lib/models/MidrathCycle.mjs";
26
30
  import { News } from "./lib/models/News.mjs";
@@ -32,12 +36,9 @@ import { Simaris } from "./lib/models/Simaris.mjs";
32
36
  import { SortieVariant } from "./lib/models/SortieVariant.mjs";
33
37
  import { Sortie } from "./lib/models/Sortie.mjs";
34
38
  import { SteelPathOfferings } from "./lib/models/SteelPathOffering.mjs";
35
- import { DuviriChoice } from "./lib/supporting/DuviriChoice.mjs";
36
- import { fetchProxy } from "./lib/supporting/FetchProxy.mjs";
37
- import "./lib/supporting/index.mjs";
38
39
  import { SyndicateJob } from "./lib/models/SyndicateJob.mjs";
39
40
  import { SyndicateMission } from "./lib/models/SyndicateMission.mjs";
40
- import { Tmp } from "./lib/models/Tmp.mjs";
41
+ import { FaceoffBonus, QuestProgress, Tmp } from "./lib/models/Tmp.mjs";
41
42
  import { VallisCycle } from "./lib/models/VallisCycle.mjs";
42
43
  import { VoidTraderItem } from "./lib/models/VoidTraderItem.mjs";
43
44
  import { VoidTraderSchedule } from "./lib/models/VoidTraderSchedule.mjs";
@@ -50,4 +51,4 @@ import { WorldState, parseArray, parseAsyncArray } from "./lib/WorldState.mjs";
50
51
  //#region main.ts
51
52
  var main_default = WorldState;
52
53
  //#endregion
53
- export { Alert, Archimedea, ArchimedeaMission, Calendar, CambionCycle, CetusCycle, ChallengeInstance, ConclaveChallenge, ConstructionProgress, DailyDeal, DarkSector, DarkSectorBattle, DayEvent, DuviriChoice, DuviriCycle, EarthCycle, Fissure, FlashSale, GlobalUpgrade, Invasion, Kinepage, Kuva, MidrathCycle, Mission, News, Nightwave, NightwaveChallenge, PersistentEnemy, Reward, SentientOutpost, Simaris, Sortie, SortieVariant, SteelPathOfferings, SyndicateJob, SyndicateMission, Tmp, VallisCycle, VoidTrader, VoidTraderItem, VoidTraderSchedule, WeeklyChallenge, WorldEvent, WorldState, WorldStateObject, ZarimanCycle, auras, cdn, deProxy, main_default as default, fetchProxy, getItemType, getItemTypeFull, nightmare, parseArray, parseAsyncArray, resources, wfCdn };
54
+ export { Alert, Archimedea, ArchimedeaMission, ArchimedeaMissionDifficulty, ArchimedeaMissionDifficultyRisk, Calendar, CambionCycle, CetusCycle, ChallengeInstance, ConclaveChallenge, ConstructionProgress, DailyDeal, DarkSector, DarkSectorBattle, DayEvent, DuviriChoice, DuviriCycle, EarthCycle, ExternalMission, ExternalMissionClass, FaceoffBonus, Fissure, FlashSale, GlobalUpgrade, Invasion, Kinepage, Kuva, MidrathCycle, Mission, News, Nightwave, NightwaveChallenge, PersistentEnemy, PersonalModifier, QuestProgress, Reward, SentientOutpost, Simaris, Sortie, SortieVariant, SteelPathOfferings, SyndicateJob, SyndicateMission, Tmp, VallisCycle, VoidTrader, VoidTraderItem, VoidTraderSchedule, WeeklyChallenge, WorldEvent, WorldState, WorldStateObject, ZarimanCycle, auras, cdn, deProxy, main_default as default, fetchProxy, getItemType, getItemTypeFull, nightmare, parseArray, parseAsyncArray, resources, wfCdn };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "warframe-worldstate-parser",
3
- "version": "5.3.0",
3
+ "version": "5.3.1",
4
4
  "description": "An Open parser for Warframe's Worldstate in Javascript",
5
5
  "keywords": [
6
6
  "warframe-worldstate",
@@ -1,49 +0,0 @@
1
- //#region lib/supporting/ExternalMission.d.ts
2
- /**
3
- * External mission data retrieved from https://10o.io/kuvalog.json
4
- */
5
- interface ExternalMission {
6
- id: string;
7
- /**
8
- * start time
9
- */
10
- activation: Date;
11
- /**
12
- * end timer
13
- */
14
- expiry: Date;
15
- /**
16
- * formatted node name with planet
17
- */
18
- node: string;
19
- /**
20
- * Untranslated formatted node name with planet
21
- */
22
- nodeKey: string;
23
- /**
24
- * Enemy on tile
25
- */
26
- enemy?: string;
27
- /**
28
- * Mission type of node
29
- */
30
- type: string;
31
- /**
32
- * Untranslated node mission type
33
- */
34
- typeKey: string;
35
- /**
36
- * whether or not the tile requires archwing
37
- */
38
- archwing: boolean;
39
- /**
40
- * whether or not the tile requires sharkwing
41
- */
42
- sharkwing: boolean;
43
- /**
44
- * Whether the mission is expired at the time of creation or not
45
- */
46
- expired: boolean;
47
- }
48
- //#endregion
49
- export { ExternalMission as t };