File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212
1313### Pending Fixed
1414
15+ ### v14.22.0 - 2025-02-07
16+
17+ - :rocket : Change isFederatedChange from ` String ` to ` Boolean ` to match API Definition
18+
1519### v14.21.0 - 2025-02-04
1620
1721- :rocket : Include more properties from MOBAC Basemap.xml
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ export const FeaturePropertyMissionLayer = Type.Object({
4141export const FeaturePropertyMissionChange = Type . Object ( {
4242 contentUid : Type . String ( ) ,
4343 creatorUid : Type . String ( ) ,
44- isFederatedChange : Type . String ( ) ,
44+ isFederatedChange : Type . Boolean ( ) ,
4545 missionName : Type . String ( ) ,
4646 timestamp : Type . String ( ) ,
4747 type : Type . String ( ) ,
Original file line number Diff line number Diff line change @@ -204,6 +204,10 @@ export const GenericText = Type.Object({
204204 _text : Type . String ( )
205205} )
206206
207+ export const GenericTextBoolean = Type . Object ( {
208+ _text : Type . Boolean ( )
209+ } )
210+
207211export const TrackAttributes = Type . Object ( {
208212 speed : Type . Optional ( Type . String ( ) ) ,
209213 course : Type . Optional ( Type . String ( ) ) ,
@@ -315,7 +319,7 @@ export const MissionChangeDetails = Type.Object({
315319export const MissionChange = Type . Object ( {
316320 contentUid : Type . Optional ( GenericText ) ,
317321 creatorUid : GenericOptionalText ,
318- isFederatedChange : GenericText ,
322+ isFederatedChange : GenericTextBoolean ,
319323 missionName : GenericText ,
320324 timestamp : GenericText ,
321325 type : GenericText ,
You can’t perform that action at this time.
0 commit comments