We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbb426c commit aae57c6Copy full SHA for aae57c6
2 files changed
CHANGELOG.md
@@ -12,6 +12,10 @@
12
13
### Pending Fixed
14
15
+### v14.9.1 - 2025-09-17
16
+
17
+- :bug: Relax Mission Change parsing to allow empty `details`
18
19
### v14.9.0 - 2025-09-17
20
21
- :bug: Relax Mission Change parsing to allow empty `creatorUid`
lib/types/types.ts
@@ -316,7 +316,7 @@ export const MissionChange = Type.Object({
316
missionName: GenericText,
317
timestamp: GenericText,
318
type: GenericText,
319
- details: MissionChangeDetails
+ details: Type.Optional(MissionChangeDetails)
320
})
321
322
export const MissionChanges = Type.Object({
0 commit comments