@tx5dr/contracts 1.7.4 → 1.7.5
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/plugin.schema.d.ts +301 -39
- package/dist/schema/plugin.schema.d.ts.map +1 -1
- package/dist/schema/plugin.schema.js +41 -1
- package/dist/schema/plugin.schema.js.map +1 -1
- package/dist/schema/websocket.schema.d.ts +354 -60
- package/dist/schema/websocket.schema.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/schema/plugin.schema.ts +53 -1
- package/test/plugin-slot-schema.test.ts +52 -0
|
@@ -10817,30 +10817,61 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
10817
10817
|
}, {
|
|
10818
10818
|
settingKey: string;
|
|
10819
10819
|
}>, "many">>;
|
|
10820
|
-
panels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10820
|
+
panels: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
10821
10821
|
id: z.ZodString;
|
|
10822
10822
|
title: z.ZodString;
|
|
10823
10823
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
10824
10824
|
pageId: z.ZodOptional<z.ZodString>;
|
|
10825
10825
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
10826
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top"]>>;
|
|
10826
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
10827
10827
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
10828
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
10829
|
+
openMode: z.ZodOptional<z.ZodEnum<["popover", "modal"]>>;
|
|
10830
|
+
uiSize: z.ZodOptional<z.ZodEnum<["sm", "md", "lg"]>>;
|
|
10828
10831
|
}, "strip", z.ZodTypeAny, {
|
|
10829
10832
|
id: string;
|
|
10830
10833
|
title: string;
|
|
10831
10834
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
10832
10835
|
params?: Record<string, string> | undefined;
|
|
10836
|
+
icon?: string | undefined;
|
|
10837
|
+
pageId?: string | undefined;
|
|
10838
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10839
|
+
width?: "full" | "half" | undefined;
|
|
10840
|
+
openMode?: "popover" | "modal" | undefined;
|
|
10841
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
10842
|
+
}, {
|
|
10843
|
+
id: string;
|
|
10844
|
+
title: string;
|
|
10845
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
10846
|
+
params?: Record<string, string> | undefined;
|
|
10847
|
+
icon?: string | undefined;
|
|
10833
10848
|
pageId?: string | undefined;
|
|
10834
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
10849
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10835
10850
|
width?: "full" | "half" | undefined;
|
|
10851
|
+
openMode?: "popover" | "modal" | undefined;
|
|
10852
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
10853
|
+
}>, {
|
|
10854
|
+
id: string;
|
|
10855
|
+
title: string;
|
|
10856
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
10857
|
+
params?: Record<string, string> | undefined;
|
|
10858
|
+
icon?: string | undefined;
|
|
10859
|
+
pageId?: string | undefined;
|
|
10860
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10861
|
+
width?: "full" | "half" | undefined;
|
|
10862
|
+
openMode?: "popover" | "modal" | undefined;
|
|
10863
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
10836
10864
|
}, {
|
|
10837
10865
|
id: string;
|
|
10838
10866
|
title: string;
|
|
10839
10867
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
10840
10868
|
params?: Record<string, string> | undefined;
|
|
10869
|
+
icon?: string | undefined;
|
|
10841
10870
|
pageId?: string | undefined;
|
|
10842
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
10871
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10843
10872
|
width?: "full" | "half" | undefined;
|
|
10873
|
+
openMode?: "popover" | "modal" | undefined;
|
|
10874
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
10844
10875
|
}>, "many">>;
|
|
10845
10876
|
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">>;
|
|
10846
10877
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto_call_candidate", "auto_call_execution"]>, "many">>;
|
|
@@ -10936,9 +10967,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
10936
10967
|
title: string;
|
|
10937
10968
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
10938
10969
|
params?: Record<string, string> | undefined;
|
|
10970
|
+
icon?: string | undefined;
|
|
10939
10971
|
pageId?: string | undefined;
|
|
10940
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
10972
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10941
10973
|
width?: "full" | "half" | undefined;
|
|
10974
|
+
openMode?: "popover" | "modal" | undefined;
|
|
10975
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
10942
10976
|
}[] | undefined;
|
|
10943
10977
|
ui?: {
|
|
10944
10978
|
dir: string;
|
|
@@ -11025,9 +11059,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11025
11059
|
title: string;
|
|
11026
11060
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11027
11061
|
params?: Record<string, string> | undefined;
|
|
11062
|
+
icon?: string | undefined;
|
|
11028
11063
|
pageId?: string | undefined;
|
|
11029
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11064
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11030
11065
|
width?: "full" | "half" | undefined;
|
|
11066
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11067
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11031
11068
|
}[] | undefined;
|
|
11032
11069
|
ui?: {
|
|
11033
11070
|
dir?: string | undefined;
|
|
@@ -11153,30 +11190,61 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11153
11190
|
operatorId: string;
|
|
11154
11191
|
kind: "operator";
|
|
11155
11192
|
}>]>>;
|
|
11156
|
-
panels: z.ZodArray<z.ZodObject<{
|
|
11193
|
+
panels: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
11157
11194
|
id: z.ZodString;
|
|
11158
11195
|
title: z.ZodString;
|
|
11159
11196
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
11160
11197
|
pageId: z.ZodOptional<z.ZodString>;
|
|
11161
11198
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
11162
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top"]>>;
|
|
11199
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
11163
11200
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
11201
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
11202
|
+
openMode: z.ZodOptional<z.ZodEnum<["popover", "modal"]>>;
|
|
11203
|
+
uiSize: z.ZodOptional<z.ZodEnum<["sm", "md", "lg"]>>;
|
|
11164
11204
|
}, "strip", z.ZodTypeAny, {
|
|
11165
11205
|
id: string;
|
|
11166
11206
|
title: string;
|
|
11167
11207
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11168
11208
|
params?: Record<string, string> | undefined;
|
|
11209
|
+
icon?: string | undefined;
|
|
11210
|
+
pageId?: string | undefined;
|
|
11211
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11212
|
+
width?: "full" | "half" | undefined;
|
|
11213
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11214
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11215
|
+
}, {
|
|
11216
|
+
id: string;
|
|
11217
|
+
title: string;
|
|
11218
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11219
|
+
params?: Record<string, string> | undefined;
|
|
11220
|
+
icon?: string | undefined;
|
|
11221
|
+
pageId?: string | undefined;
|
|
11222
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11223
|
+
width?: "full" | "half" | undefined;
|
|
11224
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11225
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11226
|
+
}>, {
|
|
11227
|
+
id: string;
|
|
11228
|
+
title: string;
|
|
11229
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11230
|
+
params?: Record<string, string> | undefined;
|
|
11231
|
+
icon?: string | undefined;
|
|
11169
11232
|
pageId?: string | undefined;
|
|
11170
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11233
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11171
11234
|
width?: "full" | "half" | undefined;
|
|
11235
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11236
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11172
11237
|
}, {
|
|
11173
11238
|
id: string;
|
|
11174
11239
|
title: string;
|
|
11175
11240
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11176
11241
|
params?: Record<string, string> | undefined;
|
|
11242
|
+
icon?: string | undefined;
|
|
11177
11243
|
pageId?: string | undefined;
|
|
11178
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11244
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11179
11245
|
width?: "full" | "half" | undefined;
|
|
11246
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11247
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11180
11248
|
}>, "many">;
|
|
11181
11249
|
}, "strip", z.ZodTypeAny, {
|
|
11182
11250
|
pluginName: string;
|
|
@@ -11187,9 +11255,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11187
11255
|
title: string;
|
|
11188
11256
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11189
11257
|
params?: Record<string, string> | undefined;
|
|
11258
|
+
icon?: string | undefined;
|
|
11190
11259
|
pageId?: string | undefined;
|
|
11191
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11260
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11192
11261
|
width?: "full" | "half" | undefined;
|
|
11262
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11263
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11193
11264
|
}[];
|
|
11194
11265
|
instanceTarget?: {
|
|
11195
11266
|
kind: "global";
|
|
@@ -11206,9 +11277,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11206
11277
|
title: string;
|
|
11207
11278
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11208
11279
|
params?: Record<string, string> | undefined;
|
|
11280
|
+
icon?: string | undefined;
|
|
11209
11281
|
pageId?: string | undefined;
|
|
11210
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11282
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11211
11283
|
width?: "full" | "half" | undefined;
|
|
11284
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11285
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11212
11286
|
}[];
|
|
11213
11287
|
instanceTarget?: {
|
|
11214
11288
|
kind: "global";
|
|
@@ -11245,9 +11319,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11245
11319
|
title: string;
|
|
11246
11320
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11247
11321
|
params?: Record<string, string> | undefined;
|
|
11322
|
+
icon?: string | undefined;
|
|
11248
11323
|
pageId?: string | undefined;
|
|
11249
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11324
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11250
11325
|
width?: "full" | "half" | undefined;
|
|
11326
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11327
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11251
11328
|
}[] | undefined;
|
|
11252
11329
|
ui?: {
|
|
11253
11330
|
dir: string;
|
|
@@ -11333,9 +11410,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11333
11410
|
title: string;
|
|
11334
11411
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11335
11412
|
params?: Record<string, string> | undefined;
|
|
11413
|
+
icon?: string | undefined;
|
|
11336
11414
|
pageId?: string | undefined;
|
|
11337
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11415
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11338
11416
|
width?: "full" | "half" | undefined;
|
|
11417
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11418
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11339
11419
|
}[];
|
|
11340
11420
|
instanceTarget?: {
|
|
11341
11421
|
kind: "global";
|
|
@@ -11369,9 +11449,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11369
11449
|
title: string;
|
|
11370
11450
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11371
11451
|
params?: Record<string, string> | undefined;
|
|
11452
|
+
icon?: string | undefined;
|
|
11372
11453
|
pageId?: string | undefined;
|
|
11373
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11454
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11374
11455
|
width?: "full" | "half" | undefined;
|
|
11456
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11457
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11375
11458
|
}[] | undefined;
|
|
11376
11459
|
ui?: {
|
|
11377
11460
|
dir?: string | undefined;
|
|
@@ -11461,9 +11544,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11461
11544
|
title: string;
|
|
11462
11545
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11463
11546
|
params?: Record<string, string> | undefined;
|
|
11547
|
+
icon?: string | undefined;
|
|
11464
11548
|
pageId?: string | undefined;
|
|
11465
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11549
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11466
11550
|
width?: "full" | "half" | undefined;
|
|
11551
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11552
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11467
11553
|
}[];
|
|
11468
11554
|
instanceTarget?: {
|
|
11469
11555
|
kind: "global";
|
|
@@ -11503,9 +11589,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11503
11589
|
title: string;
|
|
11504
11590
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11505
11591
|
params?: Record<string, string> | undefined;
|
|
11592
|
+
icon?: string | undefined;
|
|
11506
11593
|
pageId?: string | undefined;
|
|
11507
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11594
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11508
11595
|
width?: "full" | "half" | undefined;
|
|
11596
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11597
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11509
11598
|
}[] | undefined;
|
|
11510
11599
|
ui?: {
|
|
11511
11600
|
dir: string;
|
|
@@ -11591,9 +11680,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11591
11680
|
title: string;
|
|
11592
11681
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11593
11682
|
params?: Record<string, string> | undefined;
|
|
11683
|
+
icon?: string | undefined;
|
|
11594
11684
|
pageId?: string | undefined;
|
|
11595
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11685
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11596
11686
|
width?: "full" | "half" | undefined;
|
|
11687
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11688
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11597
11689
|
}[];
|
|
11598
11690
|
instanceTarget?: {
|
|
11599
11691
|
kind: "global";
|
|
@@ -11632,9 +11724,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11632
11724
|
title: string;
|
|
11633
11725
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11634
11726
|
params?: Record<string, string> | undefined;
|
|
11727
|
+
icon?: string | undefined;
|
|
11635
11728
|
pageId?: string | undefined;
|
|
11636
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11729
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11637
11730
|
width?: "full" | "half" | undefined;
|
|
11731
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11732
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11638
11733
|
}[] | undefined;
|
|
11639
11734
|
ui?: {
|
|
11640
11735
|
dir?: string | undefined;
|
|
@@ -11724,9 +11819,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11724
11819
|
title: string;
|
|
11725
11820
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11726
11821
|
params?: Record<string, string> | undefined;
|
|
11822
|
+
icon?: string | undefined;
|
|
11727
11823
|
pageId?: string | undefined;
|
|
11728
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11824
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11729
11825
|
width?: "full" | "half" | undefined;
|
|
11826
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11827
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11730
11828
|
}[];
|
|
11731
11829
|
instanceTarget?: {
|
|
11732
11830
|
kind: "global";
|
|
@@ -11955,30 +12053,61 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
11955
12053
|
}, {
|
|
11956
12054
|
settingKey: string;
|
|
11957
12055
|
}>, "many">>;
|
|
11958
|
-
panels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12056
|
+
panels: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
11959
12057
|
id: z.ZodString;
|
|
11960
12058
|
title: z.ZodString;
|
|
11961
12059
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
11962
12060
|
pageId: z.ZodOptional<z.ZodString>;
|
|
11963
12061
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
11964
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top"]>>;
|
|
12062
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
11965
12063
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
12064
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
12065
|
+
openMode: z.ZodOptional<z.ZodEnum<["popover", "modal"]>>;
|
|
12066
|
+
uiSize: z.ZodOptional<z.ZodEnum<["sm", "md", "lg"]>>;
|
|
11966
12067
|
}, "strip", z.ZodTypeAny, {
|
|
11967
12068
|
id: string;
|
|
11968
12069
|
title: string;
|
|
11969
12070
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11970
12071
|
params?: Record<string, string> | undefined;
|
|
12072
|
+
icon?: string | undefined;
|
|
12073
|
+
pageId?: string | undefined;
|
|
12074
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12075
|
+
width?: "full" | "half" | undefined;
|
|
12076
|
+
openMode?: "popover" | "modal" | undefined;
|
|
12077
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
12078
|
+
}, {
|
|
12079
|
+
id: string;
|
|
12080
|
+
title: string;
|
|
12081
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
12082
|
+
params?: Record<string, string> | undefined;
|
|
12083
|
+
icon?: string | undefined;
|
|
12084
|
+
pageId?: string | undefined;
|
|
12085
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12086
|
+
width?: "full" | "half" | undefined;
|
|
12087
|
+
openMode?: "popover" | "modal" | undefined;
|
|
12088
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
12089
|
+
}>, {
|
|
12090
|
+
id: string;
|
|
12091
|
+
title: string;
|
|
12092
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
12093
|
+
params?: Record<string, string> | undefined;
|
|
12094
|
+
icon?: string | undefined;
|
|
11971
12095
|
pageId?: string | undefined;
|
|
11972
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
12096
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11973
12097
|
width?: "full" | "half" | undefined;
|
|
12098
|
+
openMode?: "popover" | "modal" | undefined;
|
|
12099
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11974
12100
|
}, {
|
|
11975
12101
|
id: string;
|
|
11976
12102
|
title: string;
|
|
11977
12103
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11978
12104
|
params?: Record<string, string> | undefined;
|
|
12105
|
+
icon?: string | undefined;
|
|
11979
12106
|
pageId?: string | undefined;
|
|
11980
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
12107
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11981
12108
|
width?: "full" | "half" | undefined;
|
|
12109
|
+
openMode?: "popover" | "modal" | undefined;
|
|
12110
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11982
12111
|
}>, "many">>;
|
|
11983
12112
|
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">>;
|
|
11984
12113
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto_call_candidate", "auto_call_execution"]>, "many">>;
|
|
@@ -12074,9 +12203,12 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12074
12203
|
title: string;
|
|
12075
12204
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
12076
12205
|
params?: Record<string, string> | undefined;
|
|
12206
|
+
icon?: string | undefined;
|
|
12077
12207
|
pageId?: string | undefined;
|
|
12078
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
12208
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12079
12209
|
width?: "full" | "half" | undefined;
|
|
12210
|
+
openMode?: "popover" | "modal" | undefined;
|
|
12211
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
12080
12212
|
}[] | undefined;
|
|
12081
12213
|
ui?: {
|
|
12082
12214
|
dir: string;
|
|
@@ -12163,9 +12295,12 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12163
12295
|
title: string;
|
|
12164
12296
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
12165
12297
|
params?: Record<string, string> | undefined;
|
|
12298
|
+
icon?: string | undefined;
|
|
12166
12299
|
pageId?: string | undefined;
|
|
12167
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
12300
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12168
12301
|
width?: "full" | "half" | undefined;
|
|
12302
|
+
openMode?: "popover" | "modal" | undefined;
|
|
12303
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
12169
12304
|
}[] | undefined;
|
|
12170
12305
|
ui?: {
|
|
12171
12306
|
dir?: string | undefined;
|
|
@@ -12261,9 +12396,12 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12261
12396
|
title: string;
|
|
12262
12397
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
12263
12398
|
params?: Record<string, string> | undefined;
|
|
12399
|
+
icon?: string | undefined;
|
|
12264
12400
|
pageId?: string | undefined;
|
|
12265
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
12401
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12266
12402
|
width?: "full" | "half" | undefined;
|
|
12403
|
+
openMode?: "popover" | "modal" | undefined;
|
|
12404
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
12267
12405
|
}[] | undefined;
|
|
12268
12406
|
ui?: {
|
|
12269
12407
|
dir: string;
|
|
@@ -12353,9 +12491,12 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12353
12491
|
title: string;
|
|
12354
12492
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
12355
12493
|
params?: Record<string, string> | undefined;
|
|
12494
|
+
icon?: string | undefined;
|
|
12356
12495
|
pageId?: string | undefined;
|
|
12357
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
12496
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12358
12497
|
width?: "full" | "half" | undefined;
|
|
12498
|
+
openMode?: "popover" | "modal" | undefined;
|
|
12499
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
12359
12500
|
}[] | undefined;
|
|
12360
12501
|
ui?: {
|
|
12361
12502
|
dir?: string | undefined;
|
|
@@ -12455,9 +12596,12 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12455
12596
|
title: string;
|
|
12456
12597
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
12457
12598
|
params?: Record<string, string> | undefined;
|
|
12599
|
+
icon?: string | undefined;
|
|
12458
12600
|
pageId?: string | undefined;
|
|
12459
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
12601
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12460
12602
|
width?: "full" | "half" | undefined;
|
|
12603
|
+
openMode?: "popover" | "modal" | undefined;
|
|
12604
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
12461
12605
|
}[] | undefined;
|
|
12462
12606
|
ui?: {
|
|
12463
12607
|
dir: string;
|
|
@@ -12552,9 +12696,12 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12552
12696
|
title: string;
|
|
12553
12697
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
12554
12698
|
params?: Record<string, string> | undefined;
|
|
12699
|
+
icon?: string | undefined;
|
|
12555
12700
|
pageId?: string | undefined;
|
|
12556
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
12701
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12557
12702
|
width?: "full" | "half" | undefined;
|
|
12703
|
+
openMode?: "popover" | "modal" | undefined;
|
|
12704
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
12558
12705
|
}[] | undefined;
|
|
12559
12706
|
ui?: {
|
|
12560
12707
|
dir?: string | undefined;
|
|
@@ -21419,30 +21566,61 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21419
21566
|
}, {
|
|
21420
21567
|
settingKey: string;
|
|
21421
21568
|
}>, "many">>;
|
|
21422
|
-
panels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21569
|
+
panels: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
21423
21570
|
id: z.ZodString;
|
|
21424
21571
|
title: z.ZodString;
|
|
21425
21572
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
21426
21573
|
pageId: z.ZodOptional<z.ZodString>;
|
|
21427
21574
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
21428
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top"]>>;
|
|
21575
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
21429
21576
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
21577
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
21578
|
+
openMode: z.ZodOptional<z.ZodEnum<["popover", "modal"]>>;
|
|
21579
|
+
uiSize: z.ZodOptional<z.ZodEnum<["sm", "md", "lg"]>>;
|
|
21430
21580
|
}, "strip", z.ZodTypeAny, {
|
|
21431
21581
|
id: string;
|
|
21432
21582
|
title: string;
|
|
21433
21583
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21434
21584
|
params?: Record<string, string> | undefined;
|
|
21585
|
+
icon?: string | undefined;
|
|
21586
|
+
pageId?: string | undefined;
|
|
21587
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21588
|
+
width?: "full" | "half" | undefined;
|
|
21589
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21590
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21591
|
+
}, {
|
|
21592
|
+
id: string;
|
|
21593
|
+
title: string;
|
|
21594
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21595
|
+
params?: Record<string, string> | undefined;
|
|
21596
|
+
icon?: string | undefined;
|
|
21435
21597
|
pageId?: string | undefined;
|
|
21436
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
21598
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21437
21599
|
width?: "full" | "half" | undefined;
|
|
21600
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21601
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21602
|
+
}>, {
|
|
21603
|
+
id: string;
|
|
21604
|
+
title: string;
|
|
21605
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21606
|
+
params?: Record<string, string> | undefined;
|
|
21607
|
+
icon?: string | undefined;
|
|
21608
|
+
pageId?: string | undefined;
|
|
21609
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21610
|
+
width?: "full" | "half" | undefined;
|
|
21611
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21612
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21438
21613
|
}, {
|
|
21439
21614
|
id: string;
|
|
21440
21615
|
title: string;
|
|
21441
21616
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21442
21617
|
params?: Record<string, string> | undefined;
|
|
21618
|
+
icon?: string | undefined;
|
|
21443
21619
|
pageId?: string | undefined;
|
|
21444
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
21620
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21445
21621
|
width?: "full" | "half" | undefined;
|
|
21622
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21623
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21446
21624
|
}>, "many">>;
|
|
21447
21625
|
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">>;
|
|
21448
21626
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto_call_candidate", "auto_call_execution"]>, "many">>;
|
|
@@ -21538,9 +21716,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21538
21716
|
title: string;
|
|
21539
21717
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21540
21718
|
params?: Record<string, string> | undefined;
|
|
21719
|
+
icon?: string | undefined;
|
|
21541
21720
|
pageId?: string | undefined;
|
|
21542
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
21721
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21543
21722
|
width?: "full" | "half" | undefined;
|
|
21723
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21724
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21544
21725
|
}[] | undefined;
|
|
21545
21726
|
ui?: {
|
|
21546
21727
|
dir: string;
|
|
@@ -21627,9 +21808,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21627
21808
|
title: string;
|
|
21628
21809
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21629
21810
|
params?: Record<string, string> | undefined;
|
|
21811
|
+
icon?: string | undefined;
|
|
21630
21812
|
pageId?: string | undefined;
|
|
21631
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
21813
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21632
21814
|
width?: "full" | "half" | undefined;
|
|
21815
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21816
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21633
21817
|
}[] | undefined;
|
|
21634
21818
|
ui?: {
|
|
21635
21819
|
dir?: string | undefined;
|
|
@@ -21755,30 +21939,61 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21755
21939
|
operatorId: string;
|
|
21756
21940
|
kind: "operator";
|
|
21757
21941
|
}>]>>;
|
|
21758
|
-
panels: z.ZodArray<z.ZodObject<{
|
|
21942
|
+
panels: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
21759
21943
|
id: z.ZodString;
|
|
21760
21944
|
title: z.ZodString;
|
|
21761
21945
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
21762
21946
|
pageId: z.ZodOptional<z.ZodString>;
|
|
21763
21947
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
21764
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top"]>>;
|
|
21948
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
21765
21949
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
21950
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
21951
|
+
openMode: z.ZodOptional<z.ZodEnum<["popover", "modal"]>>;
|
|
21952
|
+
uiSize: z.ZodOptional<z.ZodEnum<["sm", "md", "lg"]>>;
|
|
21766
21953
|
}, "strip", z.ZodTypeAny, {
|
|
21767
21954
|
id: string;
|
|
21768
21955
|
title: string;
|
|
21769
21956
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21770
21957
|
params?: Record<string, string> | undefined;
|
|
21958
|
+
icon?: string | undefined;
|
|
21959
|
+
pageId?: string | undefined;
|
|
21960
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21961
|
+
width?: "full" | "half" | undefined;
|
|
21962
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21963
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21964
|
+
}, {
|
|
21965
|
+
id: string;
|
|
21966
|
+
title: string;
|
|
21967
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21968
|
+
params?: Record<string, string> | undefined;
|
|
21969
|
+
icon?: string | undefined;
|
|
21970
|
+
pageId?: string | undefined;
|
|
21971
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21972
|
+
width?: "full" | "half" | undefined;
|
|
21973
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21974
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21975
|
+
}>, {
|
|
21976
|
+
id: string;
|
|
21977
|
+
title: string;
|
|
21978
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21979
|
+
params?: Record<string, string> | undefined;
|
|
21980
|
+
icon?: string | undefined;
|
|
21771
21981
|
pageId?: string | undefined;
|
|
21772
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
21982
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21773
21983
|
width?: "full" | "half" | undefined;
|
|
21984
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21985
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21774
21986
|
}, {
|
|
21775
21987
|
id: string;
|
|
21776
21988
|
title: string;
|
|
21777
21989
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21778
21990
|
params?: Record<string, string> | undefined;
|
|
21991
|
+
icon?: string | undefined;
|
|
21779
21992
|
pageId?: string | undefined;
|
|
21780
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
21993
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21781
21994
|
width?: "full" | "half" | undefined;
|
|
21995
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21996
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21782
21997
|
}>, "many">;
|
|
21783
21998
|
}, "strip", z.ZodTypeAny, {
|
|
21784
21999
|
pluginName: string;
|
|
@@ -21789,9 +22004,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21789
22004
|
title: string;
|
|
21790
22005
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21791
22006
|
params?: Record<string, string> | undefined;
|
|
22007
|
+
icon?: string | undefined;
|
|
21792
22008
|
pageId?: string | undefined;
|
|
21793
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22009
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21794
22010
|
width?: "full" | "half" | undefined;
|
|
22011
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22012
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21795
22013
|
}[];
|
|
21796
22014
|
instanceTarget?: {
|
|
21797
22015
|
kind: "global";
|
|
@@ -21808,9 +22026,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21808
22026
|
title: string;
|
|
21809
22027
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21810
22028
|
params?: Record<string, string> | undefined;
|
|
22029
|
+
icon?: string | undefined;
|
|
21811
22030
|
pageId?: string | undefined;
|
|
21812
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22031
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21813
22032
|
width?: "full" | "half" | undefined;
|
|
22033
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22034
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21814
22035
|
}[];
|
|
21815
22036
|
instanceTarget?: {
|
|
21816
22037
|
kind: "global";
|
|
@@ -21847,9 +22068,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21847
22068
|
title: string;
|
|
21848
22069
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21849
22070
|
params?: Record<string, string> | undefined;
|
|
22071
|
+
icon?: string | undefined;
|
|
21850
22072
|
pageId?: string | undefined;
|
|
21851
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22073
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21852
22074
|
width?: "full" | "half" | undefined;
|
|
22075
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22076
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21853
22077
|
}[] | undefined;
|
|
21854
22078
|
ui?: {
|
|
21855
22079
|
dir: string;
|
|
@@ -21935,9 +22159,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21935
22159
|
title: string;
|
|
21936
22160
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21937
22161
|
params?: Record<string, string> | undefined;
|
|
22162
|
+
icon?: string | undefined;
|
|
21938
22163
|
pageId?: string | undefined;
|
|
21939
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22164
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21940
22165
|
width?: "full" | "half" | undefined;
|
|
22166
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22167
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21941
22168
|
}[];
|
|
21942
22169
|
instanceTarget?: {
|
|
21943
22170
|
kind: "global";
|
|
@@ -21971,9 +22198,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21971
22198
|
title: string;
|
|
21972
22199
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21973
22200
|
params?: Record<string, string> | undefined;
|
|
22201
|
+
icon?: string | undefined;
|
|
21974
22202
|
pageId?: string | undefined;
|
|
21975
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22203
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21976
22204
|
width?: "full" | "half" | undefined;
|
|
22205
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22206
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21977
22207
|
}[] | undefined;
|
|
21978
22208
|
ui?: {
|
|
21979
22209
|
dir?: string | undefined;
|
|
@@ -22063,9 +22293,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22063
22293
|
title: string;
|
|
22064
22294
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22065
22295
|
params?: Record<string, string> | undefined;
|
|
22296
|
+
icon?: string | undefined;
|
|
22066
22297
|
pageId?: string | undefined;
|
|
22067
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22298
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22068
22299
|
width?: "full" | "half" | undefined;
|
|
22300
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22301
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22069
22302
|
}[];
|
|
22070
22303
|
instanceTarget?: {
|
|
22071
22304
|
kind: "global";
|
|
@@ -22105,9 +22338,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22105
22338
|
title: string;
|
|
22106
22339
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22107
22340
|
params?: Record<string, string> | undefined;
|
|
22341
|
+
icon?: string | undefined;
|
|
22108
22342
|
pageId?: string | undefined;
|
|
22109
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22343
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22110
22344
|
width?: "full" | "half" | undefined;
|
|
22345
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22346
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22111
22347
|
}[] | undefined;
|
|
22112
22348
|
ui?: {
|
|
22113
22349
|
dir: string;
|
|
@@ -22193,9 +22429,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22193
22429
|
title: string;
|
|
22194
22430
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22195
22431
|
params?: Record<string, string> | undefined;
|
|
22432
|
+
icon?: string | undefined;
|
|
22196
22433
|
pageId?: string | undefined;
|
|
22197
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22434
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22198
22435
|
width?: "full" | "half" | undefined;
|
|
22436
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22437
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22199
22438
|
}[];
|
|
22200
22439
|
instanceTarget?: {
|
|
22201
22440
|
kind: "global";
|
|
@@ -22234,9 +22473,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22234
22473
|
title: string;
|
|
22235
22474
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22236
22475
|
params?: Record<string, string> | undefined;
|
|
22476
|
+
icon?: string | undefined;
|
|
22237
22477
|
pageId?: string | undefined;
|
|
22238
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22478
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22239
22479
|
width?: "full" | "half" | undefined;
|
|
22480
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22481
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22240
22482
|
}[] | undefined;
|
|
22241
22483
|
ui?: {
|
|
22242
22484
|
dir?: string | undefined;
|
|
@@ -22326,9 +22568,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22326
22568
|
title: string;
|
|
22327
22569
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22328
22570
|
params?: Record<string, string> | undefined;
|
|
22571
|
+
icon?: string | undefined;
|
|
22329
22572
|
pageId?: string | undefined;
|
|
22330
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22573
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22331
22574
|
width?: "full" | "half" | undefined;
|
|
22575
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22576
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22332
22577
|
}[];
|
|
22333
22578
|
instanceTarget?: {
|
|
22334
22579
|
kind: "global";
|
|
@@ -22555,30 +22800,61 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22555
22800
|
}, {
|
|
22556
22801
|
settingKey: string;
|
|
22557
22802
|
}>, "many">>;
|
|
22558
|
-
panels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22803
|
+
panels: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
22559
22804
|
id: z.ZodString;
|
|
22560
22805
|
title: z.ZodString;
|
|
22561
22806
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
22562
22807
|
pageId: z.ZodOptional<z.ZodString>;
|
|
22563
22808
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
22564
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top"]>>;
|
|
22809
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
22565
22810
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
22811
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
22812
|
+
openMode: z.ZodOptional<z.ZodEnum<["popover", "modal"]>>;
|
|
22813
|
+
uiSize: z.ZodOptional<z.ZodEnum<["sm", "md", "lg"]>>;
|
|
22566
22814
|
}, "strip", z.ZodTypeAny, {
|
|
22567
22815
|
id: string;
|
|
22568
22816
|
title: string;
|
|
22569
22817
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22570
22818
|
params?: Record<string, string> | undefined;
|
|
22819
|
+
icon?: string | undefined;
|
|
22820
|
+
pageId?: string | undefined;
|
|
22821
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22822
|
+
width?: "full" | "half" | undefined;
|
|
22823
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22824
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22825
|
+
}, {
|
|
22826
|
+
id: string;
|
|
22827
|
+
title: string;
|
|
22828
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22829
|
+
params?: Record<string, string> | undefined;
|
|
22830
|
+
icon?: string | undefined;
|
|
22831
|
+
pageId?: string | undefined;
|
|
22832
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22833
|
+
width?: "full" | "half" | undefined;
|
|
22834
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22835
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22836
|
+
}>, {
|
|
22837
|
+
id: string;
|
|
22838
|
+
title: string;
|
|
22839
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22840
|
+
params?: Record<string, string> | undefined;
|
|
22841
|
+
icon?: string | undefined;
|
|
22571
22842
|
pageId?: string | undefined;
|
|
22572
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22843
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22573
22844
|
width?: "full" | "half" | undefined;
|
|
22845
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22846
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22574
22847
|
}, {
|
|
22575
22848
|
id: string;
|
|
22576
22849
|
title: string;
|
|
22577
22850
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22578
22851
|
params?: Record<string, string> | undefined;
|
|
22852
|
+
icon?: string | undefined;
|
|
22579
22853
|
pageId?: string | undefined;
|
|
22580
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22854
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22581
22855
|
width?: "full" | "half" | undefined;
|
|
22856
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22857
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22582
22858
|
}>, "many">>;
|
|
22583
22859
|
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">>;
|
|
22584
22860
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto_call_candidate", "auto_call_execution"]>, "many">>;
|
|
@@ -22674,9 +22950,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22674
22950
|
title: string;
|
|
22675
22951
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22676
22952
|
params?: Record<string, string> | undefined;
|
|
22953
|
+
icon?: string | undefined;
|
|
22677
22954
|
pageId?: string | undefined;
|
|
22678
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22955
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22679
22956
|
width?: "full" | "half" | undefined;
|
|
22957
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22958
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22680
22959
|
}[] | undefined;
|
|
22681
22960
|
ui?: {
|
|
22682
22961
|
dir: string;
|
|
@@ -22763,9 +23042,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22763
23042
|
title: string;
|
|
22764
23043
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22765
23044
|
params?: Record<string, string> | undefined;
|
|
23045
|
+
icon?: string | undefined;
|
|
22766
23046
|
pageId?: string | undefined;
|
|
22767
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
23047
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22768
23048
|
width?: "full" | "half" | undefined;
|
|
23049
|
+
openMode?: "popover" | "modal" | undefined;
|
|
23050
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22769
23051
|
}[] | undefined;
|
|
22770
23052
|
ui?: {
|
|
22771
23053
|
dir?: string | undefined;
|
|
@@ -22861,9 +23143,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22861
23143
|
title: string;
|
|
22862
23144
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22863
23145
|
params?: Record<string, string> | undefined;
|
|
23146
|
+
icon?: string | undefined;
|
|
22864
23147
|
pageId?: string | undefined;
|
|
22865
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
23148
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22866
23149
|
width?: "full" | "half" | undefined;
|
|
23150
|
+
openMode?: "popover" | "modal" | undefined;
|
|
23151
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22867
23152
|
}[] | undefined;
|
|
22868
23153
|
ui?: {
|
|
22869
23154
|
dir: string;
|
|
@@ -22953,9 +23238,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22953
23238
|
title: string;
|
|
22954
23239
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22955
23240
|
params?: Record<string, string> | undefined;
|
|
23241
|
+
icon?: string | undefined;
|
|
22956
23242
|
pageId?: string | undefined;
|
|
22957
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
23243
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22958
23244
|
width?: "full" | "half" | undefined;
|
|
23245
|
+
openMode?: "popover" | "modal" | undefined;
|
|
23246
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22959
23247
|
}[] | undefined;
|
|
22960
23248
|
ui?: {
|
|
22961
23249
|
dir?: string | undefined;
|
|
@@ -23055,9 +23343,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
23055
23343
|
title: string;
|
|
23056
23344
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
23057
23345
|
params?: Record<string, string> | undefined;
|
|
23346
|
+
icon?: string | undefined;
|
|
23058
23347
|
pageId?: string | undefined;
|
|
23059
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
23348
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
23060
23349
|
width?: "full" | "half" | undefined;
|
|
23350
|
+
openMode?: "popover" | "modal" | undefined;
|
|
23351
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
23061
23352
|
}[] | undefined;
|
|
23062
23353
|
ui?: {
|
|
23063
23354
|
dir: string;
|
|
@@ -23152,9 +23443,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
23152
23443
|
title: string;
|
|
23153
23444
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
23154
23445
|
params?: Record<string, string> | undefined;
|
|
23446
|
+
icon?: string | undefined;
|
|
23155
23447
|
pageId?: string | undefined;
|
|
23156
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
23448
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
23157
23449
|
width?: "full" | "half" | undefined;
|
|
23450
|
+
openMode?: "popover" | "modal" | undefined;
|
|
23451
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
23158
23452
|
}[] | undefined;
|
|
23159
23453
|
ui?: {
|
|
23160
23454
|
dir?: string | undefined;
|