@springfield/ham-radio-api 16.1.3 → 16.2.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
@@ -1,3 +1,17 @@
1
+ ## [16.2.0](https://gitlab.com/springfield-ham-radio/app/ham-radio-api/compare/v16.1.4...v16.2.0) (2025-09-13)
2
+
3
+
4
+ ### Features
5
+
6
+ * add optional properties to RadioConnection and RadioMemoryConfig interfaces ([269be54](https://gitlab.com/springfield-ham-radio/app/ham-radio-api/commit/269be5428eaf415115d2e0eaf573b83a86b5c3ec))
7
+
8
+ ## [16.1.4](https://gitlab.com/springfield-ham-radio/app/ham-radio-api/compare/v16.1.3...v16.1.4) (2025-09-12)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** update dependency loglayer to ^6.7.0 ([2205549](https://gitlab.com/springfield-ham-radio/app/ham-radio-api/commit/2205549cf77b4bdb259d78b9772e16dc8a943cac))
14
+
1
15
  ## [16.1.3](https://gitlab.com/springfield-ham-radio/app/ham-radio-api/compare/v16.1.2...v16.1.3) (2025-08-17)
2
16
 
3
17
 
@@ -2,5 +2,6 @@ import type { RadioId } from './id.js';
2
2
  export interface RadioConnection {
3
3
  serialPortPath: string;
4
4
  radio: RadioId;
5
+ enableSerialLogging?: boolean;
5
6
  }
6
7
  //# sourceMappingURL=connection.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"connection.d.ts","sourceRoot":"","sources":["../../src/radio/connection.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAEvC,MAAM,WAAW,eAAe;IAC9B,cAAc,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,OAAO,CAAC;CAChB"}
1
+ {"version":3,"file":"connection.d.ts","sourceRoot":"","sources":["../../src/radio/connection.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAEvC,MAAM,WAAW,eAAe;IAC9B,cAAc,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,OAAO,CAAC;IACf,mBAAmB,CAAC,EAAE,OAAO,CAAC;CAC/B"}
@@ -1,6 +1,7 @@
1
1
  import type { RadioMemorySegment } from './memory-segment.js';
2
2
  export interface RadioMemoryConfig {
3
3
  chunkSize: number;
4
+ addressSize: number;
4
5
  segments: {
5
6
  [segmentName: string]: RadioMemorySegment;
6
7
  };
@@ -1 +1 @@
1
- {"version":3,"file":"memory-config.d.ts","sourceRoot":"","sources":["../../src/radio/memory-config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AAE9D,MAAM,WAAW,iBAAiB;IAChC,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE;QACR,CAAC,WAAW,EAAE,MAAM,GAAG,kBAAkB,CAAC;KAC3C,CAAC;CACH"}
1
+ {"version":3,"file":"memory-config.d.ts","sourceRoot":"","sources":["../../src/radio/memory-config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AAE9D,MAAM,WAAW,iBAAiB;IAChC,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE;QACR,CAAC,WAAW,EAAE,MAAM,GAAG,kBAAkB,CAAC;KAC3C,CAAC;CACH"}
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@springfield/ham-radio-api",
3
- "version": "16.1.3",
3
+ "version": "16.2.0",
4
4
  "author": "Bryan Hunt",
5
- "packageManager": "yarn@4.9.2",
5
+ "packageManager": "yarn@4.9.3",
6
6
  "main": "dist/index.js",
7
7
  "type": "module",
8
8
  "types": "dist/index.d.ts",
@@ -13,8 +13,8 @@
13
13
  "scripts": {
14
14
  "build": "tsc",
15
15
  "commitlint": "commitlint --edit",
16
- "lint": "oxlint --import-plugin --tsconfig tsconfig.json",
17
- "lint:fix": "oxlint --import-plugin --tsconfig tsconfig.json --fix --fix-suggestions",
16
+ "lint": "oxlint",
17
+ "lint:fix": "oxlint --fix --fix-suggestions",
18
18
  "release": "semantic-release",
19
19
  "prepare": "husky"
20
20
  },
@@ -53,15 +53,15 @@
53
53
  "@commitlint/config-conventional": "19.8.1",
54
54
  "@semantic-release/changelog": "6.0.3",
55
55
  "@semantic-release/git": "10.0.1",
56
- "@semantic-release/gitlab": "13.2.6",
56
+ "@semantic-release/gitlab": "13.2.7",
57
57
  "husky": "9.1.7",
58
- "oxlint": "1.11.2",
58
+ "oxlint": "1.15.0",
59
59
  "semantic-release": "23.1.1",
60
60
  "semantic-release-yarn": "3.0.2",
61
61
  "typescript": "5.9.2"
62
62
  },
63
63
  "dependencies": {
64
- "loglayer": "^6.6.0",
64
+ "loglayer": "^6.7.0",
65
65
  "ts-brand": "^0.2.0"
66
66
  }
67
67
  }
@@ -3,4 +3,5 @@ import type { RadioId } from './id.js';
3
3
  export interface RadioConnection {
4
4
  serialPortPath: string;
5
5
  radio: RadioId;
6
+ enableSerialLogging?: boolean;
6
7
  }
@@ -2,6 +2,7 @@ import type { RadioMemorySegment } from './memory-segment.js';
2
2
 
3
3
  export interface RadioMemoryConfig {
4
4
  chunkSize: number;
5
+ addressSize: number;
5
6
  segments: {
6
7
  [segmentName: string]: RadioMemorySegment;
7
8
  };