@tak-ps/node-cot 5.0.2 → 5.0.3

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
+ ### v5.0.3
14
+
15
+ - :bug: `remarks._text` is optional
16
+
13
17
  ### v5.0.2
14
18
 
15
19
  - :bug: `remarks._attributes` is optional
@@ -327,9 +327,6 @@
327
327
  "type": "string"
328
328
  }
329
329
  },
330
- "required": [
331
- "_text"
332
- ],
333
330
  "type": "object"
334
331
  },
335
332
  "Status": {
package/dist/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/node-cot",
3
3
  "type": "module",
4
- "version": "5.0.2",
4
+ "version": "5.0.3",
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/schema.json CHANGED
@@ -327,9 +327,6 @@
327
327
  "type": "string"
328
328
  }
329
329
  },
330
- "required": [
331
- "_text"
332
- ],
333
330
  "type": "object"
334
331
  },
335
332
  "Status": {
package/lib/types.ts CHANGED
@@ -92,7 +92,7 @@ export interface Remarks {
92
92
  time?: string;
93
93
  [k: string]: string | undefined;
94
94
  }
95
- _text: string;
95
+ _text?: string;
96
96
  }
97
97
 
98
98
  export interface PrecisionLocation {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/node-cot",
3
3
  "type": "module",
4
- "version": "5.0.2",
4
+ "version": "5.0.3",
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",