@springfield/ham-radio-api 6.0.0 → 7.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 +11 -0
- package/dist/radio/program.d.ts +0 -2
- package/dist/radio/program.d.ts.map +1 -1
- package/dist/radio/program.js.map +1 -1
- package/package.json +1 -1
- package/src/radio/program.ts +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## [7.0.0](https://gitlab.com/springfield-ham-radio/app/ham-radio-api/compare/v6.0.0...v7.0.0) (2025-04-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### ⚠ BREAKING CHANGES
|
|
5
|
+
|
|
6
|
+
* remove radio id from RadioProgram
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* remove radio id from RadioProgram ([6ede16a](https://gitlab.com/springfield-ham-radio/app/ham-radio-api/commit/6ede16a9876b91420db58b08476ca424b21ca30a))
|
|
11
|
+
|
|
1
12
|
## [6.0.0](https://gitlab.com/springfield-ham-radio/app/ham-radio-api/compare/v5.0.0...v6.0.0) (2025-04-06)
|
|
2
13
|
|
|
3
14
|
|
package/dist/radio/program.d.ts
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
import { RadioId } from '../branded-types/radio-id.js';
|
|
2
1
|
import { RadioProgrammedChannel } from './programmed-channel.js';
|
|
3
2
|
import { RadioSettings } from './settings.js';
|
|
4
3
|
export interface RadioProgram {
|
|
5
|
-
radio: RadioId;
|
|
6
4
|
settings: RadioSettings;
|
|
7
5
|
channels: RadioProgrammedChannel[];
|
|
8
6
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"program.d.ts","sourceRoot":"","sources":["../../src/radio/program.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"program.d.ts","sourceRoot":"","sources":["../../src/radio/program.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,yBAAyB,CAAC;AACjE,OAAO,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAE9C,MAAM,WAAW,YAAY;IAC3B,QAAQ,EAAE,aAAa,CAAC;IACxB,QAAQ,EAAE,sBAAsB,EAAE,CAAC;CACpC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"program.js","sourceRoot":"","sources":["../../src/radio/program.ts"],"names":[],"mappings":"","sourcesContent":["import {
|
|
1
|
+
{"version":3,"file":"program.js","sourceRoot":"","sources":["../../src/radio/program.ts"],"names":[],"mappings":"","sourcesContent":["import { RadioProgrammedChannel } from './programmed-channel.js';\nimport { RadioSettings } from './settings.js';\n\nexport interface RadioProgram {\n settings: RadioSettings;\n channels: RadioProgrammedChannel[];\n}\n"]}
|
package/package.json
CHANGED
package/src/radio/program.ts
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
import { RadioId } from '../branded-types/radio-id.js';
|
|
2
1
|
import { RadioProgrammedChannel } from './programmed-channel.js';
|
|
3
2
|
import { RadioSettings } from './settings.js';
|
|
4
3
|
|
|
5
4
|
export interface RadioProgram {
|
|
6
|
-
radio: RadioId;
|
|
7
5
|
settings: RadioSettings;
|
|
8
6
|
channels: RadioProgrammedChannel[];
|
|
9
7
|
}
|