@tx5dr/contracts 1.2.2 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/schema/cpu-profile.schema.d.ts +95 -0
- package/dist/schema/cpu-profile.schema.d.ts.map +1 -0
- package/dist/schema/cpu-profile.schema.js +35 -0
- package/dist/schema/cpu-profile.schema.js.map +1 -0
- package/dist/schema/operator.schema.d.ts +70 -103
- package/dist/schema/operator.schema.d.ts.map +1 -1
- package/dist/schema/operator.schema.js +0 -5
- package/dist/schema/operator.schema.js.map +1 -1
- package/dist/schema/plugin.schema.d.ts +137 -61
- package/dist/schema/plugin.schema.d.ts.map +1 -1
- package/dist/schema/plugin.schema.js +22 -14
- package/dist/schema/plugin.schema.js.map +1 -1
- package/dist/schema/process-monitor.schema.d.ts +100 -0
- package/dist/schema/process-monitor.schema.d.ts.map +1 -1
- package/dist/schema/process-monitor.schema.js +8 -0
- package/dist/schema/process-monitor.schema.js.map +1 -1
- package/dist/schema/voice-keyer.schema.d.ts +164 -0
- package/dist/schema/voice-keyer.schema.d.ts.map +1 -0
- package/dist/schema/voice-keyer.schema.js +43 -0
- package/dist/schema/voice-keyer.schema.js.map +1 -0
- package/dist/schema/websocket.schema.d.ts +711 -613
- package/dist/schema/websocket.schema.d.ts.map +1 -1
- package/dist/schema/websocket.schema.js +17 -5
- package/dist/schema/websocket.schema.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +4 -0
- package/src/schema/cpu-profile.schema.ts +47 -0
- package/src/schema/operator.schema.ts +0 -5
- package/src/schema/plugin.schema.ts +26 -16
- package/src/schema/process-monitor.schema.ts +10 -0
- package/src/schema/voice-keyer.schema.ts +55 -0
- package/src/schema/websocket.schema.ts +28 -5
- package/test/plugin-slot-schema.test.ts +30 -0
|
@@ -8,6 +8,7 @@ import { TunerStatusSchema } from './radio.schema.js';
|
|
|
8
8
|
import { RadioProfileSchema, ProfileChangedEventSchema } from './radio-profile.schema.js';
|
|
9
9
|
import { UserRole } from './auth.schema.js';
|
|
10
10
|
import type { VoicePTTLock } from './voice.schema.js';
|
|
11
|
+
import type { VoiceKeyerStatus } from './voice-keyer.schema.js';
|
|
11
12
|
import { CapabilityListSchema, CapabilityStateSchema } from './radio-capability.schema.js';
|
|
12
13
|
import { AudioSidecarStatusPayloadSchema } from './audio-sidecar.schema.js';
|
|
13
14
|
import { SpectrumCapabilitiesSchema, SpectrumFrameSchema, SpectrumSessionStateSchema } from './spectrum.schema.js';
|
|
@@ -68,6 +69,7 @@ export declare enum WSMessageType {
|
|
|
68
69
|
FORCE_STOP_TRANSMISSION = "forceStopTransmission",
|
|
69
70
|
REMOVE_OPERATOR_FROM_TRANSMISSION = "removeOperatorFromTransmission",
|
|
70
71
|
METER_DATA = "meterData",
|
|
72
|
+
SQUELCH_STATUS_CHANGED = "squelchStatusChanged",
|
|
71
73
|
TEXT_MESSAGE = "textMessage",
|
|
72
74
|
/** @deprecated Use RADIO_CAPABILITY_CHANGED with id='tuner_switch' instead */
|
|
73
75
|
TUNER_STATUS_CHANGED = "tunerStatusChanged",
|
|
@@ -99,6 +101,9 @@ export declare enum WSMessageType {
|
|
|
99
101
|
VOICE_PTT_LOCK_CHANGED = "voicePttLockChanged",
|
|
100
102
|
VOICE_SET_RADIO_MODE = "voiceSetRadioMode",
|
|
101
103
|
VOICE_RADIO_MODE_CHANGED = "voiceRadioModeChanged",
|
|
104
|
+
VOICE_KEYER_PLAY = "voiceKeyerPlay",
|
|
105
|
+
VOICE_KEYER_STOP = "voiceKeyerStop",
|
|
106
|
+
VOICE_KEYER_STATUS_CHANGED = "voiceKeyerStatusChanged",
|
|
102
107
|
PROCESS_SNAPSHOT = "processSnapshot",
|
|
103
108
|
PROCESS_SNAPSHOT_HISTORY = "processSnapshotHistory",
|
|
104
109
|
PLUGIN_LIST = "pluginList",
|
|
@@ -194,7 +199,7 @@ export declare const SystemStatusSchema: z.ZodObject<{
|
|
|
194
199
|
connectionHealthy: boolean;
|
|
195
200
|
} | undefined;
|
|
196
201
|
currentRadioMode?: string | undefined;
|
|
197
|
-
engineState?: "idle" | "
|
|
202
|
+
engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
|
|
198
203
|
engineContext?: {
|
|
199
204
|
error?: string | undefined;
|
|
200
205
|
startedResources?: string[] | undefined;
|
|
@@ -220,7 +225,7 @@ export declare const SystemStatusSchema: z.ZodObject<{
|
|
|
220
225
|
} | undefined;
|
|
221
226
|
engineMode?: "voice" | "digital" | undefined;
|
|
222
227
|
currentRadioMode?: string | undefined;
|
|
223
|
-
engineState?: "idle" | "
|
|
228
|
+
engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
|
|
224
229
|
engineContext?: {
|
|
225
230
|
error?: string | undefined;
|
|
226
231
|
startedResources?: string[] | undefined;
|
|
@@ -363,6 +368,25 @@ export declare const PTTStatusSchema: z.ZodObject<{
|
|
|
363
368
|
operatorIds: string[];
|
|
364
369
|
isTransmitting: boolean;
|
|
365
370
|
}>;
|
|
371
|
+
export declare const SquelchStatusSchema: z.ZodObject<{
|
|
372
|
+
supported: z.ZodBoolean;
|
|
373
|
+
open: z.ZodNullable<z.ZodBoolean>;
|
|
374
|
+
muted: z.ZodBoolean;
|
|
375
|
+
source: z.ZodEnum<["hamlib-dcd", "unsupported"]>;
|
|
376
|
+
updatedAt: z.ZodNumber;
|
|
377
|
+
}, "strip", z.ZodTypeAny, {
|
|
378
|
+
supported: boolean;
|
|
379
|
+
source: "hamlib-dcd" | "unsupported";
|
|
380
|
+
updatedAt: number;
|
|
381
|
+
open: boolean | null;
|
|
382
|
+
muted: boolean;
|
|
383
|
+
}, {
|
|
384
|
+
supported: boolean;
|
|
385
|
+
source: "hamlib-dcd" | "unsupported";
|
|
386
|
+
updatedAt: number;
|
|
387
|
+
open: boolean | null;
|
|
388
|
+
muted: boolean;
|
|
389
|
+
}>;
|
|
366
390
|
export declare const OperatorRuntimeSlotSchema: z.ZodEnum<["TX1", "TX2", "TX3", "TX4", "TX5", "TX6"]>;
|
|
367
391
|
export type OperatorRuntimeSlot = z.infer<typeof OperatorRuntimeSlotSchema>;
|
|
368
392
|
export declare const StrategyRuntimeContextSchema: z.ZodObject<{
|
|
@@ -431,13 +455,6 @@ export declare const StrategyRuntimeSnapshotSchema: z.ZodObject<{
|
|
|
431
455
|
availableSlots: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
432
456
|
}, "strip", z.ZodTypeAny, {
|
|
433
457
|
currentState: string;
|
|
434
|
-
context?: {
|
|
435
|
-
targetCallsign?: string | undefined;
|
|
436
|
-
targetGrid?: string | undefined;
|
|
437
|
-
reportSent?: number | undefined;
|
|
438
|
-
reportReceived?: number | undefined;
|
|
439
|
-
actualFrequency?: number | undefined;
|
|
440
|
-
} | undefined;
|
|
441
458
|
slots?: {
|
|
442
459
|
TX1?: string | undefined;
|
|
443
460
|
TX2?: string | undefined;
|
|
@@ -446,9 +463,6 @@ export declare const StrategyRuntimeSnapshotSchema: z.ZodObject<{
|
|
|
446
463
|
TX5?: string | undefined;
|
|
447
464
|
TX6?: string | undefined;
|
|
448
465
|
} | undefined;
|
|
449
|
-
availableSlots?: string[] | undefined;
|
|
450
|
-
}, {
|
|
451
|
-
currentState: string;
|
|
452
466
|
context?: {
|
|
453
467
|
targetCallsign?: string | undefined;
|
|
454
468
|
targetGrid?: string | undefined;
|
|
@@ -456,6 +470,9 @@ export declare const StrategyRuntimeSnapshotSchema: z.ZodObject<{
|
|
|
456
470
|
reportReceived?: number | undefined;
|
|
457
471
|
actualFrequency?: number | undefined;
|
|
458
472
|
} | undefined;
|
|
473
|
+
availableSlots?: string[] | undefined;
|
|
474
|
+
}, {
|
|
475
|
+
currentState: string;
|
|
459
476
|
slots?: {
|
|
460
477
|
TX1?: string | undefined;
|
|
461
478
|
TX2?: string | undefined;
|
|
@@ -464,6 +481,13 @@ export declare const StrategyRuntimeSnapshotSchema: z.ZodObject<{
|
|
|
464
481
|
TX5?: string | undefined;
|
|
465
482
|
TX6?: string | undefined;
|
|
466
483
|
} | undefined;
|
|
484
|
+
context?: {
|
|
485
|
+
targetCallsign?: string | undefined;
|
|
486
|
+
targetGrid?: string | undefined;
|
|
487
|
+
reportSent?: number | undefined;
|
|
488
|
+
reportReceived?: number | undefined;
|
|
489
|
+
actualFrequency?: number | undefined;
|
|
490
|
+
} | undefined;
|
|
467
491
|
availableSlots?: string[] | undefined;
|
|
468
492
|
}>;
|
|
469
493
|
export type StrategyRuntimeSnapshot = z.infer<typeof StrategyRuntimeSnapshotSchema>;
|
|
@@ -663,6 +687,7 @@ export type SubWindowInfo = z.infer<typeof SubWindowInfoSchema>;
|
|
|
663
687
|
export type DecodeErrorInfo = z.infer<typeof DecodeErrorInfoSchema>;
|
|
664
688
|
export type FrequencyState = z.infer<typeof FrequencyStateSchema>;
|
|
665
689
|
export type PTTStatus = z.infer<typeof PTTStatusSchema>;
|
|
690
|
+
export type SquelchStatus = z.infer<typeof SquelchStatusSchema>;
|
|
666
691
|
export type MeterData = z.infer<typeof MeterDataSchema>;
|
|
667
692
|
export declare const WSBaseMessageSchema: z.ZodObject<{
|
|
668
693
|
type: z.ZodNativeEnum<typeof WSMessageType>;
|
|
@@ -2095,7 +2120,7 @@ export declare const WSSystemStatusMessageSchema: z.ZodObject<{
|
|
|
2095
2120
|
connectionHealthy: boolean;
|
|
2096
2121
|
} | undefined;
|
|
2097
2122
|
currentRadioMode?: string | undefined;
|
|
2098
|
-
engineState?: "idle" | "
|
|
2123
|
+
engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
|
|
2099
2124
|
engineContext?: {
|
|
2100
2125
|
error?: string | undefined;
|
|
2101
2126
|
startedResources?: string[] | undefined;
|
|
@@ -2121,7 +2146,7 @@ export declare const WSSystemStatusMessageSchema: z.ZodObject<{
|
|
|
2121
2146
|
} | undefined;
|
|
2122
2147
|
engineMode?: "voice" | "digital" | undefined;
|
|
2123
2148
|
currentRadioMode?: string | undefined;
|
|
2124
|
-
engineState?: "idle" | "
|
|
2149
|
+
engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
|
|
2125
2150
|
engineContext?: {
|
|
2126
2151
|
error?: string | undefined;
|
|
2127
2152
|
startedResources?: string[] | undefined;
|
|
@@ -2151,7 +2176,7 @@ export declare const WSSystemStatusMessageSchema: z.ZodObject<{
|
|
|
2151
2176
|
connectionHealthy: boolean;
|
|
2152
2177
|
} | undefined;
|
|
2153
2178
|
currentRadioMode?: string | undefined;
|
|
2154
|
-
engineState?: "idle" | "
|
|
2179
|
+
engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
|
|
2155
2180
|
engineContext?: {
|
|
2156
2181
|
error?: string | undefined;
|
|
2157
2182
|
startedResources?: string[] | undefined;
|
|
@@ -2182,7 +2207,7 @@ export declare const WSSystemStatusMessageSchema: z.ZodObject<{
|
|
|
2182
2207
|
} | undefined;
|
|
2183
2208
|
engineMode?: "voice" | "digital" | undefined;
|
|
2184
2209
|
currentRadioMode?: string | undefined;
|
|
2185
|
-
engineState?: "idle" | "
|
|
2210
|
+
engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
|
|
2186
2211
|
engineContext?: {
|
|
2187
2212
|
error?: string | undefined;
|
|
2188
2213
|
startedResources?: string[] | undefined;
|
|
@@ -2580,13 +2605,6 @@ export declare const OperatorStatusSchema: z.ZodObject<{
|
|
|
2580
2605
|
availableSlots: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2581
2606
|
}, "strip", z.ZodTypeAny, {
|
|
2582
2607
|
currentState: string;
|
|
2583
|
-
context?: {
|
|
2584
|
-
targetCallsign?: string | undefined;
|
|
2585
|
-
targetGrid?: string | undefined;
|
|
2586
|
-
reportSent?: number | undefined;
|
|
2587
|
-
reportReceived?: number | undefined;
|
|
2588
|
-
actualFrequency?: number | undefined;
|
|
2589
|
-
} | undefined;
|
|
2590
2608
|
slots?: {
|
|
2591
2609
|
TX1?: string | undefined;
|
|
2592
2610
|
TX2?: string | undefined;
|
|
@@ -2595,9 +2613,6 @@ export declare const OperatorStatusSchema: z.ZodObject<{
|
|
|
2595
2613
|
TX5?: string | undefined;
|
|
2596
2614
|
TX6?: string | undefined;
|
|
2597
2615
|
} | undefined;
|
|
2598
|
-
availableSlots?: string[] | undefined;
|
|
2599
|
-
}, {
|
|
2600
|
-
currentState: string;
|
|
2601
2616
|
context?: {
|
|
2602
2617
|
targetCallsign?: string | undefined;
|
|
2603
2618
|
targetGrid?: string | undefined;
|
|
@@ -2605,6 +2620,9 @@ export declare const OperatorStatusSchema: z.ZodObject<{
|
|
|
2605
2620
|
reportReceived?: number | undefined;
|
|
2606
2621
|
actualFrequency?: number | undefined;
|
|
2607
2622
|
} | undefined;
|
|
2623
|
+
availableSlots?: string[] | undefined;
|
|
2624
|
+
}, {
|
|
2625
|
+
currentState: string;
|
|
2608
2626
|
slots?: {
|
|
2609
2627
|
TX1?: string | undefined;
|
|
2610
2628
|
TX2?: string | undefined;
|
|
@@ -2613,21 +2631,15 @@ export declare const OperatorStatusSchema: z.ZodObject<{
|
|
|
2613
2631
|
TX5?: string | undefined;
|
|
2614
2632
|
TX6?: string | undefined;
|
|
2615
2633
|
} | undefined;
|
|
2634
|
+
context?: {
|
|
2635
|
+
targetCallsign?: string | undefined;
|
|
2636
|
+
targetGrid?: string | undefined;
|
|
2637
|
+
reportSent?: number | undefined;
|
|
2638
|
+
reportReceived?: number | undefined;
|
|
2639
|
+
actualFrequency?: number | undefined;
|
|
2640
|
+
} | undefined;
|
|
2616
2641
|
availableSlots?: string[] | undefined;
|
|
2617
2642
|
}>>;
|
|
2618
|
-
cycleInfo: z.ZodOptional<z.ZodObject<{
|
|
2619
|
-
currentCycle: z.ZodNumber;
|
|
2620
|
-
isTransmitCycle: z.ZodBoolean;
|
|
2621
|
-
cycleProgress: z.ZodNumber;
|
|
2622
|
-
}, "strip", z.ZodTypeAny, {
|
|
2623
|
-
currentCycle: number;
|
|
2624
|
-
isTransmitCycle: boolean;
|
|
2625
|
-
cycleProgress: number;
|
|
2626
|
-
}, {
|
|
2627
|
-
currentCycle: number;
|
|
2628
|
-
isTransmitCycle: boolean;
|
|
2629
|
-
cycleProgress: number;
|
|
2630
|
-
}>>;
|
|
2631
2643
|
slots: z.ZodOptional<z.ZodObject<{
|
|
2632
2644
|
TX1: z.ZodOptional<z.ZodString>;
|
|
2633
2645
|
TX2: z.ZodOptional<z.ZodString>;
|
|
@@ -2670,15 +2682,16 @@ export declare const OperatorStatusSchema: z.ZodObject<{
|
|
|
2670
2682
|
};
|
|
2671
2683
|
isTransmitting: boolean;
|
|
2672
2684
|
transmitCycles?: number[] | undefined;
|
|
2685
|
+
slots?: {
|
|
2686
|
+
TX1?: string | undefined;
|
|
2687
|
+
TX2?: string | undefined;
|
|
2688
|
+
TX3?: string | undefined;
|
|
2689
|
+
TX4?: string | undefined;
|
|
2690
|
+
TX5?: string | undefined;
|
|
2691
|
+
TX6?: string | undefined;
|
|
2692
|
+
} | undefined;
|
|
2673
2693
|
runtime?: {
|
|
2674
2694
|
currentState: string;
|
|
2675
|
-
context?: {
|
|
2676
|
-
targetCallsign?: string | undefined;
|
|
2677
|
-
targetGrid?: string | undefined;
|
|
2678
|
-
reportSent?: number | undefined;
|
|
2679
|
-
reportReceived?: number | undefined;
|
|
2680
|
-
actualFrequency?: number | undefined;
|
|
2681
|
-
} | undefined;
|
|
2682
2695
|
slots?: {
|
|
2683
2696
|
TX1?: string | undefined;
|
|
2684
2697
|
TX2?: string | undefined;
|
|
@@ -2687,23 +2700,17 @@ export declare const OperatorStatusSchema: z.ZodObject<{
|
|
|
2687
2700
|
TX5?: string | undefined;
|
|
2688
2701
|
TX6?: string | undefined;
|
|
2689
2702
|
} | undefined;
|
|
2703
|
+
context?: {
|
|
2704
|
+
targetCallsign?: string | undefined;
|
|
2705
|
+
targetGrid?: string | undefined;
|
|
2706
|
+
reportSent?: number | undefined;
|
|
2707
|
+
reportReceived?: number | undefined;
|
|
2708
|
+
actualFrequency?: number | undefined;
|
|
2709
|
+
} | undefined;
|
|
2690
2710
|
availableSlots?: string[] | undefined;
|
|
2691
2711
|
} | undefined;
|
|
2692
|
-
slots?: {
|
|
2693
|
-
TX1?: string | undefined;
|
|
2694
|
-
TX2?: string | undefined;
|
|
2695
|
-
TX3?: string | undefined;
|
|
2696
|
-
TX4?: string | undefined;
|
|
2697
|
-
TX5?: string | undefined;
|
|
2698
|
-
TX6?: string | undefined;
|
|
2699
|
-
} | undefined;
|
|
2700
2712
|
isInActivePTT?: boolean | undefined;
|
|
2701
2713
|
currentSlot?: string | undefined;
|
|
2702
|
-
cycleInfo?: {
|
|
2703
|
-
currentCycle: number;
|
|
2704
|
-
isTransmitCycle: boolean;
|
|
2705
|
-
cycleProgress: number;
|
|
2706
|
-
} | undefined;
|
|
2707
2714
|
}, {
|
|
2708
2715
|
id: string;
|
|
2709
2716
|
strategy: {
|
|
@@ -2723,15 +2730,16 @@ export declare const OperatorStatusSchema: z.ZodObject<{
|
|
|
2723
2730
|
};
|
|
2724
2731
|
isTransmitting: boolean;
|
|
2725
2732
|
transmitCycles?: number[] | undefined;
|
|
2733
|
+
slots?: {
|
|
2734
|
+
TX1?: string | undefined;
|
|
2735
|
+
TX2?: string | undefined;
|
|
2736
|
+
TX3?: string | undefined;
|
|
2737
|
+
TX4?: string | undefined;
|
|
2738
|
+
TX5?: string | undefined;
|
|
2739
|
+
TX6?: string | undefined;
|
|
2740
|
+
} | undefined;
|
|
2726
2741
|
runtime?: {
|
|
2727
2742
|
currentState: string;
|
|
2728
|
-
context?: {
|
|
2729
|
-
targetCallsign?: string | undefined;
|
|
2730
|
-
targetGrid?: string | undefined;
|
|
2731
|
-
reportSent?: number | undefined;
|
|
2732
|
-
reportReceived?: number | undefined;
|
|
2733
|
-
actualFrequency?: number | undefined;
|
|
2734
|
-
} | undefined;
|
|
2735
2743
|
slots?: {
|
|
2736
2744
|
TX1?: string | undefined;
|
|
2737
2745
|
TX2?: string | undefined;
|
|
@@ -2740,23 +2748,17 @@ export declare const OperatorStatusSchema: z.ZodObject<{
|
|
|
2740
2748
|
TX5?: string | undefined;
|
|
2741
2749
|
TX6?: string | undefined;
|
|
2742
2750
|
} | undefined;
|
|
2751
|
+
context?: {
|
|
2752
|
+
targetCallsign?: string | undefined;
|
|
2753
|
+
targetGrid?: string | undefined;
|
|
2754
|
+
reportSent?: number | undefined;
|
|
2755
|
+
reportReceived?: number | undefined;
|
|
2756
|
+
actualFrequency?: number | undefined;
|
|
2757
|
+
} | undefined;
|
|
2743
2758
|
availableSlots?: string[] | undefined;
|
|
2744
2759
|
} | undefined;
|
|
2745
|
-
slots?: {
|
|
2746
|
-
TX1?: string | undefined;
|
|
2747
|
-
TX2?: string | undefined;
|
|
2748
|
-
TX3?: string | undefined;
|
|
2749
|
-
TX4?: string | undefined;
|
|
2750
|
-
TX5?: string | undefined;
|
|
2751
|
-
TX6?: string | undefined;
|
|
2752
|
-
} | undefined;
|
|
2753
2760
|
isInActivePTT?: boolean | undefined;
|
|
2754
2761
|
currentSlot?: string | undefined;
|
|
2755
|
-
cycleInfo?: {
|
|
2756
|
-
currentCycle: number;
|
|
2757
|
-
isTransmitCycle: boolean;
|
|
2758
|
-
cycleProgress: number;
|
|
2759
|
-
} | undefined;
|
|
2760
2762
|
}>;
|
|
2761
2763
|
export type OperatorStatus = z.infer<typeof OperatorStatusSchema>;
|
|
2762
2764
|
/**
|
|
@@ -2875,13 +2877,6 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
|
|
|
2875
2877
|
availableSlots: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2876
2878
|
}, "strip", z.ZodTypeAny, {
|
|
2877
2879
|
currentState: string;
|
|
2878
|
-
context?: {
|
|
2879
|
-
targetCallsign?: string | undefined;
|
|
2880
|
-
targetGrid?: string | undefined;
|
|
2881
|
-
reportSent?: number | undefined;
|
|
2882
|
-
reportReceived?: number | undefined;
|
|
2883
|
-
actualFrequency?: number | undefined;
|
|
2884
|
-
} | undefined;
|
|
2885
2880
|
slots?: {
|
|
2886
2881
|
TX1?: string | undefined;
|
|
2887
2882
|
TX2?: string | undefined;
|
|
@@ -2890,9 +2885,6 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
|
|
|
2890
2885
|
TX5?: string | undefined;
|
|
2891
2886
|
TX6?: string | undefined;
|
|
2892
2887
|
} | undefined;
|
|
2893
|
-
availableSlots?: string[] | undefined;
|
|
2894
|
-
}, {
|
|
2895
|
-
currentState: string;
|
|
2896
2888
|
context?: {
|
|
2897
2889
|
targetCallsign?: string | undefined;
|
|
2898
2890
|
targetGrid?: string | undefined;
|
|
@@ -2900,6 +2892,9 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
|
|
|
2900
2892
|
reportReceived?: number | undefined;
|
|
2901
2893
|
actualFrequency?: number | undefined;
|
|
2902
2894
|
} | undefined;
|
|
2895
|
+
availableSlots?: string[] | undefined;
|
|
2896
|
+
}, {
|
|
2897
|
+
currentState: string;
|
|
2903
2898
|
slots?: {
|
|
2904
2899
|
TX1?: string | undefined;
|
|
2905
2900
|
TX2?: string | undefined;
|
|
@@ -2908,21 +2903,15 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
|
|
|
2908
2903
|
TX5?: string | undefined;
|
|
2909
2904
|
TX6?: string | undefined;
|
|
2910
2905
|
} | undefined;
|
|
2906
|
+
context?: {
|
|
2907
|
+
targetCallsign?: string | undefined;
|
|
2908
|
+
targetGrid?: string | undefined;
|
|
2909
|
+
reportSent?: number | undefined;
|
|
2910
|
+
reportReceived?: number | undefined;
|
|
2911
|
+
actualFrequency?: number | undefined;
|
|
2912
|
+
} | undefined;
|
|
2911
2913
|
availableSlots?: string[] | undefined;
|
|
2912
2914
|
}>>;
|
|
2913
|
-
cycleInfo: z.ZodOptional<z.ZodObject<{
|
|
2914
|
-
currentCycle: z.ZodNumber;
|
|
2915
|
-
isTransmitCycle: z.ZodBoolean;
|
|
2916
|
-
cycleProgress: z.ZodNumber;
|
|
2917
|
-
}, "strip", z.ZodTypeAny, {
|
|
2918
|
-
currentCycle: number;
|
|
2919
|
-
isTransmitCycle: boolean;
|
|
2920
|
-
cycleProgress: number;
|
|
2921
|
-
}, {
|
|
2922
|
-
currentCycle: number;
|
|
2923
|
-
isTransmitCycle: boolean;
|
|
2924
|
-
cycleProgress: number;
|
|
2925
|
-
}>>;
|
|
2926
2915
|
slots: z.ZodOptional<z.ZodObject<{
|
|
2927
2916
|
TX1: z.ZodOptional<z.ZodString>;
|
|
2928
2917
|
TX2: z.ZodOptional<z.ZodString>;
|
|
@@ -2965,15 +2954,16 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
|
|
|
2965
2954
|
};
|
|
2966
2955
|
isTransmitting: boolean;
|
|
2967
2956
|
transmitCycles?: number[] | undefined;
|
|
2957
|
+
slots?: {
|
|
2958
|
+
TX1?: string | undefined;
|
|
2959
|
+
TX2?: string | undefined;
|
|
2960
|
+
TX3?: string | undefined;
|
|
2961
|
+
TX4?: string | undefined;
|
|
2962
|
+
TX5?: string | undefined;
|
|
2963
|
+
TX6?: string | undefined;
|
|
2964
|
+
} | undefined;
|
|
2968
2965
|
runtime?: {
|
|
2969
2966
|
currentState: string;
|
|
2970
|
-
context?: {
|
|
2971
|
-
targetCallsign?: string | undefined;
|
|
2972
|
-
targetGrid?: string | undefined;
|
|
2973
|
-
reportSent?: number | undefined;
|
|
2974
|
-
reportReceived?: number | undefined;
|
|
2975
|
-
actualFrequency?: number | undefined;
|
|
2976
|
-
} | undefined;
|
|
2977
2967
|
slots?: {
|
|
2978
2968
|
TX1?: string | undefined;
|
|
2979
2969
|
TX2?: string | undefined;
|
|
@@ -2982,23 +2972,17 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
|
|
|
2982
2972
|
TX5?: string | undefined;
|
|
2983
2973
|
TX6?: string | undefined;
|
|
2984
2974
|
} | undefined;
|
|
2975
|
+
context?: {
|
|
2976
|
+
targetCallsign?: string | undefined;
|
|
2977
|
+
targetGrid?: string | undefined;
|
|
2978
|
+
reportSent?: number | undefined;
|
|
2979
|
+
reportReceived?: number | undefined;
|
|
2980
|
+
actualFrequency?: number | undefined;
|
|
2981
|
+
} | undefined;
|
|
2985
2982
|
availableSlots?: string[] | undefined;
|
|
2986
2983
|
} | undefined;
|
|
2987
|
-
slots?: {
|
|
2988
|
-
TX1?: string | undefined;
|
|
2989
|
-
TX2?: string | undefined;
|
|
2990
|
-
TX3?: string | undefined;
|
|
2991
|
-
TX4?: string | undefined;
|
|
2992
|
-
TX5?: string | undefined;
|
|
2993
|
-
TX6?: string | undefined;
|
|
2994
|
-
} | undefined;
|
|
2995
2984
|
isInActivePTT?: boolean | undefined;
|
|
2996
2985
|
currentSlot?: string | undefined;
|
|
2997
|
-
cycleInfo?: {
|
|
2998
|
-
currentCycle: number;
|
|
2999
|
-
isTransmitCycle: boolean;
|
|
3000
|
-
cycleProgress: number;
|
|
3001
|
-
} | undefined;
|
|
3002
2986
|
}, {
|
|
3003
2987
|
id: string;
|
|
3004
2988
|
strategy: {
|
|
@@ -3018,15 +3002,16 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
|
|
|
3018
3002
|
};
|
|
3019
3003
|
isTransmitting: boolean;
|
|
3020
3004
|
transmitCycles?: number[] | undefined;
|
|
3005
|
+
slots?: {
|
|
3006
|
+
TX1?: string | undefined;
|
|
3007
|
+
TX2?: string | undefined;
|
|
3008
|
+
TX3?: string | undefined;
|
|
3009
|
+
TX4?: string | undefined;
|
|
3010
|
+
TX5?: string | undefined;
|
|
3011
|
+
TX6?: string | undefined;
|
|
3012
|
+
} | undefined;
|
|
3021
3013
|
runtime?: {
|
|
3022
3014
|
currentState: string;
|
|
3023
|
-
context?: {
|
|
3024
|
-
targetCallsign?: string | undefined;
|
|
3025
|
-
targetGrid?: string | undefined;
|
|
3026
|
-
reportSent?: number | undefined;
|
|
3027
|
-
reportReceived?: number | undefined;
|
|
3028
|
-
actualFrequency?: number | undefined;
|
|
3029
|
-
} | undefined;
|
|
3030
3015
|
slots?: {
|
|
3031
3016
|
TX1?: string | undefined;
|
|
3032
3017
|
TX2?: string | undefined;
|
|
@@ -3035,23 +3020,17 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
|
|
|
3035
3020
|
TX5?: string | undefined;
|
|
3036
3021
|
TX6?: string | undefined;
|
|
3037
3022
|
} | undefined;
|
|
3023
|
+
context?: {
|
|
3024
|
+
targetCallsign?: string | undefined;
|
|
3025
|
+
targetGrid?: string | undefined;
|
|
3026
|
+
reportSent?: number | undefined;
|
|
3027
|
+
reportReceived?: number | undefined;
|
|
3028
|
+
actualFrequency?: number | undefined;
|
|
3029
|
+
} | undefined;
|
|
3038
3030
|
availableSlots?: string[] | undefined;
|
|
3039
3031
|
} | undefined;
|
|
3040
|
-
slots?: {
|
|
3041
|
-
TX1?: string | undefined;
|
|
3042
|
-
TX2?: string | undefined;
|
|
3043
|
-
TX3?: string | undefined;
|
|
3044
|
-
TX4?: string | undefined;
|
|
3045
|
-
TX5?: string | undefined;
|
|
3046
|
-
TX6?: string | undefined;
|
|
3047
|
-
} | undefined;
|
|
3048
3032
|
isInActivePTT?: boolean | undefined;
|
|
3049
3033
|
currentSlot?: string | undefined;
|
|
3050
|
-
cycleInfo?: {
|
|
3051
|
-
currentCycle: number;
|
|
3052
|
-
isTransmitCycle: boolean;
|
|
3053
|
-
cycleProgress: number;
|
|
3054
|
-
} | undefined;
|
|
3055
3034
|
}>, "many">;
|
|
3056
3035
|
}, "strip", z.ZodTypeAny, {
|
|
3057
3036
|
operators: {
|
|
@@ -3073,15 +3052,16 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
|
|
|
3073
3052
|
};
|
|
3074
3053
|
isTransmitting: boolean;
|
|
3075
3054
|
transmitCycles?: number[] | undefined;
|
|
3055
|
+
slots?: {
|
|
3056
|
+
TX1?: string | undefined;
|
|
3057
|
+
TX2?: string | undefined;
|
|
3058
|
+
TX3?: string | undefined;
|
|
3059
|
+
TX4?: string | undefined;
|
|
3060
|
+
TX5?: string | undefined;
|
|
3061
|
+
TX6?: string | undefined;
|
|
3062
|
+
} | undefined;
|
|
3076
3063
|
runtime?: {
|
|
3077
3064
|
currentState: string;
|
|
3078
|
-
context?: {
|
|
3079
|
-
targetCallsign?: string | undefined;
|
|
3080
|
-
targetGrid?: string | undefined;
|
|
3081
|
-
reportSent?: number | undefined;
|
|
3082
|
-
reportReceived?: number | undefined;
|
|
3083
|
-
actualFrequency?: number | undefined;
|
|
3084
|
-
} | undefined;
|
|
3085
3065
|
slots?: {
|
|
3086
3066
|
TX1?: string | undefined;
|
|
3087
3067
|
TX2?: string | undefined;
|
|
@@ -3090,23 +3070,17 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
|
|
|
3090
3070
|
TX5?: string | undefined;
|
|
3091
3071
|
TX6?: string | undefined;
|
|
3092
3072
|
} | undefined;
|
|
3073
|
+
context?: {
|
|
3074
|
+
targetCallsign?: string | undefined;
|
|
3075
|
+
targetGrid?: string | undefined;
|
|
3076
|
+
reportSent?: number | undefined;
|
|
3077
|
+
reportReceived?: number | undefined;
|
|
3078
|
+
actualFrequency?: number | undefined;
|
|
3079
|
+
} | undefined;
|
|
3093
3080
|
availableSlots?: string[] | undefined;
|
|
3094
3081
|
} | undefined;
|
|
3095
|
-
slots?: {
|
|
3096
|
-
TX1?: string | undefined;
|
|
3097
|
-
TX2?: string | undefined;
|
|
3098
|
-
TX3?: string | undefined;
|
|
3099
|
-
TX4?: string | undefined;
|
|
3100
|
-
TX5?: string | undefined;
|
|
3101
|
-
TX6?: string | undefined;
|
|
3102
|
-
} | undefined;
|
|
3103
3082
|
isInActivePTT?: boolean | undefined;
|
|
3104
3083
|
currentSlot?: string | undefined;
|
|
3105
|
-
cycleInfo?: {
|
|
3106
|
-
currentCycle: number;
|
|
3107
|
-
isTransmitCycle: boolean;
|
|
3108
|
-
cycleProgress: number;
|
|
3109
|
-
} | undefined;
|
|
3110
3084
|
}[];
|
|
3111
3085
|
}, {
|
|
3112
3086
|
operators: {
|
|
@@ -3128,15 +3102,16 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
|
|
|
3128
3102
|
};
|
|
3129
3103
|
isTransmitting: boolean;
|
|
3130
3104
|
transmitCycles?: number[] | undefined;
|
|
3105
|
+
slots?: {
|
|
3106
|
+
TX1?: string | undefined;
|
|
3107
|
+
TX2?: string | undefined;
|
|
3108
|
+
TX3?: string | undefined;
|
|
3109
|
+
TX4?: string | undefined;
|
|
3110
|
+
TX5?: string | undefined;
|
|
3111
|
+
TX6?: string | undefined;
|
|
3112
|
+
} | undefined;
|
|
3131
3113
|
runtime?: {
|
|
3132
3114
|
currentState: string;
|
|
3133
|
-
context?: {
|
|
3134
|
-
targetCallsign?: string | undefined;
|
|
3135
|
-
targetGrid?: string | undefined;
|
|
3136
|
-
reportSent?: number | undefined;
|
|
3137
|
-
reportReceived?: number | undefined;
|
|
3138
|
-
actualFrequency?: number | undefined;
|
|
3139
|
-
} | undefined;
|
|
3140
3115
|
slots?: {
|
|
3141
3116
|
TX1?: string | undefined;
|
|
3142
3117
|
TX2?: string | undefined;
|
|
@@ -3145,23 +3120,17 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
|
|
|
3145
3120
|
TX5?: string | undefined;
|
|
3146
3121
|
TX6?: string | undefined;
|
|
3147
3122
|
} | undefined;
|
|
3123
|
+
context?: {
|
|
3124
|
+
targetCallsign?: string | undefined;
|
|
3125
|
+
targetGrid?: string | undefined;
|
|
3126
|
+
reportSent?: number | undefined;
|
|
3127
|
+
reportReceived?: number | undefined;
|
|
3128
|
+
actualFrequency?: number | undefined;
|
|
3129
|
+
} | undefined;
|
|
3148
3130
|
availableSlots?: string[] | undefined;
|
|
3149
3131
|
} | undefined;
|
|
3150
|
-
slots?: {
|
|
3151
|
-
TX1?: string | undefined;
|
|
3152
|
-
TX2?: string | undefined;
|
|
3153
|
-
TX3?: string | undefined;
|
|
3154
|
-
TX4?: string | undefined;
|
|
3155
|
-
TX5?: string | undefined;
|
|
3156
|
-
TX6?: string | undefined;
|
|
3157
|
-
} | undefined;
|
|
3158
3132
|
isInActivePTT?: boolean | undefined;
|
|
3159
3133
|
currentSlot?: string | undefined;
|
|
3160
|
-
cycleInfo?: {
|
|
3161
|
-
currentCycle: number;
|
|
3162
|
-
isTransmitCycle: boolean;
|
|
3163
|
-
cycleProgress: number;
|
|
3164
|
-
} | undefined;
|
|
3165
3134
|
}[];
|
|
3166
3135
|
}>;
|
|
3167
3136
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3187,15 +3156,16 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
|
|
|
3187
3156
|
};
|
|
3188
3157
|
isTransmitting: boolean;
|
|
3189
3158
|
transmitCycles?: number[] | undefined;
|
|
3159
|
+
slots?: {
|
|
3160
|
+
TX1?: string | undefined;
|
|
3161
|
+
TX2?: string | undefined;
|
|
3162
|
+
TX3?: string | undefined;
|
|
3163
|
+
TX4?: string | undefined;
|
|
3164
|
+
TX5?: string | undefined;
|
|
3165
|
+
TX6?: string | undefined;
|
|
3166
|
+
} | undefined;
|
|
3190
3167
|
runtime?: {
|
|
3191
3168
|
currentState: string;
|
|
3192
|
-
context?: {
|
|
3193
|
-
targetCallsign?: string | undefined;
|
|
3194
|
-
targetGrid?: string | undefined;
|
|
3195
|
-
reportSent?: number | undefined;
|
|
3196
|
-
reportReceived?: number | undefined;
|
|
3197
|
-
actualFrequency?: number | undefined;
|
|
3198
|
-
} | undefined;
|
|
3199
3169
|
slots?: {
|
|
3200
3170
|
TX1?: string | undefined;
|
|
3201
3171
|
TX2?: string | undefined;
|
|
@@ -3204,23 +3174,17 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
|
|
|
3204
3174
|
TX5?: string | undefined;
|
|
3205
3175
|
TX6?: string | undefined;
|
|
3206
3176
|
} | undefined;
|
|
3177
|
+
context?: {
|
|
3178
|
+
targetCallsign?: string | undefined;
|
|
3179
|
+
targetGrid?: string | undefined;
|
|
3180
|
+
reportSent?: number | undefined;
|
|
3181
|
+
reportReceived?: number | undefined;
|
|
3182
|
+
actualFrequency?: number | undefined;
|
|
3183
|
+
} | undefined;
|
|
3207
3184
|
availableSlots?: string[] | undefined;
|
|
3208
3185
|
} | undefined;
|
|
3209
|
-
slots?: {
|
|
3210
|
-
TX1?: string | undefined;
|
|
3211
|
-
TX2?: string | undefined;
|
|
3212
|
-
TX3?: string | undefined;
|
|
3213
|
-
TX4?: string | undefined;
|
|
3214
|
-
TX5?: string | undefined;
|
|
3215
|
-
TX6?: string | undefined;
|
|
3216
|
-
} | undefined;
|
|
3217
3186
|
isInActivePTT?: boolean | undefined;
|
|
3218
3187
|
currentSlot?: string | undefined;
|
|
3219
|
-
cycleInfo?: {
|
|
3220
|
-
currentCycle: number;
|
|
3221
|
-
isTransmitCycle: boolean;
|
|
3222
|
-
cycleProgress: number;
|
|
3223
|
-
} | undefined;
|
|
3224
3188
|
}[];
|
|
3225
3189
|
};
|
|
3226
3190
|
id?: string | undefined;
|
|
@@ -3247,15 +3211,16 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
|
|
|
3247
3211
|
};
|
|
3248
3212
|
isTransmitting: boolean;
|
|
3249
3213
|
transmitCycles?: number[] | undefined;
|
|
3214
|
+
slots?: {
|
|
3215
|
+
TX1?: string | undefined;
|
|
3216
|
+
TX2?: string | undefined;
|
|
3217
|
+
TX3?: string | undefined;
|
|
3218
|
+
TX4?: string | undefined;
|
|
3219
|
+
TX5?: string | undefined;
|
|
3220
|
+
TX6?: string | undefined;
|
|
3221
|
+
} | undefined;
|
|
3250
3222
|
runtime?: {
|
|
3251
3223
|
currentState: string;
|
|
3252
|
-
context?: {
|
|
3253
|
-
targetCallsign?: string | undefined;
|
|
3254
|
-
targetGrid?: string | undefined;
|
|
3255
|
-
reportSent?: number | undefined;
|
|
3256
|
-
reportReceived?: number | undefined;
|
|
3257
|
-
actualFrequency?: number | undefined;
|
|
3258
|
-
} | undefined;
|
|
3259
3224
|
slots?: {
|
|
3260
3225
|
TX1?: string | undefined;
|
|
3261
3226
|
TX2?: string | undefined;
|
|
@@ -3264,23 +3229,17 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
|
|
|
3264
3229
|
TX5?: string | undefined;
|
|
3265
3230
|
TX6?: string | undefined;
|
|
3266
3231
|
} | undefined;
|
|
3232
|
+
context?: {
|
|
3233
|
+
targetCallsign?: string | undefined;
|
|
3234
|
+
targetGrid?: string | undefined;
|
|
3235
|
+
reportSent?: number | undefined;
|
|
3236
|
+
reportReceived?: number | undefined;
|
|
3237
|
+
actualFrequency?: number | undefined;
|
|
3238
|
+
} | undefined;
|
|
3267
3239
|
availableSlots?: string[] | undefined;
|
|
3268
3240
|
} | undefined;
|
|
3269
|
-
slots?: {
|
|
3270
|
-
TX1?: string | undefined;
|
|
3271
|
-
TX2?: string | undefined;
|
|
3272
|
-
TX3?: string | undefined;
|
|
3273
|
-
TX4?: string | undefined;
|
|
3274
|
-
TX5?: string | undefined;
|
|
3275
|
-
TX6?: string | undefined;
|
|
3276
|
-
} | undefined;
|
|
3277
3241
|
isInActivePTT?: boolean | undefined;
|
|
3278
3242
|
currentSlot?: string | undefined;
|
|
3279
|
-
cycleInfo?: {
|
|
3280
|
-
currentCycle: number;
|
|
3281
|
-
isTransmitCycle: boolean;
|
|
3282
|
-
cycleProgress: number;
|
|
3283
|
-
} | undefined;
|
|
3284
3243
|
}[];
|
|
3285
3244
|
};
|
|
3286
3245
|
id?: string | undefined;
|
|
@@ -3383,13 +3342,6 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
|
|
|
3383
3342
|
availableSlots: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3384
3343
|
}, "strip", z.ZodTypeAny, {
|
|
3385
3344
|
currentState: string;
|
|
3386
|
-
context?: {
|
|
3387
|
-
targetCallsign?: string | undefined;
|
|
3388
|
-
targetGrid?: string | undefined;
|
|
3389
|
-
reportSent?: number | undefined;
|
|
3390
|
-
reportReceived?: number | undefined;
|
|
3391
|
-
actualFrequency?: number | undefined;
|
|
3392
|
-
} | undefined;
|
|
3393
3345
|
slots?: {
|
|
3394
3346
|
TX1?: string | undefined;
|
|
3395
3347
|
TX2?: string | undefined;
|
|
@@ -3398,9 +3350,6 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
|
|
|
3398
3350
|
TX5?: string | undefined;
|
|
3399
3351
|
TX6?: string | undefined;
|
|
3400
3352
|
} | undefined;
|
|
3401
|
-
availableSlots?: string[] | undefined;
|
|
3402
|
-
}, {
|
|
3403
|
-
currentState: string;
|
|
3404
3353
|
context?: {
|
|
3405
3354
|
targetCallsign?: string | undefined;
|
|
3406
3355
|
targetGrid?: string | undefined;
|
|
@@ -3408,6 +3357,9 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
|
|
|
3408
3357
|
reportReceived?: number | undefined;
|
|
3409
3358
|
actualFrequency?: number | undefined;
|
|
3410
3359
|
} | undefined;
|
|
3360
|
+
availableSlots?: string[] | undefined;
|
|
3361
|
+
}, {
|
|
3362
|
+
currentState: string;
|
|
3411
3363
|
slots?: {
|
|
3412
3364
|
TX1?: string | undefined;
|
|
3413
3365
|
TX2?: string | undefined;
|
|
@@ -3416,21 +3368,15 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
|
|
|
3416
3368
|
TX5?: string | undefined;
|
|
3417
3369
|
TX6?: string | undefined;
|
|
3418
3370
|
} | undefined;
|
|
3371
|
+
context?: {
|
|
3372
|
+
targetCallsign?: string | undefined;
|
|
3373
|
+
targetGrid?: string | undefined;
|
|
3374
|
+
reportSent?: number | undefined;
|
|
3375
|
+
reportReceived?: number | undefined;
|
|
3376
|
+
actualFrequency?: number | undefined;
|
|
3377
|
+
} | undefined;
|
|
3419
3378
|
availableSlots?: string[] | undefined;
|
|
3420
3379
|
}>>;
|
|
3421
|
-
cycleInfo: z.ZodOptional<z.ZodObject<{
|
|
3422
|
-
currentCycle: z.ZodNumber;
|
|
3423
|
-
isTransmitCycle: z.ZodBoolean;
|
|
3424
|
-
cycleProgress: z.ZodNumber;
|
|
3425
|
-
}, "strip", z.ZodTypeAny, {
|
|
3426
|
-
currentCycle: number;
|
|
3427
|
-
isTransmitCycle: boolean;
|
|
3428
|
-
cycleProgress: number;
|
|
3429
|
-
}, {
|
|
3430
|
-
currentCycle: number;
|
|
3431
|
-
isTransmitCycle: boolean;
|
|
3432
|
-
cycleProgress: number;
|
|
3433
|
-
}>>;
|
|
3434
3380
|
slots: z.ZodOptional<z.ZodObject<{
|
|
3435
3381
|
TX1: z.ZodOptional<z.ZodString>;
|
|
3436
3382
|
TX2: z.ZodOptional<z.ZodString>;
|
|
@@ -3473,15 +3419,16 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
|
|
|
3473
3419
|
};
|
|
3474
3420
|
isTransmitting: boolean;
|
|
3475
3421
|
transmitCycles?: number[] | undefined;
|
|
3422
|
+
slots?: {
|
|
3423
|
+
TX1?: string | undefined;
|
|
3424
|
+
TX2?: string | undefined;
|
|
3425
|
+
TX3?: string | undefined;
|
|
3426
|
+
TX4?: string | undefined;
|
|
3427
|
+
TX5?: string | undefined;
|
|
3428
|
+
TX6?: string | undefined;
|
|
3429
|
+
} | undefined;
|
|
3476
3430
|
runtime?: {
|
|
3477
3431
|
currentState: string;
|
|
3478
|
-
context?: {
|
|
3479
|
-
targetCallsign?: string | undefined;
|
|
3480
|
-
targetGrid?: string | undefined;
|
|
3481
|
-
reportSent?: number | undefined;
|
|
3482
|
-
reportReceived?: number | undefined;
|
|
3483
|
-
actualFrequency?: number | undefined;
|
|
3484
|
-
} | undefined;
|
|
3485
3432
|
slots?: {
|
|
3486
3433
|
TX1?: string | undefined;
|
|
3487
3434
|
TX2?: string | undefined;
|
|
@@ -3490,23 +3437,17 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
|
|
|
3490
3437
|
TX5?: string | undefined;
|
|
3491
3438
|
TX6?: string | undefined;
|
|
3492
3439
|
} | undefined;
|
|
3440
|
+
context?: {
|
|
3441
|
+
targetCallsign?: string | undefined;
|
|
3442
|
+
targetGrid?: string | undefined;
|
|
3443
|
+
reportSent?: number | undefined;
|
|
3444
|
+
reportReceived?: number | undefined;
|
|
3445
|
+
actualFrequency?: number | undefined;
|
|
3446
|
+
} | undefined;
|
|
3493
3447
|
availableSlots?: string[] | undefined;
|
|
3494
3448
|
} | undefined;
|
|
3495
|
-
slots?: {
|
|
3496
|
-
TX1?: string | undefined;
|
|
3497
|
-
TX2?: string | undefined;
|
|
3498
|
-
TX3?: string | undefined;
|
|
3499
|
-
TX4?: string | undefined;
|
|
3500
|
-
TX5?: string | undefined;
|
|
3501
|
-
TX6?: string | undefined;
|
|
3502
|
-
} | undefined;
|
|
3503
3449
|
isInActivePTT?: boolean | undefined;
|
|
3504
3450
|
currentSlot?: string | undefined;
|
|
3505
|
-
cycleInfo?: {
|
|
3506
|
-
currentCycle: number;
|
|
3507
|
-
isTransmitCycle: boolean;
|
|
3508
|
-
cycleProgress: number;
|
|
3509
|
-
} | undefined;
|
|
3510
3451
|
}, {
|
|
3511
3452
|
id: string;
|
|
3512
3453
|
strategy: {
|
|
@@ -3526,15 +3467,16 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
|
|
|
3526
3467
|
};
|
|
3527
3468
|
isTransmitting: boolean;
|
|
3528
3469
|
transmitCycles?: number[] | undefined;
|
|
3470
|
+
slots?: {
|
|
3471
|
+
TX1?: string | undefined;
|
|
3472
|
+
TX2?: string | undefined;
|
|
3473
|
+
TX3?: string | undefined;
|
|
3474
|
+
TX4?: string | undefined;
|
|
3475
|
+
TX5?: string | undefined;
|
|
3476
|
+
TX6?: string | undefined;
|
|
3477
|
+
} | undefined;
|
|
3529
3478
|
runtime?: {
|
|
3530
3479
|
currentState: string;
|
|
3531
|
-
context?: {
|
|
3532
|
-
targetCallsign?: string | undefined;
|
|
3533
|
-
targetGrid?: string | undefined;
|
|
3534
|
-
reportSent?: number | undefined;
|
|
3535
|
-
reportReceived?: number | undefined;
|
|
3536
|
-
actualFrequency?: number | undefined;
|
|
3537
|
-
} | undefined;
|
|
3538
3480
|
slots?: {
|
|
3539
3481
|
TX1?: string | undefined;
|
|
3540
3482
|
TX2?: string | undefined;
|
|
@@ -3543,23 +3485,17 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
|
|
|
3543
3485
|
TX5?: string | undefined;
|
|
3544
3486
|
TX6?: string | undefined;
|
|
3545
3487
|
} | undefined;
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
TX6?: string | undefined;
|
|
3488
|
+
context?: {
|
|
3489
|
+
targetCallsign?: string | undefined;
|
|
3490
|
+
targetGrid?: string | undefined;
|
|
3491
|
+
reportSent?: number | undefined;
|
|
3492
|
+
reportReceived?: number | undefined;
|
|
3493
|
+
actualFrequency?: number | undefined;
|
|
3494
|
+
} | undefined;
|
|
3495
|
+
availableSlots?: string[] | undefined;
|
|
3555
3496
|
} | undefined;
|
|
3556
3497
|
isInActivePTT?: boolean | undefined;
|
|
3557
3498
|
currentSlot?: string | undefined;
|
|
3558
|
-
cycleInfo?: {
|
|
3559
|
-
currentCycle: number;
|
|
3560
|
-
isTransmitCycle: boolean;
|
|
3561
|
-
cycleProgress: number;
|
|
3562
|
-
} | undefined;
|
|
3563
3499
|
}>;
|
|
3564
3500
|
}, "strip", z.ZodTypeAny, {
|
|
3565
3501
|
type: WSMessageType.OPERATOR_STATUS_UPDATE;
|
|
@@ -3583,15 +3519,16 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
|
|
|
3583
3519
|
};
|
|
3584
3520
|
isTransmitting: boolean;
|
|
3585
3521
|
transmitCycles?: number[] | undefined;
|
|
3522
|
+
slots?: {
|
|
3523
|
+
TX1?: string | undefined;
|
|
3524
|
+
TX2?: string | undefined;
|
|
3525
|
+
TX3?: string | undefined;
|
|
3526
|
+
TX4?: string | undefined;
|
|
3527
|
+
TX5?: string | undefined;
|
|
3528
|
+
TX6?: string | undefined;
|
|
3529
|
+
} | undefined;
|
|
3586
3530
|
runtime?: {
|
|
3587
3531
|
currentState: string;
|
|
3588
|
-
context?: {
|
|
3589
|
-
targetCallsign?: string | undefined;
|
|
3590
|
-
targetGrid?: string | undefined;
|
|
3591
|
-
reportSent?: number | undefined;
|
|
3592
|
-
reportReceived?: number | undefined;
|
|
3593
|
-
actualFrequency?: number | undefined;
|
|
3594
|
-
} | undefined;
|
|
3595
3532
|
slots?: {
|
|
3596
3533
|
TX1?: string | undefined;
|
|
3597
3534
|
TX2?: string | undefined;
|
|
@@ -3600,23 +3537,17 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
|
|
|
3600
3537
|
TX5?: string | undefined;
|
|
3601
3538
|
TX6?: string | undefined;
|
|
3602
3539
|
} | undefined;
|
|
3540
|
+
context?: {
|
|
3541
|
+
targetCallsign?: string | undefined;
|
|
3542
|
+
targetGrid?: string | undefined;
|
|
3543
|
+
reportSent?: number | undefined;
|
|
3544
|
+
reportReceived?: number | undefined;
|
|
3545
|
+
actualFrequency?: number | undefined;
|
|
3546
|
+
} | undefined;
|
|
3603
3547
|
availableSlots?: string[] | undefined;
|
|
3604
3548
|
} | undefined;
|
|
3605
|
-
slots?: {
|
|
3606
|
-
TX1?: string | undefined;
|
|
3607
|
-
TX2?: string | undefined;
|
|
3608
|
-
TX3?: string | undefined;
|
|
3609
|
-
TX4?: string | undefined;
|
|
3610
|
-
TX5?: string | undefined;
|
|
3611
|
-
TX6?: string | undefined;
|
|
3612
|
-
} | undefined;
|
|
3613
3549
|
isInActivePTT?: boolean | undefined;
|
|
3614
3550
|
currentSlot?: string | undefined;
|
|
3615
|
-
cycleInfo?: {
|
|
3616
|
-
currentCycle: number;
|
|
3617
|
-
isTransmitCycle: boolean;
|
|
3618
|
-
cycleProgress: number;
|
|
3619
|
-
} | undefined;
|
|
3620
3551
|
};
|
|
3621
3552
|
id?: string | undefined;
|
|
3622
3553
|
}, {
|
|
@@ -3641,15 +3572,16 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
|
|
|
3641
3572
|
};
|
|
3642
3573
|
isTransmitting: boolean;
|
|
3643
3574
|
transmitCycles?: number[] | undefined;
|
|
3575
|
+
slots?: {
|
|
3576
|
+
TX1?: string | undefined;
|
|
3577
|
+
TX2?: string | undefined;
|
|
3578
|
+
TX3?: string | undefined;
|
|
3579
|
+
TX4?: string | undefined;
|
|
3580
|
+
TX5?: string | undefined;
|
|
3581
|
+
TX6?: string | undefined;
|
|
3582
|
+
} | undefined;
|
|
3644
3583
|
runtime?: {
|
|
3645
3584
|
currentState: string;
|
|
3646
|
-
context?: {
|
|
3647
|
-
targetCallsign?: string | undefined;
|
|
3648
|
-
targetGrid?: string | undefined;
|
|
3649
|
-
reportSent?: number | undefined;
|
|
3650
|
-
reportReceived?: number | undefined;
|
|
3651
|
-
actualFrequency?: number | undefined;
|
|
3652
|
-
} | undefined;
|
|
3653
3585
|
slots?: {
|
|
3654
3586
|
TX1?: string | undefined;
|
|
3655
3587
|
TX2?: string | undefined;
|
|
@@ -3658,23 +3590,17 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
|
|
|
3658
3590
|
TX5?: string | undefined;
|
|
3659
3591
|
TX6?: string | undefined;
|
|
3660
3592
|
} | undefined;
|
|
3593
|
+
context?: {
|
|
3594
|
+
targetCallsign?: string | undefined;
|
|
3595
|
+
targetGrid?: string | undefined;
|
|
3596
|
+
reportSent?: number | undefined;
|
|
3597
|
+
reportReceived?: number | undefined;
|
|
3598
|
+
actualFrequency?: number | undefined;
|
|
3599
|
+
} | undefined;
|
|
3661
3600
|
availableSlots?: string[] | undefined;
|
|
3662
3601
|
} | undefined;
|
|
3663
|
-
slots?: {
|
|
3664
|
-
TX1?: string | undefined;
|
|
3665
|
-
TX2?: string | undefined;
|
|
3666
|
-
TX3?: string | undefined;
|
|
3667
|
-
TX4?: string | undefined;
|
|
3668
|
-
TX5?: string | undefined;
|
|
3669
|
-
TX6?: string | undefined;
|
|
3670
|
-
} | undefined;
|
|
3671
3602
|
isInActivePTT?: boolean | undefined;
|
|
3672
3603
|
currentSlot?: string | undefined;
|
|
3673
|
-
cycleInfo?: {
|
|
3674
|
-
currentCycle: number;
|
|
3675
|
-
isTransmitCycle: boolean;
|
|
3676
|
-
cycleProgress: number;
|
|
3677
|
-
} | undefined;
|
|
3678
3604
|
};
|
|
3679
3605
|
id?: string | undefined;
|
|
3680
3606
|
}>;
|
|
@@ -7366,6 +7292,54 @@ export declare const WSMeterDataMessageSchema: z.ZodObject<{
|
|
|
7366
7292
|
id?: string | undefined;
|
|
7367
7293
|
}>;
|
|
7368
7294
|
export type WSMeterDataMessage = z.infer<typeof WSMeterDataMessageSchema>;
|
|
7295
|
+
export declare const WSSquelchStatusChangedMessageSchema: z.ZodObject<{
|
|
7296
|
+
timestamp: z.ZodString;
|
|
7297
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7298
|
+
} & {
|
|
7299
|
+
type: z.ZodLiteral<WSMessageType.SQUELCH_STATUS_CHANGED>;
|
|
7300
|
+
data: z.ZodObject<{
|
|
7301
|
+
supported: z.ZodBoolean;
|
|
7302
|
+
open: z.ZodNullable<z.ZodBoolean>;
|
|
7303
|
+
muted: z.ZodBoolean;
|
|
7304
|
+
source: z.ZodEnum<["hamlib-dcd", "unsupported"]>;
|
|
7305
|
+
updatedAt: z.ZodNumber;
|
|
7306
|
+
}, "strip", z.ZodTypeAny, {
|
|
7307
|
+
supported: boolean;
|
|
7308
|
+
source: "hamlib-dcd" | "unsupported";
|
|
7309
|
+
updatedAt: number;
|
|
7310
|
+
open: boolean | null;
|
|
7311
|
+
muted: boolean;
|
|
7312
|
+
}, {
|
|
7313
|
+
supported: boolean;
|
|
7314
|
+
source: "hamlib-dcd" | "unsupported";
|
|
7315
|
+
updatedAt: number;
|
|
7316
|
+
open: boolean | null;
|
|
7317
|
+
muted: boolean;
|
|
7318
|
+
}>;
|
|
7319
|
+
}, "strip", z.ZodTypeAny, {
|
|
7320
|
+
type: WSMessageType.SQUELCH_STATUS_CHANGED;
|
|
7321
|
+
timestamp: string;
|
|
7322
|
+
data: {
|
|
7323
|
+
supported: boolean;
|
|
7324
|
+
source: "hamlib-dcd" | "unsupported";
|
|
7325
|
+
updatedAt: number;
|
|
7326
|
+
open: boolean | null;
|
|
7327
|
+
muted: boolean;
|
|
7328
|
+
};
|
|
7329
|
+
id?: string | undefined;
|
|
7330
|
+
}, {
|
|
7331
|
+
type: WSMessageType.SQUELCH_STATUS_CHANGED;
|
|
7332
|
+
timestamp: string;
|
|
7333
|
+
data: {
|
|
7334
|
+
supported: boolean;
|
|
7335
|
+
source: "hamlib-dcd" | "unsupported";
|
|
7336
|
+
updatedAt: number;
|
|
7337
|
+
open: boolean | null;
|
|
7338
|
+
muted: boolean;
|
|
7339
|
+
};
|
|
7340
|
+
id?: string | undefined;
|
|
7341
|
+
}>;
|
|
7342
|
+
export type WSSquelchStatusChangedMessage = z.infer<typeof WSSquelchStatusChangedMessageSchema>;
|
|
7369
7343
|
/**
|
|
7370
7344
|
* 文本消息(Toast通知)
|
|
7371
7345
|
* 用于向客户端推送提示信息
|
|
@@ -8129,21 +8103,21 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
8129
8103
|
title: z.ZodString;
|
|
8130
8104
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
8131
8105
|
pageId: z.ZodOptional<z.ZodString>;
|
|
8132
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation"]>>;
|
|
8106
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top"]>>;
|
|
8133
8107
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
8134
8108
|
}, "strip", z.ZodTypeAny, {
|
|
8135
8109
|
id: string;
|
|
8136
8110
|
title: string;
|
|
8137
8111
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
8138
8112
|
pageId?: string | undefined;
|
|
8139
|
-
slot?: "operator" | "automation" | undefined;
|
|
8113
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
8140
8114
|
width?: "full" | "half" | undefined;
|
|
8141
8115
|
}, {
|
|
8142
8116
|
id: string;
|
|
8143
8117
|
title: string;
|
|
8144
8118
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
8145
8119
|
pageId?: string | undefined;
|
|
8146
|
-
slot?: "operator" | "automation" | undefined;
|
|
8120
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
8147
8121
|
width?: "full" | "half" | undefined;
|
|
8148
8122
|
}>, "many">>;
|
|
8149
8123
|
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network"]>, "many">>;
|
|
@@ -8265,7 +8239,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
8265
8239
|
title: string;
|
|
8266
8240
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
8267
8241
|
pageId?: string | undefined;
|
|
8268
|
-
slot?: "operator" | "automation" | undefined;
|
|
8242
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
8269
8243
|
width?: "full" | "half" | undefined;
|
|
8270
8244
|
}[] | undefined;
|
|
8271
8245
|
lastError?: string | undefined;
|
|
@@ -8327,7 +8301,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
8327
8301
|
title: string;
|
|
8328
8302
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
8329
8303
|
pageId?: string | undefined;
|
|
8330
|
-
slot?: "operator" | "automation" | undefined;
|
|
8304
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
8331
8305
|
width?: "full" | "half" | undefined;
|
|
8332
8306
|
}[] | undefined;
|
|
8333
8307
|
loaded?: boolean | undefined;
|
|
@@ -8345,6 +8319,42 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
8345
8319
|
installedAt: number;
|
|
8346
8320
|
} | undefined;
|
|
8347
8321
|
}>, "many">;
|
|
8322
|
+
panelMeta: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8323
|
+
pluginName: z.ZodString;
|
|
8324
|
+
operatorId: z.ZodString;
|
|
8325
|
+
panelId: z.ZodString;
|
|
8326
|
+
meta: z.ZodObject<{
|
|
8327
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8328
|
+
titleValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8329
|
+
visible: z.ZodOptional<z.ZodBoolean>;
|
|
8330
|
+
}, "strip", z.ZodTypeAny, {
|
|
8331
|
+
visible?: boolean | undefined;
|
|
8332
|
+
title?: string | null | undefined;
|
|
8333
|
+
titleValues?: Record<string, unknown> | undefined;
|
|
8334
|
+
}, {
|
|
8335
|
+
visible?: boolean | undefined;
|
|
8336
|
+
title?: string | null | undefined;
|
|
8337
|
+
titleValues?: Record<string, unknown> | undefined;
|
|
8338
|
+
}>;
|
|
8339
|
+
}, "strip", z.ZodTypeAny, {
|
|
8340
|
+
operatorId: string;
|
|
8341
|
+
meta: {
|
|
8342
|
+
visible?: boolean | undefined;
|
|
8343
|
+
title?: string | null | undefined;
|
|
8344
|
+
titleValues?: Record<string, unknown> | undefined;
|
|
8345
|
+
};
|
|
8346
|
+
pluginName: string;
|
|
8347
|
+
panelId: string;
|
|
8348
|
+
}, {
|
|
8349
|
+
operatorId: string;
|
|
8350
|
+
meta: {
|
|
8351
|
+
visible?: boolean | undefined;
|
|
8352
|
+
title?: string | null | undefined;
|
|
8353
|
+
titleValues?: Record<string, unknown> | undefined;
|
|
8354
|
+
};
|
|
8355
|
+
pluginName: string;
|
|
8356
|
+
panelId: string;
|
|
8357
|
+
}>, "many">>>;
|
|
8348
8358
|
lastError: z.ZodOptional<z.ZodString>;
|
|
8349
8359
|
}, "strip", z.ZodTypeAny, {
|
|
8350
8360
|
state: "error" | "ready" | "reloading";
|
|
@@ -8398,7 +8408,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
8398
8408
|
title: string;
|
|
8399
8409
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
8400
8410
|
pageId?: string | undefined;
|
|
8401
|
-
slot?: "operator" | "automation" | undefined;
|
|
8411
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
8402
8412
|
width?: "full" | "half" | undefined;
|
|
8403
8413
|
}[] | undefined;
|
|
8404
8414
|
lastError?: string | undefined;
|
|
@@ -8414,6 +8424,16 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
8414
8424
|
installedAt: number;
|
|
8415
8425
|
} | undefined;
|
|
8416
8426
|
}[];
|
|
8427
|
+
panelMeta: {
|
|
8428
|
+
operatorId: string;
|
|
8429
|
+
meta: {
|
|
8430
|
+
visible?: boolean | undefined;
|
|
8431
|
+
title?: string | null | undefined;
|
|
8432
|
+
titleValues?: Record<string, unknown> | undefined;
|
|
8433
|
+
};
|
|
8434
|
+
pluginName: string;
|
|
8435
|
+
panelId: string;
|
|
8436
|
+
}[];
|
|
8417
8437
|
lastError?: string | undefined;
|
|
8418
8438
|
}, {
|
|
8419
8439
|
state: "error" | "ready" | "reloading";
|
|
@@ -8465,7 +8485,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
8465
8485
|
title: string;
|
|
8466
8486
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
8467
8487
|
pageId?: string | undefined;
|
|
8468
|
-
slot?: "operator" | "automation" | undefined;
|
|
8488
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
8469
8489
|
width?: "full" | "half" | undefined;
|
|
8470
8490
|
}[] | undefined;
|
|
8471
8491
|
loaded?: boolean | undefined;
|
|
@@ -8484,6 +8504,16 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
8484
8504
|
} | undefined;
|
|
8485
8505
|
}[];
|
|
8486
8506
|
lastError?: string | undefined;
|
|
8507
|
+
panelMeta?: {
|
|
8508
|
+
operatorId: string;
|
|
8509
|
+
meta: {
|
|
8510
|
+
visible?: boolean | undefined;
|
|
8511
|
+
title?: string | null | undefined;
|
|
8512
|
+
titleValues?: Record<string, unknown> | undefined;
|
|
8513
|
+
};
|
|
8514
|
+
pluginName: string;
|
|
8515
|
+
panelId: string;
|
|
8516
|
+
}[] | undefined;
|
|
8487
8517
|
}>;
|
|
8488
8518
|
}, "strip", z.ZodTypeAny, {
|
|
8489
8519
|
type: WSMessageType.PLUGIN_LIST;
|
|
@@ -8540,7 +8570,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
8540
8570
|
title: string;
|
|
8541
8571
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
8542
8572
|
pageId?: string | undefined;
|
|
8543
|
-
slot?: "operator" | "automation" | undefined;
|
|
8573
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
8544
8574
|
width?: "full" | "half" | undefined;
|
|
8545
8575
|
}[] | undefined;
|
|
8546
8576
|
lastError?: string | undefined;
|
|
@@ -8556,6 +8586,16 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
8556
8586
|
installedAt: number;
|
|
8557
8587
|
} | undefined;
|
|
8558
8588
|
}[];
|
|
8589
|
+
panelMeta: {
|
|
8590
|
+
operatorId: string;
|
|
8591
|
+
meta: {
|
|
8592
|
+
visible?: boolean | undefined;
|
|
8593
|
+
title?: string | null | undefined;
|
|
8594
|
+
titleValues?: Record<string, unknown> | undefined;
|
|
8595
|
+
};
|
|
8596
|
+
pluginName: string;
|
|
8597
|
+
panelId: string;
|
|
8598
|
+
}[];
|
|
8559
8599
|
lastError?: string | undefined;
|
|
8560
8600
|
};
|
|
8561
8601
|
id?: string | undefined;
|
|
@@ -8612,7 +8652,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
8612
8652
|
title: string;
|
|
8613
8653
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
8614
8654
|
pageId?: string | undefined;
|
|
8615
|
-
slot?: "operator" | "automation" | undefined;
|
|
8655
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
8616
8656
|
width?: "full" | "half" | undefined;
|
|
8617
8657
|
}[] | undefined;
|
|
8618
8658
|
loaded?: boolean | undefined;
|
|
@@ -8631,6 +8671,16 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
8631
8671
|
} | undefined;
|
|
8632
8672
|
}[];
|
|
8633
8673
|
lastError?: string | undefined;
|
|
8674
|
+
panelMeta?: {
|
|
8675
|
+
operatorId: string;
|
|
8676
|
+
meta: {
|
|
8677
|
+
visible?: boolean | undefined;
|
|
8678
|
+
title?: string | null | undefined;
|
|
8679
|
+
titleValues?: Record<string, unknown> | undefined;
|
|
8680
|
+
};
|
|
8681
|
+
pluginName: string;
|
|
8682
|
+
panelId: string;
|
|
8683
|
+
}[] | undefined;
|
|
8634
8684
|
};
|
|
8635
8685
|
id?: string | undefined;
|
|
8636
8686
|
}>;
|
|
@@ -8723,21 +8773,21 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
8723
8773
|
title: z.ZodString;
|
|
8724
8774
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
8725
8775
|
pageId: z.ZodOptional<z.ZodString>;
|
|
8726
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation"]>>;
|
|
8776
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top"]>>;
|
|
8727
8777
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
8728
8778
|
}, "strip", z.ZodTypeAny, {
|
|
8729
8779
|
id: string;
|
|
8730
8780
|
title: string;
|
|
8731
8781
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
8732
8782
|
pageId?: string | undefined;
|
|
8733
|
-
slot?: "operator" | "automation" | undefined;
|
|
8783
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
8734
8784
|
width?: "full" | "half" | undefined;
|
|
8735
8785
|
}, {
|
|
8736
8786
|
id: string;
|
|
8737
8787
|
title: string;
|
|
8738
8788
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
8739
8789
|
pageId?: string | undefined;
|
|
8740
|
-
slot?: "operator" | "automation" | undefined;
|
|
8790
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
8741
8791
|
width?: "full" | "half" | undefined;
|
|
8742
8792
|
}>, "many">>;
|
|
8743
8793
|
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network"]>, "many">>;
|
|
@@ -8859,7 +8909,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
8859
8909
|
title: string;
|
|
8860
8910
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
8861
8911
|
pageId?: string | undefined;
|
|
8862
|
-
slot?: "operator" | "automation" | undefined;
|
|
8912
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
8863
8913
|
width?: "full" | "half" | undefined;
|
|
8864
8914
|
}[] | undefined;
|
|
8865
8915
|
lastError?: string | undefined;
|
|
@@ -8921,7 +8971,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
8921
8971
|
title: string;
|
|
8922
8972
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
8923
8973
|
pageId?: string | undefined;
|
|
8924
|
-
slot?: "operator" | "automation" | undefined;
|
|
8974
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
8925
8975
|
width?: "full" | "half" | undefined;
|
|
8926
8976
|
}[] | undefined;
|
|
8927
8977
|
loaded?: boolean | undefined;
|
|
@@ -8990,7 +9040,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
8990
9040
|
title: string;
|
|
8991
9041
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
8992
9042
|
pageId?: string | undefined;
|
|
8993
|
-
slot?: "operator" | "automation" | undefined;
|
|
9043
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
8994
9044
|
width?: "full" | "half" | undefined;
|
|
8995
9045
|
}[] | undefined;
|
|
8996
9046
|
lastError?: string | undefined;
|
|
@@ -9055,7 +9105,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
9055
9105
|
title: string;
|
|
9056
9106
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
9057
9107
|
pageId?: string | undefined;
|
|
9058
|
-
slot?: "operator" | "automation" | undefined;
|
|
9108
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
9059
9109
|
width?: "full" | "half" | undefined;
|
|
9060
9110
|
}[] | undefined;
|
|
9061
9111
|
loaded?: boolean | undefined;
|
|
@@ -9128,7 +9178,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
9128
9178
|
title: string;
|
|
9129
9179
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
9130
9180
|
pageId?: string | undefined;
|
|
9131
|
-
slot?: "operator" | "automation" | undefined;
|
|
9181
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
9132
9182
|
width?: "full" | "half" | undefined;
|
|
9133
9183
|
}[] | undefined;
|
|
9134
9184
|
lastError?: string | undefined;
|
|
@@ -9198,7 +9248,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
9198
9248
|
title: string;
|
|
9199
9249
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
9200
9250
|
pageId?: string | undefined;
|
|
9201
|
-
slot?: "operator" | "automation" | undefined;
|
|
9251
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
9202
9252
|
width?: "full" | "half" | undefined;
|
|
9203
9253
|
}[] | undefined;
|
|
9204
9254
|
loaded?: boolean | undefined;
|
|
@@ -10942,7 +10992,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
10942
10992
|
connectionHealthy: boolean;
|
|
10943
10993
|
} | undefined;
|
|
10944
10994
|
currentRadioMode?: string | undefined;
|
|
10945
|
-
engineState?: "idle" | "
|
|
10995
|
+
engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
|
|
10946
10996
|
engineContext?: {
|
|
10947
10997
|
error?: string | undefined;
|
|
10948
10998
|
startedResources?: string[] | undefined;
|
|
@@ -10968,7 +11018,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
10968
11018
|
} | undefined;
|
|
10969
11019
|
engineMode?: "voice" | "digital" | undefined;
|
|
10970
11020
|
currentRadioMode?: string | undefined;
|
|
10971
|
-
engineState?: "idle" | "
|
|
11021
|
+
engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
|
|
10972
11022
|
engineContext?: {
|
|
10973
11023
|
error?: string | undefined;
|
|
10974
11024
|
startedResources?: string[] | undefined;
|
|
@@ -10998,7 +11048,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
10998
11048
|
connectionHealthy: boolean;
|
|
10999
11049
|
} | undefined;
|
|
11000
11050
|
currentRadioMode?: string | undefined;
|
|
11001
|
-
engineState?: "idle" | "
|
|
11051
|
+
engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
|
|
11002
11052
|
engineContext?: {
|
|
11003
11053
|
error?: string | undefined;
|
|
11004
11054
|
startedResources?: string[] | undefined;
|
|
@@ -11029,7 +11079,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11029
11079
|
} | undefined;
|
|
11030
11080
|
engineMode?: "voice" | "digital" | undefined;
|
|
11031
11081
|
currentRadioMode?: string | undefined;
|
|
11032
|
-
engineState?: "idle" | "
|
|
11082
|
+
engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
|
|
11033
11083
|
engineContext?: {
|
|
11034
11084
|
error?: string | undefined;
|
|
11035
11085
|
startedResources?: string[] | undefined;
|
|
@@ -11480,13 +11530,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11480
11530
|
availableSlots: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11481
11531
|
}, "strip", z.ZodTypeAny, {
|
|
11482
11532
|
currentState: string;
|
|
11483
|
-
context?: {
|
|
11484
|
-
targetCallsign?: string | undefined;
|
|
11485
|
-
targetGrid?: string | undefined;
|
|
11486
|
-
reportSent?: number | undefined;
|
|
11487
|
-
reportReceived?: number | undefined;
|
|
11488
|
-
actualFrequency?: number | undefined;
|
|
11489
|
-
} | undefined;
|
|
11490
11533
|
slots?: {
|
|
11491
11534
|
TX1?: string | undefined;
|
|
11492
11535
|
TX2?: string | undefined;
|
|
@@ -11495,9 +11538,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11495
11538
|
TX5?: string | undefined;
|
|
11496
11539
|
TX6?: string | undefined;
|
|
11497
11540
|
} | undefined;
|
|
11498
|
-
availableSlots?: string[] | undefined;
|
|
11499
|
-
}, {
|
|
11500
|
-
currentState: string;
|
|
11501
11541
|
context?: {
|
|
11502
11542
|
targetCallsign?: string | undefined;
|
|
11503
11543
|
targetGrid?: string | undefined;
|
|
@@ -11505,6 +11545,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11505
11545
|
reportReceived?: number | undefined;
|
|
11506
11546
|
actualFrequency?: number | undefined;
|
|
11507
11547
|
} | undefined;
|
|
11548
|
+
availableSlots?: string[] | undefined;
|
|
11549
|
+
}, {
|
|
11550
|
+
currentState: string;
|
|
11508
11551
|
slots?: {
|
|
11509
11552
|
TX1?: string | undefined;
|
|
11510
11553
|
TX2?: string | undefined;
|
|
@@ -11513,21 +11556,15 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11513
11556
|
TX5?: string | undefined;
|
|
11514
11557
|
TX6?: string | undefined;
|
|
11515
11558
|
} | undefined;
|
|
11559
|
+
context?: {
|
|
11560
|
+
targetCallsign?: string | undefined;
|
|
11561
|
+
targetGrid?: string | undefined;
|
|
11562
|
+
reportSent?: number | undefined;
|
|
11563
|
+
reportReceived?: number | undefined;
|
|
11564
|
+
actualFrequency?: number | undefined;
|
|
11565
|
+
} | undefined;
|
|
11516
11566
|
availableSlots?: string[] | undefined;
|
|
11517
11567
|
}>>;
|
|
11518
|
-
cycleInfo: z.ZodOptional<z.ZodObject<{
|
|
11519
|
-
currentCycle: z.ZodNumber;
|
|
11520
|
-
isTransmitCycle: z.ZodBoolean;
|
|
11521
|
-
cycleProgress: z.ZodNumber;
|
|
11522
|
-
}, "strip", z.ZodTypeAny, {
|
|
11523
|
-
currentCycle: number;
|
|
11524
|
-
isTransmitCycle: boolean;
|
|
11525
|
-
cycleProgress: number;
|
|
11526
|
-
}, {
|
|
11527
|
-
currentCycle: number;
|
|
11528
|
-
isTransmitCycle: boolean;
|
|
11529
|
-
cycleProgress: number;
|
|
11530
|
-
}>>;
|
|
11531
11568
|
slots: z.ZodOptional<z.ZodObject<{
|
|
11532
11569
|
TX1: z.ZodOptional<z.ZodString>;
|
|
11533
11570
|
TX2: z.ZodOptional<z.ZodString>;
|
|
@@ -11570,15 +11607,16 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11570
11607
|
};
|
|
11571
11608
|
isTransmitting: boolean;
|
|
11572
11609
|
transmitCycles?: number[] | undefined;
|
|
11610
|
+
slots?: {
|
|
11611
|
+
TX1?: string | undefined;
|
|
11612
|
+
TX2?: string | undefined;
|
|
11613
|
+
TX3?: string | undefined;
|
|
11614
|
+
TX4?: string | undefined;
|
|
11615
|
+
TX5?: string | undefined;
|
|
11616
|
+
TX6?: string | undefined;
|
|
11617
|
+
} | undefined;
|
|
11573
11618
|
runtime?: {
|
|
11574
11619
|
currentState: string;
|
|
11575
|
-
context?: {
|
|
11576
|
-
targetCallsign?: string | undefined;
|
|
11577
|
-
targetGrid?: string | undefined;
|
|
11578
|
-
reportSent?: number | undefined;
|
|
11579
|
-
reportReceived?: number | undefined;
|
|
11580
|
-
actualFrequency?: number | undefined;
|
|
11581
|
-
} | undefined;
|
|
11582
11620
|
slots?: {
|
|
11583
11621
|
TX1?: string | undefined;
|
|
11584
11622
|
TX2?: string | undefined;
|
|
@@ -11587,23 +11625,17 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11587
11625
|
TX5?: string | undefined;
|
|
11588
11626
|
TX6?: string | undefined;
|
|
11589
11627
|
} | undefined;
|
|
11628
|
+
context?: {
|
|
11629
|
+
targetCallsign?: string | undefined;
|
|
11630
|
+
targetGrid?: string | undefined;
|
|
11631
|
+
reportSent?: number | undefined;
|
|
11632
|
+
reportReceived?: number | undefined;
|
|
11633
|
+
actualFrequency?: number | undefined;
|
|
11634
|
+
} | undefined;
|
|
11590
11635
|
availableSlots?: string[] | undefined;
|
|
11591
11636
|
} | undefined;
|
|
11592
|
-
slots?: {
|
|
11593
|
-
TX1?: string | undefined;
|
|
11594
|
-
TX2?: string | undefined;
|
|
11595
|
-
TX3?: string | undefined;
|
|
11596
|
-
TX4?: string | undefined;
|
|
11597
|
-
TX5?: string | undefined;
|
|
11598
|
-
TX6?: string | undefined;
|
|
11599
|
-
} | undefined;
|
|
11600
11637
|
isInActivePTT?: boolean | undefined;
|
|
11601
11638
|
currentSlot?: string | undefined;
|
|
11602
|
-
cycleInfo?: {
|
|
11603
|
-
currentCycle: number;
|
|
11604
|
-
isTransmitCycle: boolean;
|
|
11605
|
-
cycleProgress: number;
|
|
11606
|
-
} | undefined;
|
|
11607
11639
|
}, {
|
|
11608
11640
|
id: string;
|
|
11609
11641
|
strategy: {
|
|
@@ -11623,15 +11655,16 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11623
11655
|
};
|
|
11624
11656
|
isTransmitting: boolean;
|
|
11625
11657
|
transmitCycles?: number[] | undefined;
|
|
11658
|
+
slots?: {
|
|
11659
|
+
TX1?: string | undefined;
|
|
11660
|
+
TX2?: string | undefined;
|
|
11661
|
+
TX3?: string | undefined;
|
|
11662
|
+
TX4?: string | undefined;
|
|
11663
|
+
TX5?: string | undefined;
|
|
11664
|
+
TX6?: string | undefined;
|
|
11665
|
+
} | undefined;
|
|
11626
11666
|
runtime?: {
|
|
11627
11667
|
currentState: string;
|
|
11628
|
-
context?: {
|
|
11629
|
-
targetCallsign?: string | undefined;
|
|
11630
|
-
targetGrid?: string | undefined;
|
|
11631
|
-
reportSent?: number | undefined;
|
|
11632
|
-
reportReceived?: number | undefined;
|
|
11633
|
-
actualFrequency?: number | undefined;
|
|
11634
|
-
} | undefined;
|
|
11635
11668
|
slots?: {
|
|
11636
11669
|
TX1?: string | undefined;
|
|
11637
11670
|
TX2?: string | undefined;
|
|
@@ -11640,23 +11673,17 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11640
11673
|
TX5?: string | undefined;
|
|
11641
11674
|
TX6?: string | undefined;
|
|
11642
11675
|
} | undefined;
|
|
11676
|
+
context?: {
|
|
11677
|
+
targetCallsign?: string | undefined;
|
|
11678
|
+
targetGrid?: string | undefined;
|
|
11679
|
+
reportSent?: number | undefined;
|
|
11680
|
+
reportReceived?: number | undefined;
|
|
11681
|
+
actualFrequency?: number | undefined;
|
|
11682
|
+
} | undefined;
|
|
11643
11683
|
availableSlots?: string[] | undefined;
|
|
11644
11684
|
} | undefined;
|
|
11645
|
-
slots?: {
|
|
11646
|
-
TX1?: string | undefined;
|
|
11647
|
-
TX2?: string | undefined;
|
|
11648
|
-
TX3?: string | undefined;
|
|
11649
|
-
TX4?: string | undefined;
|
|
11650
|
-
TX5?: string | undefined;
|
|
11651
|
-
TX6?: string | undefined;
|
|
11652
|
-
} | undefined;
|
|
11653
11685
|
isInActivePTT?: boolean | undefined;
|
|
11654
11686
|
currentSlot?: string | undefined;
|
|
11655
|
-
cycleInfo?: {
|
|
11656
|
-
currentCycle: number;
|
|
11657
|
-
isTransmitCycle: boolean;
|
|
11658
|
-
cycleProgress: number;
|
|
11659
|
-
} | undefined;
|
|
11660
11687
|
}>, "many">;
|
|
11661
11688
|
}, "strip", z.ZodTypeAny, {
|
|
11662
11689
|
operators: {
|
|
@@ -11678,15 +11705,16 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11678
11705
|
};
|
|
11679
11706
|
isTransmitting: boolean;
|
|
11680
11707
|
transmitCycles?: number[] | undefined;
|
|
11708
|
+
slots?: {
|
|
11709
|
+
TX1?: string | undefined;
|
|
11710
|
+
TX2?: string | undefined;
|
|
11711
|
+
TX3?: string | undefined;
|
|
11712
|
+
TX4?: string | undefined;
|
|
11713
|
+
TX5?: string | undefined;
|
|
11714
|
+
TX6?: string | undefined;
|
|
11715
|
+
} | undefined;
|
|
11681
11716
|
runtime?: {
|
|
11682
11717
|
currentState: string;
|
|
11683
|
-
context?: {
|
|
11684
|
-
targetCallsign?: string | undefined;
|
|
11685
|
-
targetGrid?: string | undefined;
|
|
11686
|
-
reportSent?: number | undefined;
|
|
11687
|
-
reportReceived?: number | undefined;
|
|
11688
|
-
actualFrequency?: number | undefined;
|
|
11689
|
-
} | undefined;
|
|
11690
11718
|
slots?: {
|
|
11691
11719
|
TX1?: string | undefined;
|
|
11692
11720
|
TX2?: string | undefined;
|
|
@@ -11695,23 +11723,17 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11695
11723
|
TX5?: string | undefined;
|
|
11696
11724
|
TX6?: string | undefined;
|
|
11697
11725
|
} | undefined;
|
|
11726
|
+
context?: {
|
|
11727
|
+
targetCallsign?: string | undefined;
|
|
11728
|
+
targetGrid?: string | undefined;
|
|
11729
|
+
reportSent?: number | undefined;
|
|
11730
|
+
reportReceived?: number | undefined;
|
|
11731
|
+
actualFrequency?: number | undefined;
|
|
11732
|
+
} | undefined;
|
|
11698
11733
|
availableSlots?: string[] | undefined;
|
|
11699
11734
|
} | undefined;
|
|
11700
|
-
slots?: {
|
|
11701
|
-
TX1?: string | undefined;
|
|
11702
|
-
TX2?: string | undefined;
|
|
11703
|
-
TX3?: string | undefined;
|
|
11704
|
-
TX4?: string | undefined;
|
|
11705
|
-
TX5?: string | undefined;
|
|
11706
|
-
TX6?: string | undefined;
|
|
11707
|
-
} | undefined;
|
|
11708
11735
|
isInActivePTT?: boolean | undefined;
|
|
11709
11736
|
currentSlot?: string | undefined;
|
|
11710
|
-
cycleInfo?: {
|
|
11711
|
-
currentCycle: number;
|
|
11712
|
-
isTransmitCycle: boolean;
|
|
11713
|
-
cycleProgress: number;
|
|
11714
|
-
} | undefined;
|
|
11715
11737
|
}[];
|
|
11716
11738
|
}, {
|
|
11717
11739
|
operators: {
|
|
@@ -11733,15 +11755,16 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11733
11755
|
};
|
|
11734
11756
|
isTransmitting: boolean;
|
|
11735
11757
|
transmitCycles?: number[] | undefined;
|
|
11758
|
+
slots?: {
|
|
11759
|
+
TX1?: string | undefined;
|
|
11760
|
+
TX2?: string | undefined;
|
|
11761
|
+
TX3?: string | undefined;
|
|
11762
|
+
TX4?: string | undefined;
|
|
11763
|
+
TX5?: string | undefined;
|
|
11764
|
+
TX6?: string | undefined;
|
|
11765
|
+
} | undefined;
|
|
11736
11766
|
runtime?: {
|
|
11737
11767
|
currentState: string;
|
|
11738
|
-
context?: {
|
|
11739
|
-
targetCallsign?: string | undefined;
|
|
11740
|
-
targetGrid?: string | undefined;
|
|
11741
|
-
reportSent?: number | undefined;
|
|
11742
|
-
reportReceived?: number | undefined;
|
|
11743
|
-
actualFrequency?: number | undefined;
|
|
11744
|
-
} | undefined;
|
|
11745
11768
|
slots?: {
|
|
11746
11769
|
TX1?: string | undefined;
|
|
11747
11770
|
TX2?: string | undefined;
|
|
@@ -11750,23 +11773,17 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11750
11773
|
TX5?: string | undefined;
|
|
11751
11774
|
TX6?: string | undefined;
|
|
11752
11775
|
} | undefined;
|
|
11753
|
-
|
|
11754
|
-
|
|
11755
|
-
|
|
11756
|
-
|
|
11757
|
-
|
|
11758
|
-
|
|
11759
|
-
|
|
11760
|
-
|
|
11761
|
-
TX6?: string | undefined;
|
|
11776
|
+
context?: {
|
|
11777
|
+
targetCallsign?: string | undefined;
|
|
11778
|
+
targetGrid?: string | undefined;
|
|
11779
|
+
reportSent?: number | undefined;
|
|
11780
|
+
reportReceived?: number | undefined;
|
|
11781
|
+
actualFrequency?: number | undefined;
|
|
11782
|
+
} | undefined;
|
|
11783
|
+
availableSlots?: string[] | undefined;
|
|
11762
11784
|
} | undefined;
|
|
11763
11785
|
isInActivePTT?: boolean | undefined;
|
|
11764
11786
|
currentSlot?: string | undefined;
|
|
11765
|
-
cycleInfo?: {
|
|
11766
|
-
currentCycle: number;
|
|
11767
|
-
isTransmitCycle: boolean;
|
|
11768
|
-
cycleProgress: number;
|
|
11769
|
-
} | undefined;
|
|
11770
11787
|
}[];
|
|
11771
11788
|
}>;
|
|
11772
11789
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11792,15 +11809,16 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11792
11809
|
};
|
|
11793
11810
|
isTransmitting: boolean;
|
|
11794
11811
|
transmitCycles?: number[] | undefined;
|
|
11812
|
+
slots?: {
|
|
11813
|
+
TX1?: string | undefined;
|
|
11814
|
+
TX2?: string | undefined;
|
|
11815
|
+
TX3?: string | undefined;
|
|
11816
|
+
TX4?: string | undefined;
|
|
11817
|
+
TX5?: string | undefined;
|
|
11818
|
+
TX6?: string | undefined;
|
|
11819
|
+
} | undefined;
|
|
11795
11820
|
runtime?: {
|
|
11796
11821
|
currentState: string;
|
|
11797
|
-
context?: {
|
|
11798
|
-
targetCallsign?: string | undefined;
|
|
11799
|
-
targetGrid?: string | undefined;
|
|
11800
|
-
reportSent?: number | undefined;
|
|
11801
|
-
reportReceived?: number | undefined;
|
|
11802
|
-
actualFrequency?: number | undefined;
|
|
11803
|
-
} | undefined;
|
|
11804
11822
|
slots?: {
|
|
11805
11823
|
TX1?: string | undefined;
|
|
11806
11824
|
TX2?: string | undefined;
|
|
@@ -11809,23 +11827,17 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11809
11827
|
TX5?: string | undefined;
|
|
11810
11828
|
TX6?: string | undefined;
|
|
11811
11829
|
} | undefined;
|
|
11830
|
+
context?: {
|
|
11831
|
+
targetCallsign?: string | undefined;
|
|
11832
|
+
targetGrid?: string | undefined;
|
|
11833
|
+
reportSent?: number | undefined;
|
|
11834
|
+
reportReceived?: number | undefined;
|
|
11835
|
+
actualFrequency?: number | undefined;
|
|
11836
|
+
} | undefined;
|
|
11812
11837
|
availableSlots?: string[] | undefined;
|
|
11813
11838
|
} | undefined;
|
|
11814
|
-
slots?: {
|
|
11815
|
-
TX1?: string | undefined;
|
|
11816
|
-
TX2?: string | undefined;
|
|
11817
|
-
TX3?: string | undefined;
|
|
11818
|
-
TX4?: string | undefined;
|
|
11819
|
-
TX5?: string | undefined;
|
|
11820
|
-
TX6?: string | undefined;
|
|
11821
|
-
} | undefined;
|
|
11822
11839
|
isInActivePTT?: boolean | undefined;
|
|
11823
11840
|
currentSlot?: string | undefined;
|
|
11824
|
-
cycleInfo?: {
|
|
11825
|
-
currentCycle: number;
|
|
11826
|
-
isTransmitCycle: boolean;
|
|
11827
|
-
cycleProgress: number;
|
|
11828
|
-
} | undefined;
|
|
11829
11841
|
}[];
|
|
11830
11842
|
};
|
|
11831
11843
|
id?: string | undefined;
|
|
@@ -11852,15 +11864,16 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11852
11864
|
};
|
|
11853
11865
|
isTransmitting: boolean;
|
|
11854
11866
|
transmitCycles?: number[] | undefined;
|
|
11867
|
+
slots?: {
|
|
11868
|
+
TX1?: string | undefined;
|
|
11869
|
+
TX2?: string | undefined;
|
|
11870
|
+
TX3?: string | undefined;
|
|
11871
|
+
TX4?: string | undefined;
|
|
11872
|
+
TX5?: string | undefined;
|
|
11873
|
+
TX6?: string | undefined;
|
|
11874
|
+
} | undefined;
|
|
11855
11875
|
runtime?: {
|
|
11856
11876
|
currentState: string;
|
|
11857
|
-
context?: {
|
|
11858
|
-
targetCallsign?: string | undefined;
|
|
11859
|
-
targetGrid?: string | undefined;
|
|
11860
|
-
reportSent?: number | undefined;
|
|
11861
|
-
reportReceived?: number | undefined;
|
|
11862
|
-
actualFrequency?: number | undefined;
|
|
11863
|
-
} | undefined;
|
|
11864
11877
|
slots?: {
|
|
11865
11878
|
TX1?: string | undefined;
|
|
11866
11879
|
TX2?: string | undefined;
|
|
@@ -11869,23 +11882,17 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11869
11882
|
TX5?: string | undefined;
|
|
11870
11883
|
TX6?: string | undefined;
|
|
11871
11884
|
} | undefined;
|
|
11885
|
+
context?: {
|
|
11886
|
+
targetCallsign?: string | undefined;
|
|
11887
|
+
targetGrid?: string | undefined;
|
|
11888
|
+
reportSent?: number | undefined;
|
|
11889
|
+
reportReceived?: number | undefined;
|
|
11890
|
+
actualFrequency?: number | undefined;
|
|
11891
|
+
} | undefined;
|
|
11872
11892
|
availableSlots?: string[] | undefined;
|
|
11873
11893
|
} | undefined;
|
|
11874
|
-
slots?: {
|
|
11875
|
-
TX1?: string | undefined;
|
|
11876
|
-
TX2?: string | undefined;
|
|
11877
|
-
TX3?: string | undefined;
|
|
11878
|
-
TX4?: string | undefined;
|
|
11879
|
-
TX5?: string | undefined;
|
|
11880
|
-
TX6?: string | undefined;
|
|
11881
|
-
} | undefined;
|
|
11882
11894
|
isInActivePTT?: boolean | undefined;
|
|
11883
11895
|
currentSlot?: string | undefined;
|
|
11884
|
-
cycleInfo?: {
|
|
11885
|
-
currentCycle: number;
|
|
11886
|
-
isTransmitCycle: boolean;
|
|
11887
|
-
cycleProgress: number;
|
|
11888
|
-
} | undefined;
|
|
11889
11896
|
}[];
|
|
11890
11897
|
};
|
|
11891
11898
|
id?: string | undefined;
|
|
@@ -11984,13 +11991,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11984
11991
|
availableSlots: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11985
11992
|
}, "strip", z.ZodTypeAny, {
|
|
11986
11993
|
currentState: string;
|
|
11987
|
-
context?: {
|
|
11988
|
-
targetCallsign?: string | undefined;
|
|
11989
|
-
targetGrid?: string | undefined;
|
|
11990
|
-
reportSent?: number | undefined;
|
|
11991
|
-
reportReceived?: number | undefined;
|
|
11992
|
-
actualFrequency?: number | undefined;
|
|
11993
|
-
} | undefined;
|
|
11994
11994
|
slots?: {
|
|
11995
11995
|
TX1?: string | undefined;
|
|
11996
11996
|
TX2?: string | undefined;
|
|
@@ -11999,9 +11999,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
11999
11999
|
TX5?: string | undefined;
|
|
12000
12000
|
TX6?: string | undefined;
|
|
12001
12001
|
} | undefined;
|
|
12002
|
-
availableSlots?: string[] | undefined;
|
|
12003
|
-
}, {
|
|
12004
|
-
currentState: string;
|
|
12005
12002
|
context?: {
|
|
12006
12003
|
targetCallsign?: string | undefined;
|
|
12007
12004
|
targetGrid?: string | undefined;
|
|
@@ -12009,6 +12006,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12009
12006
|
reportReceived?: number | undefined;
|
|
12010
12007
|
actualFrequency?: number | undefined;
|
|
12011
12008
|
} | undefined;
|
|
12009
|
+
availableSlots?: string[] | undefined;
|
|
12010
|
+
}, {
|
|
12011
|
+
currentState: string;
|
|
12012
12012
|
slots?: {
|
|
12013
12013
|
TX1?: string | undefined;
|
|
12014
12014
|
TX2?: string | undefined;
|
|
@@ -12017,21 +12017,15 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12017
12017
|
TX5?: string | undefined;
|
|
12018
12018
|
TX6?: string | undefined;
|
|
12019
12019
|
} | undefined;
|
|
12020
|
+
context?: {
|
|
12021
|
+
targetCallsign?: string | undefined;
|
|
12022
|
+
targetGrid?: string | undefined;
|
|
12023
|
+
reportSent?: number | undefined;
|
|
12024
|
+
reportReceived?: number | undefined;
|
|
12025
|
+
actualFrequency?: number | undefined;
|
|
12026
|
+
} | undefined;
|
|
12020
12027
|
availableSlots?: string[] | undefined;
|
|
12021
12028
|
}>>;
|
|
12022
|
-
cycleInfo: z.ZodOptional<z.ZodObject<{
|
|
12023
|
-
currentCycle: z.ZodNumber;
|
|
12024
|
-
isTransmitCycle: z.ZodBoolean;
|
|
12025
|
-
cycleProgress: z.ZodNumber;
|
|
12026
|
-
}, "strip", z.ZodTypeAny, {
|
|
12027
|
-
currentCycle: number;
|
|
12028
|
-
isTransmitCycle: boolean;
|
|
12029
|
-
cycleProgress: number;
|
|
12030
|
-
}, {
|
|
12031
|
-
currentCycle: number;
|
|
12032
|
-
isTransmitCycle: boolean;
|
|
12033
|
-
cycleProgress: number;
|
|
12034
|
-
}>>;
|
|
12035
12029
|
slots: z.ZodOptional<z.ZodObject<{
|
|
12036
12030
|
TX1: z.ZodOptional<z.ZodString>;
|
|
12037
12031
|
TX2: z.ZodOptional<z.ZodString>;
|
|
@@ -12074,15 +12068,16 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12074
12068
|
};
|
|
12075
12069
|
isTransmitting: boolean;
|
|
12076
12070
|
transmitCycles?: number[] | undefined;
|
|
12071
|
+
slots?: {
|
|
12072
|
+
TX1?: string | undefined;
|
|
12073
|
+
TX2?: string | undefined;
|
|
12074
|
+
TX3?: string | undefined;
|
|
12075
|
+
TX4?: string | undefined;
|
|
12076
|
+
TX5?: string | undefined;
|
|
12077
|
+
TX6?: string | undefined;
|
|
12078
|
+
} | undefined;
|
|
12077
12079
|
runtime?: {
|
|
12078
12080
|
currentState: string;
|
|
12079
|
-
context?: {
|
|
12080
|
-
targetCallsign?: string | undefined;
|
|
12081
|
-
targetGrid?: string | undefined;
|
|
12082
|
-
reportSent?: number | undefined;
|
|
12083
|
-
reportReceived?: number | undefined;
|
|
12084
|
-
actualFrequency?: number | undefined;
|
|
12085
|
-
} | undefined;
|
|
12086
12081
|
slots?: {
|
|
12087
12082
|
TX1?: string | undefined;
|
|
12088
12083
|
TX2?: string | undefined;
|
|
@@ -12091,23 +12086,17 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12091
12086
|
TX5?: string | undefined;
|
|
12092
12087
|
TX6?: string | undefined;
|
|
12093
12088
|
} | undefined;
|
|
12089
|
+
context?: {
|
|
12090
|
+
targetCallsign?: string | undefined;
|
|
12091
|
+
targetGrid?: string | undefined;
|
|
12092
|
+
reportSent?: number | undefined;
|
|
12093
|
+
reportReceived?: number | undefined;
|
|
12094
|
+
actualFrequency?: number | undefined;
|
|
12095
|
+
} | undefined;
|
|
12094
12096
|
availableSlots?: string[] | undefined;
|
|
12095
12097
|
} | undefined;
|
|
12096
|
-
slots?: {
|
|
12097
|
-
TX1?: string | undefined;
|
|
12098
|
-
TX2?: string | undefined;
|
|
12099
|
-
TX3?: string | undefined;
|
|
12100
|
-
TX4?: string | undefined;
|
|
12101
|
-
TX5?: string | undefined;
|
|
12102
|
-
TX6?: string | undefined;
|
|
12103
|
-
} | undefined;
|
|
12104
12098
|
isInActivePTT?: boolean | undefined;
|
|
12105
12099
|
currentSlot?: string | undefined;
|
|
12106
|
-
cycleInfo?: {
|
|
12107
|
-
currentCycle: number;
|
|
12108
|
-
isTransmitCycle: boolean;
|
|
12109
|
-
cycleProgress: number;
|
|
12110
|
-
} | undefined;
|
|
12111
12100
|
}, {
|
|
12112
12101
|
id: string;
|
|
12113
12102
|
strategy: {
|
|
@@ -12127,15 +12116,16 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12127
12116
|
};
|
|
12128
12117
|
isTransmitting: boolean;
|
|
12129
12118
|
transmitCycles?: number[] | undefined;
|
|
12119
|
+
slots?: {
|
|
12120
|
+
TX1?: string | undefined;
|
|
12121
|
+
TX2?: string | undefined;
|
|
12122
|
+
TX3?: string | undefined;
|
|
12123
|
+
TX4?: string | undefined;
|
|
12124
|
+
TX5?: string | undefined;
|
|
12125
|
+
TX6?: string | undefined;
|
|
12126
|
+
} | undefined;
|
|
12130
12127
|
runtime?: {
|
|
12131
12128
|
currentState: string;
|
|
12132
|
-
context?: {
|
|
12133
|
-
targetCallsign?: string | undefined;
|
|
12134
|
-
targetGrid?: string | undefined;
|
|
12135
|
-
reportSent?: number | undefined;
|
|
12136
|
-
reportReceived?: number | undefined;
|
|
12137
|
-
actualFrequency?: number | undefined;
|
|
12138
|
-
} | undefined;
|
|
12139
12129
|
slots?: {
|
|
12140
12130
|
TX1?: string | undefined;
|
|
12141
12131
|
TX2?: string | undefined;
|
|
@@ -12144,23 +12134,17 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12144
12134
|
TX5?: string | undefined;
|
|
12145
12135
|
TX6?: string | undefined;
|
|
12146
12136
|
} | undefined;
|
|
12137
|
+
context?: {
|
|
12138
|
+
targetCallsign?: string | undefined;
|
|
12139
|
+
targetGrid?: string | undefined;
|
|
12140
|
+
reportSent?: number | undefined;
|
|
12141
|
+
reportReceived?: number | undefined;
|
|
12142
|
+
actualFrequency?: number | undefined;
|
|
12143
|
+
} | undefined;
|
|
12147
12144
|
availableSlots?: string[] | undefined;
|
|
12148
12145
|
} | undefined;
|
|
12149
|
-
slots?: {
|
|
12150
|
-
TX1?: string | undefined;
|
|
12151
|
-
TX2?: string | undefined;
|
|
12152
|
-
TX3?: string | undefined;
|
|
12153
|
-
TX4?: string | undefined;
|
|
12154
|
-
TX5?: string | undefined;
|
|
12155
|
-
TX6?: string | undefined;
|
|
12156
|
-
} | undefined;
|
|
12157
12146
|
isInActivePTT?: boolean | undefined;
|
|
12158
12147
|
currentSlot?: string | undefined;
|
|
12159
|
-
cycleInfo?: {
|
|
12160
|
-
currentCycle: number;
|
|
12161
|
-
isTransmitCycle: boolean;
|
|
12162
|
-
cycleProgress: number;
|
|
12163
|
-
} | undefined;
|
|
12164
12148
|
}>;
|
|
12165
12149
|
}, "strip", z.ZodTypeAny, {
|
|
12166
12150
|
type: WSMessageType.OPERATOR_STATUS_UPDATE;
|
|
@@ -12184,15 +12168,16 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12184
12168
|
};
|
|
12185
12169
|
isTransmitting: boolean;
|
|
12186
12170
|
transmitCycles?: number[] | undefined;
|
|
12171
|
+
slots?: {
|
|
12172
|
+
TX1?: string | undefined;
|
|
12173
|
+
TX2?: string | undefined;
|
|
12174
|
+
TX3?: string | undefined;
|
|
12175
|
+
TX4?: string | undefined;
|
|
12176
|
+
TX5?: string | undefined;
|
|
12177
|
+
TX6?: string | undefined;
|
|
12178
|
+
} | undefined;
|
|
12187
12179
|
runtime?: {
|
|
12188
12180
|
currentState: string;
|
|
12189
|
-
context?: {
|
|
12190
|
-
targetCallsign?: string | undefined;
|
|
12191
|
-
targetGrid?: string | undefined;
|
|
12192
|
-
reportSent?: number | undefined;
|
|
12193
|
-
reportReceived?: number | undefined;
|
|
12194
|
-
actualFrequency?: number | undefined;
|
|
12195
|
-
} | undefined;
|
|
12196
12181
|
slots?: {
|
|
12197
12182
|
TX1?: string | undefined;
|
|
12198
12183
|
TX2?: string | undefined;
|
|
@@ -12201,23 +12186,17 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12201
12186
|
TX5?: string | undefined;
|
|
12202
12187
|
TX6?: string | undefined;
|
|
12203
12188
|
} | undefined;
|
|
12189
|
+
context?: {
|
|
12190
|
+
targetCallsign?: string | undefined;
|
|
12191
|
+
targetGrid?: string | undefined;
|
|
12192
|
+
reportSent?: number | undefined;
|
|
12193
|
+
reportReceived?: number | undefined;
|
|
12194
|
+
actualFrequency?: number | undefined;
|
|
12195
|
+
} | undefined;
|
|
12204
12196
|
availableSlots?: string[] | undefined;
|
|
12205
12197
|
} | undefined;
|
|
12206
|
-
slots?: {
|
|
12207
|
-
TX1?: string | undefined;
|
|
12208
|
-
TX2?: string | undefined;
|
|
12209
|
-
TX3?: string | undefined;
|
|
12210
|
-
TX4?: string | undefined;
|
|
12211
|
-
TX5?: string | undefined;
|
|
12212
|
-
TX6?: string | undefined;
|
|
12213
|
-
} | undefined;
|
|
12214
12198
|
isInActivePTT?: boolean | undefined;
|
|
12215
12199
|
currentSlot?: string | undefined;
|
|
12216
|
-
cycleInfo?: {
|
|
12217
|
-
currentCycle: number;
|
|
12218
|
-
isTransmitCycle: boolean;
|
|
12219
|
-
cycleProgress: number;
|
|
12220
|
-
} | undefined;
|
|
12221
12200
|
};
|
|
12222
12201
|
id?: string | undefined;
|
|
12223
12202
|
}, {
|
|
@@ -12242,15 +12221,16 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12242
12221
|
};
|
|
12243
12222
|
isTransmitting: boolean;
|
|
12244
12223
|
transmitCycles?: number[] | undefined;
|
|
12224
|
+
slots?: {
|
|
12225
|
+
TX1?: string | undefined;
|
|
12226
|
+
TX2?: string | undefined;
|
|
12227
|
+
TX3?: string | undefined;
|
|
12228
|
+
TX4?: string | undefined;
|
|
12229
|
+
TX5?: string | undefined;
|
|
12230
|
+
TX6?: string | undefined;
|
|
12231
|
+
} | undefined;
|
|
12245
12232
|
runtime?: {
|
|
12246
12233
|
currentState: string;
|
|
12247
|
-
context?: {
|
|
12248
|
-
targetCallsign?: string | undefined;
|
|
12249
|
-
targetGrid?: string | undefined;
|
|
12250
|
-
reportSent?: number | undefined;
|
|
12251
|
-
reportReceived?: number | undefined;
|
|
12252
|
-
actualFrequency?: number | undefined;
|
|
12253
|
-
} | undefined;
|
|
12254
12234
|
slots?: {
|
|
12255
12235
|
TX1?: string | undefined;
|
|
12256
12236
|
TX2?: string | undefined;
|
|
@@ -12259,23 +12239,17 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12259
12239
|
TX5?: string | undefined;
|
|
12260
12240
|
TX6?: string | undefined;
|
|
12261
12241
|
} | undefined;
|
|
12242
|
+
context?: {
|
|
12243
|
+
targetCallsign?: string | undefined;
|
|
12244
|
+
targetGrid?: string | undefined;
|
|
12245
|
+
reportSent?: number | undefined;
|
|
12246
|
+
reportReceived?: number | undefined;
|
|
12247
|
+
actualFrequency?: number | undefined;
|
|
12248
|
+
} | undefined;
|
|
12262
12249
|
availableSlots?: string[] | undefined;
|
|
12263
12250
|
} | undefined;
|
|
12264
|
-
slots?: {
|
|
12265
|
-
TX1?: string | undefined;
|
|
12266
|
-
TX2?: string | undefined;
|
|
12267
|
-
TX3?: string | undefined;
|
|
12268
|
-
TX4?: string | undefined;
|
|
12269
|
-
TX5?: string | undefined;
|
|
12270
|
-
TX6?: string | undefined;
|
|
12271
|
-
} | undefined;
|
|
12272
12251
|
isInActivePTT?: boolean | undefined;
|
|
12273
12252
|
currentSlot?: string | undefined;
|
|
12274
|
-
cycleInfo?: {
|
|
12275
|
-
currentCycle: number;
|
|
12276
|
-
isTransmitCycle: boolean;
|
|
12277
|
-
cycleProgress: number;
|
|
12278
|
-
} | undefined;
|
|
12279
12253
|
};
|
|
12280
12254
|
id?: string | undefined;
|
|
12281
12255
|
}>, z.ZodObject<{
|
|
@@ -15299,6 +15273,52 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15299
15273
|
}>, z.ZodObject<{
|
|
15300
15274
|
timestamp: z.ZodString;
|
|
15301
15275
|
id: z.ZodOptional<z.ZodString>;
|
|
15276
|
+
} & {
|
|
15277
|
+
type: z.ZodLiteral<WSMessageType.SQUELCH_STATUS_CHANGED>;
|
|
15278
|
+
data: z.ZodObject<{
|
|
15279
|
+
supported: z.ZodBoolean;
|
|
15280
|
+
open: z.ZodNullable<z.ZodBoolean>;
|
|
15281
|
+
muted: z.ZodBoolean;
|
|
15282
|
+
source: z.ZodEnum<["hamlib-dcd", "unsupported"]>;
|
|
15283
|
+
updatedAt: z.ZodNumber;
|
|
15284
|
+
}, "strip", z.ZodTypeAny, {
|
|
15285
|
+
supported: boolean;
|
|
15286
|
+
source: "hamlib-dcd" | "unsupported";
|
|
15287
|
+
updatedAt: number;
|
|
15288
|
+
open: boolean | null;
|
|
15289
|
+
muted: boolean;
|
|
15290
|
+
}, {
|
|
15291
|
+
supported: boolean;
|
|
15292
|
+
source: "hamlib-dcd" | "unsupported";
|
|
15293
|
+
updatedAt: number;
|
|
15294
|
+
open: boolean | null;
|
|
15295
|
+
muted: boolean;
|
|
15296
|
+
}>;
|
|
15297
|
+
}, "strip", z.ZodTypeAny, {
|
|
15298
|
+
type: WSMessageType.SQUELCH_STATUS_CHANGED;
|
|
15299
|
+
timestamp: string;
|
|
15300
|
+
data: {
|
|
15301
|
+
supported: boolean;
|
|
15302
|
+
source: "hamlib-dcd" | "unsupported";
|
|
15303
|
+
updatedAt: number;
|
|
15304
|
+
open: boolean | null;
|
|
15305
|
+
muted: boolean;
|
|
15306
|
+
};
|
|
15307
|
+
id?: string | undefined;
|
|
15308
|
+
}, {
|
|
15309
|
+
type: WSMessageType.SQUELCH_STATUS_CHANGED;
|
|
15310
|
+
timestamp: string;
|
|
15311
|
+
data: {
|
|
15312
|
+
supported: boolean;
|
|
15313
|
+
source: "hamlib-dcd" | "unsupported";
|
|
15314
|
+
updatedAt: number;
|
|
15315
|
+
open: boolean | null;
|
|
15316
|
+
muted: boolean;
|
|
15317
|
+
};
|
|
15318
|
+
id?: string | undefined;
|
|
15319
|
+
}>, z.ZodObject<{
|
|
15320
|
+
timestamp: z.ZodString;
|
|
15321
|
+
id: z.ZodOptional<z.ZodString>;
|
|
15302
15322
|
} & {
|
|
15303
15323
|
type: z.ZodLiteral<WSMessageType.TEXT_MESSAGE>;
|
|
15304
15324
|
data: z.ZodObject<{
|
|
@@ -15578,21 +15598,21 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15578
15598
|
title: z.ZodString;
|
|
15579
15599
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
15580
15600
|
pageId: z.ZodOptional<z.ZodString>;
|
|
15581
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation"]>>;
|
|
15601
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top"]>>;
|
|
15582
15602
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
15583
15603
|
}, "strip", z.ZodTypeAny, {
|
|
15584
15604
|
id: string;
|
|
15585
15605
|
title: string;
|
|
15586
15606
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
15587
15607
|
pageId?: string | undefined;
|
|
15588
|
-
slot?: "operator" | "automation" | undefined;
|
|
15608
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
15589
15609
|
width?: "full" | "half" | undefined;
|
|
15590
15610
|
}, {
|
|
15591
15611
|
id: string;
|
|
15592
15612
|
title: string;
|
|
15593
15613
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
15594
15614
|
pageId?: string | undefined;
|
|
15595
|
-
slot?: "operator" | "automation" | undefined;
|
|
15615
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
15596
15616
|
width?: "full" | "half" | undefined;
|
|
15597
15617
|
}>, "many">>;
|
|
15598
15618
|
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network"]>, "many">>;
|
|
@@ -15714,7 +15734,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15714
15734
|
title: string;
|
|
15715
15735
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
15716
15736
|
pageId?: string | undefined;
|
|
15717
|
-
slot?: "operator" | "automation" | undefined;
|
|
15737
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
15718
15738
|
width?: "full" | "half" | undefined;
|
|
15719
15739
|
}[] | undefined;
|
|
15720
15740
|
lastError?: string | undefined;
|
|
@@ -15776,7 +15796,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15776
15796
|
title: string;
|
|
15777
15797
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
15778
15798
|
pageId?: string | undefined;
|
|
15779
|
-
slot?: "operator" | "automation" | undefined;
|
|
15799
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
15780
15800
|
width?: "full" | "half" | undefined;
|
|
15781
15801
|
}[] | undefined;
|
|
15782
15802
|
loaded?: boolean | undefined;
|
|
@@ -15794,6 +15814,42 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15794
15814
|
installedAt: number;
|
|
15795
15815
|
} | undefined;
|
|
15796
15816
|
}>, "many">;
|
|
15817
|
+
panelMeta: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15818
|
+
pluginName: z.ZodString;
|
|
15819
|
+
operatorId: z.ZodString;
|
|
15820
|
+
panelId: z.ZodString;
|
|
15821
|
+
meta: z.ZodObject<{
|
|
15822
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15823
|
+
titleValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
15824
|
+
visible: z.ZodOptional<z.ZodBoolean>;
|
|
15825
|
+
}, "strip", z.ZodTypeAny, {
|
|
15826
|
+
visible?: boolean | undefined;
|
|
15827
|
+
title?: string | null | undefined;
|
|
15828
|
+
titleValues?: Record<string, unknown> | undefined;
|
|
15829
|
+
}, {
|
|
15830
|
+
visible?: boolean | undefined;
|
|
15831
|
+
title?: string | null | undefined;
|
|
15832
|
+
titleValues?: Record<string, unknown> | undefined;
|
|
15833
|
+
}>;
|
|
15834
|
+
}, "strip", z.ZodTypeAny, {
|
|
15835
|
+
operatorId: string;
|
|
15836
|
+
meta: {
|
|
15837
|
+
visible?: boolean | undefined;
|
|
15838
|
+
title?: string | null | undefined;
|
|
15839
|
+
titleValues?: Record<string, unknown> | undefined;
|
|
15840
|
+
};
|
|
15841
|
+
pluginName: string;
|
|
15842
|
+
panelId: string;
|
|
15843
|
+
}, {
|
|
15844
|
+
operatorId: string;
|
|
15845
|
+
meta: {
|
|
15846
|
+
visible?: boolean | undefined;
|
|
15847
|
+
title?: string | null | undefined;
|
|
15848
|
+
titleValues?: Record<string, unknown> | undefined;
|
|
15849
|
+
};
|
|
15850
|
+
pluginName: string;
|
|
15851
|
+
panelId: string;
|
|
15852
|
+
}>, "many">>>;
|
|
15797
15853
|
lastError: z.ZodOptional<z.ZodString>;
|
|
15798
15854
|
}, "strip", z.ZodTypeAny, {
|
|
15799
15855
|
state: "error" | "ready" | "reloading";
|
|
@@ -15847,7 +15903,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15847
15903
|
title: string;
|
|
15848
15904
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
15849
15905
|
pageId?: string | undefined;
|
|
15850
|
-
slot?: "operator" | "automation" | undefined;
|
|
15906
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
15851
15907
|
width?: "full" | "half" | undefined;
|
|
15852
15908
|
}[] | undefined;
|
|
15853
15909
|
lastError?: string | undefined;
|
|
@@ -15863,6 +15919,16 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15863
15919
|
installedAt: number;
|
|
15864
15920
|
} | undefined;
|
|
15865
15921
|
}[];
|
|
15922
|
+
panelMeta: {
|
|
15923
|
+
operatorId: string;
|
|
15924
|
+
meta: {
|
|
15925
|
+
visible?: boolean | undefined;
|
|
15926
|
+
title?: string | null | undefined;
|
|
15927
|
+
titleValues?: Record<string, unknown> | undefined;
|
|
15928
|
+
};
|
|
15929
|
+
pluginName: string;
|
|
15930
|
+
panelId: string;
|
|
15931
|
+
}[];
|
|
15866
15932
|
lastError?: string | undefined;
|
|
15867
15933
|
}, {
|
|
15868
15934
|
state: "error" | "ready" | "reloading";
|
|
@@ -15914,7 +15980,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15914
15980
|
title: string;
|
|
15915
15981
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
15916
15982
|
pageId?: string | undefined;
|
|
15917
|
-
slot?: "operator" | "automation" | undefined;
|
|
15983
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
15918
15984
|
width?: "full" | "half" | undefined;
|
|
15919
15985
|
}[] | undefined;
|
|
15920
15986
|
loaded?: boolean | undefined;
|
|
@@ -15933,6 +15999,16 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15933
15999
|
} | undefined;
|
|
15934
16000
|
}[];
|
|
15935
16001
|
lastError?: string | undefined;
|
|
16002
|
+
panelMeta?: {
|
|
16003
|
+
operatorId: string;
|
|
16004
|
+
meta: {
|
|
16005
|
+
visible?: boolean | undefined;
|
|
16006
|
+
title?: string | null | undefined;
|
|
16007
|
+
titleValues?: Record<string, unknown> | undefined;
|
|
16008
|
+
};
|
|
16009
|
+
pluginName: string;
|
|
16010
|
+
panelId: string;
|
|
16011
|
+
}[] | undefined;
|
|
15936
16012
|
}>;
|
|
15937
16013
|
}, "strip", z.ZodTypeAny, {
|
|
15938
16014
|
type: WSMessageType.PLUGIN_LIST;
|
|
@@ -15989,7 +16065,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15989
16065
|
title: string;
|
|
15990
16066
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
15991
16067
|
pageId?: string | undefined;
|
|
15992
|
-
slot?: "operator" | "automation" | undefined;
|
|
16068
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
15993
16069
|
width?: "full" | "half" | undefined;
|
|
15994
16070
|
}[] | undefined;
|
|
15995
16071
|
lastError?: string | undefined;
|
|
@@ -16005,6 +16081,16 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16005
16081
|
installedAt: number;
|
|
16006
16082
|
} | undefined;
|
|
16007
16083
|
}[];
|
|
16084
|
+
panelMeta: {
|
|
16085
|
+
operatorId: string;
|
|
16086
|
+
meta: {
|
|
16087
|
+
visible?: boolean | undefined;
|
|
16088
|
+
title?: string | null | undefined;
|
|
16089
|
+
titleValues?: Record<string, unknown> | undefined;
|
|
16090
|
+
};
|
|
16091
|
+
pluginName: string;
|
|
16092
|
+
panelId: string;
|
|
16093
|
+
}[];
|
|
16008
16094
|
lastError?: string | undefined;
|
|
16009
16095
|
};
|
|
16010
16096
|
id?: string | undefined;
|
|
@@ -16061,7 +16147,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16061
16147
|
title: string;
|
|
16062
16148
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
16063
16149
|
pageId?: string | undefined;
|
|
16064
|
-
slot?: "operator" | "automation" | undefined;
|
|
16150
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
16065
16151
|
width?: "full" | "half" | undefined;
|
|
16066
16152
|
}[] | undefined;
|
|
16067
16153
|
loaded?: boolean | undefined;
|
|
@@ -16080,6 +16166,16 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16080
16166
|
} | undefined;
|
|
16081
16167
|
}[];
|
|
16082
16168
|
lastError?: string | undefined;
|
|
16169
|
+
panelMeta?: {
|
|
16170
|
+
operatorId: string;
|
|
16171
|
+
meta: {
|
|
16172
|
+
visible?: boolean | undefined;
|
|
16173
|
+
title?: string | null | undefined;
|
|
16174
|
+
titleValues?: Record<string, unknown> | undefined;
|
|
16175
|
+
};
|
|
16176
|
+
pluginName: string;
|
|
16177
|
+
panelId: string;
|
|
16178
|
+
}[] | undefined;
|
|
16083
16179
|
};
|
|
16084
16180
|
id?: string | undefined;
|
|
16085
16181
|
}>, z.ZodObject<{
|
|
@@ -16170,21 +16266,21 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16170
16266
|
title: z.ZodString;
|
|
16171
16267
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
16172
16268
|
pageId: z.ZodOptional<z.ZodString>;
|
|
16173
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation"]>>;
|
|
16269
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top"]>>;
|
|
16174
16270
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
16175
16271
|
}, "strip", z.ZodTypeAny, {
|
|
16176
16272
|
id: string;
|
|
16177
16273
|
title: string;
|
|
16178
16274
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
16179
16275
|
pageId?: string | undefined;
|
|
16180
|
-
slot?: "operator" | "automation" | undefined;
|
|
16276
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
16181
16277
|
width?: "full" | "half" | undefined;
|
|
16182
16278
|
}, {
|
|
16183
16279
|
id: string;
|
|
16184
16280
|
title: string;
|
|
16185
16281
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
16186
16282
|
pageId?: string | undefined;
|
|
16187
|
-
slot?: "operator" | "automation" | undefined;
|
|
16283
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
16188
16284
|
width?: "full" | "half" | undefined;
|
|
16189
16285
|
}>, "many">>;
|
|
16190
16286
|
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network"]>, "many">>;
|
|
@@ -16306,7 +16402,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16306
16402
|
title: string;
|
|
16307
16403
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
16308
16404
|
pageId?: string | undefined;
|
|
16309
|
-
slot?: "operator" | "automation" | undefined;
|
|
16405
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
16310
16406
|
width?: "full" | "half" | undefined;
|
|
16311
16407
|
}[] | undefined;
|
|
16312
16408
|
lastError?: string | undefined;
|
|
@@ -16368,7 +16464,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16368
16464
|
title: string;
|
|
16369
16465
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
16370
16466
|
pageId?: string | undefined;
|
|
16371
|
-
slot?: "operator" | "automation" | undefined;
|
|
16467
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
16372
16468
|
width?: "full" | "half" | undefined;
|
|
16373
16469
|
}[] | undefined;
|
|
16374
16470
|
loaded?: boolean | undefined;
|
|
@@ -16437,7 +16533,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16437
16533
|
title: string;
|
|
16438
16534
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
16439
16535
|
pageId?: string | undefined;
|
|
16440
|
-
slot?: "operator" | "automation" | undefined;
|
|
16536
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
16441
16537
|
width?: "full" | "half" | undefined;
|
|
16442
16538
|
}[] | undefined;
|
|
16443
16539
|
lastError?: string | undefined;
|
|
@@ -16502,7 +16598,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16502
16598
|
title: string;
|
|
16503
16599
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
16504
16600
|
pageId?: string | undefined;
|
|
16505
|
-
slot?: "operator" | "automation" | undefined;
|
|
16601
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
16506
16602
|
width?: "full" | "half" | undefined;
|
|
16507
16603
|
}[] | undefined;
|
|
16508
16604
|
loaded?: boolean | undefined;
|
|
@@ -16575,7 +16671,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16575
16671
|
title: string;
|
|
16576
16672
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
16577
16673
|
pageId?: string | undefined;
|
|
16578
|
-
slot?: "operator" | "automation" | undefined;
|
|
16674
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
16579
16675
|
width?: "full" | "half" | undefined;
|
|
16580
16676
|
}[] | undefined;
|
|
16581
16677
|
lastError?: string | undefined;
|
|
@@ -16645,7 +16741,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16645
16741
|
title: string;
|
|
16646
16742
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
16647
16743
|
pageId?: string | undefined;
|
|
16648
|
-
slot?: "operator" | "automation" | undefined;
|
|
16744
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
|
|
16649
16745
|
width?: "full" | "half" | undefined;
|
|
16650
16746
|
}[] | undefined;
|
|
16651
16747
|
loaded?: boolean | undefined;
|
|
@@ -17081,6 +17177,7 @@ export interface DigitalRadioEngineEvents {
|
|
|
17081
17177
|
frequencyChanged: (data: FrequencyState) => void;
|
|
17082
17178
|
pttStatusChanged: (data: PTTStatus) => void;
|
|
17083
17179
|
meterData: (data: MeterData) => void;
|
|
17180
|
+
squelchStatusChanged: (data: SquelchStatus) => void;
|
|
17084
17181
|
qsoRecordAdded: (data: {
|
|
17085
17182
|
operatorId: string;
|
|
17086
17183
|
logBookId: string;
|
|
@@ -17129,6 +17226,7 @@ export interface DigitalRadioEngineEvents {
|
|
|
17129
17226
|
voiceRadioModeChanged: (data: {
|
|
17130
17227
|
radioMode: string;
|
|
17131
17228
|
}) => void;
|
|
17229
|
+
voiceKeyerStatusChanged: (data: VoiceKeyerStatus) => void;
|
|
17132
17230
|
processSnapshot: (data: import('./process-monitor.schema.js').ProcessSnapshot) => void;
|
|
17133
17231
|
processSnapshotHistory: (data: import('./process-monitor.schema.js').ProcessSnapshotHistory) => void;
|
|
17134
17232
|
openwebrxProfileSelectRequest: (data: import('./openwebrx.schema.js').OpenWebRXProfileSelectRequest) => void;
|