@tx5dr/contracts 1.7.2 → 1.7.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.
Files changed (57) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/dist/index.d.ts.map +1 -1
  3. package/dist/index.js +1 -0
  4. package/dist/index.js.map +1 -1
  5. package/dist/schema/__tests__/audio.schema.test.js +4 -0
  6. package/dist/schema/__tests__/audio.schema.test.js.map +1 -1
  7. package/dist/schema/__tests__/operator.schema.test.d.ts +2 -0
  8. package/dist/schema/__tests__/operator.schema.test.d.ts.map +1 -0
  9. package/dist/schema/__tests__/operator.schema.test.js +23 -0
  10. package/dist/schema/__tests__/operator.schema.test.js.map +1 -0
  11. package/dist/schema/__tests__/process-monitor.schema.test.d.ts +2 -0
  12. package/dist/schema/__tests__/process-monitor.schema.test.d.ts.map +1 -0
  13. package/dist/schema/__tests__/process-monitor.schema.test.js +139 -0
  14. package/dist/schema/__tests__/process-monitor.schema.test.js.map +1 -0
  15. package/dist/schema/api-response.schema.d.ts +2 -2
  16. package/dist/schema/audio.schema.d.ts +369 -0
  17. package/dist/schema/audio.schema.d.ts.map +1 -1
  18. package/dist/schema/audio.schema.js +3 -0
  19. package/dist/schema/audio.schema.js.map +1 -1
  20. package/dist/schema/logbook.schema.d.ts +2 -2
  21. package/dist/schema/operator.schema.d.ts +10 -10
  22. package/dist/schema/operator.schema.d.ts.map +1 -1
  23. package/dist/schema/operator.schema.js +6 -1
  24. package/dist/schema/operator.schema.js.map +1 -1
  25. package/dist/schema/plugin.schema.d.ts +16 -16
  26. package/dist/schema/process-monitor.schema.d.ts +1373 -0
  27. package/dist/schema/process-monitor.schema.d.ts.map +1 -1
  28. package/dist/schema/process-monitor.schema.js +43 -0
  29. package/dist/schema/process-monitor.schema.js.map +1 -1
  30. package/dist/schema/radio-capability.schema.d.ts +6 -6
  31. package/dist/schema/radio.schema.d.ts +6 -6
  32. package/dist/schema/slot-info.schema.d.ts +136 -0
  33. package/dist/schema/slot-info.schema.d.ts.map +1 -1
  34. package/dist/schema/slot-info.schema.js +27 -2
  35. package/dist/schema/slot-info.schema.js.map +1 -1
  36. package/dist/schema/spectrum.schema.d.ts +24 -24
  37. package/dist/schema/voice-keyer.schema.d.ts +2 -2
  38. package/dist/schema/websocket.schema.d.ts +363 -139
  39. package/dist/schema/websocket.schema.d.ts.map +1 -1
  40. package/dist/schema/websocket.schema.js +4 -2
  41. package/dist/schema/websocket.schema.js.map +1 -1
  42. package/dist/utils/callsign.d.ts +2 -0
  43. package/dist/utils/callsign.d.ts.map +1 -0
  44. package/dist/utils/callsign.js +8 -0
  45. package/dist/utils/callsign.js.map +1 -0
  46. package/package.json +1 -1
  47. package/src/index.ts +1 -0
  48. package/src/schema/__tests__/audio.schema.test.ts +4 -0
  49. package/src/schema/__tests__/operator.schema.test.ts +29 -0
  50. package/src/schema/__tests__/process-monitor.schema.test.ts +146 -0
  51. package/src/schema/audio.schema.ts +3 -0
  52. package/src/schema/operator.schema.ts +7 -1
  53. package/src/schema/process-monitor.schema.ts +51 -0
  54. package/src/schema/slot-info.schema.ts +33 -2
  55. package/src/schema/websocket.schema.ts +16 -2
  56. package/src/utils/callsign.ts +9 -0
  57. package/test/decode-request-schema.test.ts +48 -0
@@ -1,5 +1,5 @@
1
1
  import { z } from 'zod';
2
- import { SlotPackSchema, SlotInfoSchema } from './slot-info.schema.js';
2
+ import { SlotPackSchema, SlotInfoSchema, SlotPackFrequencyContextSchema } from './slot-info.schema.js';
3
3
  import type { PluginStatus, PluginDataPayload, PluginLogEntry, PluginRuntimeLogEntry, PluginRuntimeLogHistoryPayload, PluginSystemSnapshot } from './plugin.schema.js';
4
4
  import { ModeDescriptorSchema } from './mode.schema.js';
5
5
  import { QSORecordSchema } from './qso.schema.js';
@@ -203,7 +203,7 @@ export declare const SystemStatusSchema: z.ZodObject<{
203
203
  connectionHealthy: boolean;
204
204
  } | undefined;
205
205
  currentRadioMode?: string | undefined;
206
- engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
206
+ engineState?: "idle" | "stopping" | "starting" | "running" | undefined;
207
207
  engineContext?: {
208
208
  error?: string | undefined;
209
209
  startedResources?: string[] | undefined;
@@ -229,7 +229,7 @@ export declare const SystemStatusSchema: z.ZodObject<{
229
229
  } | undefined;
230
230
  engineMode?: "voice" | "digital" | undefined;
231
231
  currentRadioMode?: string | undefined;
232
- engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
232
+ engineState?: "idle" | "stopping" | "starting" | "running" | undefined;
233
233
  engineContext?: {
234
234
  error?: string | undefined;
235
235
  startedResources?: string[] | undefined;
@@ -338,16 +338,16 @@ export declare const FrequencyStateSchema: z.ZodObject<{
338
338
  radioConnected: boolean;
339
339
  mode: string;
340
340
  frequency: number;
341
- description: string;
342
341
  band: string;
342
+ description: string;
343
343
  radioMode?: string | undefined;
344
344
  source?: "radio" | "program" | undefined;
345
345
  }, {
346
346
  radioConnected: boolean;
347
347
  mode: string;
348
348
  frequency: number;
349
- description: string;
350
349
  band: string;
350
+ description: string;
351
351
  radioMode?: string | undefined;
352
352
  source?: "radio" | "program" | undefined;
353
353
  }>;
@@ -1110,6 +1110,25 @@ export declare const WSSlotPackUpdatedMessageSchema: z.ZodObject<{
1110
1110
  processingTimeMs: number;
1111
1111
  frameCount: number;
1112
1112
  }>, "many">>;
1113
+ frequencyContext: z.ZodOptional<z.ZodObject<{
1114
+ frequency: z.ZodOptional<z.ZodNumber>;
1115
+ mode: z.ZodOptional<z.ZodString>;
1116
+ band: z.ZodOptional<z.ZodString>;
1117
+ radioMode: z.ZodOptional<z.ZodString>;
1118
+ description: z.ZodOptional<z.ZodString>;
1119
+ }, "strip", z.ZodTypeAny, {
1120
+ mode?: string | undefined;
1121
+ frequency?: number | undefined;
1122
+ band?: string | undefined;
1123
+ radioMode?: string | undefined;
1124
+ description?: string | undefined;
1125
+ }, {
1126
+ mode?: string | undefined;
1127
+ frequency?: number | undefined;
1128
+ band?: string | undefined;
1129
+ radioMode?: string | undefined;
1130
+ description?: string | undefined;
1131
+ }>>;
1113
1132
  }, "strip", z.ZodTypeAny, {
1114
1133
  startMs: number;
1115
1134
  slotId: string;
@@ -1151,6 +1170,13 @@ export declare const WSSlotPackUpdatedMessageSchema: z.ZodObject<{
1151
1170
  processingTimeMs: number;
1152
1171
  frameCount: number;
1153
1172
  }[];
1173
+ frequencyContext?: {
1174
+ mode?: string | undefined;
1175
+ frequency?: number | undefined;
1176
+ band?: string | undefined;
1177
+ radioMode?: string | undefined;
1178
+ description?: string | undefined;
1179
+ } | undefined;
1154
1180
  }, {
1155
1181
  startMs: number;
1156
1182
  slotId: string;
@@ -1192,6 +1218,13 @@ export declare const WSSlotPackUpdatedMessageSchema: z.ZodObject<{
1192
1218
  processingTimeMs: number;
1193
1219
  frameCount: number;
1194
1220
  }[] | undefined;
1221
+ frequencyContext?: {
1222
+ mode?: string | undefined;
1223
+ frequency?: number | undefined;
1224
+ band?: string | undefined;
1225
+ radioMode?: string | undefined;
1226
+ description?: string | undefined;
1227
+ } | undefined;
1195
1228
  }>;
1196
1229
  }, "strip", z.ZodTypeAny, {
1197
1230
  type: WSMessageType.SLOT_PACK_UPDATED;
@@ -1237,6 +1270,13 @@ export declare const WSSlotPackUpdatedMessageSchema: z.ZodObject<{
1237
1270
  processingTimeMs: number;
1238
1271
  frameCount: number;
1239
1272
  }[];
1273
+ frequencyContext?: {
1274
+ mode?: string | undefined;
1275
+ frequency?: number | undefined;
1276
+ band?: string | undefined;
1277
+ radioMode?: string | undefined;
1278
+ description?: string | undefined;
1279
+ } | undefined;
1240
1280
  };
1241
1281
  id?: string | undefined;
1242
1282
  }, {
@@ -1283,6 +1323,13 @@ export declare const WSSlotPackUpdatedMessageSchema: z.ZodObject<{
1283
1323
  processingTimeMs: number;
1284
1324
  frameCount: number;
1285
1325
  }[] | undefined;
1326
+ frequencyContext?: {
1327
+ mode?: string | undefined;
1328
+ frequency?: number | undefined;
1329
+ band?: string | undefined;
1330
+ radioMode?: string | undefined;
1331
+ description?: string | undefined;
1332
+ } | undefined;
1286
1333
  };
1287
1334
  id?: string | undefined;
1288
1335
  }>;
