@springfield/ham-radio-api 13.0.0 → 14.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/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ ## [14.0.0](https://gitlab.com/springfield-ham-radio/app/ham-radio-api/compare/v13.0.0...v14.0.0) (2025-06-14)
2
+
3
+
4
+ ### ⚠ BREAKING CHANGES
5
+
6
+ * update RadioMemory interface to use Uint8Array for contents
7
+
8
+ ### Features
9
+
10
+ * update RadioMemory interface to use Uint8Array for contents ([30d026a](https://gitlab.com/springfield-ham-radio/app/ham-radio-api/commit/30d026acb12a7cadab2cfc09dc55c050101c9289))
11
+
1
12
  ## [13.0.0](https://gitlab.com/springfield-ham-radio/app/ham-radio-api/compare/v12.0.1...v13.0.0) (2025-06-14)
2
13
 
3
14
 
@@ -1,6 +1,6 @@
1
1
  import type { RadioModelId } from '../branded-types/radio-model-id.js';
2
2
  export interface RadioMemory {
3
3
  radioModel: RadioModelId;
4
- contents: Uint8Array[];
4
+ contents: Uint8Array;
5
5
  }
6
6
  //# sourceMappingURL=memory.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"memory.d.ts","sourceRoot":"","sources":["../../src/radio/memory.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAEvE,MAAM,WAAW,WAAW;IAC1B,UAAU,EAAE,YAAY,CAAC;IACzB,QAAQ,EAAE,UAAU,EAAE,CAAC;CACxB"}
1
+ {"version":3,"file":"memory.d.ts","sourceRoot":"","sources":["../../src/radio/memory.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAEvE,MAAM,WAAW,WAAW;IAC1B,UAAU,EAAE,YAAY,CAAC;IACzB,QAAQ,EAAE,UAAU,CAAC;CACtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@springfield/ham-radio-api",
3
- "version": "13.0.0",
3
+ "version": "14.0.0",
4
4
  "author": "Bryan Hunt",
5
5
  "packageManager": "yarn@4.9.2",
6
6
  "main": "dist/index.js",
@@ -2,5 +2,5 @@ import type { RadioModelId } from '../branded-types/radio-model-id.js';
2
2
 
3
3
  export interface RadioMemory {
4
4
  radioModel: RadioModelId;
5
- contents: Uint8Array[];
5
+ contents: Uint8Array;
6
6
  }