@springfield/ham-radio-api 16.1.2 → 16.1.3

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,10 @@
1
+ ## [16.1.3](https://gitlab.com/springfield-ham-radio/app/ham-radio-api/compare/v16.1.2...v16.1.3) (2025-08-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * simplify .oxlintrc.json configuration and update linting scripts in package.json ([64caf9a](https://gitlab.com/springfield-ham-radio/app/ham-radio-api/commit/64caf9a3e5668ee2d6ec265fc620fb5942432a21))
7
+
1
8
  ## [16.1.2](https://gitlab.com/springfield-ham-radio/app/ham-radio-api/compare/v16.1.1...v16.1.2) (2025-07-11)
2
9
 
3
10
 
@@ -1,7 +1,7 @@
1
1
  import type { RadioModelId } from '../branded-types/radio-model-id.js';
2
2
  export interface RadioSchema {
3
3
  model: RadioModelId;
4
- settingsSchema: any;
5
- channelSchema: any;
4
+ settingsSchema: unknown;
5
+ channelSchema: unknown;
6
6
  }
7
7
  //# sourceMappingURL=schema.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/radio/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAEvE,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,YAAY,CAAC;IACpB,cAAc,EAAE,GAAG,CAAC;IACpB,aAAa,EAAE,GAAG,CAAC;CACpB"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/radio/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAEvE,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,YAAY,CAAC;IACpB,cAAc,EAAE,OAAO,CAAC;IACxB,aAAa,EAAE,OAAO,CAAC;CACxB"}
@@ -1 +1 @@
1
- {"version":3,"file":"tone.d.ts","sourceRoot":"","sources":["../../src/radio/tone.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AACxC,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,UAAU,CAAC;AAEpC,oBAAY,aAAa;IACvB,KAAK,IAAA;IACL,GAAG,IAAA;CACJ;AAED,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,KAAK,GAAG,GAAG,CAAC;IAClB,IAAI,EAAE,aAAa,CAAC;CACrB"}
1
+ {"version":3,"file":"tone.d.ts","sourceRoot":"","sources":["../../src/radio/tone.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AACxC,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,UAAU,CAAC;AAEpC,oBAAY,aAAa;IACvB,KAAK,IAAI;IACT,GAAG,IAAI;CACR;AAED,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,KAAK,GAAG,GAAG,CAAC;IAClB,IAAI,EAAE,aAAa,CAAC;CACrB"}
@@ -1 +1 @@
1
- {"version":3,"file":"tone.js","sourceRoot":"","sources":["../../src/radio/tone.ts"],"names":[],"mappings":"AAGA,MAAM,CAAN,IAAY,aAGX;AAHD,WAAY,aAAa;IACvB,mDAAK,CAAA;IACL,+CAAG,CAAA;AACL,CAAC,EAHW,aAAa,KAAb,aAAa,QAGxB"}
1
+ {"version":3,"file":"tone.js","sourceRoot":"","sources":["../../src/radio/tone.ts"],"names":[],"mappings":"AAGA,MAAM,CAAN,IAAY,aAGX;AAHD,WAAY,aAAa;IACvB,mDAAS,CAAA;IACT,+CAAO,CAAA;AACT,CAAC,EAHW,aAAa,KAAb,aAAa,QAGxB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@springfield/ham-radio-api",
3
- "version": "16.1.2",
3
+ "version": "16.1.3",
4
4
  "author": "Bryan Hunt",
5
5
  "packageManager": "yarn@4.9.2",
6
6
  "main": "dist/index.js",
@@ -13,8 +13,8 @@
13
13
  "scripts": {
14
14
  "build": "tsc",
15
15
  "commitlint": "commitlint --edit",
16
- "lint": "oxlint",
17
- "lint:fix": "oxlint --fix --fix-suggestions",
16
+ "lint": "oxlint --import-plugin --tsconfig tsconfig.json",
17
+ "lint:fix": "oxlint --import-plugin --tsconfig tsconfig.json --fix --fix-suggestions",
18
18
  "release": "semantic-release",
19
19
  "prepare": "husky"
20
20
  },
@@ -55,10 +55,10 @@
55
55
  "@semantic-release/git": "10.0.1",
56
56
  "@semantic-release/gitlab": "13.2.6",
57
57
  "husky": "9.1.7",
58
- "oxlint": "1.5.0",
58
+ "oxlint": "1.11.2",
59
59
  "semantic-release": "23.1.1",
60
60
  "semantic-release-yarn": "3.0.2",
61
- "typescript": "5.8.3"
61
+ "typescript": "5.9.2"
62
62
  },
63
63
  "dependencies": {
64
64
  "loglayer": "^6.6.0",
@@ -2,6 +2,6 @@ import type { RadioModelId } from '../branded-types/radio-model-id.js';
2
2
 
3
3
  export interface RadioSchema {
4
4
  model: RadioModelId;
5
- settingsSchema: any;
6
- channelSchema: any;
5
+ settingsSchema: unknown;
6
+ channelSchema: unknown;
7
7
  }
package/src/radio/tone.ts CHANGED
@@ -2,8 +2,8 @@ import type { CTCSS } from './ctcss.js';
2
2
  import type { DCS } from './dcs.js';
3
3
 
4
4
  export enum RadioToneType {
5
- CTCSS,
6
- DCS,
5
+ CTCSS = 0,
6
+ DCS = 1,
7
7
  }
8
8
 
9
9
  export interface RadioTone {