Skip to content

Commit 908fd3e

Browse files
committed
Update CHANGELOG
1 parent e33a097 commit 908fd3e

4 files changed

Lines changed: 317 additions & 250 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212

1313
### Pending Fixed
1414

15+
### v14.20.0 - 2025-02-03
16+
17+
- :rocket: Permissive changes to UID Schema
18+
1519
### v14.19.0 - 2025-01-28
1620

1721
- :rocket: Update MissionChange Types

lib/types/types.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,11 @@ export const Status = Type.Object({
502502

503503
export const Uid = Type.Object({
504504
_attributes: Type.Object({
505-
Droid: Type.String()
505+
// TPC says this is required by ATAK-MIL 5.3.0.5 didn't include it
506+
Droid: Type.Optional(Type.String()),
507+
nett: Type.Optional(Type.String()),
508+
// Unknown, seen in the same 5.3.0.5 client
509+
alertable: Type.Optional(Type.Boolean())
506510
})
507511
})
508512

0 commit comments

Comments
 (0)