@@ -1305,20 +1352,20 @@ export declare const WSSpectrumCapabilitiesMessageSchema: z.ZodObject<{
1305
1352
  supportsWaterfall: z.ZodBoolean;
1306
1353
  frequencyRangeMode: z.ZodEnum<["absolute", "baseband"]>;
1307
1354
  }, "strip", z.ZodTypeAny, {
1355
+ available: boolean;
1308
1356
  displayBinCount: number;
1309
1357
  kind: "audio" | "radio-sdr" | "openwebrx-sdr";
1310
1358
  supported: boolean;
1311
- available: boolean;
1312
1359
  defaultSelected: boolean;
1313
1360
  supportsWaterfall: boolean;
1314
1361
  frequencyRangeMode: "baseband" | "absolute";
1315
1362
  reason?: string | undefined;
1316
1363
  sourceBinCount?: number | null | undefined;
1317
1364
  }, {
1365
+ available: boolean;
1318
1366
  displayBinCount: number;
1319
1367
  kind: "audio" | "radio-sdr" | "openwebrx-sdr";
1320
1368
  supported: boolean;
1321
- available: boolean;
1322
1369
  defaultSelected: boolean;
1323
1370
  supportsWaterfall: boolean;
1324
1371
  frequencyRangeMode: "baseband" | "absolute";
@@ -1329,10 +1376,10 @@ export declare const WSSpectrumCapabilitiesMessageSchema: z.ZodObject<{
1329
1376
  profileId: string | null;
1330
1377
  defaultKind: "audio" | "radio-sdr" | "openwebrx-sdr";
1331
1378
  sources: {
1379
+ available: boolean;
1332
1380
  displayBinCount: number;
1333
1381
  kind: "audio" | "radio-sdr" | "openwebrx-sdr";
1334
1382
  supported: boolean;
1335
- available: boolean;
1336
1383
  defaultSelected: boolean;
1337
1384
  supportsWaterfall: boolean;
1338
1385
  frequencyRangeMode: "baseband" | "absolute";
@@ -1343,10 +1390,10 @@ export declare const WSSpectrumCapabilitiesMessageSchema: z.ZodObject<{
1343
1390
  profileId: string | null;
1344
1391
  defaultKind: "audio" | "radio-sdr" | "openwebrx-sdr";
1345
1392
  sources: {
1393
+ available: boolean;
1346
1394
  displayBinCount: number;
1347
1395
  kind: "audio" | "radio-sdr" | "openwebrx-sdr";
1348
1396
  supported: boolean;
1349
- available: boolean;
1350
1397
  defaultSelected: boolean;
1351
1398
  supportsWaterfall: boolean;
1352
1399
  frequencyRangeMode: "baseband" | "absolute";
@@ -1361,10 +1408,10 @@ export declare const WSSpectrumCapabilitiesMessageSchema: z.ZodObject<{
1361
1408
  profileId: string | null;
1362
1409
  defaultKind: "audio" | "radio-sdr" | "openwebrx-sdr";
1363
1410
  sources: {
1411
+ available: boolean;
1364
1412
  displayBinCount: number;
1365
1413
  kind: "audio" | "radio-sdr" | "openwebrx-sdr";
1366
1414
  supported: boolean;
1367
- available: boolean;
1368
1415
  defaultSelected: boolean;
1369
1416
  supportsWaterfall: boolean;
1370
1417
  frequencyRangeMode: "baseband" | "absolute";
@@ -1380,10 +1427,10 @@ export declare const WSSpectrumCapabilitiesMessageSchema: z.ZodObject<{
1380
1427
  profileId: string | null;
1381
1428
  defaultKind: "audio" | "radio-sdr" | "openwebrx-sdr";
1382
1429
  sources: {
1430
+ available: boolean;
1383
1431
  displayBinCount: number;
1384
1432
  kind: "audio" | "radio-sdr" | "openwebrx-sdr";
1385
1433
  supported: boolean;
1386
- available: boolean;
1387
1434
  defaultSelected: boolean;
1388
1435
  supportsWaterfall: boolean;
1389
1436
  frequencyRangeMode: "baseband" | "absolute";
@@ -1662,14 +1709,14 @@ export declare const WSSpectrumSessionStateChangedMessageSchema: z.ZodObject<{
1662
1709
  }, "strip", z.ZodTypeAny, {
1663
1710
  id: string;
1664
1711
  frequency: number;
1665
- label: string;
1666
1712
  description: string | null;
1713
+ label: string;
1667
1714
  clickable: boolean;
1668
1715
  }, {
1669
1716
  id: string;
1670
1717
  frequency: number;
1671
- label: string;
1672
1718
  description: string | null;
1719
+ label: string;
1673
1720
  clickable: boolean;
1674
1721
  }>, "many">;
1675
1722
  canDragVoiceOverlay: z.ZodBoolean;
@@ -1691,8 +1738,8 @@ export declare const WSSpectrumSessionStateChangedMessageSchema: z.ZodObject<{
1691
1738
  presetMarkers: {
1692
1739
  id: string;
1693
1740
  frequency: number;
1694
- label: string;
1695
1741
  description: string | null;
1742
+ label: string;
1696
1743
  clickable: boolean;
1697
1744
  }[];
1698
1745
  canDragVoiceOverlay: boolean;
@@ -1714,8 +1761,8 @@ export declare const WSSpectrumSessionStateChangedMessageSchema: z.ZodObject<{
1714
1761
  presetMarkers: {
1715
1762
  id: string;
1716
1763
  frequency: number;
1717
- label: string;
1718
1764
  description: string | null;
1765
+ label: string;
1719
1766
  clickable: boolean;
1720
1767
  }[];
1721
1768
  canDragVoiceOverlay: boolean;
@@ -1736,19 +1783,19 @@ export declare const WSSpectrumSessionStateChangedMessageSchema: z.ZodObject<{
1736
1783
  pending: z.ZodBoolean;
1737
1784
  }, "strip", z.ZodTypeAny, {
1738
1785
  id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
1786
+ active: boolean;
1739
1787
  kind: "server" | "local";
1740
1788
  action: "in" | "out" | "toggle";
1741
1789
  visible: boolean;
1742
1790
  enabled: boolean;
1743
- active: boolean;
1744
1791
  pending: boolean;
1745
1792
  }, {
1746
1793
  id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
1794
+ active: boolean;
1747
1795
  kind: "server" | "local";
1748
1796
  action: "in" | "out" | "toggle";
1749
1797
  visible: boolean;
1750
1798
  enabled: boolean;
1751
- active: boolean;
1752
1799
  pending: boolean;
1753
1800
  }>, "many">;
1754
1801
  }, "strip", z.ZodTypeAny, {
@@ -1783,8 +1830,8 @@ export declare const WSSpectrumSessionStateChangedMessageSchema: z.ZodObject<{
1783
1830
  presetMarkers: {
1784
1831
  id: string;
1785
1832
  frequency: number;
1786
- label: string;
1787
1833
  description: string | null;
1834
+ label: string;
1788
1835
  clickable: boolean;
1789
1836
  }[];
1790
1837
  canDragVoiceOverlay: boolean;
@@ -1797,11 +1844,11 @@ export declare const WSSpectrumSessionStateChangedMessageSchema: z.ZodObject<{
1797
1844
  };
1798
1845
  controls: {
1799
1846
  id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
1847
+ active: boolean;
1800
1848
  kind: "server" | "local";
1801
1849
  action: "in" | "out" | "toggle";
1802
1850
  visible: boolean;
1803
1851
  enabled: boolean;
1804
- active: boolean;
1805
1852
  pending: boolean;
1806
1853
  }[];
1807
1854
  }, {
@@ -1836,8 +1883,8 @@ export declare const WSSpectrumSessionStateChangedMessageSchema: z.ZodObject<{
1836
1883
  presetMarkers: {
1837
1884
  id: string;
1838
1885
  frequency: number;
1839
- label: string;
1840
1886
  description: string | null;
1887
+ label: string;
1841
1888
  clickable: boolean;
1842
1889
  }[];
1843
1890
  canDragVoiceOverlay: boolean;
@@ -1850,11 +1897,11 @@ export declare const WSSpectrumSessionStateChangedMessageSchema: z.ZodObject<{
1850
1897
  };
1851
1898
  controls: {
1852
1899
  id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
1900
+ active: boolean;
1853
1901
  kind: "server" | "local";
1854
1902
  action: "in" | "out" | "toggle";
1855
1903
  visible: boolean;
1856
1904
  enabled: boolean;
1857
- active: boolean;
1858
1905
  pending: boolean;
1859
1906
  }[];
1860
1907
  }>;
@@ -1893,8 +1940,8 @@ export declare const WSSpectrumSessionStateChangedMessageSchema: z.ZodObject<{
1893
1940
  presetMarkers: {
1894
1941
  id: string;
1895
1942
  frequency: number;
1896
- label: string;
1897
1943
  description: string | null;
1944
+ label: string;
1898
1945
  clickable: boolean;
1899
1946
  }[];
1900
1947
  canDragVoiceOverlay: boolean;
@@ -1907,11 +1954,11 @@ export declare const WSSpectrumSessionStateChangedMessageSchema: z.ZodObject<{
1907
1954
  };
1908
1955
  controls: {
1909
1956
  id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
1957
+ active: boolean;
1910
1958
  kind: "server" | "local";
1911
1959
  action: "in" | "out" | "toggle";
1912
1960
  visible: boolean;
1913
1961
  enabled: boolean;
1914
- active: boolean;
1915
1962
  pending: boolean;
1916
1963
  }[];
1917
1964
  };
@@ -1951,8 +1998,8 @@ export declare const WSSpectrumSessionStateChangedMessageSchema: z.ZodObject<{
1951
1998
  presetMarkers: {
1952
1999
  id: string;
1953
2000
  frequency: number;
1954
- label: string;
1955
2001
  description: string | null;
2002
+ label: string;
1956
2003
  clickable: boolean;
1957
2004
  }[];
1958
2005
  canDragVoiceOverlay: boolean;
@@ -1965,11 +2012,11 @@ export declare const WSSpectrumSessionStateChangedMessageSchema: z.ZodObject<{
1965
2012
  };
1966
2013
  controls: {
1967
2014
  id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
2015
+ active: boolean;
1968
2016
  kind: "server" | "local";
1969
2017
  action: "in" | "out" | "toggle";
1970
2018
  visible: boolean;
1971
2019
  enabled: boolean;
1972
- active: boolean;
1973
2020
  pending: boolean;
1974
2021
  }[];
1975
2022
  };
@@ -2162,7 +2209,7 @@ export declare const WSSystemStatusMessageSchema: z.ZodObject<{
2162
2209
  connectionHealthy: boolean;
2163
2210
  } | undefined;
2164
2211
  currentRadioMode?: string | undefined;
2165
- engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
2212
+ engineState?: "idle" | "stopping" | "starting" | "running" | undefined;
2166
2213
  engineContext?: {
2167
2214
  error?: string | undefined;
2168
2215
  startedResources?: string[] | undefined;
@@ -2188,7 +2235,7 @@ export declare const WSSystemStatusMessageSchema: z.ZodObject<{
2188
2235
  } | undefined;
2189
2236
  engineMode?: "voice" | "digital" | undefined;
2190
2237
  currentRadioMode?: string | undefined;
2191
- engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
2238
+ engineState?: "idle" | "stopping" | "starting" | "running" | undefined;
2192
2239
  engineContext?: {
2193
2240
  error?: string | undefined;
2194
2241
  startedResources?: string[] | undefined;
@@ -2218,7 +2265,7 @@ export declare const WSSystemStatusMessageSchema: z.ZodObject<{
2218
2265
  connectionHealthy: boolean;
2219
2266
  } | undefined;
2220
2267
  currentRadioMode?: string | undefined;
2221
- engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
2268
+ engineState?: "idle" | "stopping" | "starting" | "running" | undefined;
2222
2269
  engineContext?: {
2223
2270
  error?: string | undefined;
2224
2271
  startedResources?: string[] | undefined;
@@ -2249,7 +2296,7 @@ export declare const WSSystemStatusMessageSchema: z.ZodObject<{
2249
2296
  } | undefined;
2250
2297
  engineMode?: "voice" | "digital" | undefined;
2251
2298
  currentRadioMode?: string | undefined;
2252
- engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
2299
+ engineState?: "idle" | "stopping" | "starting" | "running" | undefined;
2253
2300
  engineContext?: {
2254
2301
  error?: string | undefined;
2255
2302
  startedResources?: string[] | undefined;
@@ -2724,6 +2771,7 @@ export declare const OperatorStatusSchema: z.ZodObject<{
2724
2771
  };
2725
2772
  isTransmitting: boolean;
2726
2773
  transmitCycles?: number[] | undefined;
2774
+ currentSlot?: string | undefined;
2727
2775
  runtime?: {
2728
2776
  currentState: string;
2729
2777
  slots?: {
@@ -2752,7 +2800,6 @@ export declare const OperatorStatusSchema: z.ZodObject<{
2752
2800
  TX6?: string | undefined;
2753
2801
  } | undefined;
2754
2802
  isInActivePTT?: boolean | undefined;
2755
- currentSlot?: string | undefined;
2756
2803
  }, {
2757
2804
  id: string;
2758
2805
  strategy: {
@@ -2772,6 +2819,7 @@ export declare const OperatorStatusSchema: z.ZodObject<{
2772
2819
  };
2773
2820
  isTransmitting: boolean;
2774
2821
  transmitCycles?: number[] | undefined;
2822
+ currentSlot?: string | undefined;
2775
2823
  runtime?: {
2776
2824
  currentState: string;
2777
2825
  slots?: {
@@ -2800,7 +2848,6 @@ export declare const OperatorStatusSchema: z.ZodObject<{
2800
2848
  TX6?: string | undefined;
2801
2849
  } | undefined;
2802
2850
  isInActivePTT?: boolean | undefined;
2803
- currentSlot?: string | undefined;
2804
2851
  }>;
2805
2852
  export type OperatorStatus = z.infer<typeof OperatorStatusSchema>;
2806
2853
  /**
@@ -2996,6 +3043,7 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
2996
3043
  };
2997
3044
  isTransmitting: boolean;
2998
3045
  transmitCycles?: number[] | undefined;
3046
+ currentSlot?: string | undefined;
2999
3047
  runtime?: {
3000
3048
  currentState: string;
3001
3049
  slots?: {
@@ -3024,7 +3072,6 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3024
3072
  TX6?: string | undefined;
3025
3073
  } | undefined;
3026
3074
  isInActivePTT?: boolean | undefined;
3027
- currentSlot?: string | undefined;
3028
3075
  }, {
3029
3076
  id: string;
3030
3077
  strategy: {
@@ -3044,6 +3091,7 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3044
3091
  };
3045
3092
  isTransmitting: boolean;
3046
3093
  transmitCycles?: number[] | undefined;
3094
+ currentSlot?: string | undefined;
3047
3095
  runtime?: {
3048
3096
  currentState: string;
3049
3097
  slots?: {
@@ -3072,7 +3120,6 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3072
3120
  TX6?: string | undefined;
3073
3121
  } | undefined;
3074
3122
  isInActivePTT?: boolean | undefined;
3075
- currentSlot?: string | undefined;
3076
3123
  }>, "many">;
3077
3124
  }, "strip", z.ZodTypeAny, {
3078
3125
  operators: {
@@ -3094,6 +3141,7 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3094
3141
  };
3095
3142
  isTransmitting: boolean;
3096
3143
  transmitCycles?: number[] | undefined;
3144
+ currentSlot?: string | undefined;
3097
3145
  runtime?: {
3098
3146
  currentState: string;
3099
3147
  slots?: {
@@ -3122,7 +3170,6 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3122
3170
  TX6?: string | undefined;
3123
3171
  } | undefined;
3124
3172
  isInActivePTT?: boolean | undefined;
3125
- currentSlot?: string | undefined;
3126
3173
  }[];
3127
3174
  }, {
3128
3175
  operators: {
@@ -3144,6 +3191,7 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3144
3191
  };
3145
3192
  isTransmitting: boolean;
3146
3193
  transmitCycles?: number[] | undefined;
3194
+ currentSlot?: string | undefined;
3147
3195
  runtime?: {
3148
3196
  currentState: string;
3149
3197
  slots?: {
@@ -3172,7 +3220,6 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3172
3220
  TX6?: string | undefined;
3173
3221
  } | undefined;
3174
3222
  isInActivePTT?: boolean | undefined;
3175
- currentSlot?: string | undefined;
3176
3223
  }[];
3177
3224
  }>;
3178
3225
  }, "strip", z.ZodTypeAny, {
@@ -3198,6 +3245,7 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3198
3245
  };
3199
3246
  isTransmitting: boolean;
3200
3247
  transmitCycles?: number[] | undefined;
3248
+ currentSlot?: string | undefined;
3201
3249
  runtime?: {
3202
3250
  currentState: string;
3203
3251
  slots?: {
@@ -3226,7 +3274,6 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3226
3274
  TX6?: string | undefined;
3227
3275
  } | undefined;
3228
3276
  isInActivePTT?: boolean | undefined;
3229
- currentSlot?: string | undefined;
3230
3277
  }[];
3231
3278
  };
3232
3279
  id?: string | undefined;
@@ -3253,6 +3300,7 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3253
3300
  };
3254
3301
  isTransmitting: boolean;
3255
3302
  transmitCycles?: number[] | undefined;
3303
+ currentSlot?: string | undefined;
3256
3304
  runtime?: {
3257
3305
  currentState: string;
3258
3306
  slots?: {
@@ -3281,7 +3329,6 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3281
3329
  TX6?: string | undefined;
3282
3330
  } | undefined;
3283
3331
  isInActivePTT?: boolean | undefined;
3284
- currentSlot?: string | undefined;
3285
3332
  }[];
3286
3333
  };
3287
3334
  id?: string | undefined;
@@ -3461,6 +3508,7 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
3461
3508
  };
3462
3509
  isTransmitting: boolean;
3463
3510
  transmitCycles?: number[] | undefined;
3511
+ currentSlot?: string | undefined;
3464
3512
  runtime?: {
3465
3513
  currentState: string;
3466
3514
  slots?: {
@@ -3489,7 +3537,6 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
3489
3537
  TX6?: string | undefined;
3490
3538
  } | undefined;
3491
3539
  isInActivePTT?: boolean | undefined;
3492
- currentSlot?: string | undefined;
3493
3540
  }, {
3494
3541
  id: string;
3495
3542
  strategy: {
@@ -3509,6 +3556,7 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
3509
3556
  };
3510
3557
  isTransmitting: boolean;
3511
3558
  transmitCycles?: number[] | undefined;
3559
+ currentSlot?: string | undefined;
3512
3560
  runtime?: {
3513
3561
  currentState: string;
3514
3562
  slots?: {
@@ -3537,7 +3585,6 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
3537
3585
  TX6?: string | undefined;
3538
3586
  } | undefined;
3539
3587
  isInActivePTT?: boolean | undefined;
3540
- currentSlot?: string | undefined;
3541
3588
  }>;
3542
3589
  }, "strip", z.ZodTypeAny, {
3543
3590
  type: WSMessageType.OPERATOR_STATUS_UPDATE;
@@ -3561,6 +3608,7 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
3561
3608
  };
3562
3609
  isTransmitting: boolean;
3563
3610
  transmitCycles?: number[] | undefined;
3611
+ currentSlot?: string | undefined;
3564
3612
  runtime?: {
3565
3613
  currentState: string;
3566
3614
  slots?: {
@@ -3589,7 +3637,6 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
3589
3637
  TX6?: string | undefined;
3590
3638
  } | undefined;
3591
3639
  isInActivePTT?: boolean | undefined;
3592
- currentSlot?: string | undefined;
3593
3640
  };
3594
3641
  id?: string | undefined;
3595
3642
  }, {
@@ -3614,6 +3661,7 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
3614
3661
  };
3615
3662
  isTransmitting: boolean;
3616
3663
  transmitCycles?: number[] | undefined;
3664
+ currentSlot?: string | undefined;
3617
3665
  runtime?: {
3618
3666
  currentState: string;
3619
3667
  slots?: {
@@ -3642,7 +3690,6 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
3642
3690
  TX6?: string | undefined;
3643
3691
  } | undefined;
3644
3692
  isInActivePTT?: boolean | undefined;
3645
- currentSlot?: string | undefined;
3646
3693
  };
3647
3694
  id?: string | undefined;
3648
3695
  }>;
@@ -4223,18 +4270,54 @@ export declare const WSTransmissionLogMessageSchema: z.ZodObject<{
4223
4270
  message: z.ZodString;
4224
4271
  frequency: z.ZodNumber;
4225
4272
  slotStartMs: z.ZodNumber;
4273
+ replaceExisting: z.ZodOptional<z.ZodBoolean>;
4274
+ frequencyContext: z.ZodOptional<z.ZodObject<{
4275
+ frequency: z.ZodOptional<z.ZodNumber>;
4276
+ mode: z.ZodOptional<z.ZodString>;
4277
+ band: z.ZodOptional<z.ZodString>;
4278
+ radioMode: z.ZodOptional<z.ZodString>;
4279
+ description: z.ZodOptional<z.ZodString>;
4280
+ }, "strip", z.ZodTypeAny, {
4281
+ mode?: string | undefined;
4282
+ frequency?: number | undefined;
4283
+ band?: string | undefined;
4284
+ radioMode?: string | undefined;
4285
+ description?: string | undefined;
4286
+ }, {
4287
+ mode?: string | undefined;
4288
+ frequency?: number | undefined;
4289
+ band?: string | undefined;
4290
+ radioMode?: string | undefined;
4291
+ description?: string | undefined;
4292
+ }>>;
4226
4293
  }, "strip", z.ZodTypeAny, {
4227
4294
  message: string;
4228
4295
  operatorId: string;
4229
4296
  frequency: number;
4230
4297
  time: string;
4231
4298
  slotStartMs: number;
4299
+ frequencyContext?: {
4300
+ mode?: string | undefined;
4301
+ frequency?: number | undefined;
4302
+ band?: string | undefined;
4303
+ radioMode?: string | undefined;
4304
+ description?: string | undefined;
4305
+ } | undefined;
4306
+ replaceExisting?: boolean | undefined;
4232
4307
  }, {
4233
4308
  message: string;
4234
4309
  operatorId: string;
4235
4310
  frequency: number;
4236
4311
  time: string;
4237
4312
  slotStartMs: number;
4313
+ frequencyContext?: {
4314
+ mode?: string | undefined;
4315
+ frequency?: number | undefined;
4316
+ band?: string | undefined;
4317
+ radioMode?: string | undefined;
4318
+ description?: string | undefined;
4319
+ } | undefined;
4320
+ replaceExisting?: boolean | undefined;
4238
4321
  }>;
4239
4322
  }, "strip", z.ZodTypeAny, {
4240
4323
  type: WSMessageType.TRANSMISSION_LOG;
@@ -4245,6 +4328,14 @@ export declare const WSTransmissionLogMessageSchema: z.ZodObject<{
4245
4328
  frequency: number;
4246
4329
  time: string;
4247
4330
  slotStartMs: number;
4331
+ frequencyContext?: {
4332
+ mode?: string | undefined;
4333
+ frequency?: number | undefined;
4334
+ band?: string | undefined;
4335
+ radioMode?: string | undefined;
4336
+ description?: string | undefined;
4337
+ } | undefined;
4338
+ replaceExisting?: boolean | undefined;
4248
4339
  };
4249
4340
  id?: string | undefined;
4250
4341
  }, {
@@ -4256,6 +4347,14 @@ export declare const WSTransmissionLogMessageSchema: z.ZodObject<{
4256
4347
  frequency: number;
4257
4348
  time: string;
4258
4349
  slotStartMs: number;
4350
+ frequencyContext?: {
4351
+ mode?: string | undefined;
4352
+ frequency?: number | undefined;
4353
+ band?: string | undefined;
4354
+ radioMode?: string | undefined;
4355
+ description?: string | undefined;
4356
+ } | undefined;
4357
+ replaceExisting?: boolean | undefined;
4259
4358
  };
4260
4359
  id?: string | undefined;
4261
4360
  }>;
@@ -6630,16 +6729,16 @@ export declare const WSFrequencyChangedMessageSchema: z.ZodObject<{
6630
6729
  radioConnected: boolean;
6631
6730
  mode: string;
6632
6731
  frequency: number;
6633
- description: string;
6634
6732
  band: string;
6733
+ description: string;
6635
6734
  radioMode?: string | undefined;
6636
6735
  source?: "radio" | "program" | undefined;
6637
6736
  }, {
6638
6737
  radioConnected: boolean;
6639
6738
  mode: string;
6640
6739
  frequency: number;
6641
- description: string;
6642
6740
  band: string;
6741
+ description: string;
6643
6742
  radioMode?: string | undefined;
6644
6743
  source?: "radio" | "program" | undefined;
6645
6744
  }>;
@@ -6650,8 +6749,8 @@ export declare const WSFrequencyChangedMessageSchema: z.ZodObject<{
6650
6749
  radioConnected: boolean;
6651
6750
  mode: string;
6652
6751
  frequency: number;
6653
- description: string;
6654
6752
  band: string;
6753
+ description: string;
6655
6754
  radioMode?: string | undefined;
6656
6755
  source?: "radio" | "program" | undefined;
6657
6756
  };
@@ -6663,8 +6762,8 @@ export declare const WSFrequencyChangedMessageSchema: z.ZodObject<{
6663
6762
  radioConnected: boolean;
6664
6763
  mode: string;
6665
6764
  frequency: number;
6666
- description: string;
6667
6765
  band: string;
6766
+ description: string;
6668
6767
  radioMode?: string | undefined;
6669
6768
  source?: "radio" | "program" | undefined;
6670
6769
  };
@@ -6730,14 +6829,14 @@ export declare const WSSpectrumSessionStateChangedOutboundMessageSchema: z.ZodOb
6730
6829
  }, "strip", z.ZodTypeAny, {
6731
6830
  id: string;
6732
6831
  frequency: number;
6733
- label: string;
6734
6832
  description: string | null;
6833
+ label: string;
6735
6834
  clickable: boolean;
6736
6835
  }, {
6737
6836
  id: string;
6738
6837
  frequency: number;
6739
- label: string;
6740
6838
  description: string | null;
6839
+ label: string;
6741
6840
  clickable: boolean;
6742
6841
  }>, "many">;
6743
6842
  canDragVoiceOverlay: z.ZodBoolean;
@@ -6759,8 +6858,8 @@ export declare const WSSpectrumSessionStateChangedOutboundMessageSchema: z.ZodOb
6759
6858
  presetMarkers: {
6760
6859
  id: string;
6761
6860
  frequency: number;
6762
- label: string;
6763
6861
  description: string | null;
6862
+ label: string;
6764
6863
  clickable: boolean;
6765
6864
  }[];
6766
6865
  canDragVoiceOverlay: boolean;
@@ -6782,8 +6881,8 @@ export declare const WSSpectrumSessionStateChangedOutboundMessageSchema: z.ZodOb
6782
6881
  presetMarkers: {
6783
6882
  id: string;
6784
6883
  frequency: number;
6785
- label: string;
6786
6884
  description: string | null;
6885
+ label: string;
6787
6886
  clickable: boolean;
6788
6887
  }[];
6789
6888
  canDragVoiceOverlay: boolean;
@@ -6804,19 +6903,19 @@ export declare const WSSpectrumSessionStateChangedOutboundMessageSchema: z.ZodOb
6804
6903
  pending: z.ZodBoolean;
6805
6904
  }, "strip", z.ZodTypeAny, {
6806
6905
  id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
6906
+ active: boolean;
6807
6907
  kind: "server" | "local";
6808
6908
  action: "in" | "out" | "toggle";
6809
6909
  visible: boolean;
6810
6910
  enabled: boolean;
6811
- active: boolean;
6812
6911
  pending: boolean;
6813
6912
  }, {
6814
6913
  id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
6914
+ active: boolean;
6815
6915
  kind: "server" | "local";
6816
6916
  action: "in" | "out" | "toggle";
6817
6917
  visible: boolean;
6818
6918
  enabled: boolean;
6819
- active: boolean;
6820
6919
  pending: boolean;
6821
6920
  }>, "many">;
6822
6921
  }, "strip", z.ZodTypeAny, {
@@ -6851,8 +6950,8 @@ export declare const WSSpectrumSessionStateChangedOutboundMessageSchema: z.ZodOb
6851
6950
  presetMarkers: {
6852
6951
  id: string;
6853
6952
  frequency: number;
6854
- label: string;
6855
6953
  description: string | null;
6954
+ label: string;
6856
6955
  clickable: boolean;
6857
6956
  }[];
6858
6957
  canDragVoiceOverlay: boolean;
@@ -6865,11 +6964,11 @@ export declare const WSSpectrumSessionStateChangedOutboundMessageSchema: z.ZodOb
6865
6964
  };
6866
6965
  controls: {
6867
6966
  id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
6967
+ active: boolean;
6868
6968
  kind: "server" | "local";
6869
6969
  action: "in" | "out" | "toggle";
6870
6970
  visible: boolean;
6871
6971
  enabled: boolean;
6872
- active: boolean;
6873
6972
  pending: boolean;
6874
6973
  }[];
6875
6974
  }, {
@@ -6904,8 +7003,8 @@ export declare const WSSpectrumSessionStateChangedOutboundMessageSchema: z.ZodOb
6904
7003
  presetMarkers: {
6905
7004
  id: string;
6906
7005
  frequency: number;
6907
- label: string;
6908
7006
  description: string | null;
7007
+ label: string;
6909
7008
  clickable: boolean;
6910
7009
  }[];
6911
7010
  canDragVoiceOverlay: boolean;
@@ -6918,11 +7017,11 @@ export declare const WSSpectrumSessionStateChangedOutboundMessageSchema: z.ZodOb
6918
7017
  };
6919
7018
  controls: {
6920
7019
  id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
7020
+ active: boolean;
6921
7021
  kind: "server" | "local";
6922
7022
  action: "in" | "out" | "toggle";
6923
7023
  visible: boolean;
6924
7024
  enabled: boolean;
6925
- active: boolean;
6926
7025
  pending: boolean;
6927
7026
  }[];
6928
7027
  }>;
@@ -6961,8 +7060,8 @@ export declare const WSSpectrumSessionStateChangedOutboundMessageSchema: z.ZodOb
6961
7060
  presetMarkers: {
6962
7061
  id: string;
6963
7062
  frequency: number;
6964
- label: string;
6965
7063
  description: string | null;
7064
+ label: string;
6966
7065
  clickable: boolean;
6967
7066
  }[];
6968
7067
  canDragVoiceOverlay: boolean;
@@ -6975,11 +7074,11 @@ export declare const WSSpectrumSessionStateChangedOutboundMessageSchema: z.ZodOb
6975
7074
  };
6976
7075
  controls: {
6977
7076
  id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
7077
+ active: boolean;
6978
7078
  kind: "server" | "local";
6979
7079
  action: "in" | "out" | "toggle";
6980
7080
  visible: boolean;
6981
7081
  enabled: boolean;
6982
- active: boolean;
6983
7082
  pending: boolean;
6984
7083
  }[];
6985
7084
  };
@@ -7019,8 +7118,8 @@ export declare const WSSpectrumSessionStateChangedOutboundMessageSchema: z.ZodOb
7019
7118
  presetMarkers: {
7020
7119
  id: string;
7021
7120
  frequency: number;
7022
- label: string;
7023
7121
  description: string | null;
7122
+ label: string;
7024
7123
  clickable: boolean;
7025
7124
  }[];
7026
7125
  canDragVoiceOverlay: boolean;
@@ -7033,11 +7132,11 @@ export declare const WSSpectrumSessionStateChangedOutboundMessageSchema: z.ZodOb
7033
7132
  };
7034
7133
  controls: {
7035
7134
  id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
7135
+ active: boolean;
7036
7136
  kind: "server" | "local";
7037
7137
  action: "in" | "out" | "toggle";
7038
7138
  visible: boolean;
7039
7139
  enabled: boolean;
7040
- active: boolean;
7041
7140
  pending: boolean;
7042
7141
  }[];
7043
7142
  };
@@ -7712,18 +7811,18 @@ export declare const WSRadioCapabilityListMessageSchema: z.ZodObject<{
7712
7811
  id: string;
7713
7812
  supported: boolean;
7714
7813
  updatedAt: number;
7814
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7715
7815
  meta?: Record<string, unknown> | undefined;
7716
7816
  lastError?: string | undefined;
7717
- availability?: "unknown" | "available" | "unavailable" | undefined;
7718
7817
  availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7719
7818
  }, {
7720
7819
  value: string | number | boolean | null;
7721
7820
  id: string;
7722
7821
  supported: boolean;
7723
7822
  updatedAt: number;
7823
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7724
7824
  meta?: Record<string, unknown> | undefined;
7725
7825
  lastError?: string | undefined;
7726
- availability?: "unknown" | "available" | "unavailable" | undefined;
7727
7826
  availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7728
7827
  }>, "many">;
7729
7828
  }, "strip", z.ZodTypeAny, {
@@ -7732,9 +7831,9 @@ export declare const WSRadioCapabilityListMessageSchema: z.ZodObject<{
7732
7831
  id: string;
7733
7832
  supported: boolean;
7734
7833
  updatedAt: number;
7834
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7735
7835
  meta?: Record<string, unknown> | undefined;
7736
7836
  lastError?: string | undefined;
7737
- availability?: "unknown" | "available" | "unavailable" | undefined;
7738
7837
  availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7739
7838
  }[];
7740
7839
  descriptors: {
@@ -7779,9 +7878,9 @@ export declare const WSRadioCapabilityListMessageSchema: z.ZodObject<{
7779
7878
  id: string;
7780
7879
  supported: boolean;
7781
7880
  updatedAt: number;
7881
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7782
7882
  meta?: Record<string, unknown> | undefined;
7783
7883
  lastError?: string | undefined;
7784
- availability?: "unknown" | "available" | "unavailable" | undefined;
7785
7884
  availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7786
7885
  }[];
7787
7886
  descriptors: {
@@ -7830,9 +7929,9 @@ export declare const WSRadioCapabilityListMessageSchema: z.ZodObject<{
7830
7929
  id: string;
7831
7930
  supported: boolean;
7832
7931
  updatedAt: number;
7932
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7833
7933
  meta?: Record<string, unknown> | undefined;
7834
7934
  lastError?: string | undefined;
7835
- availability?: "unknown" | "available" | "unavailable" | undefined;
7836
7935
  availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7837
7936
  }[];
7838
7937
  descriptors: {
@@ -7882,9 +7981,9 @@ export declare const WSRadioCapabilityListMessageSchema: z.ZodObject<{
7882
7981
  id: string;
7883
7982
  supported: boolean;
7884
7983
  updatedAt: number;
7984
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7885
7985
  meta?: Record<string, unknown> | undefined;
7886
7986
  lastError?: string | undefined;
7887
- availability?: "unknown" | "available" | "unavailable" | undefined;
7888
7987
  availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7889
7988
  }[];
7890
7989
  descriptors: {
@@ -7949,18 +8048,18 @@ export declare const WSRadioCapabilityChangedMessageSchema: z.ZodObject<{
7949
8048
  id: string;
7950
8049
  supported: boolean;
7951
8050
  updatedAt: number;
8051
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7952
8052
  meta?: Record<string, unknown> | undefined;
7953
8053
  lastError?: string | undefined;
7954
- availability?: "unknown" | "available" | "unavailable" | undefined;
7955
8054
  availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7956
8055
  }, {
7957
8056
  value: string | number | boolean | null;
7958
8057
  id: string;
7959
8058
  supported: boolean;
7960
8059
  updatedAt: number;
8060
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7961
8061
  meta?: Record<string, unknown> | undefined;
7962
8062
  lastError?: string | undefined;
7963
- availability?: "unknown" | "available" | "unavailable" | undefined;
7964
8063
  availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7965
8064
  }>;
7966
8065
  }, "strip", z.ZodTypeAny, {
@@ -7971,9 +8070,9 @@ export declare const WSRadioCapabilityChangedMessageSchema: z.ZodObject<{
7971
8070
  id: string;
7972
8071
  supported: boolean;
7973
8072
  updatedAt: number;
8073
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7974
8074
  meta?: Record<string, unknown> | undefined;
7975
8075
  lastError?: string | undefined;
7976
- availability?: "unknown" | "available" | "unavailable" | undefined;
7977
8076
  availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7978
8077
  };
7979
8078
  id?: string | undefined;
@@ -7985,9 +8084,9 @@ export declare const WSRadioCapabilityChangedMessageSchema: z.ZodObject<{
7985
8084
  id: string;
7986
8085
  supported: boolean;
7987
8086
  updatedAt: number;
8087
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7988
8088
  meta?: Record<string, unknown> | undefined;
7989
8089
  lastError?: string | undefined;
7990
- availability?: "unknown" | "available" | "unavailable" | undefined;
7991
8090
  availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7992
8091
  };
7993
8092
  id?: string | undefined;
@@ -8271,9 +8370,9 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8271
8370
  label: string;
8272
8371
  }[] | undefined;
8273
8372
  default?: unknown;
8373
+ description?: string | undefined;
8274
8374
  min?: number | undefined;
8275
8375
  max?: number | undefined;
8276
- description?: string | undefined;
8277
8376
  itemFields?: {
8278
8377
  type: "string" | "number" | "boolean";
8279
8378
  label: string;
@@ -8291,9 +8390,9 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8291
8390
  label: string;
8292
8391
  }[] | undefined;
8293
8392
  default?: unknown;
8393
+ description?: string | undefined;
8294
8394
  min?: number | undefined;
8295
8395
  max?: number | undefined;
8296
- description?: string | undefined;
8297
8396
  itemFields?: {
8298
8397
  label: string;
8299
8398
  key: string;
@@ -8469,9 +8568,9 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8469
8568
  label: string;
8470
8569
  }[] | undefined;
8471
8570
  default?: unknown;
8571
+ description?: string | undefined;
8472
8572
  min?: number | undefined;
8473
8573
  max?: number | undefined;
8474
- description?: string | undefined;
8475
8574
  itemFields?: {
8476
8575
  type: "string" | "number" | "boolean";
8477
8576
  label: string;
@@ -8540,9 +8639,9 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8540
8639
  label: string;
8541
8640
  }[] | undefined;
8542
8641
  default?: unknown;
8642
+ description?: string | undefined;
8543
8643
  min?: number | undefined;
8544
8644
  max?: number | undefined;
8545
- description?: string | undefined;
8546
8645
  itemFields?: {
8547
8646
  label: string;
8548
8647
  key: string;
@@ -8742,9 +8841,9 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8742
8841
  label: string;
8743
8842
  }[] | undefined;
8744
8843
  default?: unknown;
8844
+ description?: string | undefined;
8745
8845
  min?: number | undefined;
8746
8846
  max?: number | undefined;
8747
- description?: string | undefined;
8748
8847
  itemFields?: {
8749
8848
  type: "string" | "number" | "boolean";
8750
8849
  label: string;
@@ -8848,9 +8947,9 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8848
8947
  label: string;
8849
8948
  }[] | undefined;
8850
8949
  default?: unknown;
8950
+ description?: string | undefined;
8851
8951
  min?: number | undefined;
8852
8952
  max?: number | undefined;
8853
- description?: string | undefined;
8854
8953
  itemFields?: {
8855
8954
  label: string;
8856
8955
  key: string;
@@ -8964,9 +9063,9 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8964
9063
  label: string;
8965
9064
  }[] | undefined;
8966
9065
  default?: unknown;
9066
+ description?: string | undefined;
8967
9067
  min?: number | undefined;
8968
9068
  max?: number | undefined;
8969
- description?: string | undefined;
8970
9069
  itemFields?: {
8971
9070
  type: "string" | "number" | "boolean";
8972
9071
  label: string;
@@ -9075,9 +9174,9 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
9075
9174
  label: string;
9076
9175
  }[] | undefined;
9077
9176
  default?: unknown;
9177
+ description?: string | undefined;
9078
9178
  min?: number | undefined;
9079
9179
  max?: number | undefined;
9080
- description?: string | undefined;
9081
9180
  itemFields?: {
9082
9181
  label: string;
9083
9182
  key: string;
@@ -9209,9 +9308,9 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9209
9308
  label: string;
9210
9309
  }[] | undefined;
9211
9310
  default?: unknown;
9311
+ description?: string | undefined;
9212
9312
  min?: number | undefined;
9213
9313
  max?: number | undefined;
9214
- description?: string | undefined;
9215
9314
  itemFields?: {
9216
9315
  type: "string" | "number" | "boolean";
9217
9316
  label: string;
@@ -9229,9 +9328,9 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9229
9328
  label: string;
9230
9329
  }[] | undefined;
9231
9330
  default?: unknown;
9331
+ description?: string | undefined;
9232
9332
  min?: number | undefined;
9233
9333
  max?: number | undefined;
9234
- description?: string | undefined;
9235
9334
  itemFields?: {
9236
9335
  label: string;
9237
9336
  key: string;
@@ -9407,9 +9506,9 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9407
9506
  label: string;
9408
9507
  }[] | undefined;
9409
9508
  default?: unknown;
9509
+ description?: string | undefined;
9410
9510
  min?: number | undefined;
9411
9511
  max?: number | undefined;
9412
- description?: string | undefined;
9413
9512
  itemFields?: {
9414
9513
  type: "string" | "number" | "boolean";
9415
9514
  label: string;
@@ -9478,9 +9577,9 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9478
9577
  label: string;
9479
9578
  }[] | undefined;
9480
9579
  default?: unknown;
9580
+ description?: string | undefined;
9481
9581
  min?: number | undefined;
9482
9582
  max?: number | undefined;
9483
- description?: string | undefined;
9484
9583
  itemFields?: {
9485
9584
  label: string;
9486
9585
  key: string;
@@ -9558,9 +9657,9 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9558
9657
  label: string;
9559
9658
  }[] | undefined;
9560
9659
  default?: unknown;
9660
+ description?: string | undefined;
9561
9661
  min?: number | undefined;
9562
9662
  max?: number | undefined;
9563
- description?: string | undefined;
9564
9663
  itemFields?: {
9565
9664
  type: "string" | "number" | "boolean";
9566
9665
  label: string;
@@ -9632,9 +9731,9 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9632
9731
  label: string;
9633
9732
  }[] | undefined;
9634
9733
  default?: unknown;
9734
+ description?: string | undefined;
9635
9735
  min?: number | undefined;
9636
9736
  max?: number | undefined;
9637
- description?: string | undefined;
9638
9737
  itemFields?: {
9639
9738
  label: string;
9640
9739
  key: string;
@@ -9716,9 +9815,9 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9716
9815
  label: string;
9717
9816
  }[] | undefined;
9718
9817
  default?: unknown;
9818
+ description?: string | undefined;
9719
9819
  min?: number | undefined;
9720
9820
  max?: number | undefined;
9721
- description?: string | undefined;
9722
9821
  itemFields?: {
9723
9822
  type: "string" | "number" | "boolean";
9724
9823
  label: string;
@@ -9795,9 +9894,9 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9795
9894
  label: string;
9796
9895
  }[] | undefined;
9797
9896
  default?: unknown;
9897
+ description?: string | undefined;
9798
9898
  min?: number | undefined;
9799
9899
  max?: number | undefined;
9800
- description?: string | undefined;
9801
9900
  itemFields?: {
9802
9901
  label: string;
9803
9902
  key: string;
@@ -10554,6 +10653,25 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10554
10653
  processingTimeMs: number;
10555
10654
  frameCount: number;
10556
10655
  }>, "many">>;
10656
+ frequencyContext: z.ZodOptional<z.ZodObject<{
10657
+ frequency: z.ZodOptional<z.ZodNumber>;
10658
+ mode: z.ZodOptional<z.ZodString>;
10659
+ band: z.ZodOptional<z.ZodString>;
10660
+ radioMode: z.ZodOptional<z.ZodString>;
10661
+ description: z.ZodOptional<z.ZodString>;
10662
+ }, "strip", z.ZodTypeAny, {
10663
+ mode?: string | undefined;
10664
+ frequency?: number | undefined;
10665
+ band?: string | undefined;
10666
+ radioMode?: string | undefined;
10667
+ description?: string | undefined;
10668
+ }, {
10669
+ mode?: string | undefined;
10670
+ frequency?: number | undefined;
10671
+ band?: string | undefined;
10672
+ radioMode?: string | undefined;
10673
+ description?: string | undefined;
10674
+ }>>;
10557
10675
  }, "strip", z.ZodTypeAny, {
10558
10676
  startMs: number;
10559
10677
  slotId: string;
@@ -10595,6 +10713,13 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10595
10713
  processingTimeMs: number;
10596
10714
  frameCount: number;
10597
10715
  }[];
10716
+ frequencyContext?: {
10717
+ mode?: string | undefined;
10718
+ frequency?: number | undefined;
10719
+ band?: string | undefined;
10720
+ radioMode?: string | undefined;
10721
+ description?: string | undefined;
10722
+ } | undefined;
10598
10723
  }, {
10599
10724
  startMs: number;
10600
10725
  slotId: string;
@@ -10636,6 +10761,13 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10636
10761
  processingTimeMs: number;
10637
10762
  frameCount: number;
10638
10763
  }[] | undefined;
10764
+ frequencyContext?: {
10765
+ mode?: string | undefined;
10766
+ frequency?: number | undefined;
10767
+ band?: string | undefined;
10768
+ radioMode?: string | undefined;
10769
+ description?: string | undefined;
10770
+ } | undefined;
10639
10771
  }>;
10640
10772
  }, "strip", z.ZodTypeAny, {
10641
10773
  type: WSMessageType.SLOT_PACK_UPDATED;
@@ -10681,6 +10813,13 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10681
10813
  processingTimeMs: number;
10682
10814
  frameCount: number;
10683
10815
  }[];
10816
+ frequencyContext?: {
10817
+ mode?: string | undefined;
10818
+ frequency?: number | undefined;
10819
+ band?: string | undefined;
10820
+ radioMode?: string | undefined;
10821
+ description?: string | undefined;
10822
+ } | undefined;
10684
10823
  };
10685
10824
  id?: string | undefined;
10686
10825
  }, {
@@ -10727,6 +10866,13 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10727
10866
  processingTimeMs: number;
10728
10867
  frameCount: number;
10729
10868
  }[] | undefined;
10869
+ frequencyContext?: {
10870
+ mode?: string | undefined;
10871
+ frequency?: number | undefined;
10872
+ band?: string | undefined;
10873
+ radioMode?: string | undefined;
10874
+ description?: string | undefined;
10875
+ } | undefined;
10730
10876
  };
10731
10877
  id?: string | undefined;
10732
10878
  }>, z.ZodObject<{
@@ -10748,20 +10894,20 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10748
10894
  supportsWaterfall: z.ZodBoolean;
10749
10895
  frequencyRangeMode: z.ZodEnum<["absolute", "baseband"]>;
10750
10896
  }, "strip", z.ZodTypeAny, {
10897
+ available: boolean;
10751
10898
  displayBinCount: number;
10752
10899
  kind: "audio" | "radio-sdr" | "openwebrx-sdr";
10753
10900
  supported: boolean;
10754
- available: boolean;
10755
10901
  defaultSelected: boolean;
10756
10902
  supportsWaterfall: boolean;
10757
10903
  frequencyRangeMode: "baseband" | "absolute";
10758
10904
  reason?: string | undefined;
10759
10905
  sourceBinCount?: number | null | undefined;
10760
10906
  }, {
10907
+ available: boolean;
10761
10908
  displayBinCount: number;
10762
10909
  kind: "audio" | "radio-sdr" | "openwebrx-sdr";
10763
10910
  supported: boolean;
10764
- available: boolean;
10765
10911
  defaultSelected: boolean;
10766
10912
  supportsWaterfall: boolean;
10767
10913
  frequencyRangeMode: "baseband" | "absolute";
@@ -10772,10 +10918,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10772
10918
  profileId: string | null;
10773
10919
  defaultKind: "audio" | "radio-sdr" | "openwebrx-sdr";
10774
10920
  sources: {
10921
+ available: boolean;
10775
10922
  displayBinCount: number;
10776
10923
  kind: "audio" | "radio-sdr" | "openwebrx-sdr";
10777
10924
  supported: boolean;
10778
- available: boolean;
10779
10925
  defaultSelected: boolean;
10780
10926
  supportsWaterfall: boolean;
10781
10927
  frequencyRangeMode: "baseband" | "absolute";
@@ -10786,10 +10932,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10786
10932
  profileId: string | null;
10787
10933
  defaultKind: "audio" | "radio-sdr" | "openwebrx-sdr";
10788
10934
  sources: {
10935
+ available: boolean;
10789
10936
  displayBinCount: number;
10790
10937
  kind: "audio" | "radio-sdr" | "openwebrx-sdr";
10791
10938
  supported: boolean;
10792
- available: boolean;
10793
10939
  defaultSelected: boolean;
10794
10940
  supportsWaterfall: boolean;
10795
10941
  frequencyRangeMode: "baseband" | "absolute";
@@ -10804,10 +10950,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10804
10950
  profileId: string | null;
10805
10951
  defaultKind: "audio" | "radio-sdr" | "openwebrx-sdr";
10806
10952
  sources: {
10953
+ available: boolean;
10807
10954
  displayBinCount: number;
10808
10955
  kind: "audio" | "radio-sdr" | "openwebrx-sdr";
10809
10956
  supported: boolean;
10810
- available: boolean;
10811
10957
  defaultSelected: boolean;
10812
10958
  supportsWaterfall: boolean;
10813
10959
  frequencyRangeMode: "baseband" | "absolute";
@@ -10823,10 +10969,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10823
10969
  profileId: string | null;
10824
10970
  defaultKind: "audio" | "radio-sdr" | "openwebrx-sdr";
10825
10971
  sources: {
10972
+ available: boolean;
10826
10973
  displayBinCount: number;
10827
10974
  kind: "audio" | "radio-sdr" | "openwebrx-sdr";
10828
10975
  supported: boolean;
10829
- available: boolean;
10830
10976
  defaultSelected: boolean;
10831
10977
  supportsWaterfall: boolean;
10832
10978
  frequencyRangeMode: "baseband" | "absolute";
@@ -11102,14 +11248,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11102
11248
  }, "strip", z.ZodTypeAny, {
11103
11249
  id: string;
11104
11250
  frequency: number;
11105
- label: string;
11106
11251
  description: string | null;
11252
+ label: string;
11107
11253
  clickable: boolean;
11108
11254
  }, {
11109
11255
  id: string;
11110
11256
  frequency: number;
11111
- label: string;
11112
11257
  description: string | null;
11258
+ label: string;
11113
11259
  clickable: boolean;
11114
11260
  }>, "many">;
11115
11261
  canDragVoiceOverlay: z.ZodBoolean;
@@ -11131,8 +11277,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11131
11277
  presetMarkers: {
11132
11278
  id: string;
11133
11279
  frequency: number;
11134
- label: string;
11135
11280
  description: string | null;
11281
+ label: string;
11136
11282
  clickable: boolean;
11137
11283
  }[];
11138
11284
  canDragVoiceOverlay: boolean;
@@ -11154,8 +11300,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11154
11300
  presetMarkers: {
11155
11301
  id: string;
11156
11302
  frequency: number;
11157
- label: string;
11158
11303
  description: string | null;
11304
+ label: string;
11159
11305
  clickable: boolean;
11160
11306
  }[];
11161
11307
  canDragVoiceOverlay: boolean;
@@ -11176,19 +11322,19 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11176
11322
  pending: z.ZodBoolean;
11177
11323
  }, "strip", z.ZodTypeAny, {
11178
11324
  id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
11325
+ active: boolean;
11179
11326
  kind: "server" | "local";
11180
11327
  action: "in" | "out" | "toggle";
11181
11328
  visible: boolean;
11182
11329
  enabled: boolean;
11183
- active: boolean;
11184
11330
  pending: boolean;
11185
11331
  }, {
11186
11332
  id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
11333
+ active: boolean;
11187
11334
  kind: "server" | "local";
11188
11335
  action: "in" | "out" | "toggle";
11189
11336
  visible: boolean;
11190
11337
  enabled: boolean;
11191
- active: boolean;
11192
11338
  pending: boolean;
11193
11339
  }>, "many">;
11194
11340
  }, "strip", z.ZodTypeAny, {
@@ -11223,8 +11369,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11223
11369
  presetMarkers: {
11224
11370
  id: string;
11225
11371
  frequency: number;
11226
- label: string;
11227
11372
  description: string | null;
11373
+ label: string;
11228
11374
  clickable: boolean;
11229
11375
  }[];
11230
11376
  canDragVoiceOverlay: boolean;
@@ -11237,11 +11383,11 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11237
11383
  };
11238
11384
  controls: {
11239
11385
  id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
11386
+ active: boolean;
11240
11387
  kind: "server" | "local";
11241
11388
  action: "in" | "out" | "toggle";
11242
11389
  visible: boolean;
11243
11390
  enabled: boolean;
11244
- active: boolean;
11245
11391
  pending: boolean;
11246
11392
  }[];
11247
11393
  }, {
@@ -11276,8 +11422,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11276
11422
  presetMarkers: {
11277
11423
  id: string;
11278
11424
  frequency: number;
11279
- label: string;
11280
11425
  description: string | null;
11426
+ label: string;
11281
11427
  clickable: boolean;
11282
11428
  }[];
11283
11429
  canDragVoiceOverlay: boolean;
@@ -11290,11 +11436,11 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11290
11436
  };
11291
11437
  controls: {
11292
11438
  id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
11439
+ active: boolean;
11293
11440
  kind: "server" | "local";
11294
11441
  action: "in" | "out" | "toggle";
11295
11442
  visible: boolean;
11296
11443
  enabled: boolean;
11297
- active: boolean;
11298
11444
  pending: boolean;
11299
11445
  }[];
11300
11446
  }>;
@@ -11333,8 +11479,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11333
11479
  presetMarkers: {
11334
11480
  id: string;
11335
11481
  frequency: number;
11336
- label: string;
11337
11482
  description: string | null;
11483
+ label: string;
11338
11484
  clickable: boolean;
11339
11485
  }[];
11340
11486
  canDragVoiceOverlay: boolean;
@@ -11347,11 +11493,11 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11347
11493
  };
11348
11494
  controls: {
11349
11495
  id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
11496
+ active: boolean;
11350
11497
  kind: "server" | "local";
11351
11498
  action: "in" | "out" | "toggle";
11352
11499
  visible: boolean;
11353
11500
  enabled: boolean;
11354
- active: boolean;
11355
11501
  pending: boolean;
11356
11502
  }[];
11357
11503
  };
@@ -11391,8 +11537,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11391
11537
  presetMarkers: {
11392
11538
  id: string;
11393
11539
  frequency: number;
11394
- label: string;
11395
11540
  description: string | null;
11541
+ label: string;
11396
11542
  clickable: boolean;
11397
11543
  }[];
11398
11544
  canDragVoiceOverlay: boolean;
@@ -11405,11 +11551,11 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11405
11551
  };
11406
11552
  controls: {
11407
11553
  id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
11554
+ active: boolean;
11408
11555
  kind: "server" | "local";
11409
11556
  action: "in" | "out" | "toggle";
11410
11557
  visible: boolean;
11411
11558
  enabled: boolean;
11412
- active: boolean;
11413
11559
  pending: boolean;
11414
11560
  }[];
11415
11561
  };
@@ -11599,7 +11745,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11599
11745
  connectionHealthy: boolean;
11600
11746
  } | undefined;
11601
11747
  currentRadioMode?: string | undefined;
11602
- engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
11748
+ engineState?: "idle" | "stopping" | "starting" | "running" | undefined;
11603
11749
  engineContext?: {
11604
11750
  error?: string | undefined;
11605
11751
  startedResources?: string[] | undefined;
@@ -11625,7 +11771,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11625
11771
  } | undefined;
11626
11772
  engineMode?: "voice" | "digital" | undefined;
11627
11773
  currentRadioMode?: string | undefined;
11628
- engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
11774
+ engineState?: "idle" | "stopping" | "starting" | "running" | undefined;
11629
11775
  engineContext?: {
11630
11776
  error?: string | undefined;
11631
11777
  startedResources?: string[] | undefined;
@@ -11655,7 +11801,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11655
11801
  connectionHealthy: boolean;
11656
11802
  } | undefined;
11657
11803
  currentRadioMode?: string | undefined;
11658
- engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
11804
+ engineState?: "idle" | "stopping" | "starting" | "running" | undefined;
11659
11805
  engineContext?: {
11660
11806
  error?: string | undefined;
11661
11807
  startedResources?: string[] | undefined;
@@ -11686,7 +11832,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11686
11832
  } | undefined;
11687
11833
  engineMode?: "voice" | "digital" | undefined;
11688
11834
  currentRadioMode?: string | undefined;
11689
- engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
11835
+ engineState?: "idle" | "stopping" | "starting" | "running" | undefined;
11690
11836
  engineContext?: {
11691
11837
  error?: string | undefined;
11692
11838
  startedResources?: string[] | undefined;
@@ -11870,18 +12016,54 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11870
12016
  message: z.ZodString;
11871
12017
  frequency: z.ZodNumber;
11872
12018
  slotStartMs: z.ZodNumber;
12019
+ replaceExisting: z.ZodOptional<z.ZodBoolean>;
12020
+ frequencyContext: z.ZodOptional<z.ZodObject<{
12021
+ frequency: z.ZodOptional<z.ZodNumber>;
12022
+ mode: z.ZodOptional<z.ZodString>;
12023
+ band: z.ZodOptional<z.ZodString>;
12024
+ radioMode: z.ZodOptional<z.ZodString>;
12025
+ description: z.ZodOptional<z.ZodString>;
12026
+ }, "strip", z.ZodTypeAny, {
12027
+ mode?: string | undefined;
12028
+ frequency?: number | undefined;
12029
+ band?: string | undefined;
12030
+ radioMode?: string | undefined;
12031
+ description?: string | undefined;
12032
+ }, {
12033
+ mode?: string | undefined;
12034
+ frequency?: number | undefined;
12035
+ band?: string | undefined;
12036
+ radioMode?: string | undefined;
12037
+ description?: string | undefined;
12038
+ }>>;
11873
12039
  }, "strip", z.ZodTypeAny, {
11874
12040
  message: string;
11875
12041
  operatorId: string;
11876
12042
  frequency: number;
11877
12043
  time: string;
11878
12044
  slotStartMs: number;
12045
+ frequencyContext?: {
12046
+ mode?: string | undefined;
12047
+ frequency?: number | undefined;
12048
+ band?: string | undefined;
12049
+ radioMode?: string | undefined;
12050
+ description?: string | undefined;
12051
+ } | undefined;
12052
+ replaceExisting?: boolean | undefined;
11879
12053
  }, {
11880
12054
  message: string;
11881
12055
  operatorId: string;
11882
12056
  frequency: number;
11883
12057
  time: string;
11884
12058
  slotStartMs: number;
12059
+ frequencyContext?: {
12060
+ mode?: string | undefined;
12061
+ frequency?: number | undefined;
12062
+ band?: string | undefined;
12063
+ radioMode?: string | undefined;
12064
+ description?: string | undefined;
12065
+ } | undefined;
12066
+ replaceExisting?: boolean | undefined;
11885
12067
  }>;
11886
12068
  }, "strip", z.ZodTypeAny, {
11887
12069
  type: WSMessageType.TRANSMISSION_LOG;
@@ -11892,6 +12074,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11892
12074
  frequency: number;
11893
12075
  time: string;
11894
12076
  slotStartMs: number;
12077
+ frequencyContext?: {
12078
+ mode?: string | undefined;
12079
+ frequency?: number | undefined;
12080
+ band?: string | undefined;
12081
+ radioMode?: string | undefined;
12082
+ description?: string | undefined;
12083
+ } | undefined;
12084
+ replaceExisting?: boolean | undefined;
11895
12085
  };
11896
12086
  id?: string | undefined;
11897
12087
  }, {
@@ -11903,6 +12093,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11903
12093
  frequency: number;
11904
12094
  time: string;
11905
12095
  slotStartMs: number;
12096
+ frequencyContext?: {
12097
+ mode?: string | undefined;
12098
+ frequency?: number | undefined;
12099
+ band?: string | undefined;
12100
+ radioMode?: string | undefined;
12101
+ description?: string | undefined;
12102
+ } | undefined;
12103
+ replaceExisting?: boolean | undefined;
11906
12104
  };
11907
12105
  id?: string | undefined;
11908
12106
  }>, z.ZodObject<{
@@ -12214,6 +12412,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12214
12412
  };
12215
12413
  isTransmitting: boolean;
12216
12414
  transmitCycles?: number[] | undefined;
12415
+ currentSlot?: string | undefined;
12217
12416
  runtime?: {
12218
12417
  currentState: string;
12219
12418
  slots?: {
@@ -12242,7 +12441,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12242
12441
  TX6?: string | undefined;
12243
12442
  } | undefined;
12244
12443
  isInActivePTT?: boolean | undefined;
12245
- currentSlot?: string | undefined;
12246
12444
  }, {
12247
12445
  id: string;
12248
12446
  strategy: {
@@ -12262,6 +12460,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12262
12460
  };
12263
12461
  isTransmitting: boolean;
12264
12462
  transmitCycles?: number[] | undefined;
12463
+ currentSlot?: string | undefined;
12265
12464
  runtime?: {
12266
12465
  currentState: string;
12267
12466
  slots?: {
@@ -12290,7 +12489,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12290
12489
  TX6?: string | undefined;
12291
12490
  } | undefined;
12292
12491
  isInActivePTT?: boolean | undefined;
12293
- currentSlot?: string | undefined;
12294
12492
  }>, "many">;
12295
12493
  }, "strip", z.ZodTypeAny, {
12296
12494
  operators: {
@@ -12312,6 +12510,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12312
12510
  };
12313
12511
  isTransmitting: boolean;
12314
12512
  transmitCycles?: number[] | undefined;
12513
+ currentSlot?: string | undefined;
12315
12514
  runtime?: {
12316
12515
  currentState: string;
12317
12516
  slots?: {
@@ -12340,7 +12539,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12340
12539
  TX6?: string | undefined;
12341
12540
  } | undefined;
12342
12541
  isInActivePTT?: boolean | undefined;
12343
- currentSlot?: string | undefined;
12344
12542
  }[];
12345
12543
  }, {
12346
12544
  operators: {
@@ -12362,6 +12560,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12362
12560
  };
12363
12561
  isTransmitting: boolean;
12364
12562
  transmitCycles?: number[] | undefined;
12563
+ currentSlot?: string | undefined;
12365
12564
  runtime?: {
12366
12565
  currentState: string;
12367
12566
  slots?: {
@@ -12390,7 +12589,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12390
12589
  TX6?: string | undefined;
12391
12590
  } | undefined;
12392
12591
  isInActivePTT?: boolean | undefined;
12393
- currentSlot?: string | undefined;
12394
12592
  }[];
12395
12593
  }>;
12396
12594
  }, "strip", z.ZodTypeAny, {
@@ -12416,6 +12614,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12416
12614
  };
12417
12615
  isTransmitting: boolean;
12418
12616
  transmitCycles?: number[] | undefined;
12617
+ currentSlot?: string | undefined;
12419
12618
  runtime?: {
12420
12619
  currentState: string;
12421
12620
  slots?: {
@@ -12444,7 +12643,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12444
12643
  TX6?: string | undefined;
12445
12644
  } | undefined;
12446
12645
  isInActivePTT?: boolean | undefined;
12447
- currentSlot?: string | undefined;
12448
12646
  }[];
12449
12647
  };
12450
12648
  id?: string | undefined;
@@ -12471,6 +12669,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12471
12669
  };
12472
12670
  isTransmitting: boolean;
12473
12671
  transmitCycles?: number[] | undefined;
12672
+ currentSlot?: string | undefined;
12474
12673
  runtime?: {
12475
12674
  currentState: string;
12476
12675
  slots?: {
@@ -12499,7 +12698,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12499
12698
  TX6?: string | undefined;
12500
12699
  } | undefined;
12501
12700
  isInActivePTT?: boolean | undefined;
12502
- currentSlot?: string | undefined;
12503
12701
  }[];
12504
12702
  };
12505
12703
  id?: string | undefined;
@@ -12675,6 +12873,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12675
12873
  };
12676
12874
  isTransmitting: boolean;
12677
12875
  transmitCycles?: number[] | undefined;
12876
+ currentSlot?: string | undefined;
12678
12877
  runtime?: {
12679
12878
  currentState: string;
12680
12879
  slots?: {
@@ -12703,7 +12902,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12703
12902
  TX6?: string | undefined;
12704
12903
  } | undefined;
12705
12904
  isInActivePTT?: boolean | undefined;
12706
- currentSlot?: string | undefined;
12707
12905
  }, {
12708
12906
  id: string;
12709
12907
  strategy: {
@@ -12723,6 +12921,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12723
12921
  };
12724
12922
  isTransmitting: boolean;
12725
12923
  transmitCycles?: number[] | undefined;
12924
+ currentSlot?: string | undefined;
12726
12925
  runtime?: {
12727
12926
  currentState: string;
12728
12927
  slots?: {
@@ -12751,7 +12950,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12751
12950
  TX6?: string | undefined;
12752
12951
  } | undefined;
12753
12952
  isInActivePTT?: boolean | undefined;
12754
- currentSlot?: string | undefined;
12755
12953
  }>;
12756
12954
  }, "strip", z.ZodTypeAny, {
12757
12955
  type: WSMessageType.OPERATOR_STATUS_UPDATE;
@@ -12775,6 +12973,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12775
12973
  };
12776
12974
  isTransmitting: boolean;
12777
12975
  transmitCycles?: number[] | undefined;
12976
+ currentSlot?: string | undefined;
12778
12977
  runtime?: {
12779
12978
  currentState: string;
12780
12979
  slots?: {
@@ -12803,7 +13002,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12803
13002
  TX6?: string | undefined;
12804
13003
  } | undefined;
12805
13004
  isInActivePTT?: boolean | undefined;
12806
- currentSlot?: string | undefined;
12807
13005
  };
12808
13006
  id?: string | undefined;
12809
13007
  }, {
@@ -12828,6 +13026,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12828
13026
  };
12829
13027
  isTransmitting: boolean;
12830
13028
  transmitCycles?: number[] | undefined;
13029
+ currentSlot?: string | undefined;
12831
13030
  runtime?: {
12832
13031
  currentState: string;
12833
13032
  slots?: {
@@ -12856,7 +13055,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12856
13055
  TX6?: string | undefined;
12857
13056
  } | undefined;
12858
13057
  isInActivePTT?: boolean | undefined;
12859
- currentSlot?: string | undefined;
12860
13058
  };
12861
13059
  id?: string | undefined;
12862
13060
  }>, z.ZodObject<{
@@ -15570,16 +15768,16 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15570
15768
  radioConnected: boolean;
15571
15769
  mode: string;
15572
15770
  frequency: number;
15573
- description: string;
15574
15771
  band: string;
15772
+ description: string;
15575
15773
  radioMode?: string | undefined;
15576
15774
  source?: "radio" | "program" | undefined;
15577
15775
  }, {
15578
15776
  radioConnected: boolean;
15579
15777
  mode: string;
15580
15778
  frequency: number;
15581
- description: string;
15582
15779
  band: string;
15780
+ description: string;
15583
15781
  radioMode?: string | undefined;
15584
15782
  source?: "radio" | "program" | undefined;
15585
15783
  }>;
@@ -15590,8 +15788,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15590
15788
  radioConnected: boolean;
15591
15789
  mode: string;
15592
15790
  frequency: number;
15593
- description: string;
15594
15791
  band: string;
15792
+ description: string;
15595
15793
  radioMode?: string | undefined;
15596
15794
  source?: "radio" | "program" | undefined;
15597
15795
  };
@@ -15603,8 +15801,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15603
15801
  radioConnected: boolean;
15604
15802
  mode: string;
15605
15803
  frequency: number;
15606
- description: string;
15607
15804
  band: string;
15805
+ description: string;
15608
15806
  radioMode?: string | undefined;
15609
15807
  source?: "radio" | "program" | undefined;
15610
15808
  };
@@ -16280,9 +16478,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16280
16478
  label: string;
16281
16479
  }[] | undefined;
16282
16480
  default?: unknown;
16481
+ description?: string | undefined;
16283
16482
  min?: number | undefined;
16284
16483
  max?: number | undefined;
16285
- description?: string | undefined;
16286
16484
  itemFields?: {
16287
16485
  type: "string" | "number" | "boolean";
16288
16486
  label: string;
@@ -16300,9 +16498,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16300
16498
  label: string;
16301
16499
  }[] | undefined;
16302
16500
  default?: unknown;
16501
+ description?: string | undefined;
16303
16502
  min?: number | undefined;
16304
16503
  max?: number | undefined;
16305
- description?: string | undefined;
16306
16504
  itemFields?: {
16307
16505
  label: string;
16308
16506
  key: string;
@@ -16478,9 +16676,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16478
16676
  label: string;
16479
16677
  }[] | undefined;
16480
16678
  default?: unknown;
16679
+ description?: string | undefined;
16481
16680
  min?: number | undefined;
16482
16681
  max?: number | undefined;
16483
- description?: string | undefined;
16484
16682
  itemFields?: {
16485
16683
  type: "string" | "number" | "boolean";
16486
16684
  label: string;
@@ -16549,9 +16747,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16549
16747
  label: string;
16550
16748
  }[] | undefined;
16551
16749
  default?: unknown;
16750
+ description?: string | undefined;
16552
16751
  min?: number | undefined;
16553
16752
  max?: number | undefined;
16554
- description?: string | undefined;
16555
16753
  itemFields?: {
16556
16754
  label: string;
16557
16755
  key: string;
@@ -16751,9 +16949,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16751
16949
  label: string;
16752
16950
  }[] | undefined;
16753
16951
  default?: unknown;
16952
+ description?: string | undefined;
16754
16953
  min?: number | undefined;
16755
16954
  max?: number | undefined;
16756
- description?: string | undefined;
16757
16955
  itemFields?: {
16758
16956
  type: "string" | "number" | "boolean";
16759
16957
  label: string;
@@ -16857,9 +17055,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16857
17055
  label: string;
16858
17056
  }[] | undefined;
16859
17057
  default?: unknown;
17058
+ description?: string | undefined;
16860
17059
  min?: number | undefined;
16861
17060
  max?: number | undefined;
16862
- description?: string | undefined;
16863
17061
  itemFields?: {
16864
17062
  label: string;
16865
17063
  key: string;
@@ -16973,9 +17171,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16973
17171
  label: string;
16974
17172
  }[] | undefined;
16975
17173
  default?: unknown;
17174
+ description?: string | undefined;
16976
17175
  min?: number | undefined;
16977
17176
  max?: number | undefined;
16978
- description?: string | undefined;
16979
17177
  itemFields?: {
16980
17178
  type: "string" | "number" | "boolean";
16981
17179
  label: string;
@@ -17084,9 +17282,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
17084
17282
  label: string;
17085
17283
  }[] | undefined;
17086
17284
  default?: unknown;
17285
+ description?: string | undefined;
17087
17286
  min?: number | undefined;
17088
17287
  max?: number | undefined;
17089
- description?: string | undefined;
17090
17288
  itemFields?: {
17091
17289
  label: string;
17092
17290
  key: string;
@@ -17216,9 +17414,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
17216
17414
  label: string;
17217
17415
  }[] | undefined;
17218
17416
  default?: unknown;
17417
+ description?: string | undefined;
17219
17418
  min?: number | undefined;
17220
17419
  max?: number | undefined;
17221
- description?: string | undefined;
17222
17420
  itemFields?: {
17223
17421
  type: "string" | "number" | "boolean";
17224
17422
  label: string;
@@ -17236,9 +17434,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
17236
17434
  label: string;
17237
17435
  }[] | undefined;
17238
17436
  default?: unknown;
17437
+ description?: string | undefined;
17239
17438
  min?: number | undefined;
17240
17439
  max?: number | undefined;
17241
- description?: string | undefined;
17242
17440
  itemFields?: {
17243
17441
  label: string;
17244
17442
  key: string;
@@ -17414,9 +17612,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
17414
17612
  label: string;
17415
17613
  }[] | undefined;
17416
17614
  default?: unknown;
17615
+ description?: string | undefined;
17417
17616
  min?: number | undefined;
17418
17617
  max?: number | undefined;
17419
- description?: string | undefined;
17420
17618
  itemFields?: {
17421
17619
  type: "string" | "number" | "boolean";
17422
17620
  label: string;
@@ -17485,9 +17683,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
17485
17683
  label: string;
17486
17684
  }[] | undefined;
17487
17685
  default?: unknown;
17686
+ description?: string | undefined;
17488
17687
  min?: number | undefined;
17489
17688
  max?: number | undefined;
17490
- description?: string | undefined;
17491
17689
  itemFields?: {
17492
17690
  label: string;
17493
17691
  key: string;
@@ -17565,9 +17763,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
17565
17763
  label: string;
17566
17764
  }[] | undefined;
17567
17765
  default?: unknown;
17766
+ description?: string | undefined;
17568
17767
  min?: number | undefined;
17569
17768
  max?: number | undefined;
17570
- description?: string | undefined;
17571
17769
  itemFields?: {
17572
17770
  type: "string" | "number" | "boolean";
17573
17771
  label: string;
@@ -17639,9 +17837,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
17639
17837
  label: string;
17640
17838
  }[] | undefined;
17641
17839
  default?: unknown;
17840
+ description?: string | undefined;
17642
17841
  min?: number | undefined;
17643
17842
  max?: number | undefined;
17644
- description?: string | undefined;
17645
17843
  itemFields?: {
17646
17844
  label: string;
17647
17845
  key: string;
@@ -17723,9 +17921,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
17723
17921
  label: string;
17724
17922
  }[] | undefined;
17725
17923
  default?: unknown;
17924
+ description?: string | undefined;
17726
17925
  min?: number | undefined;
17727
17926
  max?: number | undefined;
17728
- description?: string | undefined;
17729
17927
  itemFields?: {
17730
17928
  type: "string" | "number" | "boolean";
17731
17929
  label: string;
@@ -17802,9 +18000,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
17802
18000
  label: string;
17803
18001
  }[] | undefined;
17804
18002
  default?: unknown;
18003
+ description?: string | undefined;
17805
18004
  min?: number | undefined;
17806
18005
  max?: number | undefined;
17807
- description?: string | undefined;
17808
18006
  itemFields?: {
17809
18007
  label: string;
17810
18008
  key: string;
@@ -18261,6 +18459,7 @@ export interface DigitalRadioEngineEvents {
18261
18459
  frequency: number;
18262
18460
  slotStartMs: number;
18263
18461
  replaceExisting?: boolean;
18462
+ frequencyContext?: z.infer<typeof SlotPackFrequencyContextSchema>;
18264
18463
  }) => void;
18265
18464
  operatorsList: (data: {
18266
18465
  operators: OperatorStatus[];
@@ -18372,6 +18571,31 @@ export interface DigitalRadioEngineEvents {
18372
18571
  }) => void;
18373
18572
  pluginPanelMeta: (data: import('./plugin.schema.js').PluginPanelMetaPayload) => void;
18374
18573
  pluginPanelContributionsChanged: (data: import('./plugin.schema.js').PluginUIPanelContributionGroup) => void;
18574
+ pluginRemoteReplyToDecode: (data: {
18575
+ operatorId: string;
18576
+ callsign: string;
18577
+ modifiers?: number;
18578
+ }) => void;
18579
+ pluginRemoteClearDecodes: (data: {
18580
+ operatorId: string;
18581
+ window?: number;
18582
+ }) => void;
18583
+ pluginRemoteFreeText: (data: {
18584
+ operatorId: string;
18585
+ text?: string;
18586
+ send: boolean;
18587
+ }) => void;
18588
+ pluginRemoteLocation: (data: {
18589
+ operatorId: string;
18590
+ location: string;
18591
+ }) => void;
18592
+ pluginRemoteHighlightCallsign: (data: {
18593
+ operatorId: string;
18594
+ callsign: string;
18595
+ background?: string | null;
18596
+ foreground?: string | null;
18597
+ lastOnly?: boolean;
18598
+ }) => void;
18375
18599
  encodeStart: (slotInfo: z.infer<typeof SlotInfoSchema>) => void;
18376
18600
  transmitStart: (slotInfo: z.infer<typeof SlotInfoSchema>) => void;
18377
18601
  timingWarning: (data: {