@tak-ps/node-cot 12.36.0 → 13.0.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/.github/workflows/doc.yml +1 -1
- package/.github/workflows/release.yml +3 -3
- package/.github/workflows/test.yml +4 -1
- package/CHANGELOG.md +9 -0
- package/README.md +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/lib/cot.js +7 -715
- package/dist/lib/cot.js.map +1 -1
- package/dist/lib/data-package.js +3 -2
- package/dist/lib/data-package.js.map +1 -1
- package/dist/lib/parser.js +742 -0
- package/dist/lib/parser.js.map +1 -0
- package/dist/lib/types/feature.js +4 -0
- package/dist/lib/types/feature.js.map +1 -1
- package/dist/lib/types/types.js +37 -17
- package/dist/lib/types/types.js.map +1 -1
- package/dist/lib/utils/util.js +5 -5
- package/dist/lib/utils/util.js.map +1 -1
- package/dist/package.json +4 -5
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/index.ts +1 -0
- package/lib/cot.ts +17 -848
- package/lib/data-package.ts +3 -2
- package/lib/parser.ts +906 -0
- package/lib/types/feature.ts +5 -0
- package/lib/types/types.ts +42 -17
- package/lib/utils/util.ts +5 -5
- package/package.json +4 -5
- package/tsconfig.json +0 -3
|
@@ -9,15 +9,15 @@ jobs:
|
|
|
9
9
|
build:
|
|
10
10
|
runs-on: ubuntu-latest
|
|
11
11
|
steps:
|
|
12
|
-
- uses: actions/checkout@
|
|
12
|
+
- uses: actions/checkout@v4
|
|
13
13
|
|
|
14
14
|
- name: Get tag
|
|
15
15
|
id: tag
|
|
16
16
|
uses: dawidd6/action-get-tag@v1
|
|
17
17
|
|
|
18
|
-
- uses: actions/setup-node@
|
|
18
|
+
- uses: actions/setup-node@v4
|
|
19
19
|
with:
|
|
20
|
-
node-version:
|
|
20
|
+
node-version: 24
|
|
21
21
|
registry-url: https://registry.npmjs.org/
|
|
22
22
|
|
|
23
23
|
- name: npm install
|
|
@@ -22,12 +22,15 @@ jobs:
|
|
|
22
22
|
|
|
23
23
|
- uses: actions/setup-node@v4
|
|
24
24
|
with:
|
|
25
|
-
node-version:
|
|
25
|
+
node-version: 24
|
|
26
26
|
registry-url: https://registry.npmjs.org/
|
|
27
27
|
|
|
28
28
|
- name: Install
|
|
29
29
|
run: npm install
|
|
30
30
|
|
|
31
|
+
- name: TSX
|
|
32
|
+
run: npm install --global tsx
|
|
33
|
+
|
|
31
34
|
- name: Build
|
|
32
35
|
run: npm run build
|
|
33
36
|
|
package/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,15 @@
|
|
|
12
12
|
|
|
13
13
|
### Pending Fixed
|
|
14
14
|
|
|
15
|
+
### v13.0.0 - 2025-07-25
|
|
16
|
+
|
|
17
|
+
- :tada: The base CoT object is now seperate from the Parser
|
|
18
|
+
- :rocket: Migrate to/from calls to use `CoTParser` class
|
|
19
|
+
|
|
20
|
+
### v12.37.0 - 2025-07-06
|
|
21
|
+
|
|
22
|
+
- :tada: First pass at mapping MilSym
|
|
23
|
+
|
|
15
24
|
### v12.36.0 - 2025-06-01
|
|
16
25
|
|
|
17
26
|
- :rocket: `archived(archived?: boolean): boolean` Helper Function
|
package/README.md
CHANGED
|
@@ -164,6 +164,7 @@ These are less common properties that can be used:
|
|
|
164
164
|
|
|
165
165
|
| CoT Type | Notes |
|
|
166
166
|
| ----------------- | ----- |
|
|
167
|
+
| `t-x-g-c` | Channel Change Notification |
|
|
167
168
|
| `t-x-c-t` | TAK Server Ping Request |
|
|
168
169
|
| `t-x-c-t-r` | TAK Server Pong Response |
|
|
169
170
|
|
package/dist/index.js
CHANGED
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,OAAO,GAAG,MAAM,cAAc,CAAC;AAC/B,OAAO,KAAK,OAAO,MAAM,wBAAwB,CAAC;AAClD,OAAO,KAAK,KAAK,MAAM,sBAAsB,CAAC;AAC9C,OAAO,KAAK,QAAQ,MAAM,0BAA0B,CAAC;AACrD,cAAc,eAAe,CAAC;AAC9B,OAAO,KAAK,UAAU,MAAM,qBAAqB,CAAC;AAClD,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AAErC,eAAe,GAAG,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,OAAO,GAAG,MAAM,cAAc,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,OAAO,KAAK,OAAO,MAAM,wBAAwB,CAAC;AAClD,OAAO,KAAK,KAAK,MAAM,sBAAsB,CAAC;AAC9C,OAAO,KAAK,QAAQ,MAAM,0BAA0B,CAAC;AACrD,cAAc,eAAe,CAAC;AAC9B,OAAO,KAAK,UAAU,MAAM,qBAAqB,CAAC;AAClD,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AAErC,eAAe,GAAG,CAAC"}
|