@tak-ps/node-cot 10.4.0 → 10.5.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.
package/CHANGELOG.md CHANGED
@@ -10,6 +10,10 @@
10
10
 
11
11
  ## Version History
12
12
 
13
+ ### v10.5.0
14
+
15
+ - :bug: Fix an instance of `a-f-g` cot type to `a-f-G`
16
+
13
17
  ### v10.4.0
14
18
 
15
19
  - :rocket: Merge attachments defined in DataPackage manifest with those defined via CoT `attachment_list` property
@@ -36,7 +36,7 @@ export const FeaturePropertyMission = Type.Object({
36
36
  });
37
37
  export const InputProperties = Type.Object({
38
38
  callsign: Type.Optional(Type.String({ default: 'UNKNOWN' })),
39
- type: Type.Optional(Type.String({ default: 'a-f-g' })),
39
+ type: Type.Optional(Type.String({ default: 'a-f-G' })),
40
40
  how: Type.Optional(Type.String()),
41
41
  time: Type.Optional(Type.Union([Type.String()])),
42
42
  start: Type.Optional(Type.Union([Type.String()])),
@@ -92,7 +92,7 @@ export const InputProperties = Type.Object({
92
92
  });
93
93
  export const Properties = Type.Object({
94
94
  callsign: Type.String({ default: 'UNKNOWN' }),
95
- type: Type.String({ default: 'a-f-g' }),
95
+ type: Type.String({ default: 'a-f-G' }),
96
96
  how: Type.String(),
97
97
  time: Type.String(),
98
98
  start: Type.String(),
package/dist/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/node-cot",
3
3
  "type": "module",
4
- "version": "10.4.0",
4
+ "version": "10.5.0",
5
5
  "description": "Lightweight JavaScript library for parsing and manipulating TAK messages",
6
6
  "author": "Nick Ingalls <nick@ingalls.ca>",
7
7
  "main": "dist/index.js",
package/lib/feature.ts CHANGED
@@ -55,7 +55,7 @@ export const FeaturePropertyMission = Type.Object({
55
55
 
56
56
  export const InputProperties = Type.Object({
57
57
  callsign: Type.Optional(Type.String({ default: 'UNKNOWN' })),
58
- type: Type.Optional(Type.String({ default: 'a-f-g' })),
58
+ type: Type.Optional(Type.String({ default: 'a-f-G' })),
59
59
  how: Type.Optional(Type.String()),
60
60
  time: Type.Optional(Type.Union([Type.String()])),
61
61
  start: Type.Optional(Type.Union([Type.String()])),
@@ -112,7 +112,7 @@ export const InputProperties = Type.Object({
112
112
 
113
113
  export const Properties = Type.Object({
114
114
  callsign: Type.String({ default: 'UNKNOWN' }),
115
- type: Type.String({ default: 'a-f-g' }),
115
+ type: Type.String({ default: 'a-f-G' }),
116
116
  how: Type.String(),
117
117
  time: Type.String(),
118
118
  start: Type.String(),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/node-cot",
3
3
  "type": "module",
4
- "version": "10.4.0",
4
+ "version": "10.5.0",
5
5
  "description": "Lightweight JavaScript library for parsing and manipulating TAK messages",
6
6
  "author": "Nick Ingalls <nick@ingalls.ca>",
7
7
  "main": "dist/index.js",