@tx5dr/contracts 1.7.7 → 1.7.9
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/schema/__tests__/ability.test.js +47 -1
- package/dist/schema/__tests__/ability.test.js.map +1 -1
- package/dist/schema/__tests__/audio.schema.test.js +14 -1
- package/dist/schema/__tests__/audio.schema.test.js.map +1 -1
- package/dist/schema/__tests__/plugin-market.schema.test.js +1 -0
- package/dist/schema/__tests__/plugin-market.schema.test.js.map +1 -1
- package/dist/schema/ability.d.ts +10 -0
- package/dist/schema/ability.d.ts.map +1 -1
- package/dist/schema/ability.js +105 -0
- package/dist/schema/ability.js.map +1 -1
- package/dist/schema/audio.schema.d.ts +30 -0
- package/dist/schema/audio.schema.d.ts.map +1 -1
- package/dist/schema/audio.schema.js +4 -0
- package/dist/schema/audio.schema.js.map +1 -1
- package/dist/schema/plugin.schema.d.ts +79 -77
- package/dist/schema/plugin.schema.d.ts.map +1 -1
- package/dist/schema/plugin.schema.js +4 -0
- package/dist/schema/plugin.schema.js.map +1 -1
- package/dist/schema/radio-profile.schema.d.ts +86 -0
- package/dist/schema/radio-profile.schema.d.ts.map +1 -1
- package/dist/schema/websocket.schema.d.ts +94 -94
- package/package.json +1 -1
- package/src/schema/__tests__/ability.test.ts +59 -0
- package/src/schema/__tests__/audio.schema.test.ts +18 -0
- package/src/schema/__tests__/plugin-market.schema.test.ts +1 -0
- package/src/schema/ability.ts +130 -0
- package/src/schema/audio.schema.ts +7 -0
- package/src/schema/plugin.schema.ts +4 -0
- package/test/plugin-slot-schema.test.ts +9 -0
|
@@ -10775,7 +10775,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
10775
10775
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
10776
10776
|
pageId: z.ZodOptional<z.ZodString>;
|
|
10777
10777
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
10778
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
10778
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-left-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
10779
10779
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
10780
10780
|
icon: z.ZodOptional<z.ZodString>;
|
|
10781
10781
|
openMode: z.ZodOptional<z.ZodEnum<["popover", "modal"]>>;
|
|
@@ -10787,7 +10787,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
10787
10787
|
params?: Record<string, string> | undefined;
|
|
10788
10788
|
icon?: string | undefined;
|
|
10789
10789
|
pageId?: string | undefined;
|
|
10790
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10790
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10791
10791
|
width?: "full" | "half" | undefined;
|
|
10792
10792
|
openMode?: "popover" | "modal" | undefined;
|
|
10793
10793
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -10798,7 +10798,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
10798
10798
|
params?: Record<string, string> | undefined;
|
|
10799
10799
|
icon?: string | undefined;
|
|
10800
10800
|
pageId?: string | undefined;
|
|
10801
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10801
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10802
10802
|
width?: "full" | "half" | undefined;
|
|
10803
10803
|
openMode?: "popover" | "modal" | undefined;
|
|
10804
10804
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -10809,7 +10809,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
10809
10809
|
params?: Record<string, string> | undefined;
|
|
10810
10810
|
icon?: string | undefined;
|
|
10811
10811
|
pageId?: string | undefined;
|
|
10812
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10812
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10813
10813
|
width?: "full" | "half" | undefined;
|
|
10814
10814
|
openMode?: "popover" | "modal" | undefined;
|
|
10815
10815
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -10820,12 +10820,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
10820
10820
|
params?: Record<string, string> | undefined;
|
|
10821
10821
|
icon?: string | undefined;
|
|
10822
10822
|
pageId?: string | undefined;
|
|
10823
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10823
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10824
10824
|
width?: "full" | "half" | undefined;
|
|
10825
10825
|
openMode?: "popover" | "modal" | undefined;
|
|
10826
10826
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
10827
10827
|
}>, "many">>;
|
|
10828
|
-
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>;
|
|
10828
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "host:hamlib", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>;
|
|
10829
10829
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto_call_candidate", "auto_call_execution"]>, "many">>;
|
|
10830
10830
|
ui: z.ZodOptional<z.ZodObject<{
|
|
10831
10831
|
dir: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -10921,7 +10921,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
10921
10921
|
params?: Record<string, string> | undefined;
|
|
10922
10922
|
icon?: string | undefined;
|
|
10923
10923
|
pageId?: string | undefined;
|
|
10924
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10924
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10925
10925
|
width?: "full" | "half" | undefined;
|
|
10926
10926
|
openMode?: "popover" | "modal" | undefined;
|
|
10927
10927
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -10937,7 +10937,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
10937
10937
|
icon?: string | undefined;
|
|
10938
10938
|
}[];
|
|
10939
10939
|
} | undefined;
|
|
10940
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
10940
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
10941
10941
|
settings?: Record<string, {
|
|
10942
10942
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
10943
10943
|
label: string;
|
|
@@ -11005,7 +11005,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11005
11005
|
params?: Record<string, string> | undefined;
|
|
11006
11006
|
icon?: string | undefined;
|
|
11007
11007
|
pageId?: string | undefined;
|
|
11008
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11008
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11009
11009
|
width?: "full" | "half" | undefined;
|
|
11010
11010
|
openMode?: "popover" | "modal" | undefined;
|
|
11011
11011
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -11022,7 +11022,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11022
11022
|
}[] | undefined;
|
|
11023
11023
|
} | undefined;
|
|
11024
11024
|
instanceScope?: "operator" | "global" | undefined;
|
|
11025
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
11025
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
11026
11026
|
settings?: Record<string, {
|
|
11027
11027
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
11028
11028
|
label: string;
|
|
@@ -11132,7 +11132,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11132
11132
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
11133
11133
|
pageId: z.ZodOptional<z.ZodString>;
|
|
11134
11134
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
11135
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
11135
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-left-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
11136
11136
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
11137
11137
|
icon: z.ZodOptional<z.ZodString>;
|
|
11138
11138
|
openMode: z.ZodOptional<z.ZodEnum<["popover", "modal"]>>;
|
|
@@ -11144,7 +11144,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11144
11144
|
params?: Record<string, string> | undefined;
|
|
11145
11145
|
icon?: string | undefined;
|
|
11146
11146
|
pageId?: string | undefined;
|
|
11147
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11147
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11148
11148
|
width?: "full" | "half" | undefined;
|
|
11149
11149
|
openMode?: "popover" | "modal" | undefined;
|
|
11150
11150
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -11155,7 +11155,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11155
11155
|
params?: Record<string, string> | undefined;
|
|
11156
11156
|
icon?: string | undefined;
|
|
11157
11157
|
pageId?: string | undefined;
|
|
11158
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11158
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11159
11159
|
width?: "full" | "half" | undefined;
|
|
11160
11160
|
openMode?: "popover" | "modal" | undefined;
|
|
11161
11161
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -11166,7 +11166,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11166
11166
|
params?: Record<string, string> | undefined;
|
|
11167
11167
|
icon?: string | undefined;
|
|
11168
11168
|
pageId?: string | undefined;
|
|
11169
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11169
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11170
11170
|
width?: "full" | "half" | undefined;
|
|
11171
11171
|
openMode?: "popover" | "modal" | undefined;
|
|
11172
11172
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -11177,7 +11177,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11177
11177
|
params?: Record<string, string> | undefined;
|
|
11178
11178
|
icon?: string | undefined;
|
|
11179
11179
|
pageId?: string | undefined;
|
|
11180
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11180
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11181
11181
|
width?: "full" | "half" | undefined;
|
|
11182
11182
|
openMode?: "popover" | "modal" | undefined;
|
|
11183
11183
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -11193,7 +11193,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11193
11193
|
params?: Record<string, string> | undefined;
|
|
11194
11194
|
icon?: string | undefined;
|
|
11195
11195
|
pageId?: string | undefined;
|
|
11196
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11196
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11197
11197
|
width?: "full" | "half" | undefined;
|
|
11198
11198
|
openMode?: "popover" | "modal" | undefined;
|
|
11199
11199
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -11215,7 +11215,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11215
11215
|
params?: Record<string, string> | undefined;
|
|
11216
11216
|
icon?: string | undefined;
|
|
11217
11217
|
pageId?: string | undefined;
|
|
11218
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11218
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11219
11219
|
width?: "full" | "half" | undefined;
|
|
11220
11220
|
openMode?: "popover" | "modal" | undefined;
|
|
11221
11221
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -11257,7 +11257,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11257
11257
|
params?: Record<string, string> | undefined;
|
|
11258
11258
|
icon?: string | undefined;
|
|
11259
11259
|
pageId?: string | undefined;
|
|
11260
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11260
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11261
11261
|
width?: "full" | "half" | undefined;
|
|
11262
11262
|
openMode?: "popover" | "modal" | undefined;
|
|
11263
11263
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -11273,7 +11273,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11273
11273
|
icon?: string | undefined;
|
|
11274
11274
|
}[];
|
|
11275
11275
|
} | undefined;
|
|
11276
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
11276
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
11277
11277
|
settings?: Record<string, {
|
|
11278
11278
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
11279
11279
|
label: string;
|
|
@@ -11340,7 +11340,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11340
11340
|
params?: Record<string, string> | undefined;
|
|
11341
11341
|
icon?: string | undefined;
|
|
11342
11342
|
pageId?: string | undefined;
|
|
11343
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11343
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11344
11344
|
width?: "full" | "half" | undefined;
|
|
11345
11345
|
openMode?: "popover" | "modal" | undefined;
|
|
11346
11346
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -11379,7 +11379,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11379
11379
|
params?: Record<string, string> | undefined;
|
|
11380
11380
|
icon?: string | undefined;
|
|
11381
11381
|
pageId?: string | undefined;
|
|
11382
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11382
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11383
11383
|
width?: "full" | "half" | undefined;
|
|
11384
11384
|
openMode?: "popover" | "modal" | undefined;
|
|
11385
11385
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -11396,7 +11396,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11396
11396
|
}[] | undefined;
|
|
11397
11397
|
} | undefined;
|
|
11398
11398
|
instanceScope?: "operator" | "global" | undefined;
|
|
11399
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
11399
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
11400
11400
|
settings?: Record<string, {
|
|
11401
11401
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
11402
11402
|
label: string;
|
|
@@ -11466,7 +11466,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11466
11466
|
params?: Record<string, string> | undefined;
|
|
11467
11467
|
icon?: string | undefined;
|
|
11468
11468
|
pageId?: string | undefined;
|
|
11469
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11469
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11470
11470
|
width?: "full" | "half" | undefined;
|
|
11471
11471
|
openMode?: "popover" | "modal" | undefined;
|
|
11472
11472
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -11511,7 +11511,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11511
11511
|
params?: Record<string, string> | undefined;
|
|
11512
11512
|
icon?: string | undefined;
|
|
11513
11513
|
pageId?: string | undefined;
|
|
11514
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11514
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11515
11515
|
width?: "full" | "half" | undefined;
|
|
11516
11516
|
openMode?: "popover" | "modal" | undefined;
|
|
11517
11517
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -11527,7 +11527,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11527
11527
|
icon?: string | undefined;
|
|
11528
11528
|
}[];
|
|
11529
11529
|
} | undefined;
|
|
11530
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
11530
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
11531
11531
|
settings?: Record<string, {
|
|
11532
11532
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
11533
11533
|
label: string;
|
|
@@ -11594,7 +11594,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11594
11594
|
params?: Record<string, string> | undefined;
|
|
11595
11595
|
icon?: string | undefined;
|
|
11596
11596
|
pageId?: string | undefined;
|
|
11597
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11597
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11598
11598
|
width?: "full" | "half" | undefined;
|
|
11599
11599
|
openMode?: "popover" | "modal" | undefined;
|
|
11600
11600
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -11638,7 +11638,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11638
11638
|
params?: Record<string, string> | undefined;
|
|
11639
11639
|
icon?: string | undefined;
|
|
11640
11640
|
pageId?: string | undefined;
|
|
11641
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11641
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11642
11642
|
width?: "full" | "half" | undefined;
|
|
11643
11643
|
openMode?: "popover" | "modal" | undefined;
|
|
11644
11644
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -11655,7 +11655,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11655
11655
|
}[] | undefined;
|
|
11656
11656
|
} | undefined;
|
|
11657
11657
|
instanceScope?: "operator" | "global" | undefined;
|
|
11658
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
11658
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
11659
11659
|
settings?: Record<string, {
|
|
11660
11660
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
11661
11661
|
label: string;
|
|
@@ -11725,7 +11725,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11725
11725
|
params?: Record<string, string> | undefined;
|
|
11726
11726
|
icon?: string | undefined;
|
|
11727
11727
|
pageId?: string | undefined;
|
|
11728
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11728
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11729
11729
|
width?: "full" | "half" | undefined;
|
|
11730
11730
|
openMode?: "popover" | "modal" | undefined;
|
|
11731
11731
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -11915,7 +11915,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
11915
11915
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
11916
11916
|
pageId: z.ZodOptional<z.ZodString>;
|
|
11917
11917
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
11918
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
11918
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-left-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
11919
11919
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
11920
11920
|
icon: z.ZodOptional<z.ZodString>;
|
|
11921
11921
|
openMode: z.ZodOptional<z.ZodEnum<["popover", "modal"]>>;
|
|
@@ -11927,7 +11927,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
11927
11927
|
params?: Record<string, string> | undefined;
|
|
11928
11928
|
icon?: string | undefined;
|
|
11929
11929
|
pageId?: string | undefined;
|
|
11930
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11930
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11931
11931
|
width?: "full" | "half" | undefined;
|
|
11932
11932
|
openMode?: "popover" | "modal" | undefined;
|
|
11933
11933
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -11938,7 +11938,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
11938
11938
|
params?: Record<string, string> | undefined;
|
|
11939
11939
|
icon?: string | undefined;
|
|
11940
11940
|
pageId?: string | undefined;
|
|
11941
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11941
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11942
11942
|
width?: "full" | "half" | undefined;
|
|
11943
11943
|
openMode?: "popover" | "modal" | undefined;
|
|
11944
11944
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -11949,7 +11949,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
11949
11949
|
params?: Record<string, string> | undefined;
|
|
11950
11950
|
icon?: string | undefined;
|
|
11951
11951
|
pageId?: string | undefined;
|
|
11952
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11952
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11953
11953
|
width?: "full" | "half" | undefined;
|
|
11954
11954
|
openMode?: "popover" | "modal" | undefined;
|
|
11955
11955
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -11960,12 +11960,12 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
11960
11960
|
params?: Record<string, string> | undefined;
|
|
11961
11961
|
icon?: string | undefined;
|
|
11962
11962
|
pageId?: string | undefined;
|
|
11963
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11963
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11964
11964
|
width?: "full" | "half" | undefined;
|
|
11965
11965
|
openMode?: "popover" | "modal" | undefined;
|
|
11966
11966
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11967
11967
|
}>, "many">>;
|
|
11968
|
-
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>;
|
|
11968
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "host:hamlib", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>;
|
|
11969
11969
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto_call_candidate", "auto_call_execution"]>, "many">>;
|
|
11970
11970
|
ui: z.ZodOptional<z.ZodObject<{
|
|
11971
11971
|
dir: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -12061,7 +12061,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12061
12061
|
params?: Record<string, string> | undefined;
|
|
12062
12062
|
icon?: string | undefined;
|
|
12063
12063
|
pageId?: string | undefined;
|
|
12064
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12064
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12065
12065
|
width?: "full" | "half" | undefined;
|
|
12066
12066
|
openMode?: "popover" | "modal" | undefined;
|
|
12067
12067
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -12077,7 +12077,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12077
12077
|
icon?: string | undefined;
|
|
12078
12078
|
}[];
|
|
12079
12079
|
} | undefined;
|
|
12080
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
12080
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
12081
12081
|
settings?: Record<string, {
|
|
12082
12082
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
12083
12083
|
label: string;
|
|
@@ -12145,7 +12145,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12145
12145
|
params?: Record<string, string> | undefined;
|
|
12146
12146
|
icon?: string | undefined;
|
|
12147
12147
|
pageId?: string | undefined;
|
|
12148
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12148
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12149
12149
|
width?: "full" | "half" | undefined;
|
|
12150
12150
|
openMode?: "popover" | "modal" | undefined;
|
|
12151
12151
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -12162,7 +12162,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12162
12162
|
}[] | undefined;
|
|
12163
12163
|
} | undefined;
|
|
12164
12164
|
instanceScope?: "operator" | "global" | undefined;
|
|
12165
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
12165
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
12166
12166
|
settings?: Record<string, {
|
|
12167
12167
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
12168
12168
|
label: string;
|
|
@@ -12238,7 +12238,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12238
12238
|
params?: Record<string, string> | undefined;
|
|
12239
12239
|
icon?: string | undefined;
|
|
12240
12240
|
pageId?: string | undefined;
|
|
12241
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12241
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12242
12242
|
width?: "full" | "half" | undefined;
|
|
12243
12243
|
openMode?: "popover" | "modal" | undefined;
|
|
12244
12244
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -12254,7 +12254,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12254
12254
|
icon?: string | undefined;
|
|
12255
12255
|
}[];
|
|
12256
12256
|
} | undefined;
|
|
12257
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
12257
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
12258
12258
|
settings?: Record<string, {
|
|
12259
12259
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
12260
12260
|
label: string;
|
|
@@ -12325,7 +12325,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12325
12325
|
params?: Record<string, string> | undefined;
|
|
12326
12326
|
icon?: string | undefined;
|
|
12327
12327
|
pageId?: string | undefined;
|
|
12328
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12328
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12329
12329
|
width?: "full" | "half" | undefined;
|
|
12330
12330
|
openMode?: "popover" | "modal" | undefined;
|
|
12331
12331
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -12342,7 +12342,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12342
12342
|
}[] | undefined;
|
|
12343
12343
|
} | undefined;
|
|
12344
12344
|
instanceScope?: "operator" | "global" | undefined;
|
|
12345
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
12345
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
12346
12346
|
settings?: Record<string, {
|
|
12347
12347
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
12348
12348
|
label: string;
|
|
@@ -12422,7 +12422,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12422
12422
|
params?: Record<string, string> | undefined;
|
|
12423
12423
|
icon?: string | undefined;
|
|
12424
12424
|
pageId?: string | undefined;
|
|
12425
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12425
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12426
12426
|
width?: "full" | "half" | undefined;
|
|
12427
12427
|
openMode?: "popover" | "modal" | undefined;
|
|
12428
12428
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -12438,7 +12438,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12438
12438
|
icon?: string | undefined;
|
|
12439
12439
|
}[];
|
|
12440
12440
|
} | undefined;
|
|
12441
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
12441
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
12442
12442
|
settings?: Record<string, {
|
|
12443
12443
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
12444
12444
|
label: string;
|
|
@@ -12514,7 +12514,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12514
12514
|
params?: Record<string, string> | undefined;
|
|
12515
12515
|
icon?: string | undefined;
|
|
12516
12516
|
pageId?: string | undefined;
|
|
12517
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12517
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12518
12518
|
width?: "full" | "half" | undefined;
|
|
12519
12519
|
openMode?: "popover" | "modal" | undefined;
|
|
12520
12520
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -12531,7 +12531,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12531
12531
|
}[] | undefined;
|
|
12532
12532
|
} | undefined;
|
|
12533
12533
|
instanceScope?: "operator" | "global" | undefined;
|
|
12534
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
12534
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
12535
12535
|
settings?: Record<string, {
|
|
12536
12536
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
12537
12537
|
label: string;
|
|
@@ -21332,7 +21332,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21332
21332
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
21333
21333
|
pageId: z.ZodOptional<z.ZodString>;
|
|
21334
21334
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
21335
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
21335
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-left-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
21336
21336
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
21337
21337
|
icon: z.ZodOptional<z.ZodString>;
|
|
21338
21338
|
openMode: z.ZodOptional<z.ZodEnum<["popover", "modal"]>>;
|
|
@@ -21344,7 +21344,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21344
21344
|
params?: Record<string, string> | undefined;
|
|
21345
21345
|
icon?: string | undefined;
|
|
21346
21346
|
pageId?: string | undefined;
|
|
21347
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21347
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21348
21348
|
width?: "full" | "half" | undefined;
|
|
21349
21349
|
openMode?: "popover" | "modal" | undefined;
|
|
21350
21350
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -21355,7 +21355,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21355
21355
|
params?: Record<string, string> | undefined;
|
|
21356
21356
|
icon?: string | undefined;
|
|
21357
21357
|
pageId?: string | undefined;
|
|
21358
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21358
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21359
21359
|
width?: "full" | "half" | undefined;
|
|
21360
21360
|
openMode?: "popover" | "modal" | undefined;
|
|
21361
21361
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -21366,7 +21366,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21366
21366
|
params?: Record<string, string> | undefined;
|
|
21367
21367
|
icon?: string | undefined;
|
|
21368
21368
|
pageId?: string | undefined;
|
|
21369
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21369
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21370
21370
|
width?: "full" | "half" | undefined;
|
|
21371
21371
|
openMode?: "popover" | "modal" | undefined;
|
|
21372
21372
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -21377,12 +21377,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21377
21377
|
params?: Record<string, string> | undefined;
|
|
21378
21378
|
icon?: string | undefined;
|
|
21379
21379
|
pageId?: string | undefined;
|
|
21380
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21380
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21381
21381
|
width?: "full" | "half" | undefined;
|
|
21382
21382
|
openMode?: "popover" | "modal" | undefined;
|
|
21383
21383
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21384
21384
|
}>, "many">>;
|
|
21385
|
-
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>;
|
|
21385
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "host:hamlib", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>;
|
|
21386
21386
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto_call_candidate", "auto_call_execution"]>, "many">>;
|
|
21387
21387
|
ui: z.ZodOptional<z.ZodObject<{
|
|
21388
21388
|
dir: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -21478,7 +21478,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21478
21478
|
params?: Record<string, string> | undefined;
|
|
21479
21479
|
icon?: string | undefined;
|
|
21480
21480
|
pageId?: string | undefined;
|
|
21481
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21481
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21482
21482
|
width?: "full" | "half" | undefined;
|
|
21483
21483
|
openMode?: "popover" | "modal" | undefined;
|
|
21484
21484
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -21494,7 +21494,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21494
21494
|
icon?: string | undefined;
|
|
21495
21495
|
}[];
|
|
21496
21496
|
} | undefined;
|
|
21497
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
21497
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
21498
21498
|
settings?: Record<string, {
|
|
21499
21499
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
21500
21500
|
label: string;
|
|
@@ -21562,7 +21562,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21562
21562
|
params?: Record<string, string> | undefined;
|
|
21563
21563
|
icon?: string | undefined;
|
|
21564
21564
|
pageId?: string | undefined;
|
|
21565
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21565
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21566
21566
|
width?: "full" | "half" | undefined;
|
|
21567
21567
|
openMode?: "popover" | "modal" | undefined;
|
|
21568
21568
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -21579,7 +21579,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21579
21579
|
}[] | undefined;
|
|
21580
21580
|
} | undefined;
|
|
21581
21581
|
instanceScope?: "operator" | "global" | undefined;
|
|
21582
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
21582
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
21583
21583
|
settings?: Record<string, {
|
|
21584
21584
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
21585
21585
|
label: string;
|
|
@@ -21689,7 +21689,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21689
21689
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
21690
21690
|
pageId: z.ZodOptional<z.ZodString>;
|
|
21691
21691
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
21692
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
21692
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-left-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
21693
21693
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
21694
21694
|
icon: z.ZodOptional<z.ZodString>;
|
|
21695
21695
|
openMode: z.ZodOptional<z.ZodEnum<["popover", "modal"]>>;
|
|
@@ -21701,7 +21701,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21701
21701
|
params?: Record<string, string> | undefined;
|
|
21702
21702
|
icon?: string | undefined;
|
|
21703
21703
|
pageId?: string | undefined;
|
|
21704
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21704
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21705
21705
|
width?: "full" | "half" | undefined;
|
|
21706
21706
|
openMode?: "popover" | "modal" | undefined;
|
|
21707
21707
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -21712,7 +21712,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21712
21712
|
params?: Record<string, string> | undefined;
|
|
21713
21713
|
icon?: string | undefined;
|
|
21714
21714
|
pageId?: string | undefined;
|
|
21715
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21715
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21716
21716
|
width?: "full" | "half" | undefined;
|
|
21717
21717
|
openMode?: "popover" | "modal" | undefined;
|
|
21718
21718
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -21723,7 +21723,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21723
21723
|
params?: Record<string, string> | undefined;
|
|
21724
21724
|
icon?: string | undefined;
|
|
21725
21725
|
pageId?: string | undefined;
|
|
21726
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21726
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21727
21727
|
width?: "full" | "half" | undefined;
|
|
21728
21728
|
openMode?: "popover" | "modal" | undefined;
|
|
21729
21729
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -21734,7 +21734,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21734
21734
|
params?: Record<string, string> | undefined;
|
|
21735
21735
|
icon?: string | undefined;
|
|
21736
21736
|
pageId?: string | undefined;
|
|
21737
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21737
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21738
21738
|
width?: "full" | "half" | undefined;
|
|
21739
21739
|
openMode?: "popover" | "modal" | undefined;
|
|
21740
21740
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -21750,7 +21750,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21750
21750
|
params?: Record<string, string> | undefined;
|
|
21751
21751
|
icon?: string | undefined;
|
|
21752
21752
|
pageId?: string | undefined;
|
|
21753
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21753
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21754
21754
|
width?: "full" | "half" | undefined;
|
|
21755
21755
|
openMode?: "popover" | "modal" | undefined;
|
|
21756
21756
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -21772,7 +21772,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21772
21772
|
params?: Record<string, string> | undefined;
|
|
21773
21773
|
icon?: string | undefined;
|
|
21774
21774
|
pageId?: string | undefined;
|
|
21775
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21775
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21776
21776
|
width?: "full" | "half" | undefined;
|
|
21777
21777
|
openMode?: "popover" | "modal" | undefined;
|
|
21778
21778
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -21814,7 +21814,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21814
21814
|
params?: Record<string, string> | undefined;
|
|
21815
21815
|
icon?: string | undefined;
|
|
21816
21816
|
pageId?: string | undefined;
|
|
21817
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21817
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21818
21818
|
width?: "full" | "half" | undefined;
|
|
21819
21819
|
openMode?: "popover" | "modal" | undefined;
|
|
21820
21820
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -21830,7 +21830,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21830
21830
|
icon?: string | undefined;
|
|
21831
21831
|
}[];
|
|
21832
21832
|
} | undefined;
|
|
21833
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
21833
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
21834
21834
|
settings?: Record<string, {
|
|
21835
21835
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
21836
21836
|
label: string;
|
|
@@ -21897,7 +21897,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21897
21897
|
params?: Record<string, string> | undefined;
|
|
21898
21898
|
icon?: string | undefined;
|
|
21899
21899
|
pageId?: string | undefined;
|
|
21900
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21900
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21901
21901
|
width?: "full" | "half" | undefined;
|
|
21902
21902
|
openMode?: "popover" | "modal" | undefined;
|
|
21903
21903
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -21936,7 +21936,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21936
21936
|
params?: Record<string, string> | undefined;
|
|
21937
21937
|
icon?: string | undefined;
|
|
21938
21938
|
pageId?: string | undefined;
|
|
21939
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21939
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21940
21940
|
width?: "full" | "half" | undefined;
|
|
21941
21941
|
openMode?: "popover" | "modal" | undefined;
|
|
21942
21942
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -21953,7 +21953,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21953
21953
|
}[] | undefined;
|
|
21954
21954
|
} | undefined;
|
|
21955
21955
|
instanceScope?: "operator" | "global" | undefined;
|
|
21956
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
21956
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
21957
21957
|
settings?: Record<string, {
|
|
21958
21958
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
21959
21959
|
label: string;
|
|
@@ -22023,7 +22023,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22023
22023
|
params?: Record<string, string> | undefined;
|
|
22024
22024
|
icon?: string | undefined;
|
|
22025
22025
|
pageId?: string | undefined;
|
|
22026
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22026
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22027
22027
|
width?: "full" | "half" | undefined;
|
|
22028
22028
|
openMode?: "popover" | "modal" | undefined;
|
|
22029
22029
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -22068,7 +22068,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22068
22068
|
params?: Record<string, string> | undefined;
|
|
22069
22069
|
icon?: string | undefined;
|
|
22070
22070
|
pageId?: string | undefined;
|
|
22071
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22071
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22072
22072
|
width?: "full" | "half" | undefined;
|
|
22073
22073
|
openMode?: "popover" | "modal" | undefined;
|
|
22074
22074
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -22084,7 +22084,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22084
22084
|
icon?: string | undefined;
|
|
22085
22085
|
}[];
|
|
22086
22086
|
} | undefined;
|
|
22087
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
22087
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
22088
22088
|
settings?: Record<string, {
|
|
22089
22089
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
22090
22090
|
label: string;
|
|
@@ -22151,7 +22151,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22151
22151
|
params?: Record<string, string> | undefined;
|
|
22152
22152
|
icon?: string | undefined;
|
|
22153
22153
|
pageId?: string | undefined;
|
|
22154
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22154
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22155
22155
|
width?: "full" | "half" | undefined;
|
|
22156
22156
|
openMode?: "popover" | "modal" | undefined;
|
|
22157
22157
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -22195,7 +22195,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22195
22195
|
params?: Record<string, string> | undefined;
|
|
22196
22196
|
icon?: string | undefined;
|
|
22197
22197
|
pageId?: string | undefined;
|
|
22198
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22198
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22199
22199
|
width?: "full" | "half" | undefined;
|
|
22200
22200
|
openMode?: "popover" | "modal" | undefined;
|
|
22201
22201
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -22212,7 +22212,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22212
22212
|
}[] | undefined;
|
|
22213
22213
|
} | undefined;
|
|
22214
22214
|
instanceScope?: "operator" | "global" | undefined;
|
|
22215
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
22215
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
22216
22216
|
settings?: Record<string, {
|
|
22217
22217
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
22218
22218
|
label: string;
|
|
@@ -22282,7 +22282,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22282
22282
|
params?: Record<string, string> | undefined;
|
|
22283
22283
|
icon?: string | undefined;
|
|
22284
22284
|
pageId?: string | undefined;
|
|
22285
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22285
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22286
22286
|
width?: "full" | "half" | undefined;
|
|
22287
22287
|
openMode?: "popover" | "modal" | undefined;
|
|
22288
22288
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -22470,7 +22470,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22470
22470
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
22471
22471
|
pageId: z.ZodOptional<z.ZodString>;
|
|
22472
22472
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
22473
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
22473
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-left-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
22474
22474
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
22475
22475
|
icon: z.ZodOptional<z.ZodString>;
|
|
22476
22476
|
openMode: z.ZodOptional<z.ZodEnum<["popover", "modal"]>>;
|
|
@@ -22482,7 +22482,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22482
22482
|
params?: Record<string, string> | undefined;
|
|
22483
22483
|
icon?: string | undefined;
|
|
22484
22484
|
pageId?: string | undefined;
|
|
22485
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22485
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22486
22486
|
width?: "full" | "half" | undefined;
|
|
22487
22487
|
openMode?: "popover" | "modal" | undefined;
|
|
22488
22488
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -22493,7 +22493,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22493
22493
|
params?: Record<string, string> | undefined;
|
|
22494
22494
|
icon?: string | undefined;
|
|
22495
22495
|
pageId?: string | undefined;
|
|
22496
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22496
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22497
22497
|
width?: "full" | "half" | undefined;
|
|
22498
22498
|
openMode?: "popover" | "modal" | undefined;
|
|
22499
22499
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -22504,7 +22504,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22504
22504
|
params?: Record<string, string> | undefined;
|
|
22505
22505
|
icon?: string | undefined;
|
|
22506
22506
|
pageId?: string | undefined;
|
|
22507
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22507
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22508
22508
|
width?: "full" | "half" | undefined;
|
|
22509
22509
|
openMode?: "popover" | "modal" | undefined;
|
|
22510
22510
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -22515,12 +22515,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22515
22515
|
params?: Record<string, string> | undefined;
|
|
22516
22516
|
icon?: string | undefined;
|
|
22517
22517
|
pageId?: string | undefined;
|
|
22518
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22518
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22519
22519
|
width?: "full" | "half" | undefined;
|
|
22520
22520
|
openMode?: "popover" | "modal" | undefined;
|
|
22521
22521
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22522
22522
|
}>, "many">>;
|
|
22523
|
-
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>;
|
|
22523
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "host:hamlib", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>;
|
|
22524
22524
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto_call_candidate", "auto_call_execution"]>, "many">>;
|
|
22525
22525
|
ui: z.ZodOptional<z.ZodObject<{
|
|
22526
22526
|
dir: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22616,7 +22616,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22616
22616
|
params?: Record<string, string> | undefined;
|
|
22617
22617
|
icon?: string | undefined;
|
|
22618
22618
|
pageId?: string | undefined;
|
|
22619
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22619
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22620
22620
|
width?: "full" | "half" | undefined;
|
|
22621
22621
|
openMode?: "popover" | "modal" | undefined;
|
|
22622
22622
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -22632,7 +22632,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22632
22632
|
icon?: string | undefined;
|
|
22633
22633
|
}[];
|
|
22634
22634
|
} | undefined;
|
|
22635
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
22635
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
22636
22636
|
settings?: Record<string, {
|
|
22637
22637
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
22638
22638
|
label: string;
|
|
@@ -22700,7 +22700,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22700
22700
|
params?: Record<string, string> | undefined;
|
|
22701
22701
|
icon?: string | undefined;
|
|
22702
22702
|
pageId?: string | undefined;
|
|
22703
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22703
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22704
22704
|
width?: "full" | "half" | undefined;
|
|
22705
22705
|
openMode?: "popover" | "modal" | undefined;
|
|
22706
22706
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -22717,7 +22717,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22717
22717
|
}[] | undefined;
|
|
22718
22718
|
} | undefined;
|
|
22719
22719
|
instanceScope?: "operator" | "global" | undefined;
|
|
22720
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
22720
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
22721
22721
|
settings?: Record<string, {
|
|
22722
22722
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
22723
22723
|
label: string;
|
|
@@ -22793,7 +22793,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22793
22793
|
params?: Record<string, string> | undefined;
|
|
22794
22794
|
icon?: string | undefined;
|
|
22795
22795
|
pageId?: string | undefined;
|
|
22796
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22796
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22797
22797
|
width?: "full" | "half" | undefined;
|
|
22798
22798
|
openMode?: "popover" | "modal" | undefined;
|
|
22799
22799
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -22809,7 +22809,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22809
22809
|
icon?: string | undefined;
|
|
22810
22810
|
}[];
|
|
22811
22811
|
} | undefined;
|
|
22812
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
22812
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
22813
22813
|
settings?: Record<string, {
|
|
22814
22814
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
22815
22815
|
label: string;
|
|
@@ -22880,7 +22880,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22880
22880
|
params?: Record<string, string> | undefined;
|
|
22881
22881
|
icon?: string | undefined;
|
|
22882
22882
|
pageId?: string | undefined;
|
|
22883
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22883
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22884
22884
|
width?: "full" | "half" | undefined;
|
|
22885
22885
|
openMode?: "popover" | "modal" | undefined;
|
|
22886
22886
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -22897,7 +22897,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22897
22897
|
}[] | undefined;
|
|
22898
22898
|
} | undefined;
|
|
22899
22899
|
instanceScope?: "operator" | "global" | undefined;
|
|
22900
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
22900
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
22901
22901
|
settings?: Record<string, {
|
|
22902
22902
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
22903
22903
|
label: string;
|
|
@@ -22977,7 +22977,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22977
22977
|
params?: Record<string, string> | undefined;
|
|
22978
22978
|
icon?: string | undefined;
|
|
22979
22979
|
pageId?: string | undefined;
|
|
22980
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22980
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22981
22981
|
width?: "full" | "half" | undefined;
|
|
22982
22982
|
openMode?: "popover" | "modal" | undefined;
|
|
22983
22983
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -22993,7 +22993,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22993
22993
|
icon?: string | undefined;
|
|
22994
22994
|
}[];
|
|
22995
22995
|
} | undefined;
|
|
22996
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
22996
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
22997
22997
|
settings?: Record<string, {
|
|
22998
22998
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
22999
22999
|
label: string;
|
|
@@ -23069,7 +23069,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
23069
23069
|
params?: Record<string, string> | undefined;
|
|
23070
23070
|
icon?: string | undefined;
|
|
23071
23071
|
pageId?: string | undefined;
|
|
23072
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
23072
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
23073
23073
|
width?: "full" | "half" | undefined;
|
|
23074
23074
|
openMode?: "popover" | "modal" | undefined;
|
|
23075
23075
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -23086,7 +23086,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
23086
23086
|
}[] | undefined;
|
|
23087
23087
|
} | undefined;
|
|
23088
23088
|
instanceScope?: "operator" | "global" | undefined;
|
|
23089
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
23089
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
23090
23090
|
settings?: Record<string, {
|
|
23091
23091
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
23092
23092
|
label: string;
|