@tx5dr/contracts 1.7.1 → 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.
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/schema/__tests__/audio.schema.test.js +4 -0
- package/dist/schema/__tests__/audio.schema.test.js.map +1 -1
- package/dist/schema/__tests__/operator.schema.test.d.ts +2 -0
- package/dist/schema/__tests__/operator.schema.test.d.ts.map +1 -0
- package/dist/schema/__tests__/operator.schema.test.js +23 -0
- package/dist/schema/__tests__/operator.schema.test.js.map +1 -0
- package/dist/schema/__tests__/plugin-runtime-log.schema.test.js +13 -1
- package/dist/schema/__tests__/plugin-runtime-log.schema.test.js.map +1 -1
- package/dist/schema/__tests__/process-monitor.schema.test.d.ts +2 -0
- package/dist/schema/__tests__/process-monitor.schema.test.d.ts.map +1 -0
- package/dist/schema/__tests__/process-monitor.schema.test.js +139 -0
- package/dist/schema/__tests__/process-monitor.schema.test.js.map +1 -0
- package/dist/schema/api-response.schema.d.ts +2 -2
- package/dist/schema/audio.schema.d.ts +369 -0
- package/dist/schema/audio.schema.d.ts.map +1 -1
- package/dist/schema/audio.schema.js +3 -0
- package/dist/schema/audio.schema.js.map +1 -1
- package/dist/schema/logbook.schema.d.ts +2 -2
- package/dist/schema/operator.schema.d.ts +10 -10
- package/dist/schema/operator.schema.d.ts.map +1 -1
- package/dist/schema/operator.schema.js +6 -1
- package/dist/schema/operator.schema.js.map +1 -1
- package/dist/schema/plugin.schema.d.ts +99 -22
- package/dist/schema/plugin.schema.d.ts.map +1 -1
- package/dist/schema/plugin.schema.js +5 -1
- package/dist/schema/plugin.schema.js.map +1 -1
- package/dist/schema/process-monitor.schema.d.ts +1373 -0
- package/dist/schema/process-monitor.schema.d.ts.map +1 -1
- package/dist/schema/process-monitor.schema.js +43 -0
- package/dist/schema/process-monitor.schema.js.map +1 -1
- package/dist/schema/radio-capability.schema.d.ts +6 -6
- package/dist/schema/radio.schema.d.ts +6 -6
- package/dist/schema/slot-info.schema.d.ts +136 -0
- package/dist/schema/slot-info.schema.d.ts.map +1 -1
- package/dist/schema/slot-info.schema.js +27 -2
- package/dist/schema/slot-info.schema.js.map +1 -1
- package/dist/schema/spectrum.schema.d.ts +24 -24
- package/dist/schema/voice-keyer.schema.d.ts +2 -2
- package/dist/schema/websocket.schema.d.ts +467 -159
- package/dist/schema/websocket.schema.d.ts.map +1 -1
- package/dist/schema/websocket.schema.js +4 -2
- package/dist/schema/websocket.schema.js.map +1 -1
- package/dist/utils/callsign.d.ts +2 -0
- package/dist/utils/callsign.d.ts.map +1 -0
- package/dist/utils/callsign.js +8 -0
- package/dist/utils/callsign.js.map +1 -0
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/schema/__tests__/audio.schema.test.ts +4 -0
- package/src/schema/__tests__/operator.schema.test.ts +29 -0
- package/src/schema/__tests__/plugin-runtime-log.schema.test.ts +13 -1
- package/src/schema/__tests__/process-monitor.schema.test.ts +146 -0
- package/src/schema/audio.schema.ts +3 -0
- package/src/schema/operator.schema.ts +7 -1
- package/src/schema/plugin.schema.ts +7 -1
- package/src/schema/process-monitor.schema.ts +51 -0
- package/src/schema/slot-info.schema.ts +33 -2
- package/src/schema/websocket.schema.ts +16 -2
- package/src/utils/callsign.ts +9 -0
- 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" | "
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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;
|
|
@@ -10016,7 +10115,7 @@ export declare const WSPluginRuntimeLogHistoryMessageSchema: z.ZodObject<{
|
|
|
10016
10115
|
} & {
|
|
10017
10116
|
type: z.ZodLiteral<WSMessageType.PLUGIN_RUNTIME_LOG_HISTORY>;
|
|
10018
10117
|
data: z.ZodObject<{
|
|
10019
|
-
entries: z.ZodArray<z.ZodObject<{
|
|
10118
|
+
entries: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
10020
10119
|
source: z.ZodLiteral<"system">;
|
|
10021
10120
|
stage: z.ZodEnum<["scan", "load", "validate", "reload", "activate"]>;
|
|
10022
10121
|
level: z.ZodEnum<["debug", "info", "warn", "error"]>;
|
|
@@ -10043,9 +10142,33 @@ export declare const WSPluginRuntimeLogHistoryMessageSchema: z.ZodObject<{
|
|
|
10043
10142
|
pluginName?: string | undefined;
|
|
10044
10143
|
directoryName?: string | undefined;
|
|
10045
10144
|
details?: unknown;
|
|
10046
|
-
}>,
|
|
10145
|
+
}>, z.ZodObject<{
|
|
10146
|
+
pluginName: z.ZodString;
|
|
10147
|
+
level: z.ZodEnum<["debug", "info", "warn", "error"]>;
|
|
10148
|
+
message: z.ZodString;
|
|
10149
|
+
data: z.ZodOptional<z.ZodUnknown>;
|
|
10150
|
+
timestamp: z.ZodNumber;
|
|
10151
|
+
}, "strip", z.ZodTypeAny, {
|
|
10152
|
+
message: string;
|
|
10153
|
+
timestamp: number;
|
|
10154
|
+
pluginName: string;
|
|
10155
|
+
level: "error" | "info" | "debug" | "warn";
|
|
10156
|
+
data?: unknown;
|
|
10157
|
+
}, {
|
|
10158
|
+
message: string;
|
|
10159
|
+
timestamp: number;
|
|
10160
|
+
pluginName: string;
|
|
10161
|
+
level: "error" | "info" | "debug" | "warn";
|
|
10162
|
+
data?: unknown;
|
|
10163
|
+
}>]>, "many">;
|
|
10047
10164
|
}, "strip", z.ZodTypeAny, {
|
|
10048
|
-
entries: {
|
|
10165
|
+
entries: ({
|
|
10166
|
+
message: string;
|
|
10167
|
+
timestamp: number;
|
|
10168
|
+
pluginName: string;
|
|
10169
|
+
level: "error" | "info" | "debug" | "warn";
|
|
10170
|
+
data?: unknown;
|
|
10171
|
+
} | {
|
|
10049
10172
|
message: string;
|
|
10050
10173
|
timestamp: number;
|
|
10051
10174
|
source: "system";
|
|
@@ -10054,9 +10177,15 @@ export declare const WSPluginRuntimeLogHistoryMessageSchema: z.ZodObject<{
|
|
|
10054
10177
|
pluginName?: string | undefined;
|
|
10055
10178
|
directoryName?: string | undefined;
|
|
10056
10179
|
details?: unknown;
|
|
10057
|
-
}[];
|
|
10180
|
+
})[];
|
|
10058
10181
|
}, {
|
|
10059
|
-
entries: {
|
|
10182
|
+
entries: ({
|
|
10183
|
+
message: string;
|
|
10184
|
+
timestamp: number;
|
|
10185
|
+
pluginName: string;
|
|
10186
|
+
level: "error" | "info" | "debug" | "warn";
|
|
10187
|
+
data?: unknown;
|
|
10188
|
+
} | {
|
|
10060
10189
|
message: string;
|
|
10061
10190
|
timestamp: number;
|
|
10062
10191
|
source: "system";
|
|
@@ -10065,13 +10194,19 @@ export declare const WSPluginRuntimeLogHistoryMessageSchema: z.ZodObject<{
|
|
|
10065
10194
|
pluginName?: string | undefined;
|
|
10066
10195
|
directoryName?: string | undefined;
|
|
10067
10196
|
details?: unknown;
|
|
10068
|
-
}[];
|
|
10197
|
+
})[];
|
|
10069
10198
|
}>;
|
|
10070
10199
|
}, "strip", z.ZodTypeAny, {
|
|
10071
10200
|
type: WSMessageType.PLUGIN_RUNTIME_LOG_HISTORY;
|
|
10072
10201
|
timestamp: string;
|
|
10073
10202
|
data: {
|
|
10074
|
-
entries: {
|
|
10203
|
+
entries: ({
|
|
10204
|
+
message: string;
|
|
10205
|
+
timestamp: number;
|
|
10206
|
+
pluginName: string;
|
|
10207
|
+
level: "error" | "info" | "debug" | "warn";
|
|
10208
|
+
data?: unknown;
|
|
10209
|
+
} | {
|
|
10075
10210
|
message: string;
|
|
10076
10211
|
timestamp: number;
|
|
10077
10212
|
source: "system";
|
|
@@ -10080,14 +10215,20 @@ export declare const WSPluginRuntimeLogHistoryMessageSchema: z.ZodObject<{
|
|
|
10080
10215
|
pluginName?: string | undefined;
|
|
10081
10216
|
directoryName?: string | undefined;
|
|
10082
10217
|
details?: unknown;
|
|
10083
|
-
}[];
|
|
10218
|
+
})[];
|
|
10084
10219
|
};
|
|
10085
10220
|
id?: string | undefined;
|
|
10086
10221
|
}, {
|
|
10087
10222
|
type: WSMessageType.PLUGIN_RUNTIME_LOG_HISTORY;
|
|
10088
10223
|
timestamp: string;
|
|
10089
10224
|
data: {
|
|
10090
|
-
entries: {
|
|
10225
|
+
entries: ({
|
|
10226
|
+
message: string;
|
|
10227
|
+
timestamp: number;
|
|
10228
|
+
pluginName: string;
|
|
10229
|
+
level: "error" | "info" | "debug" | "warn";
|
|
10230
|
+
data?: unknown;
|
|
10231
|
+
} | {
|
|
10091
10232
|
message: string;
|
|
10092
10233
|
timestamp: number;
|
|
10093
10234
|
source: "system";
|
|
@@ -10096,7 +10237,7 @@ export declare const WSPluginRuntimeLogHistoryMessageSchema: z.ZodObject<{
|
|
|
10096
10237
|
pluginName?: string | undefined;
|
|
10097
10238
|
directoryName?: string | undefined;
|
|
10098
10239
|
details?: unknown;
|
|
10099
|
-
}[];
|
|
10240
|
+
})[];
|
|
10100
10241
|
};
|
|
10101
10242
|
id?: string | undefined;
|
|
10102
10243
|
}>;
|
|
@@ -10512,6 +10653,25 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
10512
10653
|
processingTimeMs: number;
|
|
10513
10654
|
frameCount: number;
|
|
10514
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
|
+
}>>;
|
|
10515
10675
|
}, "strip", z.ZodTypeAny, {
|
|
10516
10676
|
startMs: number;
|
|
10517
10677
|
slotId: string;
|
|
@@ -10553,6 +10713,13 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
10553
10713
|
processingTimeMs: number;
|
|
10554
10714
|
frameCount: number;
|
|
10555
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;
|
|
10556
10723
|
}, {
|
|
10557
10724
|
startMs: number;
|
|
10558
10725
|
slotId: string;
|
|
@@ -10594,6 +10761,13 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
10594
10761
|
processingTimeMs: number;
|
|
10595
10762
|
frameCount: number;
|
|
10596
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;
|
|
10597
10771
|
}>;
|
|
10598
10772
|
}, "strip", z.ZodTypeAny, {
|
|
10599
10773
|
type: WSMessageType.SLOT_PACK_UPDATED;
|
|
@@ -10639,6 +10813,13 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
10639
10813
|
processingTimeMs: number;
|
|
10640
10814
|
frameCount: number;
|
|
10641
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;
|
|
10642
10823
|
};
|
|
10643
10824
|
id?: string | undefined;
|
|
10644
10825
|
}, {
|
|
@@ -10685,6 +10866,13 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
10685
10866
|
processingTimeMs: number;
|
|
10686
10867
|
frameCount: number;
|
|
10687
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;
|
|
10688
10876
|
};
|
|
10689
10877
|
id?: string | undefined;
|
|
10690
10878
|
}>, z.ZodObject<{
|
|
@@ -10706,20 +10894,20 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
10706
10894
|
supportsWaterfall: z.ZodBoolean;
|
|
10707
10895
|
frequencyRangeMode: z.ZodEnum<["absolute", "baseband"]>;
|
|
10708
10896
|
}, "strip", z.ZodTypeAny, {
|
|
10897
|
+
available: boolean;
|
|
10709
10898
|
displayBinCount: number;
|
|
10710
10899
|
kind: "audio" | "radio-sdr" | "openwebrx-sdr";
|
|
10711
10900
|
supported: boolean;
|
|
10712
|
-
available: boolean;
|
|
10713
10901
|
defaultSelected: boolean;
|
|
10714
10902
|
supportsWaterfall: boolean;
|
|
10715
10903
|
frequencyRangeMode: "baseband" | "absolute";
|
|
10716
10904
|
reason?: string | undefined;
|
|
10717
10905
|
sourceBinCount?: number | null | undefined;
|
|
10718
10906
|
}, {
|
|
10907
|
+
available: boolean;
|
|
10719
10908
|
displayBinCount: number;
|
|
10720
10909
|
kind: "audio" | "radio-sdr" | "openwebrx-sdr";
|
|
10721
10910
|
supported: boolean;
|
|
10722
|
-
available: boolean;
|
|
10723
10911
|
defaultSelected: boolean;
|
|
10724
10912
|
supportsWaterfall: boolean;
|
|
10725
10913
|
frequencyRangeMode: "baseband" | "absolute";
|
|
@@ -10730,10 +10918,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
10730
10918
|
profileId: string | null;
|
|
10731
10919
|
defaultKind: "audio" | "radio-sdr" | "openwebrx-sdr";
|
|
10732
10920
|
sources: {
|
|
10921
|
+
available: boolean;
|
|
10733
10922
|
displayBinCount: number;
|
|
10734
10923
|
kind: "audio" | "radio-sdr" | "openwebrx-sdr";
|
|
10735
10924
|
supported: boolean;
|
|
10736
|
-
available: boolean;
|
|
10737
10925
|
defaultSelected: boolean;
|
|
10738
10926
|
supportsWaterfall: boolean;
|
|
10739
10927
|
frequencyRangeMode: "baseband" | "absolute";
|
|
@@ -10744,10 +10932,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
10744
10932
|
profileId: string | null;
|
|
10745
10933
|
defaultKind: "audio" | "radio-sdr" | "openwebrx-sdr";
|
|
10746
10934
|
sources: {
|
|
10935
|
+
available: boolean;
|
|
10747
10936
|
displayBinCount: number;
|
|
10748
10937
|
kind: "audio" | "radio-sdr" | "openwebrx-sdr";
|
|
10749
10938
|
supported: boolean;
|
|
10750
|
-
available: boolean;
|
|
10751
10939
|
defaultSelected: boolean;
|
|
10752
10940
|
supportsWaterfall: boolean;
|
|
10753
10941
|
frequencyRangeMode: "baseband" | "absolute";
|
|
@@ -10762,10 +10950,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
10762
10950
|
profileId: string | null;
|
|
10763
10951
|
defaultKind: "audio" | "radio-sdr" | "openwebrx-sdr";
|
|
10764
10952
|
sources: {
|
|
10953
|
+
available: boolean;
|
|
10765
10954
|
displayBinCount: number;
|
|
10766
10955
|
kind: "audio" | "radio-sdr" | "openwebrx-sdr";
|
|
10767
10956
|
supported: boolean;
|
|
10768
|
-
available: boolean;
|
|
10769
10957
|
defaultSelected: boolean;
|
|
10770
10958
|
supportsWaterfall: boolean;
|
|
10771
10959
|
frequencyRangeMode: "baseband" | "absolute";
|
|
@@ -10781,10 +10969,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
10781
10969
|
profileId: string | null;
|
|
10782
10970
|
defaultKind: "audio" | "radio-sdr" | "openwebrx-sdr";
|
|
10783
10971
|
sources: {
|
|
10972
|
+
available: boolean;
|
|
10784
10973
|
displayBinCount: number;
|
|
10785
10974
|
kind: "audio" | "radio-sdr" | "openwebrx-sdr";
|
|
10786
10975
|
supported: boolean;
|
|
10787
|
-
available: boolean;
|
|
10788
10976
|
defaultSelected: boolean;
|
|
10789
10977
|
supportsWaterfall: boolean;
|
|
10790
10978
|
frequencyRangeMode: "baseband" | "absolute";
|
|
@@ -11060,14 +11248,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11060
11248
|
}, "strip", z.ZodTypeAny, {
|
|
11061
11249
|
id: string;
|
|
11062
11250
|
frequency: number;
|
|
11063
|
-
label: string;
|
|
11064
11251
|
description: string | null;
|
|
11252
|
+
label: string;
|
|
11065
11253
|
clickable: boolean;
|
|
11066
11254
|
}, {
|
|
11067
11255
|
id: string;
|
|
11068
11256
|
frequency: number;
|
|
11069
|
-
label: string;
|
|
11070
11257
|
description: string | null;
|
|
11258
|
+
label: string;
|
|
11071
11259
|
clickable: boolean;
|
|
11072
11260
|
}>, "many">;
|
|
11073
11261
|
canDragVoiceOverlay: z.ZodBoolean;
|
|
@@ -11089,8 +11277,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11089
11277
|
presetMarkers: {
|
|
11090
11278
|
id: string;
|
|
11091
11279
|
frequency: number;
|
|
11092
|
-
label: string;
|
|
11093
11280
|
description: string | null;
|
|
11281
|
+
label: string;
|
|
11094
11282
|
clickable: boolean;
|
|
11095
11283
|
}[];
|
|
11096
11284
|
canDragVoiceOverlay: boolean;
|
|
@@ -11112,8 +11300,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11112
11300
|
presetMarkers: {
|
|
11113
11301
|
id: string;
|
|
11114
11302
|
frequency: number;
|
|
11115
|
-
label: string;
|
|
11116
11303
|
description: string | null;
|
|
11304
|
+
label: string;
|
|
11117
11305
|
clickable: boolean;
|
|
11118
11306
|
}[];
|
|
11119
11307
|
canDragVoiceOverlay: boolean;
|
|
@@ -11134,19 +11322,19 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11134
11322
|
pending: z.ZodBoolean;
|
|
11135
11323
|
}, "strip", z.ZodTypeAny, {
|
|
11136
11324
|
id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
|
|
11325
|
+
active: boolean;
|
|
11137
11326
|
kind: "server" | "local";
|
|
11138
11327
|
action: "in" | "out" | "toggle";
|
|
11139
11328
|
visible: boolean;
|
|
11140
11329
|
enabled: boolean;
|
|
11141
|
-
active: boolean;
|
|
11142
11330
|
pending: boolean;
|
|
11143
11331
|
}, {
|
|
11144
11332
|
id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
|
|
11333
|
+
active: boolean;
|
|
11145
11334
|
kind: "server" | "local";
|
|
11146
11335
|
action: "in" | "out" | "toggle";
|
|
11147
11336
|
visible: boolean;
|
|
11148
11337
|
enabled: boolean;
|
|
11149
|
-
active: boolean;
|
|
11150
11338
|
pending: boolean;
|
|
11151
11339
|
}>, "many">;
|
|
11152
11340
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11181,8 +11369,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11181
11369
|
presetMarkers: {
|
|
11182
11370
|
id: string;
|
|
11183
11371
|
frequency: number;
|
|
11184
|
-
label: string;
|
|
11185
11372
|
description: string | null;
|
|
11373
|
+
label: string;
|
|
11186
11374
|
clickable: boolean;
|
|
11187
11375
|
}[];
|
|
11188
11376
|
canDragVoiceOverlay: boolean;
|
|
@@ -11195,11 +11383,11 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11195
11383
|
};
|
|
11196
11384
|
controls: {
|
|
11197
11385
|
id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
|
|
11386
|
+
active: boolean;
|
|
11198
11387
|
kind: "server" | "local";
|
|
11199
11388
|
action: "in" | "out" | "toggle";
|
|
11200
11389
|
visible: boolean;
|
|
11201
11390
|
enabled: boolean;
|
|
11202
|
-
active: boolean;
|
|
11203
11391
|
pending: boolean;
|
|
11204
11392
|
}[];
|
|
11205
11393
|
}, {
|
|
@@ -11234,8 +11422,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11234
11422
|
presetMarkers: {
|
|
11235
11423
|
id: string;
|
|
11236
11424
|
frequency: number;
|
|
11237
|
-
label: string;
|
|
11238
11425
|
description: string | null;
|
|
11426
|
+
label: string;
|
|
11239
11427
|
clickable: boolean;
|
|
11240
11428
|
}[];
|
|
11241
11429
|
canDragVoiceOverlay: boolean;
|
|
@@ -11248,11 +11436,11 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11248
11436
|
};
|
|
11249
11437
|
controls: {
|
|
11250
11438
|
id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
|
|
11439
|
+
active: boolean;
|
|
11251
11440
|
kind: "server" | "local";
|
|
11252
11441
|
action: "in" | "out" | "toggle";
|
|
11253
11442
|
visible: boolean;
|
|
11254
11443
|
enabled: boolean;
|
|
11255
|
-
active: boolean;
|
|
11256
11444
|
pending: boolean;
|
|
11257
11445
|
}[];
|
|
11258
11446
|
}>;
|
|
@@ -11291,8 +11479,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11291
11479
|
presetMarkers: {
|
|
11292
11480
|
id: string;
|
|
11293
11481
|
frequency: number;
|
|
11294
|
-
label: string;
|
|
11295
11482
|
description: string | null;
|
|
11483
|
+
label: string;
|
|
11296
11484
|
clickable: boolean;
|
|
11297
11485
|
}[];
|
|
11298
11486
|
canDragVoiceOverlay: boolean;
|
|
@@ -11305,11 +11493,11 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11305
11493
|
};
|
|
11306
11494
|
controls: {
|
|
11307
11495
|
id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
|
|
11496
|
+
active: boolean;
|
|
11308
11497
|
kind: "server" | "local";
|
|
11309
11498
|
action: "in" | "out" | "toggle";
|
|
11310
11499
|
visible: boolean;
|
|
11311
11500
|
enabled: boolean;
|
|
11312
|
-
active: boolean;
|
|
11313
11501
|
pending: boolean;
|
|
11314
11502
|
}[];
|
|
11315
11503
|
};
|
|
@@ -11349,8 +11537,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11349
11537
|
presetMarkers: {
|
|
11350
11538
|
id: string;
|
|
11351
11539
|
frequency: number;
|
|
11352
|
-
label: string;
|
|
11353
11540
|
description: string | null;
|
|
11541
|
+
label: string;
|
|
11354
11542
|
clickable: boolean;
|
|
11355
11543
|
}[];
|
|
11356
11544
|
canDragVoiceOverlay: boolean;
|
|
@@ -11363,11 +11551,11 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11363
11551
|
};
|
|
11364
11552
|
controls: {
|
|
11365
11553
|
id: "zoom-step" | "digital-window-toggle" | "openwebrx-detail-toggle" | "viewport-zoom";
|
|
11554
|
+
active: boolean;
|
|
11366
11555
|
kind: "server" | "local";
|
|
11367
11556
|
action: "in" | "out" | "toggle";
|
|
11368
11557
|
visible: boolean;
|
|
11369
11558
|
enabled: boolean;
|
|
11370
|
-
active: boolean;
|
|
11371
11559
|
pending: boolean;
|
|
11372
11560
|
}[];
|
|
11373
11561
|
};
|
|
@@ -11557,7 +11745,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11557
11745
|
connectionHealthy: boolean;
|
|
11558
11746
|
} | undefined;
|
|
11559
11747
|
currentRadioMode?: string | undefined;
|
|
11560
|
-
engineState?: "idle" | "stopping" | "
|
|
11748
|
+
engineState?: "idle" | "stopping" | "starting" | "running" | undefined;
|
|
11561
11749
|
engineContext?: {
|
|
11562
11750
|
error?: string | undefined;
|
|
11563
11751
|
startedResources?: string[] | undefined;
|
|
@@ -11583,7 +11771,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11583
11771
|
} | undefined;
|
|
11584
11772
|
engineMode?: "voice" | "digital" | undefined;
|
|
11585
11773
|
currentRadioMode?: string | undefined;
|
|
11586
|
-
engineState?: "idle" | "stopping" | "
|
|
11774
|
+
engineState?: "idle" | "stopping" | "starting" | "running" | undefined;
|
|
11587
11775
|
engineContext?: {
|
|
11588
11776
|
error?: string | undefined;
|
|
11589
11777
|
startedResources?: string[] | undefined;
|
|
@@ -11613,7 +11801,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11613
11801
|
connectionHealthy: boolean;
|
|
11614
11802
|
} | undefined;
|
|
11615
11803
|
currentRadioMode?: string | undefined;
|
|
11616
|
-
engineState?: "idle" | "stopping" | "
|
|
11804
|
+
engineState?: "idle" | "stopping" | "starting" | "running" | undefined;
|
|
11617
11805
|
engineContext?: {
|
|
11618
11806
|
error?: string | undefined;
|
|
11619
11807
|
startedResources?: string[] | undefined;
|
|
@@ -11644,7 +11832,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11644
11832
|
} | undefined;
|
|
11645
11833
|
engineMode?: "voice" | "digital" | undefined;
|
|
11646
11834
|
currentRadioMode?: string | undefined;
|
|
11647
|
-
engineState?: "idle" | "stopping" | "
|
|
11835
|
+
engineState?: "idle" | "stopping" | "starting" | "running" | undefined;
|
|
11648
11836
|
engineContext?: {
|
|
11649
11837
|
error?: string | undefined;
|
|
11650
11838
|
startedResources?: string[] | undefined;
|
|
@@ -11828,18 +12016,54 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11828
12016
|
message: z.ZodString;
|
|
11829
12017
|
frequency: z.ZodNumber;
|
|
11830
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
|
+
}>>;
|
|
11831
12039
|
}, "strip", z.ZodTypeAny, {
|
|
11832
12040
|
message: string;
|
|
11833
12041
|
operatorId: string;
|
|
11834
12042
|
frequency: number;
|
|
11835
12043
|
time: string;
|
|
11836
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;
|
|
11837
12053
|
}, {
|
|
11838
12054
|
message: string;
|
|
11839
12055
|
operatorId: string;
|
|
11840
12056
|
frequency: number;
|
|
11841
12057
|
time: string;
|
|
11842
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;
|
|
11843
12067
|
}>;
|
|
11844
12068
|
}, "strip", z.ZodTypeAny, {
|
|
11845
12069
|
type: WSMessageType.TRANSMISSION_LOG;
|
|
@@ -11850,6 +12074,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11850
12074
|
frequency: number;
|
|
11851
12075
|
time: string;
|
|
11852
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;
|
|
11853
12085
|
};
|
|
11854
12086
|
id?: string | undefined;
|
|
11855
12087
|
}, {
|
|
@@ -11861,6 +12093,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11861
12093
|
frequency: number;
|
|
11862
12094
|
time: string;
|
|
11863
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;
|
|
11864
12104
|
};
|
|
11865
12105
|
id?: string | undefined;
|
|
11866
12106
|
}>, z.ZodObject<{
|
|
@@ -12172,6 +12412,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12172
12412
|
};
|
|
12173
12413
|
isTransmitting: boolean;
|
|
12174
12414
|
transmitCycles?: number[] | undefined;
|
|
12415
|
+
currentSlot?: string | undefined;
|
|
12175
12416
|
runtime?: {
|
|
12176
12417
|
currentState: string;
|
|
12177
12418
|
slots?: {
|
|
@@ -12200,7 +12441,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12200
12441
|
TX6?: string | undefined;
|
|
12201
12442
|
} | undefined;
|
|
12202
12443
|
isInActivePTT?: boolean | undefined;
|
|
12203
|
-
currentSlot?: string | undefined;
|
|
12204
12444
|
}, {
|
|
12205
12445
|
id: string;
|
|
12206
12446
|
strategy: {
|
|
@@ -12220,6 +12460,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12220
12460
|
};
|
|
12221
12461
|
isTransmitting: boolean;
|
|
12222
12462
|
transmitCycles?: number[] | undefined;
|
|
12463
|
+
currentSlot?: string | undefined;
|
|
12223
12464
|
runtime?: {
|
|
12224
12465
|
currentState: string;
|
|
12225
12466
|
slots?: {
|
|
@@ -12248,7 +12489,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12248
12489
|
TX6?: string | undefined;
|
|
12249
12490
|
} | undefined;
|
|
12250
12491
|
isInActivePTT?: boolean | undefined;
|
|
12251
|
-
currentSlot?: string | undefined;
|
|
12252
12492
|
}>, "many">;
|
|
12253
12493
|
}, "strip", z.ZodTypeAny, {
|
|
12254
12494
|
operators: {
|
|
@@ -12270,6 +12510,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12270
12510
|
};
|
|
12271
12511
|
isTransmitting: boolean;
|
|
12272
12512
|
transmitCycles?: number[] | undefined;
|
|
12513
|
+
currentSlot?: string | undefined;
|
|
12273
12514
|
runtime?: {
|
|
12274
12515
|
currentState: string;
|
|
12275
12516
|
slots?: {
|
|
@@ -12298,7 +12539,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12298
12539
|
TX6?: string | undefined;
|
|
12299
12540
|
} | undefined;
|
|
12300
12541
|
isInActivePTT?: boolean | undefined;
|
|
12301
|
-
currentSlot?: string | undefined;
|
|
12302
12542
|
}[];
|
|
12303
12543
|
}, {
|
|
12304
12544
|
operators: {
|
|
@@ -12320,6 +12560,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12320
12560
|
};
|
|
12321
12561
|
isTransmitting: boolean;
|
|
12322
12562
|
transmitCycles?: number[] | undefined;
|
|
12563
|
+
currentSlot?: string | undefined;
|
|
12323
12564
|
runtime?: {
|
|
12324
12565
|
currentState: string;
|
|
12325
12566
|
slots?: {
|
|
@@ -12348,7 +12589,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12348
12589
|
TX6?: string | undefined;
|
|
12349
12590
|
} | undefined;
|
|
12350
12591
|
isInActivePTT?: boolean | undefined;
|
|
12351
|
-
currentSlot?: string | undefined;
|
|
12352
12592
|
}[];
|
|
12353
12593
|
}>;
|
|
12354
12594
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12374,6 +12614,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12374
12614
|
};
|
|
12375
12615
|
isTransmitting: boolean;
|
|
12376
12616
|
transmitCycles?: number[] | undefined;
|
|
12617
|
+
currentSlot?: string | undefined;
|
|
12377
12618
|
runtime?: {
|
|
12378
12619
|
currentState: string;
|
|
12379
12620
|
slots?: {
|
|
@@ -12402,7 +12643,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12402
12643
|
TX6?: string | undefined;
|
|
12403
12644
|
} | undefined;
|
|
12404
12645
|
isInActivePTT?: boolean | undefined;
|
|
12405
|
-
currentSlot?: string | undefined;
|
|
12406
12646
|
}[];
|
|
12407
12647
|
};
|
|
12408
12648
|
id?: string | undefined;
|
|
@@ -12429,6 +12669,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12429
12669
|
};
|
|
12430
12670
|
isTransmitting: boolean;
|
|
12431
12671
|
transmitCycles?: number[] | undefined;
|
|
12672
|
+
currentSlot?: string | undefined;
|
|
12432
12673
|
runtime?: {
|
|
12433
12674
|
currentState: string;
|
|
12434
12675
|
slots?: {
|
|
@@ -12457,7 +12698,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12457
12698
|
TX6?: string | undefined;
|
|
12458
12699
|
} | undefined;
|
|
12459
12700
|
isInActivePTT?: boolean | undefined;
|
|
12460
|
-
currentSlot?: string | undefined;
|
|
12461
12701
|
}[];
|
|
12462
12702
|
};
|
|
12463
12703
|
id?: string | undefined;
|
|
@@ -12633,6 +12873,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12633
12873
|
};
|
|
12634
12874
|
isTransmitting: boolean;
|
|
12635
12875
|
transmitCycles?: number[] | undefined;
|
|
12876
|
+
currentSlot?: string | undefined;
|
|
12636
12877
|
runtime?: {
|
|
12637
12878
|
currentState: string;
|
|
12638
12879
|
slots?: {
|
|
@@ -12661,7 +12902,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12661
12902
|
TX6?: string | undefined;
|
|
12662
12903
|
} | undefined;
|
|
12663
12904
|
isInActivePTT?: boolean | undefined;
|
|
12664
|
-
currentSlot?: string | undefined;
|
|
12665
12905
|
}, {
|
|
12666
12906
|
id: string;
|
|
12667
12907
|
strategy: {
|
|
@@ -12681,6 +12921,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12681
12921
|
};
|
|
12682
12922
|
isTransmitting: boolean;
|
|
12683
12923
|
transmitCycles?: number[] | undefined;
|
|
12924
|
+
currentSlot?: string | undefined;
|
|
12684
12925
|
runtime?: {
|
|
12685
12926
|
currentState: string;
|
|
12686
12927
|
slots?: {
|
|
@@ -12709,7 +12950,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12709
12950
|
TX6?: string | undefined;
|
|
12710
12951
|
} | undefined;
|
|
12711
12952
|
isInActivePTT?: boolean | undefined;
|
|
12712
|
-
currentSlot?: string | undefined;
|
|
12713
12953
|
}>;
|
|
12714
12954
|
}, "strip", z.ZodTypeAny, {
|
|
12715
12955
|
type: WSMessageType.OPERATOR_STATUS_UPDATE;
|
|
@@ -12733,6 +12973,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12733
12973
|
};
|
|
12734
12974
|
isTransmitting: boolean;
|
|
12735
12975
|
transmitCycles?: number[] | undefined;
|
|
12976
|
+
currentSlot?: string | undefined;
|
|
12736
12977
|
runtime?: {
|
|
12737
12978
|
currentState: string;
|
|
12738
12979
|
slots?: {
|
|
@@ -12761,7 +13002,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12761
13002
|
TX6?: string | undefined;
|
|
12762
13003
|
} | undefined;
|
|
12763
13004
|
isInActivePTT?: boolean | undefined;
|
|
12764
|
-
currentSlot?: string | undefined;
|
|
12765
13005
|
};
|
|
12766
13006
|
id?: string | undefined;
|
|
12767
13007
|
}, {
|
|
@@ -12786,6 +13026,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12786
13026
|
};
|
|
12787
13027
|
isTransmitting: boolean;
|
|
12788
13028
|
transmitCycles?: number[] | undefined;
|
|
13029
|
+
currentSlot?: string | undefined;
|
|
12789
13030
|
runtime?: {
|
|
12790
13031
|
currentState: string;
|
|
12791
13032
|
slots?: {
|
|
@@ -12814,7 +13055,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12814
13055
|
TX6?: string | undefined;
|
|
12815
13056
|
} | undefined;
|
|
12816
13057
|
isInActivePTT?: boolean | undefined;
|
|
12817
|
-
currentSlot?: string | undefined;
|
|
12818
13058
|
};
|
|
12819
13059
|
id?: string | undefined;
|
|
12820
13060
|
}>, z.ZodObject<{
|
|
@@ -15528,16 +15768,16 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15528
15768
|
radioConnected: boolean;
|
|
15529
15769
|
mode: string;
|
|
15530
15770
|
frequency: number;
|
|
15531
|
-
description: string;
|
|
15532
15771
|
band: string;
|
|
15772
|
+
description: string;
|
|
15533
15773
|
radioMode?: string | undefined;
|
|
15534
15774
|
source?: "radio" | "program" | undefined;
|
|
15535
15775
|
}, {
|
|
15536
15776
|
radioConnected: boolean;
|
|
15537
15777
|
mode: string;
|
|
15538
15778
|
frequency: number;
|
|
15539
|
-
description: string;
|
|
15540
15779
|
band: string;
|
|
15780
|
+
description: string;
|
|
15541
15781
|
radioMode?: string | undefined;
|
|
15542
15782
|
source?: "radio" | "program" | undefined;
|
|
15543
15783
|
}>;
|
|
@@ -15548,8 +15788,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15548
15788
|
radioConnected: boolean;
|
|
15549
15789
|
mode: string;
|
|
15550
15790
|
frequency: number;
|
|
15551
|
-
description: string;
|
|
15552
15791
|
band: string;
|
|
15792
|
+
description: string;
|
|
15553
15793
|
radioMode?: string | undefined;
|
|
15554
15794
|
source?: "radio" | "program" | undefined;
|
|
15555
15795
|
};
|
|
@@ -15561,8 +15801,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15561
15801
|
radioConnected: boolean;
|
|
15562
15802
|
mode: string;
|
|
15563
15803
|
frequency: number;
|
|
15564
|
-
description: string;
|
|
15565
15804
|
band: string;
|
|
15805
|
+
description: string;
|
|
15566
15806
|
radioMode?: string | undefined;
|
|
15567
15807
|
source?: "radio" | "program" | undefined;
|
|
15568
15808
|
};
|
|
@@ -16238,9 +16478,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16238
16478
|
label: string;
|
|
16239
16479
|
}[] | undefined;
|
|
16240
16480
|
default?: unknown;
|
|
16481
|
+
description?: string | undefined;
|
|
16241
16482
|
min?: number | undefined;
|
|
16242
16483
|
max?: number | undefined;
|
|
16243
|
-
description?: string | undefined;
|
|
16244
16484
|
itemFields?: {
|
|
16245
16485
|
type: "string" | "number" | "boolean";
|
|
16246
16486
|
label: string;
|
|
@@ -16258,9 +16498,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16258
16498
|
label: string;
|
|
16259
16499
|
}[] | undefined;
|
|
16260
16500
|
default?: unknown;
|
|
16501
|
+
description?: string | undefined;
|
|
16261
16502
|
min?: number | undefined;
|
|
16262
16503
|
max?: number | undefined;
|
|
16263
|
-
description?: string | undefined;
|
|
16264
16504
|
itemFields?: {
|
|
16265
16505
|
label: string;
|
|
16266
16506
|
key: string;
|
|
@@ -16436,9 +16676,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16436
16676
|
label: string;
|
|
16437
16677
|
}[] | undefined;
|
|
16438
16678
|
default?: unknown;
|
|
16679
|
+
description?: string | undefined;
|
|
16439
16680
|
min?: number | undefined;
|
|
16440
16681
|
max?: number | undefined;
|
|
16441
|
-
description?: string | undefined;
|
|
16442
16682
|
itemFields?: {
|
|
16443
16683
|
type: "string" | "number" | "boolean";
|
|
16444
16684
|
label: string;
|
|
@@ -16507,9 +16747,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16507
16747
|
label: string;
|
|
16508
16748
|
}[] | undefined;
|
|
16509
16749
|
default?: unknown;
|
|
16750
|
+
description?: string | undefined;
|
|
16510
16751
|
min?: number | undefined;
|
|
16511
16752
|
max?: number | undefined;
|
|
16512
|
-
description?: string | undefined;
|
|
16513
16753
|
itemFields?: {
|
|
16514
16754
|
label: string;
|
|
16515
16755
|
key: string;
|
|
@@ -16709,9 +16949,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16709
16949
|
label: string;
|
|
16710
16950
|
}[] | undefined;
|
|
16711
16951
|
default?: unknown;
|
|
16952
|
+
description?: string | undefined;
|
|
16712
16953
|
min?: number | undefined;
|
|
16713
16954
|
max?: number | undefined;
|
|
16714
|
-
description?: string | undefined;
|
|
16715
16955
|
itemFields?: {
|
|
16716
16956
|
type: "string" | "number" | "boolean";
|
|
16717
16957
|
label: string;
|
|
@@ -16815,9 +17055,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16815
17055
|
label: string;
|
|
16816
17056
|
}[] | undefined;
|
|
16817
17057
|
default?: unknown;
|
|
17058
|
+
description?: string | undefined;
|
|
16818
17059
|
min?: number | undefined;
|
|
16819
17060
|
max?: number | undefined;
|
|
16820
|
-
description?: string | undefined;
|
|
16821
17061
|
itemFields?: {
|
|
16822
17062
|
label: string;
|
|
16823
17063
|
key: string;
|
|
@@ -16931,9 +17171,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16931
17171
|
label: string;
|
|
16932
17172
|
}[] | undefined;
|
|
16933
17173
|
default?: unknown;
|
|
17174
|
+
description?: string | undefined;
|
|
16934
17175
|
min?: number | undefined;
|
|
16935
17176
|
max?: number | undefined;
|
|
16936
|
-
description?: string | undefined;
|
|
16937
17177
|
itemFields?: {
|
|
16938
17178
|
type: "string" | "number" | "boolean";
|
|
16939
17179
|
label: string;
|
|
@@ -17042,9 +17282,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
17042
17282
|
label: string;
|
|
17043
17283
|
}[] | undefined;
|
|
17044
17284
|
default?: unknown;
|
|
17285
|
+
description?: string | undefined;
|
|
17045
17286
|
min?: number | undefined;
|
|
17046
17287
|
max?: number | undefined;
|
|
17047
|
-
description?: string | undefined;
|
|
17048
17288
|
itemFields?: {
|
|
17049
17289
|
label: string;
|
|
17050
17290
|
key: string;
|
|
@@ -17174,9 +17414,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
17174
17414
|
label: string;
|
|
17175
17415
|
}[] | undefined;
|
|
17176
17416
|
default?: unknown;
|
|
17417
|
+
description?: string | undefined;
|
|
17177
17418
|
min?: number | undefined;
|
|
17178
17419
|
max?: number | undefined;
|
|
17179
|
-
description?: string | undefined;
|
|
17180
17420
|
itemFields?: {
|
|
17181
17421
|
type: "string" | "number" | "boolean";
|
|
17182
17422
|
label: string;
|
|
@@ -17194,9 +17434,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
17194
17434
|
label: string;
|
|
17195
17435
|
}[] | undefined;
|
|
17196
17436
|
default?: unknown;
|
|
17437
|
+
description?: string | undefined;
|
|
17197
17438
|
min?: number | undefined;
|
|
17198
17439
|
max?: number | undefined;
|
|
17199
|
-
description?: string | undefined;
|
|
17200
17440
|
itemFields?: {
|
|
17201
17441
|
label: string;
|
|
17202
17442
|
key: string;
|
|
@@ -17372,9 +17612,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
17372
17612
|
label: string;
|
|
17373
17613
|
}[] | undefined;
|
|
17374
17614
|
default?: unknown;
|
|
17615
|
+
description?: string | undefined;
|
|
17375
17616
|
min?: number | undefined;
|
|
17376
17617
|
max?: number | undefined;
|
|
17377
|
-
description?: string | undefined;
|
|
17378
17618
|
itemFields?: {
|
|
17379
17619
|
type: "string" | "number" | "boolean";
|
|
17380
17620
|
label: string;
|
|
@@ -17443,9 +17683,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
17443
17683
|
label: string;
|
|
17444
17684
|
}[] | undefined;
|
|
17445
17685
|
default?: unknown;
|
|
17686
|
+
description?: string | undefined;
|
|
17446
17687
|
min?: number | undefined;
|
|
17447
17688
|
max?: number | undefined;
|
|
17448
|
-
description?: string | undefined;
|
|
17449
17689
|
itemFields?: {
|
|
17450
17690
|
label: string;
|
|
17451
17691
|
key: string;
|
|
@@ -17523,9 +17763,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
17523
17763
|
label: string;
|
|
17524
17764
|
}[] | undefined;
|
|
17525
17765
|
default?: unknown;
|
|
17766
|
+
description?: string | undefined;
|
|
17526
17767
|
min?: number | undefined;
|
|
17527
17768
|
max?: number | undefined;
|
|
17528
|
-
description?: string | undefined;
|
|
17529
17769
|
itemFields?: {
|
|
17530
17770
|
type: "string" | "number" | "boolean";
|
|
17531
17771
|
label: string;
|
|
@@ -17597,9 +17837,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
17597
17837
|
label: string;
|
|
17598
17838
|
}[] | undefined;
|
|
17599
17839
|
default?: unknown;
|
|
17840
|
+
description?: string | undefined;
|
|
17600
17841
|
min?: number | undefined;
|
|
17601
17842
|
max?: number | undefined;
|
|
17602
|
-
description?: string | undefined;
|
|
17603
17843
|
itemFields?: {
|
|
17604
17844
|
label: string;
|
|
17605
17845
|
key: string;
|
|
@@ -17681,9 +17921,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
17681
17921
|
label: string;
|
|
17682
17922
|
}[] | undefined;
|
|
17683
17923
|
default?: unknown;
|
|
17924
|
+
description?: string | undefined;
|
|
17684
17925
|
min?: number | undefined;
|
|
17685
17926
|
max?: number | undefined;
|
|
17686
|
-
description?: string | undefined;
|
|
17687
17927
|
itemFields?: {
|
|
17688
17928
|
type: "string" | "number" | "boolean";
|
|
17689
17929
|
label: string;
|
|
@@ -17760,9 +18000,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
17760
18000
|
label: string;
|
|
17761
18001
|
}[] | undefined;
|
|
17762
18002
|
default?: unknown;
|
|
18003
|
+
description?: string | undefined;
|
|
17763
18004
|
min?: number | undefined;
|
|
17764
18005
|
max?: number | undefined;
|
|
17765
|
-
description?: string | undefined;
|
|
17766
18006
|
itemFields?: {
|
|
17767
18007
|
label: string;
|
|
17768
18008
|
key: string;
|
|
@@ -17971,7 +18211,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
17971
18211
|
} & {
|
|
17972
18212
|
type: z.ZodLiteral<WSMessageType.PLUGIN_RUNTIME_LOG_HISTORY>;
|
|
17973
18213
|
data: z.ZodObject<{
|
|
17974
|
-
entries: z.ZodArray<z.ZodObject<{
|
|
18214
|
+
entries: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
17975
18215
|
source: z.ZodLiteral<"system">;
|
|
17976
18216
|
stage: z.ZodEnum<["scan", "load", "validate", "reload", "activate"]>;
|
|
17977
18217
|
level: z.ZodEnum<["debug", "info", "warn", "error"]>;
|
|
@@ -17998,9 +18238,33 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
17998
18238
|
pluginName?: string | undefined;
|
|
17999
18239
|
directoryName?: string | undefined;
|
|
18000
18240
|
details?: unknown;
|
|
18001
|
-
}>,
|
|
18241
|
+
}>, z.ZodObject<{
|
|
18242
|
+
pluginName: z.ZodString;
|
|
18243
|
+
level: z.ZodEnum<["debug", "info", "warn", "error"]>;
|
|
18244
|
+
message: z.ZodString;
|
|
18245
|
+
data: z.ZodOptional<z.ZodUnknown>;
|
|
18246
|
+
timestamp: z.ZodNumber;
|
|
18247
|
+
}, "strip", z.ZodTypeAny, {
|
|
18248
|
+
message: string;
|
|
18249
|
+
timestamp: number;
|
|
18250
|
+
pluginName: string;
|
|
18251
|
+
level: "error" | "info" | "debug" | "warn";
|
|
18252
|
+
data?: unknown;
|
|
18253
|
+
}, {
|
|
18254
|
+
message: string;
|
|
18255
|
+
timestamp: number;
|
|
18256
|
+
pluginName: string;
|
|
18257
|
+
level: "error" | "info" | "debug" | "warn";
|
|
18258
|
+
data?: unknown;
|
|
18259
|
+
}>]>, "many">;
|
|
18002
18260
|
}, "strip", z.ZodTypeAny, {
|
|
18003
|
-
entries: {
|
|
18261
|
+
entries: ({
|
|
18262
|
+
message: string;
|
|
18263
|
+
timestamp: number;
|
|
18264
|
+
pluginName: string;
|
|
18265
|
+
level: "error" | "info" | "debug" | "warn";
|
|
18266
|
+
data?: unknown;
|
|
18267
|
+
} | {
|
|
18004
18268
|
message: string;
|
|
18005
18269
|
timestamp: number;
|
|
18006
18270
|
source: "system";
|
|
@@ -18009,9 +18273,15 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
18009
18273
|
pluginName?: string | undefined;
|
|
18010
18274
|
directoryName?: string | undefined;
|
|
18011
18275
|
details?: unknown;
|
|
18012
|
-
}[];
|
|
18276
|
+
})[];
|
|
18013
18277
|
}, {
|
|
18014
|
-
entries: {
|
|
18278
|
+
entries: ({
|
|
18279
|
+
message: string;
|
|
18280
|
+
timestamp: number;
|
|
18281
|
+
pluginName: string;
|
|
18282
|
+
level: "error" | "info" | "debug" | "warn";
|
|
18283
|
+
data?: unknown;
|
|
18284
|
+
} | {
|
|
18015
18285
|
message: string;
|
|
18016
18286
|
timestamp: number;
|
|
18017
18287
|
source: "system";
|
|
@@ -18020,13 +18290,19 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
18020
18290
|
pluginName?: string | undefined;
|
|
18021
18291
|
directoryName?: string | undefined;
|
|
18022
18292
|
details?: unknown;
|
|
18023
|
-
}[];
|
|
18293
|
+
})[];
|
|
18024
18294
|
}>;
|
|
18025
18295
|
}, "strip", z.ZodTypeAny, {
|
|
18026
18296
|
type: WSMessageType.PLUGIN_RUNTIME_LOG_HISTORY;
|
|
18027
18297
|
timestamp: string;
|
|
18028
18298
|
data: {
|
|
18029
|
-
entries: {
|
|
18299
|
+
entries: ({
|
|
18300
|
+
message: string;
|
|
18301
|
+
timestamp: number;
|
|
18302
|
+
pluginName: string;
|
|
18303
|
+
level: "error" | "info" | "debug" | "warn";
|
|
18304
|
+
data?: unknown;
|
|
18305
|
+
} | {
|
|
18030
18306
|
message: string;
|
|
18031
18307
|
timestamp: number;
|
|
18032
18308
|
source: "system";
|
|
@@ -18035,14 +18311,20 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
18035
18311
|
pluginName?: string | undefined;
|
|
18036
18312
|
directoryName?: string | undefined;
|
|
18037
18313
|
details?: unknown;
|
|
18038
|
-
}[];
|
|
18314
|
+
})[];
|
|
18039
18315
|
};
|
|
18040
18316
|
id?: string | undefined;
|
|
18041
18317
|
}, {
|
|
18042
18318
|
type: WSMessageType.PLUGIN_RUNTIME_LOG_HISTORY;
|
|
18043
18319
|
timestamp: string;
|
|
18044
18320
|
data: {
|
|
18045
|
-
entries: {
|
|
18321
|
+
entries: ({
|
|
18322
|
+
message: string;
|
|
18323
|
+
timestamp: number;
|
|
18324
|
+
pluginName: string;
|
|
18325
|
+
level: "error" | "info" | "debug" | "warn";
|
|
18326
|
+
data?: unknown;
|
|
18327
|
+
} | {
|
|
18046
18328
|
message: string;
|
|
18047
18329
|
timestamp: number;
|
|
18048
18330
|
source: "system";
|
|
@@ -18051,7 +18333,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
18051
18333
|
pluginName?: string | undefined;
|
|
18052
18334
|
directoryName?: string | undefined;
|
|
18053
18335
|
details?: unknown;
|
|
18054
|
-
}[];
|
|
18336
|
+
})[];
|
|
18055
18337
|
};
|
|
18056
18338
|
id?: string | undefined;
|
|
18057
18339
|
}>, z.ZodObject<{
|
|
@@ -18177,6 +18459,7 @@ export interface DigitalRadioEngineEvents {
|
|
|
18177
18459
|
frequency: number;
|
|
18178
18460
|
slotStartMs: number;
|
|
18179
18461
|
replaceExisting?: boolean;
|
|
18462
|
+
frequencyContext?: z.infer<typeof SlotPackFrequencyContextSchema>;
|
|
18180
18463
|
}) => void;
|
|
18181
18464
|
operatorsList: (data: {
|
|
18182
18465
|
operators: OperatorStatus[];
|
|
@@ -18288,6 +18571,31 @@ export interface DigitalRadioEngineEvents {
|
|
|
18288
18571
|
}) => void;
|
|
18289
18572
|
pluginPanelMeta: (data: import('./plugin.schema.js').PluginPanelMetaPayload) => void;
|
|
18290
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;
|
|
18291
18599
|
encodeStart: (slotInfo: z.infer<typeof SlotInfoSchema>) => void;
|
|
18292
18600
|
transmitStart: (slotInfo: z.infer<typeof SlotInfoSchema>) => void;
|
|
18293
18601
|
timingWarning: (data: {
|