@lumikmz/kmz 0.8.0 → 0.9.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/dist/index.d.mts CHANGED
@@ -816,6 +816,10 @@ interface TemplateDocumentBase {
816
816
  author?: string;
817
817
  createTime?: number;
818
818
  updateTime?: number;
819
+ jnCustom?: {
820
+ airportId?: string;
821
+ airportSn?: string;
822
+ };
819
823
  missionConfig: MissionConfig;
820
824
  }
821
825
  interface WaypointTemplate extends TemplateDocumentBase {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumikmz/kmz",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "description": "DJI KMZ/WPML domain model + plan() algorithm + validate(), spec-aligned types mirroring docs/kmz/",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -24,6 +24,10 @@ interface TemplateDocumentBase {
24
24
  author?: string;
25
25
  createTime?: number;
26
26
  updateTime?: number;
27
+ jnCustom?: {
28
+ airportId?: string;
29
+ airportSn?: string;
30
+ };
27
31
  missionConfig: MissionConfig;
28
32
  }
29
33