@tx5dr/contracts 1.7.4 → 1.7.7
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 +361 -378
- package/dist/schema/plugin.schema.d.ts.map +1 -1
- package/dist/schema/plugin.schema.js +46 -4
- package/dist/schema/plugin.schema.js.map +1 -1
- package/dist/schema/websocket.schema.d.ts +434 -524
- package/dist/schema/websocket.schema.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/schema/plugin.schema.ts +69 -5
- package/test/plugin-slot-schema.test.ts +52 -0
|
@@ -10673,48 +10673,16 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
10673
10673
|
key: string;
|
|
10674
10674
|
description?: string | undefined;
|
|
10675
10675
|
}>, "many">>;
|
|
10676
|
-
visibleWhen: z.ZodOptional<z.
|
|
10677
|
-
setting: z.ZodString;
|
|
10678
|
-
equals: z.ZodOptional<z.ZodUnknown>;
|
|
10679
|
-
notEquals: z.ZodOptional<z.ZodUnknown>;
|
|
10680
|
-
}, "strip", z.ZodTypeAny, {
|
|
10681
|
-
setting: string;
|
|
10682
|
-
equals?: unknown;
|
|
10683
|
-
notEquals?: unknown;
|
|
10684
|
-
}, {
|
|
10685
|
-
setting: string;
|
|
10686
|
-
equals?: unknown;
|
|
10687
|
-
notEquals?: unknown;
|
|
10688
|
-
}>>;
|
|
10676
|
+
visibleWhen: z.ZodOptional<z.ZodType<import("./plugin.schema.js").PluginSettingCondition, z.ZodTypeDef, import("./plugin.schema.js").PluginSettingCondition>>;
|
|
10689
10677
|
descriptionWhen: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10690
|
-
when: z.
|
|
10691
|
-
setting: z.ZodString;
|
|
10692
|
-
equals: z.ZodOptional<z.ZodUnknown>;
|
|
10693
|
-
notEquals: z.ZodOptional<z.ZodUnknown>;
|
|
10694
|
-
}, "strip", z.ZodTypeAny, {
|
|
10695
|
-
setting: string;
|
|
10696
|
-
equals?: unknown;
|
|
10697
|
-
notEquals?: unknown;
|
|
10698
|
-
}, {
|
|
10699
|
-
setting: string;
|
|
10700
|
-
equals?: unknown;
|
|
10701
|
-
notEquals?: unknown;
|
|
10702
|
-
}>;
|
|
10678
|
+
when: z.ZodType<import("./plugin.schema.js").PluginSettingCondition, z.ZodTypeDef, import("./plugin.schema.js").PluginSettingCondition>;
|
|
10703
10679
|
description: z.ZodString;
|
|
10704
10680
|
}, "strip", z.ZodTypeAny, {
|
|
10705
10681
|
description: string;
|
|
10706
|
-
when:
|
|
10707
|
-
setting: string;
|
|
10708
|
-
equals?: unknown;
|
|
10709
|
-
notEquals?: unknown;
|
|
10710
|
-
};
|
|
10682
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
10711
10683
|
}, {
|
|
10712
10684
|
description: string;
|
|
10713
|
-
when:
|
|
10714
|
-
setting: string;
|
|
10715
|
-
equals?: unknown;
|
|
10716
|
-
notEquals?: unknown;
|
|
10717
|
-
};
|
|
10685
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
10718
10686
|
}>, "many">>;
|
|
10719
10687
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
10720
10688
|
scope: z.ZodDefault<z.ZodOptional<z.ZodEnum<["global", "operator"]>>>;
|
|
@@ -10743,18 +10711,10 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
10743
10711
|
placeholder?: string | undefined;
|
|
10744
10712
|
required?: boolean | undefined;
|
|
10745
10713
|
}[] | undefined;
|
|
10746
|
-
visibleWhen?:
|
|
10747
|
-
setting: string;
|
|
10748
|
-
equals?: unknown;
|
|
10749
|
-
notEquals?: unknown;
|
|
10750
|
-
} | undefined;
|
|
10714
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
10751
10715
|
descriptionWhen?: {
|
|
10752
10716
|
description: string;
|
|
10753
|
-
when:
|
|
10754
|
-
setting: string;
|
|
10755
|
-
equals?: unknown;
|
|
10756
|
-
notEquals?: unknown;
|
|
10757
|
-
};
|
|
10717
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
10758
10718
|
}[] | undefined;
|
|
10759
10719
|
hidden?: boolean | undefined;
|
|
10760
10720
|
}, {
|
|
@@ -10781,18 +10741,10 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
10781
10741
|
placeholder?: string | undefined;
|
|
10782
10742
|
required?: boolean | undefined;
|
|
10783
10743
|
}[] | undefined;
|
|
10784
|
-
visibleWhen?:
|
|
10785
|
-
setting: string;
|
|
10786
|
-
equals?: unknown;
|
|
10787
|
-
notEquals?: unknown;
|
|
10788
|
-
} | undefined;
|
|
10744
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
10789
10745
|
descriptionWhen?: {
|
|
10790
10746
|
description: string;
|
|
10791
|
-
when:
|
|
10792
|
-
setting: string;
|
|
10793
|
-
equals?: unknown;
|
|
10794
|
-
notEquals?: unknown;
|
|
10795
|
-
};
|
|
10747
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
10796
10748
|
}[] | undefined;
|
|
10797
10749
|
hidden?: boolean | undefined;
|
|
10798
10750
|
scope?: "operator" | "global" | undefined;
|
|
@@ -10817,30 +10769,61 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
10817
10769
|
}, {
|
|
10818
10770
|
settingKey: string;
|
|
10819
10771
|
}>, "many">>;
|
|
10820
|
-
panels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10772
|
+
panels: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
10821
10773
|
id: z.ZodString;
|
|
10822
10774
|
title: z.ZodString;
|
|
10823
10775
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
10824
10776
|
pageId: z.ZodOptional<z.ZodString>;
|
|
10825
10777
|
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"]>>;
|
|
10778
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
10827
10779
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
10780
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
10781
|
+
openMode: z.ZodOptional<z.ZodEnum<["popover", "modal"]>>;
|
|
10782
|
+
uiSize: z.ZodOptional<z.ZodEnum<["sm", "md", "lg"]>>;
|
|
10828
10783
|
}, "strip", z.ZodTypeAny, {
|
|
10829
10784
|
id: string;
|
|
10830
10785
|
title: string;
|
|
10831
10786
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
10832
10787
|
params?: Record<string, string> | undefined;
|
|
10788
|
+
icon?: string | undefined;
|
|
10789
|
+
pageId?: string | undefined;
|
|
10790
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10791
|
+
width?: "full" | "half" | undefined;
|
|
10792
|
+
openMode?: "popover" | "modal" | undefined;
|
|
10793
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
10794
|
+
}, {
|
|
10795
|
+
id: string;
|
|
10796
|
+
title: string;
|
|
10797
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
10798
|
+
params?: Record<string, string> | undefined;
|
|
10799
|
+
icon?: string | undefined;
|
|
10800
|
+
pageId?: string | undefined;
|
|
10801
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10802
|
+
width?: "full" | "half" | undefined;
|
|
10803
|
+
openMode?: "popover" | "modal" | undefined;
|
|
10804
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
10805
|
+
}>, {
|
|
10806
|
+
id: string;
|
|
10807
|
+
title: string;
|
|
10808
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
10809
|
+
params?: Record<string, string> | undefined;
|
|
10810
|
+
icon?: string | undefined;
|
|
10833
10811
|
pageId?: string | undefined;
|
|
10834
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
10812
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10835
10813
|
width?: "full" | "half" | undefined;
|
|
10814
|
+
openMode?: "popover" | "modal" | undefined;
|
|
10815
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
10836
10816
|
}, {
|
|
10837
10817
|
id: string;
|
|
10838
10818
|
title: string;
|
|
10839
10819
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
10840
10820
|
params?: Record<string, string> | undefined;
|
|
10821
|
+
icon?: string | undefined;
|
|
10841
10822
|
pageId?: string | undefined;
|
|
10842
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
10823
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10843
10824
|
width?: "full" | "half" | undefined;
|
|
10825
|
+
openMode?: "popover" | "modal" | undefined;
|
|
10826
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
10844
10827
|
}>, "many">>;
|
|
10845
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">>;
|
|
10846
10829
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto_call_candidate", "auto_call_execution"]>, "many">>;
|
|
@@ -10936,9 +10919,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
10936
10919
|
title: string;
|
|
10937
10920
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
10938
10921
|
params?: Record<string, string> | undefined;
|
|
10922
|
+
icon?: string | undefined;
|
|
10939
10923
|
pageId?: string | undefined;
|
|
10940
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
10924
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
10941
10925
|
width?: "full" | "half" | undefined;
|
|
10926
|
+
openMode?: "popover" | "modal" | undefined;
|
|
10927
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
10942
10928
|
}[] | undefined;
|
|
10943
10929
|
ui?: {
|
|
10944
10930
|
dir: string;
|
|
@@ -10977,18 +10963,10 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
10977
10963
|
placeholder?: string | undefined;
|
|
10978
10964
|
required?: boolean | undefined;
|
|
10979
10965
|
}[] | undefined;
|
|
10980
|
-
visibleWhen?:
|
|
10981
|
-
setting: string;
|
|
10982
|
-
equals?: unknown;
|
|
10983
|
-
notEquals?: unknown;
|
|
10984
|
-
} | undefined;
|
|
10966
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
10985
10967
|
descriptionWhen?: {
|
|
10986
10968
|
description: string;
|
|
10987
|
-
when:
|
|
10988
|
-
setting: string;
|
|
10989
|
-
equals?: unknown;
|
|
10990
|
-
notEquals?: unknown;
|
|
10991
|
-
};
|
|
10969
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
10992
10970
|
}[] | undefined;
|
|
10993
10971
|
hidden?: boolean | undefined;
|
|
10994
10972
|
}> | undefined;
|
|
@@ -11025,9 +11003,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11025
11003
|
title: string;
|
|
11026
11004
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11027
11005
|
params?: Record<string, string> | undefined;
|
|
11006
|
+
icon?: string | undefined;
|
|
11028
11007
|
pageId?: string | undefined;
|
|
11029
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11008
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11030
11009
|
width?: "full" | "half" | undefined;
|
|
11010
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11011
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11031
11012
|
}[] | undefined;
|
|
11032
11013
|
ui?: {
|
|
11033
11014
|
dir?: string | undefined;
|
|
@@ -11066,18 +11047,10 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11066
11047
|
placeholder?: string | undefined;
|
|
11067
11048
|
required?: boolean | undefined;
|
|
11068
11049
|
}[] | undefined;
|
|
11069
|
-
visibleWhen?:
|
|
11070
|
-
setting: string;
|
|
11071
|
-
equals?: unknown;
|
|
11072
|
-
notEquals?: unknown;
|
|
11073
|
-
} | undefined;
|
|
11050
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
11074
11051
|
descriptionWhen?: {
|
|
11075
11052
|
description: string;
|
|
11076
|
-
when:
|
|
11077
|
-
setting: string;
|
|
11078
|
-
equals?: unknown;
|
|
11079
|
-
notEquals?: unknown;
|
|
11080
|
-
};
|
|
11053
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
11081
11054
|
}[] | undefined;
|
|
11082
11055
|
hidden?: boolean | undefined;
|
|
11083
11056
|
scope?: "operator" | "global" | undefined;
|
|
@@ -11153,30 +11126,61 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11153
11126
|
operatorId: string;
|
|
11154
11127
|
kind: "operator";
|
|
11155
11128
|
}>]>>;
|
|
11156
|
-
panels: z.ZodArray<z.ZodObject<{
|
|
11129
|
+
panels: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
11157
11130
|
id: z.ZodString;
|
|
11158
11131
|
title: z.ZodString;
|
|
11159
11132
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
11160
11133
|
pageId: z.ZodOptional<z.ZodString>;
|
|
11161
11134
|
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"]>>;
|
|
11135
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
11163
11136
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
11137
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
11138
|
+
openMode: z.ZodOptional<z.ZodEnum<["popover", "modal"]>>;
|
|
11139
|
+
uiSize: z.ZodOptional<z.ZodEnum<["sm", "md", "lg"]>>;
|
|
11164
11140
|
}, "strip", z.ZodTypeAny, {
|
|
11165
11141
|
id: string;
|
|
11166
11142
|
title: string;
|
|
11167
11143
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11168
11144
|
params?: Record<string, string> | undefined;
|
|
11145
|
+
icon?: string | undefined;
|
|
11169
11146
|
pageId?: string | undefined;
|
|
11170
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11147
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11171
11148
|
width?: "full" | "half" | undefined;
|
|
11149
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11150
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11172
11151
|
}, {
|
|
11173
11152
|
id: string;
|
|
11174
11153
|
title: string;
|
|
11175
11154
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11176
11155
|
params?: Record<string, string> | undefined;
|
|
11156
|
+
icon?: string | undefined;
|
|
11177
11157
|
pageId?: string | undefined;
|
|
11178
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11158
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11179
11159
|
width?: "full" | "half" | undefined;
|
|
11160
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11161
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11162
|
+
}>, {
|
|
11163
|
+
id: string;
|
|
11164
|
+
title: string;
|
|
11165
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11166
|
+
params?: Record<string, string> | undefined;
|
|
11167
|
+
icon?: string | undefined;
|
|
11168
|
+
pageId?: string | undefined;
|
|
11169
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11170
|
+
width?: "full" | "half" | undefined;
|
|
11171
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11172
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11173
|
+
}, {
|
|
11174
|
+
id: string;
|
|
11175
|
+
title: string;
|
|
11176
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11177
|
+
params?: Record<string, string> | undefined;
|
|
11178
|
+
icon?: string | undefined;
|
|
11179
|
+
pageId?: string | undefined;
|
|
11180
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11181
|
+
width?: "full" | "half" | undefined;
|
|
11182
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11183
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11180
11184
|
}>, "many">;
|
|
11181
11185
|
}, "strip", z.ZodTypeAny, {
|
|
11182
11186
|
pluginName: string;
|
|
@@ -11187,9 +11191,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11187
11191
|
title: string;
|
|
11188
11192
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11189
11193
|
params?: Record<string, string> | undefined;
|
|
11194
|
+
icon?: string | undefined;
|
|
11190
11195
|
pageId?: string | undefined;
|
|
11191
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11196
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11192
11197
|
width?: "full" | "half" | undefined;
|
|
11198
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11199
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11193
11200
|
}[];
|
|
11194
11201
|
instanceTarget?: {
|
|
11195
11202
|
kind: "global";
|
|
@@ -11206,9 +11213,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11206
11213
|
title: string;
|
|
11207
11214
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11208
11215
|
params?: Record<string, string> | undefined;
|
|
11216
|
+
icon?: string | undefined;
|
|
11209
11217
|
pageId?: string | undefined;
|
|
11210
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11218
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11211
11219
|
width?: "full" | "half" | undefined;
|
|
11220
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11221
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11212
11222
|
}[];
|
|
11213
11223
|
instanceTarget?: {
|
|
11214
11224
|
kind: "global";
|
|
@@ -11245,9 +11255,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11245
11255
|
title: string;
|
|
11246
11256
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11247
11257
|
params?: Record<string, string> | undefined;
|
|
11258
|
+
icon?: string | undefined;
|
|
11248
11259
|
pageId?: string | undefined;
|
|
11249
|
-
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;
|
|
11250
11261
|
width?: "full" | "half" | undefined;
|
|
11262
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11263
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11251
11264
|
}[] | undefined;
|
|
11252
11265
|
ui?: {
|
|
11253
11266
|
dir: string;
|
|
@@ -11286,18 +11299,10 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11286
11299
|
placeholder?: string | undefined;
|
|
11287
11300
|
required?: boolean | undefined;
|
|
11288
11301
|
}[] | undefined;
|
|
11289
|
-
visibleWhen?:
|
|
11290
|
-
setting: string;
|
|
11291
|
-
equals?: unknown;
|
|
11292
|
-
notEquals?: unknown;
|
|
11293
|
-
} | undefined;
|
|
11302
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
11294
11303
|
descriptionWhen?: {
|
|
11295
11304
|
description: string;
|
|
11296
|
-
when:
|
|
11297
|
-
setting: string;
|
|
11298
|
-
equals?: unknown;
|
|
11299
|
-
notEquals?: unknown;
|
|
11300
|
-
};
|
|
11305
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
11301
11306
|
}[] | undefined;
|
|
11302
11307
|
hidden?: boolean | undefined;
|
|
11303
11308
|
}> | undefined;
|
|
@@ -11333,9 +11338,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11333
11338
|
title: string;
|
|
11334
11339
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11335
11340
|
params?: Record<string, string> | undefined;
|
|
11341
|
+
icon?: string | undefined;
|
|
11336
11342
|
pageId?: string | undefined;
|
|
11337
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11343
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11338
11344
|
width?: "full" | "half" | undefined;
|
|
11345
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11346
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11339
11347
|
}[];
|
|
11340
11348
|
instanceTarget?: {
|
|
11341
11349
|
kind: "global";
|
|
@@ -11369,9 +11377,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11369
11377
|
title: string;
|
|
11370
11378
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11371
11379
|
params?: Record<string, string> | undefined;
|
|
11380
|
+
icon?: string | undefined;
|
|
11372
11381
|
pageId?: string | undefined;
|
|
11373
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11382
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11374
11383
|
width?: "full" | "half" | undefined;
|
|
11384
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11385
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11375
11386
|
}[] | undefined;
|
|
11376
11387
|
ui?: {
|
|
11377
11388
|
dir?: string | undefined;
|
|
@@ -11410,18 +11421,10 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11410
11421
|
placeholder?: string | undefined;
|
|
11411
11422
|
required?: boolean | undefined;
|
|
11412
11423
|
}[] | undefined;
|
|
11413
|
-
visibleWhen?:
|
|
11414
|
-
setting: string;
|
|
11415
|
-
equals?: unknown;
|
|
11416
|
-
notEquals?: unknown;
|
|
11417
|
-
} | undefined;
|
|
11424
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
11418
11425
|
descriptionWhen?: {
|
|
11419
11426
|
description: string;
|
|
11420
|
-
when:
|
|
11421
|
-
setting: string;
|
|
11422
|
-
equals?: unknown;
|
|
11423
|
-
notEquals?: unknown;
|
|
11424
|
-
};
|
|
11427
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
11425
11428
|
}[] | undefined;
|
|
11426
11429
|
hidden?: boolean | undefined;
|
|
11427
11430
|
scope?: "operator" | "global" | undefined;
|
|
@@ -11461,9 +11464,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11461
11464
|
title: string;
|
|
11462
11465
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11463
11466
|
params?: Record<string, string> | undefined;
|
|
11467
|
+
icon?: string | undefined;
|
|
11464
11468
|
pageId?: string | undefined;
|
|
11465
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11469
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11466
11470
|
width?: "full" | "half" | undefined;
|
|
11471
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11472
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11467
11473
|
}[];
|
|
11468
11474
|
instanceTarget?: {
|
|
11469
11475
|
kind: "global";
|
|
@@ -11503,9 +11509,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11503
11509
|
title: string;
|
|
11504
11510
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11505
11511
|
params?: Record<string, string> | undefined;
|
|
11512
|
+
icon?: string | undefined;
|
|
11506
11513
|
pageId?: string | undefined;
|
|
11507
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11514
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11508
11515
|
width?: "full" | "half" | undefined;
|
|
11516
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11517
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11509
11518
|
}[] | undefined;
|
|
11510
11519
|
ui?: {
|
|
11511
11520
|
dir: string;
|
|
@@ -11544,18 +11553,10 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11544
11553
|
placeholder?: string | undefined;
|
|
11545
11554
|
required?: boolean | undefined;
|
|
11546
11555
|
}[] | undefined;
|
|
11547
|
-
visibleWhen?:
|
|
11548
|
-
setting: string;
|
|
11549
|
-
equals?: unknown;
|
|
11550
|
-
notEquals?: unknown;
|
|
11551
|
-
} | undefined;
|
|
11556
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
11552
11557
|
descriptionWhen?: {
|
|
11553
11558
|
description: string;
|
|
11554
|
-
when:
|
|
11555
|
-
setting: string;
|
|
11556
|
-
equals?: unknown;
|
|
11557
|
-
notEquals?: unknown;
|
|
11558
|
-
};
|
|
11559
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
11559
11560
|
}[] | undefined;
|
|
11560
11561
|
hidden?: boolean | undefined;
|
|
11561
11562
|
}> | undefined;
|
|
@@ -11591,9 +11592,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11591
11592
|
title: string;
|
|
11592
11593
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11593
11594
|
params?: Record<string, string> | undefined;
|
|
11595
|
+
icon?: string | undefined;
|
|
11594
11596
|
pageId?: string | undefined;
|
|
11595
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11597
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11596
11598
|
width?: "full" | "half" | undefined;
|
|
11599
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11600
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11597
11601
|
}[];
|
|
11598
11602
|
instanceTarget?: {
|
|
11599
11603
|
kind: "global";
|
|
@@ -11632,9 +11636,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11632
11636
|
title: string;
|
|
11633
11637
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11634
11638
|
params?: Record<string, string> | undefined;
|
|
11639
|
+
icon?: string | undefined;
|
|
11635
11640
|
pageId?: string | undefined;
|
|
11636
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11641
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11637
11642
|
width?: "full" | "half" | undefined;
|
|
11643
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11644
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11638
11645
|
}[] | undefined;
|
|
11639
11646
|
ui?: {
|
|
11640
11647
|
dir?: string | undefined;
|
|
@@ -11673,18 +11680,10 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11673
11680
|
placeholder?: string | undefined;
|
|
11674
11681
|
required?: boolean | undefined;
|
|
11675
11682
|
}[] | undefined;
|
|
11676
|
-
visibleWhen?:
|
|
11677
|
-
setting: string;
|
|
11678
|
-
equals?: unknown;
|
|
11679
|
-
notEquals?: unknown;
|
|
11680
|
-
} | undefined;
|
|
11683
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
11681
11684
|
descriptionWhen?: {
|
|
11682
11685
|
description: string;
|
|
11683
|
-
when:
|
|
11684
|
-
setting: string;
|
|
11685
|
-
equals?: unknown;
|
|
11686
|
-
notEquals?: unknown;
|
|
11687
|
-
};
|
|
11686
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
11688
11687
|
}[] | undefined;
|
|
11689
11688
|
hidden?: boolean | undefined;
|
|
11690
11689
|
scope?: "operator" | "global" | undefined;
|
|
@@ -11724,9 +11723,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
11724
11723
|
title: string;
|
|
11725
11724
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11726
11725
|
params?: Record<string, string> | undefined;
|
|
11726
|
+
icon?: string | undefined;
|
|
11727
11727
|
pageId?: string | undefined;
|
|
11728
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11728
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11729
11729
|
width?: "full" | "half" | undefined;
|
|
11730
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11731
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11730
11732
|
}[];
|
|
11731
11733
|
instanceTarget?: {
|
|
11732
11734
|
kind: "global";
|
|
@@ -11811,48 +11813,16 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
11811
11813
|
key: string;
|
|
11812
11814
|
description?: string | undefined;
|
|
11813
11815
|
}>, "many">>;
|
|
11814
|
-
visibleWhen: z.ZodOptional<z.
|
|
11815
|
-
setting: z.ZodString;
|
|
11816
|
-
equals: z.ZodOptional<z.ZodUnknown>;
|
|
11817
|
-
notEquals: z.ZodOptional<z.ZodUnknown>;
|
|
11818
|
-
}, "strip", z.ZodTypeAny, {
|
|
11819
|
-
setting: string;
|
|
11820
|
-
equals?: unknown;
|
|
11821
|
-
notEquals?: unknown;
|
|
11822
|
-
}, {
|
|
11823
|
-
setting: string;
|
|
11824
|
-
equals?: unknown;
|
|
11825
|
-
notEquals?: unknown;
|
|
11826
|
-
}>>;
|
|
11816
|
+
visibleWhen: z.ZodOptional<z.ZodType<import("./plugin.schema.js").PluginSettingCondition, z.ZodTypeDef, import("./plugin.schema.js").PluginSettingCondition>>;
|
|
11827
11817
|
descriptionWhen: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11828
|
-
when: z.
|
|
11829
|
-
setting: z.ZodString;
|
|
11830
|
-
equals: z.ZodOptional<z.ZodUnknown>;
|
|
11831
|
-
notEquals: z.ZodOptional<z.ZodUnknown>;
|
|
11832
|
-
}, "strip", z.ZodTypeAny, {
|
|
11833
|
-
setting: string;
|
|
11834
|
-
equals?: unknown;
|
|
11835
|
-
notEquals?: unknown;
|
|
11836
|
-
}, {
|
|
11837
|
-
setting: string;
|
|
11838
|
-
equals?: unknown;
|
|
11839
|
-
notEquals?: unknown;
|
|
11840
|
-
}>;
|
|
11818
|
+
when: z.ZodType<import("./plugin.schema.js").PluginSettingCondition, z.ZodTypeDef, import("./plugin.schema.js").PluginSettingCondition>;
|
|
11841
11819
|
description: z.ZodString;
|
|
11842
11820
|
}, "strip", z.ZodTypeAny, {
|
|
11843
11821
|
description: string;
|
|
11844
|
-
when:
|
|
11845
|
-
setting: string;
|
|
11846
|
-
equals?: unknown;
|
|
11847
|
-
notEquals?: unknown;
|
|
11848
|
-
};
|
|
11822
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
11849
11823
|
}, {
|
|
11850
11824
|
description: string;
|
|
11851
|
-
when:
|
|
11852
|
-
setting: string;
|
|
11853
|
-
equals?: unknown;
|
|
11854
|
-
notEquals?: unknown;
|
|
11855
|
-
};
|
|
11825
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
11856
11826
|
}>, "many">>;
|
|
11857
11827
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
11858
11828
|
scope: z.ZodDefault<z.ZodOptional<z.ZodEnum<["global", "operator"]>>>;
|
|
@@ -11881,18 +11851,10 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
11881
11851
|
placeholder?: string | undefined;
|
|
11882
11852
|
required?: boolean | undefined;
|
|
11883
11853
|
}[] | undefined;
|
|
11884
|
-
visibleWhen?:
|
|
11885
|
-
setting: string;
|
|
11886
|
-
equals?: unknown;
|
|
11887
|
-
notEquals?: unknown;
|
|
11888
|
-
} | undefined;
|
|
11854
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
11889
11855
|
descriptionWhen?: {
|
|
11890
11856
|
description: string;
|
|
11891
|
-
when:
|
|
11892
|
-
setting: string;
|
|
11893
|
-
equals?: unknown;
|
|
11894
|
-
notEquals?: unknown;
|
|
11895
|
-
};
|
|
11857
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
11896
11858
|
}[] | undefined;
|
|
11897
11859
|
hidden?: boolean | undefined;
|
|
11898
11860
|
}, {
|
|
@@ -11919,18 +11881,10 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
11919
11881
|
placeholder?: string | undefined;
|
|
11920
11882
|
required?: boolean | undefined;
|
|
11921
11883
|
}[] | undefined;
|
|
11922
|
-
visibleWhen?:
|
|
11923
|
-
setting: string;
|
|
11924
|
-
equals?: unknown;
|
|
11925
|
-
notEquals?: unknown;
|
|
11926
|
-
} | undefined;
|
|
11884
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
11927
11885
|
descriptionWhen?: {
|
|
11928
11886
|
description: string;
|
|
11929
|
-
when:
|
|
11930
|
-
setting: string;
|
|
11931
|
-
equals?: unknown;
|
|
11932
|
-
notEquals?: unknown;
|
|
11933
|
-
};
|
|
11887
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
11934
11888
|
}[] | undefined;
|
|
11935
11889
|
hidden?: boolean | undefined;
|
|
11936
11890
|
scope?: "operator" | "global" | undefined;
|
|
@@ -11955,30 +11909,61 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
11955
11909
|
}, {
|
|
11956
11910
|
settingKey: string;
|
|
11957
11911
|
}>, "many">>;
|
|
11958
|
-
panels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11912
|
+
panels: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
11959
11913
|
id: z.ZodString;
|
|
11960
11914
|
title: z.ZodString;
|
|
11961
11915
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
11962
11916
|
pageId: z.ZodOptional<z.ZodString>;
|
|
11963
11917
|
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"]>>;
|
|
11918
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
11965
11919
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
11920
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
11921
|
+
openMode: z.ZodOptional<z.ZodEnum<["popover", "modal"]>>;
|
|
11922
|
+
uiSize: z.ZodOptional<z.ZodEnum<["sm", "md", "lg"]>>;
|
|
11966
11923
|
}, "strip", z.ZodTypeAny, {
|
|
11967
11924
|
id: string;
|
|
11968
11925
|
title: string;
|
|
11969
11926
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11970
11927
|
params?: Record<string, string> | undefined;
|
|
11928
|
+
icon?: string | undefined;
|
|
11971
11929
|
pageId?: string | undefined;
|
|
11972
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11930
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11973
11931
|
width?: "full" | "half" | undefined;
|
|
11932
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11933
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11974
11934
|
}, {
|
|
11975
11935
|
id: string;
|
|
11976
11936
|
title: string;
|
|
11977
11937
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11978
11938
|
params?: Record<string, string> | undefined;
|
|
11939
|
+
icon?: string | undefined;
|
|
11979
11940
|
pageId?: string | undefined;
|
|
11980
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
11941
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11981
11942
|
width?: "full" | "half" | undefined;
|
|
11943
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11944
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11945
|
+
}>, {
|
|
11946
|
+
id: string;
|
|
11947
|
+
title: string;
|
|
11948
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11949
|
+
params?: Record<string, string> | undefined;
|
|
11950
|
+
icon?: string | undefined;
|
|
11951
|
+
pageId?: string | undefined;
|
|
11952
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11953
|
+
width?: "full" | "half" | undefined;
|
|
11954
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11955
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11956
|
+
}, {
|
|
11957
|
+
id: string;
|
|
11958
|
+
title: string;
|
|
11959
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
11960
|
+
params?: Record<string, string> | undefined;
|
|
11961
|
+
icon?: string | undefined;
|
|
11962
|
+
pageId?: string | undefined;
|
|
11963
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
11964
|
+
width?: "full" | "half" | undefined;
|
|
11965
|
+
openMode?: "popover" | "modal" | undefined;
|
|
11966
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
11982
11967
|
}>, "many">>;
|
|
11983
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">>;
|
|
11984
11969
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto_call_candidate", "auto_call_execution"]>, "many">>;
|
|
@@ -12074,9 +12059,12 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12074
12059
|
title: string;
|
|
12075
12060
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
12076
12061
|
params?: Record<string, string> | undefined;
|
|
12062
|
+
icon?: string | undefined;
|
|
12077
12063
|
pageId?: string | undefined;
|
|
12078
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
12064
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12079
12065
|
width?: "full" | "half" | undefined;
|
|
12066
|
+
openMode?: "popover" | "modal" | undefined;
|
|
12067
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
12080
12068
|
}[] | undefined;
|
|
12081
12069
|
ui?: {
|
|
12082
12070
|
dir: string;
|
|
@@ -12115,18 +12103,10 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12115
12103
|
placeholder?: string | undefined;
|
|
12116
12104
|
required?: boolean | undefined;
|
|
12117
12105
|
}[] | undefined;
|
|
12118
|
-
visibleWhen?:
|
|
12119
|
-
setting: string;
|
|
12120
|
-
equals?: unknown;
|
|
12121
|
-
notEquals?: unknown;
|
|
12122
|
-
} | undefined;
|
|
12106
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
12123
12107
|
descriptionWhen?: {
|
|
12124
12108
|
description: string;
|
|
12125
|
-
when:
|
|
12126
|
-
setting: string;
|
|
12127
|
-
equals?: unknown;
|
|
12128
|
-
notEquals?: unknown;
|
|
12129
|
-
};
|
|
12109
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
12130
12110
|
}[] | undefined;
|
|
12131
12111
|
hidden?: boolean | undefined;
|
|
12132
12112
|
}> | undefined;
|
|
@@ -12163,9 +12143,12 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12163
12143
|
title: string;
|
|
12164
12144
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
12165
12145
|
params?: Record<string, string> | undefined;
|
|
12146
|
+
icon?: string | undefined;
|
|
12166
12147
|
pageId?: string | undefined;
|
|
12167
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
12148
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12168
12149
|
width?: "full" | "half" | undefined;
|
|
12150
|
+
openMode?: "popover" | "modal" | undefined;
|
|
12151
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
12169
12152
|
}[] | undefined;
|
|
12170
12153
|
ui?: {
|
|
12171
12154
|
dir?: string | undefined;
|
|
@@ -12204,18 +12187,10 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12204
12187
|
placeholder?: string | undefined;
|
|
12205
12188
|
required?: boolean | undefined;
|
|
12206
12189
|
}[] | undefined;
|
|
12207
|
-
visibleWhen?:
|
|
12208
|
-
setting: string;
|
|
12209
|
-
equals?: unknown;
|
|
12210
|
-
notEquals?: unknown;
|
|
12211
|
-
} | undefined;
|
|
12190
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
12212
12191
|
descriptionWhen?: {
|
|
12213
12192
|
description: string;
|
|
12214
|
-
when:
|
|
12215
|
-
setting: string;
|
|
12216
|
-
equals?: unknown;
|
|
12217
|
-
notEquals?: unknown;
|
|
12218
|
-
};
|
|
12193
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
12219
12194
|
}[] | undefined;
|
|
12220
12195
|
hidden?: boolean | undefined;
|
|
12221
12196
|
scope?: "operator" | "global" | undefined;
|
|
@@ -12261,9 +12236,12 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12261
12236
|
title: string;
|
|
12262
12237
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
12263
12238
|
params?: Record<string, string> | undefined;
|
|
12239
|
+
icon?: string | undefined;
|
|
12264
12240
|
pageId?: string | undefined;
|
|
12265
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
12241
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12266
12242
|
width?: "full" | "half" | undefined;
|
|
12243
|
+
openMode?: "popover" | "modal" | undefined;
|
|
12244
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
12267
12245
|
}[] | undefined;
|
|
12268
12246
|
ui?: {
|
|
12269
12247
|
dir: string;
|
|
@@ -12302,18 +12280,10 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12302
12280
|
placeholder?: string | undefined;
|
|
12303
12281
|
required?: boolean | undefined;
|
|
12304
12282
|
}[] | undefined;
|
|
12305
|
-
visibleWhen?:
|
|
12306
|
-
setting: string;
|
|
12307
|
-
equals?: unknown;
|
|
12308
|
-
notEquals?: unknown;
|
|
12309
|
-
} | undefined;
|
|
12283
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
12310
12284
|
descriptionWhen?: {
|
|
12311
12285
|
description: string;
|
|
12312
|
-
when:
|
|
12313
|
-
setting: string;
|
|
12314
|
-
equals?: unknown;
|
|
12315
|
-
notEquals?: unknown;
|
|
12316
|
-
};
|
|
12286
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
12317
12287
|
}[] | undefined;
|
|
12318
12288
|
hidden?: boolean | undefined;
|
|
12319
12289
|
}> | undefined;
|
|
@@ -12353,9 +12323,12 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12353
12323
|
title: string;
|
|
12354
12324
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
12355
12325
|
params?: Record<string, string> | undefined;
|
|
12326
|
+
icon?: string | undefined;
|
|
12356
12327
|
pageId?: string | undefined;
|
|
12357
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
12328
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12358
12329
|
width?: "full" | "half" | undefined;
|
|
12330
|
+
openMode?: "popover" | "modal" | undefined;
|
|
12331
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
12359
12332
|
}[] | undefined;
|
|
12360
12333
|
ui?: {
|
|
12361
12334
|
dir?: string | undefined;
|
|
@@ -12394,18 +12367,10 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12394
12367
|
placeholder?: string | undefined;
|
|
12395
12368
|
required?: boolean | undefined;
|
|
12396
12369
|
}[] | undefined;
|
|
12397
|
-
visibleWhen?:
|
|
12398
|
-
setting: string;
|
|
12399
|
-
equals?: unknown;
|
|
12400
|
-
notEquals?: unknown;
|
|
12401
|
-
} | undefined;
|
|
12370
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
12402
12371
|
descriptionWhen?: {
|
|
12403
12372
|
description: string;
|
|
12404
|
-
when:
|
|
12405
|
-
setting: string;
|
|
12406
|
-
equals?: unknown;
|
|
12407
|
-
notEquals?: unknown;
|
|
12408
|
-
};
|
|
12373
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
12409
12374
|
}[] | undefined;
|
|
12410
12375
|
hidden?: boolean | undefined;
|
|
12411
12376
|
scope?: "operator" | "global" | undefined;
|
|
@@ -12455,9 +12420,12 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12455
12420
|
title: string;
|
|
12456
12421
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
12457
12422
|
params?: Record<string, string> | undefined;
|
|
12423
|
+
icon?: string | undefined;
|
|
12458
12424
|
pageId?: string | undefined;
|
|
12459
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
12425
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12460
12426
|
width?: "full" | "half" | undefined;
|
|
12427
|
+
openMode?: "popover" | "modal" | undefined;
|
|
12428
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
12461
12429
|
}[] | undefined;
|
|
12462
12430
|
ui?: {
|
|
12463
12431
|
dir: string;
|
|
@@ -12496,18 +12464,10 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12496
12464
|
placeholder?: string | undefined;
|
|
12497
12465
|
required?: boolean | undefined;
|
|
12498
12466
|
}[] | undefined;
|
|
12499
|
-
visibleWhen?:
|
|
12500
|
-
setting: string;
|
|
12501
|
-
equals?: unknown;
|
|
12502
|
-
notEquals?: unknown;
|
|
12503
|
-
} | undefined;
|
|
12467
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
12504
12468
|
descriptionWhen?: {
|
|
12505
12469
|
description: string;
|
|
12506
|
-
when:
|
|
12507
|
-
setting: string;
|
|
12508
|
-
equals?: unknown;
|
|
12509
|
-
notEquals?: unknown;
|
|
12510
|
-
};
|
|
12470
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
12511
12471
|
}[] | undefined;
|
|
12512
12472
|
hidden?: boolean | undefined;
|
|
12513
12473
|
}> | undefined;
|
|
@@ -12552,9 +12512,12 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12552
12512
|
title: string;
|
|
12553
12513
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
12554
12514
|
params?: Record<string, string> | undefined;
|
|
12515
|
+
icon?: string | undefined;
|
|
12555
12516
|
pageId?: string | undefined;
|
|
12556
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
12517
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
12557
12518
|
width?: "full" | "half" | undefined;
|
|
12519
|
+
openMode?: "popover" | "modal" | undefined;
|
|
12520
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
12558
12521
|
}[] | undefined;
|
|
12559
12522
|
ui?: {
|
|
12560
12523
|
dir?: string | undefined;
|
|
@@ -12593,18 +12556,10 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
12593
12556
|
placeholder?: string | undefined;
|
|
12594
12557
|
required?: boolean | undefined;
|
|
12595
12558
|
}[] | undefined;
|
|
12596
|
-
visibleWhen?:
|
|
12597
|
-
setting: string;
|
|
12598
|
-
equals?: unknown;
|
|
12599
|
-
notEquals?: unknown;
|
|
12600
|
-
} | undefined;
|
|
12559
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
12601
12560
|
descriptionWhen?: {
|
|
12602
12561
|
description: string;
|
|
12603
|
-
when:
|
|
12604
|
-
setting: string;
|
|
12605
|
-
equals?: unknown;
|
|
12606
|
-
notEquals?: unknown;
|
|
12607
|
-
};
|
|
12562
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
12608
12563
|
}[] | undefined;
|
|
12609
12564
|
hidden?: boolean | undefined;
|
|
12610
12565
|
scope?: "operator" | "global" | undefined;
|
|
@@ -21275,48 +21230,16 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21275
21230
|
key: string;
|
|
21276
21231
|
description?: string | undefined;
|
|
21277
21232
|
}>, "many">>;
|
|
21278
|
-
visibleWhen: z.ZodOptional<z.
|
|
21279
|
-
setting: z.ZodString;
|
|
21280
|
-
equals: z.ZodOptional<z.ZodUnknown>;
|
|
21281
|
-
notEquals: z.ZodOptional<z.ZodUnknown>;
|
|
21282
|
-
}, "strip", z.ZodTypeAny, {
|
|
21283
|
-
setting: string;
|
|
21284
|
-
equals?: unknown;
|
|
21285
|
-
notEquals?: unknown;
|
|
21286
|
-
}, {
|
|
21287
|
-
setting: string;
|
|
21288
|
-
equals?: unknown;
|
|
21289
|
-
notEquals?: unknown;
|
|
21290
|
-
}>>;
|
|
21233
|
+
visibleWhen: z.ZodOptional<z.ZodType<import("./plugin.schema.js").PluginSettingCondition, z.ZodTypeDef, import("./plugin.schema.js").PluginSettingCondition>>;
|
|
21291
21234
|
descriptionWhen: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21292
|
-
when: z.
|
|
21293
|
-
setting: z.ZodString;
|
|
21294
|
-
equals: z.ZodOptional<z.ZodUnknown>;
|
|
21295
|
-
notEquals: z.ZodOptional<z.ZodUnknown>;
|
|
21296
|
-
}, "strip", z.ZodTypeAny, {
|
|
21297
|
-
setting: string;
|
|
21298
|
-
equals?: unknown;
|
|
21299
|
-
notEquals?: unknown;
|
|
21300
|
-
}, {
|
|
21301
|
-
setting: string;
|
|
21302
|
-
equals?: unknown;
|
|
21303
|
-
notEquals?: unknown;
|
|
21304
|
-
}>;
|
|
21235
|
+
when: z.ZodType<import("./plugin.schema.js").PluginSettingCondition, z.ZodTypeDef, import("./plugin.schema.js").PluginSettingCondition>;
|
|
21305
21236
|
description: z.ZodString;
|
|
21306
21237
|
}, "strip", z.ZodTypeAny, {
|
|
21307
21238
|
description: string;
|
|
21308
|
-
when:
|
|
21309
|
-
setting: string;
|
|
21310
|
-
equals?: unknown;
|
|
21311
|
-
notEquals?: unknown;
|
|
21312
|
-
};
|
|
21239
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
21313
21240
|
}, {
|
|
21314
21241
|
description: string;
|
|
21315
|
-
when:
|
|
21316
|
-
setting: string;
|
|
21317
|
-
equals?: unknown;
|
|
21318
|
-
notEquals?: unknown;
|
|
21319
|
-
};
|
|
21242
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
21320
21243
|
}>, "many">>;
|
|
21321
21244
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
21322
21245
|
scope: z.ZodDefault<z.ZodOptional<z.ZodEnum<["global", "operator"]>>>;
|
|
@@ -21345,18 +21268,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21345
21268
|
placeholder?: string | undefined;
|
|
21346
21269
|
required?: boolean | undefined;
|
|
21347
21270
|
}[] | undefined;
|
|
21348
|
-
visibleWhen?:
|
|
21349
|
-
setting: string;
|
|
21350
|
-
equals?: unknown;
|
|
21351
|
-
notEquals?: unknown;
|
|
21352
|
-
} | undefined;
|
|
21271
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
21353
21272
|
descriptionWhen?: {
|
|
21354
21273
|
description: string;
|
|
21355
|
-
when:
|
|
21356
|
-
setting: string;
|
|
21357
|
-
equals?: unknown;
|
|
21358
|
-
notEquals?: unknown;
|
|
21359
|
-
};
|
|
21274
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
21360
21275
|
}[] | undefined;
|
|
21361
21276
|
hidden?: boolean | undefined;
|
|
21362
21277
|
}, {
|
|
@@ -21383,18 +21298,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21383
21298
|
placeholder?: string | undefined;
|
|
21384
21299
|
required?: boolean | undefined;
|
|
21385
21300
|
}[] | undefined;
|
|
21386
|
-
visibleWhen?:
|
|
21387
|
-
setting: string;
|
|
21388
|
-
equals?: unknown;
|
|
21389
|
-
notEquals?: unknown;
|
|
21390
|
-
} | undefined;
|
|
21301
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
21391
21302
|
descriptionWhen?: {
|
|
21392
21303
|
description: string;
|
|
21393
|
-
when:
|
|
21394
|
-
setting: string;
|
|
21395
|
-
equals?: unknown;
|
|
21396
|
-
notEquals?: unknown;
|
|
21397
|
-
};
|
|
21304
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
21398
21305
|
}[] | undefined;
|
|
21399
21306
|
hidden?: boolean | undefined;
|
|
21400
21307
|
scope?: "operator" | "global" | undefined;
|
|
@@ -21419,30 +21326,61 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21419
21326
|
}, {
|
|
21420
21327
|
settingKey: string;
|
|
21421
21328
|
}>, "many">>;
|
|
21422
|
-
panels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21329
|
+
panels: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
21423
21330
|
id: z.ZodString;
|
|
21424
21331
|
title: z.ZodString;
|
|
21425
21332
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
21426
21333
|
pageId: z.ZodOptional<z.ZodString>;
|
|
21427
21334
|
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"]>>;
|
|
21335
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
21429
21336
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
21337
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
21338
|
+
openMode: z.ZodOptional<z.ZodEnum<["popover", "modal"]>>;
|
|
21339
|
+
uiSize: z.ZodOptional<z.ZodEnum<["sm", "md", "lg"]>>;
|
|
21430
21340
|
}, "strip", z.ZodTypeAny, {
|
|
21431
21341
|
id: string;
|
|
21432
21342
|
title: string;
|
|
21433
21343
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21434
21344
|
params?: Record<string, string> | undefined;
|
|
21345
|
+
icon?: string | undefined;
|
|
21346
|
+
pageId?: string | undefined;
|
|
21347
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21348
|
+
width?: "full" | "half" | undefined;
|
|
21349
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21350
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21351
|
+
}, {
|
|
21352
|
+
id: string;
|
|
21353
|
+
title: string;
|
|
21354
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21355
|
+
params?: Record<string, string> | undefined;
|
|
21356
|
+
icon?: string | undefined;
|
|
21357
|
+
pageId?: string | undefined;
|
|
21358
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21359
|
+
width?: "full" | "half" | undefined;
|
|
21360
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21361
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21362
|
+
}>, {
|
|
21363
|
+
id: string;
|
|
21364
|
+
title: string;
|
|
21365
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21366
|
+
params?: Record<string, string> | undefined;
|
|
21367
|
+
icon?: string | undefined;
|
|
21435
21368
|
pageId?: string | undefined;
|
|
21436
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
21369
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21437
21370
|
width?: "full" | "half" | undefined;
|
|
21371
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21372
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21438
21373
|
}, {
|
|
21439
21374
|
id: string;
|
|
21440
21375
|
title: string;
|
|
21441
21376
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21442
21377
|
params?: Record<string, string> | undefined;
|
|
21378
|
+
icon?: string | undefined;
|
|
21443
21379
|
pageId?: string | undefined;
|
|
21444
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
21380
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21445
21381
|
width?: "full" | "half" | undefined;
|
|
21382
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21383
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21446
21384
|
}>, "many">>;
|
|
21447
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">>;
|
|
21448
21386
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto_call_candidate", "auto_call_execution"]>, "many">>;
|
|
@@ -21538,9 +21476,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21538
21476
|
title: string;
|
|
21539
21477
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21540
21478
|
params?: Record<string, string> | undefined;
|
|
21479
|
+
icon?: string | undefined;
|
|
21541
21480
|
pageId?: string | undefined;
|
|
21542
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
21481
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21543
21482
|
width?: "full" | "half" | undefined;
|
|
21483
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21484
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21544
21485
|
}[] | undefined;
|
|
21545
21486
|
ui?: {
|
|
21546
21487
|
dir: string;
|
|
@@ -21579,18 +21520,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21579
21520
|
placeholder?: string | undefined;
|
|
21580
21521
|
required?: boolean | undefined;
|
|
21581
21522
|
}[] | undefined;
|
|
21582
|
-
visibleWhen?:
|
|
21583
|
-
setting: string;
|
|
21584
|
-
equals?: unknown;
|
|
21585
|
-
notEquals?: unknown;
|
|
21586
|
-
} | undefined;
|
|
21523
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
21587
21524
|
descriptionWhen?: {
|
|
21588
21525
|
description: string;
|
|
21589
|
-
when:
|
|
21590
|
-
setting: string;
|
|
21591
|
-
equals?: unknown;
|
|
21592
|
-
notEquals?: unknown;
|
|
21593
|
-
};
|
|
21526
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
21594
21527
|
}[] | undefined;
|
|
21595
21528
|
hidden?: boolean | undefined;
|
|
21596
21529
|
}> | undefined;
|
|
@@ -21627,9 +21560,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21627
21560
|
title: string;
|
|
21628
21561
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21629
21562
|
params?: Record<string, string> | undefined;
|
|
21563
|
+
icon?: string | undefined;
|
|
21630
21564
|
pageId?: string | undefined;
|
|
21631
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
21565
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21632
21566
|
width?: "full" | "half" | undefined;
|
|
21567
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21568
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21633
21569
|
}[] | undefined;
|
|
21634
21570
|
ui?: {
|
|
21635
21571
|
dir?: string | undefined;
|
|
@@ -21668,18 +21604,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21668
21604
|
placeholder?: string | undefined;
|
|
21669
21605
|
required?: boolean | undefined;
|
|
21670
21606
|
}[] | undefined;
|
|
21671
|
-
visibleWhen?:
|
|
21672
|
-
setting: string;
|
|
21673
|
-
equals?: unknown;
|
|
21674
|
-
notEquals?: unknown;
|
|
21675
|
-
} | undefined;
|
|
21607
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
21676
21608
|
descriptionWhen?: {
|
|
21677
21609
|
description: string;
|
|
21678
|
-
when:
|
|
21679
|
-
setting: string;
|
|
21680
|
-
equals?: unknown;
|
|
21681
|
-
notEquals?: unknown;
|
|
21682
|
-
};
|
|
21610
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
21683
21611
|
}[] | undefined;
|
|
21684
21612
|
hidden?: boolean | undefined;
|
|
21685
21613
|
scope?: "operator" | "global" | undefined;
|
|
@@ -21755,30 +21683,61 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21755
21683
|
operatorId: string;
|
|
21756
21684
|
kind: "operator";
|
|
21757
21685
|
}>]>>;
|
|
21758
|
-
panels: z.ZodArray<z.ZodObject<{
|
|
21686
|
+
panels: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
21759
21687
|
id: z.ZodString;
|
|
21760
21688
|
title: z.ZodString;
|
|
21761
21689
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
21762
21690
|
pageId: z.ZodOptional<z.ZodString>;
|
|
21763
21691
|
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"]>>;
|
|
21692
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
21765
21693
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
21694
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
21695
|
+
openMode: z.ZodOptional<z.ZodEnum<["popover", "modal"]>>;
|
|
21696
|
+
uiSize: z.ZodOptional<z.ZodEnum<["sm", "md", "lg"]>>;
|
|
21766
21697
|
}, "strip", z.ZodTypeAny, {
|
|
21767
21698
|
id: string;
|
|
21768
21699
|
title: string;
|
|
21769
21700
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21770
21701
|
params?: Record<string, string> | undefined;
|
|
21702
|
+
icon?: string | undefined;
|
|
21771
21703
|
pageId?: string | undefined;
|
|
21772
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
21704
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21773
21705
|
width?: "full" | "half" | undefined;
|
|
21706
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21707
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21774
21708
|
}, {
|
|
21775
21709
|
id: string;
|
|
21776
21710
|
title: string;
|
|
21777
21711
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21778
21712
|
params?: Record<string, string> | undefined;
|
|
21713
|
+
icon?: string | undefined;
|
|
21779
21714
|
pageId?: string | undefined;
|
|
21780
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
21715
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21781
21716
|
width?: "full" | "half" | undefined;
|
|
21717
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21718
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21719
|
+
}>, {
|
|
21720
|
+
id: string;
|
|
21721
|
+
title: string;
|
|
21722
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21723
|
+
params?: Record<string, string> | undefined;
|
|
21724
|
+
icon?: string | undefined;
|
|
21725
|
+
pageId?: string | undefined;
|
|
21726
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21727
|
+
width?: "full" | "half" | undefined;
|
|
21728
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21729
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21730
|
+
}, {
|
|
21731
|
+
id: string;
|
|
21732
|
+
title: string;
|
|
21733
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21734
|
+
params?: Record<string, string> | undefined;
|
|
21735
|
+
icon?: string | undefined;
|
|
21736
|
+
pageId?: string | undefined;
|
|
21737
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21738
|
+
width?: "full" | "half" | undefined;
|
|
21739
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21740
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21782
21741
|
}>, "many">;
|
|
21783
21742
|
}, "strip", z.ZodTypeAny, {
|
|
21784
21743
|
pluginName: string;
|
|
@@ -21789,9 +21748,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21789
21748
|
title: string;
|
|
21790
21749
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21791
21750
|
params?: Record<string, string> | undefined;
|
|
21751
|
+
icon?: string | undefined;
|
|
21792
21752
|
pageId?: string | undefined;
|
|
21793
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
21753
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21794
21754
|
width?: "full" | "half" | undefined;
|
|
21755
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21756
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21795
21757
|
}[];
|
|
21796
21758
|
instanceTarget?: {
|
|
21797
21759
|
kind: "global";
|
|
@@ -21808,9 +21770,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21808
21770
|
title: string;
|
|
21809
21771
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21810
21772
|
params?: Record<string, string> | undefined;
|
|
21773
|
+
icon?: string | undefined;
|
|
21811
21774
|
pageId?: string | undefined;
|
|
21812
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
21775
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21813
21776
|
width?: "full" | "half" | undefined;
|
|
21777
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21778
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21814
21779
|
}[];
|
|
21815
21780
|
instanceTarget?: {
|
|
21816
21781
|
kind: "global";
|
|
@@ -21847,9 +21812,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21847
21812
|
title: string;
|
|
21848
21813
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21849
21814
|
params?: Record<string, string> | undefined;
|
|
21815
|
+
icon?: string | undefined;
|
|
21850
21816
|
pageId?: string | undefined;
|
|
21851
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
21817
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21852
21818
|
width?: "full" | "half" | undefined;
|
|
21819
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21820
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21853
21821
|
}[] | undefined;
|
|
21854
21822
|
ui?: {
|
|
21855
21823
|
dir: string;
|
|
@@ -21888,18 +21856,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21888
21856
|
placeholder?: string | undefined;
|
|
21889
21857
|
required?: boolean | undefined;
|
|
21890
21858
|
}[] | undefined;
|
|
21891
|
-
visibleWhen?:
|
|
21892
|
-
setting: string;
|
|
21893
|
-
equals?: unknown;
|
|
21894
|
-
notEquals?: unknown;
|
|
21895
|
-
} | undefined;
|
|
21859
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
21896
21860
|
descriptionWhen?: {
|
|
21897
21861
|
description: string;
|
|
21898
|
-
when:
|
|
21899
|
-
setting: string;
|
|
21900
|
-
equals?: unknown;
|
|
21901
|
-
notEquals?: unknown;
|
|
21902
|
-
};
|
|
21862
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
21903
21863
|
}[] | undefined;
|
|
21904
21864
|
hidden?: boolean | undefined;
|
|
21905
21865
|
}> | undefined;
|
|
@@ -21935,9 +21895,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21935
21895
|
title: string;
|
|
21936
21896
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21937
21897
|
params?: Record<string, string> | undefined;
|
|
21898
|
+
icon?: string | undefined;
|
|
21938
21899
|
pageId?: string | undefined;
|
|
21939
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
21900
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21940
21901
|
width?: "full" | "half" | undefined;
|
|
21902
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21903
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21941
21904
|
}[];
|
|
21942
21905
|
instanceTarget?: {
|
|
21943
21906
|
kind: "global";
|
|
@@ -21971,9 +21934,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
21971
21934
|
title: string;
|
|
21972
21935
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
21973
21936
|
params?: Record<string, string> | undefined;
|
|
21937
|
+
icon?: string | undefined;
|
|
21974
21938
|
pageId?: string | undefined;
|
|
21975
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
21939
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
21976
21940
|
width?: "full" | "half" | undefined;
|
|
21941
|
+
openMode?: "popover" | "modal" | undefined;
|
|
21942
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
21977
21943
|
}[] | undefined;
|
|
21978
21944
|
ui?: {
|
|
21979
21945
|
dir?: string | undefined;
|
|
@@ -22012,18 +21978,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22012
21978
|
placeholder?: string | undefined;
|
|
22013
21979
|
required?: boolean | undefined;
|
|
22014
21980
|
}[] | undefined;
|
|
22015
|
-
visibleWhen?:
|
|
22016
|
-
setting: string;
|
|
22017
|
-
equals?: unknown;
|
|
22018
|
-
notEquals?: unknown;
|
|
22019
|
-
} | undefined;
|
|
21981
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
22020
21982
|
descriptionWhen?: {
|
|
22021
21983
|
description: string;
|
|
22022
|
-
when:
|
|
22023
|
-
setting: string;
|
|
22024
|
-
equals?: unknown;
|
|
22025
|
-
notEquals?: unknown;
|
|
22026
|
-
};
|
|
21984
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
22027
21985
|
}[] | undefined;
|
|
22028
21986
|
hidden?: boolean | undefined;
|
|
22029
21987
|
scope?: "operator" | "global" | undefined;
|
|
@@ -22063,9 +22021,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22063
22021
|
title: string;
|
|
22064
22022
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22065
22023
|
params?: Record<string, string> | undefined;
|
|
22024
|
+
icon?: string | undefined;
|
|
22066
22025
|
pageId?: string | undefined;
|
|
22067
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22026
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22068
22027
|
width?: "full" | "half" | undefined;
|
|
22028
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22029
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22069
22030
|
}[];
|
|
22070
22031
|
instanceTarget?: {
|
|
22071
22032
|
kind: "global";
|
|
@@ -22105,9 +22066,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22105
22066
|
title: string;
|
|
22106
22067
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22107
22068
|
params?: Record<string, string> | undefined;
|
|
22069
|
+
icon?: string | undefined;
|
|
22108
22070
|
pageId?: string | undefined;
|
|
22109
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22071
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22110
22072
|
width?: "full" | "half" | undefined;
|
|
22073
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22074
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22111
22075
|
}[] | undefined;
|
|
22112
22076
|
ui?: {
|
|
22113
22077
|
dir: string;
|
|
@@ -22146,18 +22110,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22146
22110
|
placeholder?: string | undefined;
|
|
22147
22111
|
required?: boolean | undefined;
|
|
22148
22112
|
}[] | undefined;
|
|
22149
|
-
visibleWhen?:
|
|
22150
|
-
setting: string;
|
|
22151
|
-
equals?: unknown;
|
|
22152
|
-
notEquals?: unknown;
|
|
22153
|
-
} | undefined;
|
|
22113
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
22154
22114
|
descriptionWhen?: {
|
|
22155
22115
|
description: string;
|
|
22156
|
-
when:
|
|
22157
|
-
setting: string;
|
|
22158
|
-
equals?: unknown;
|
|
22159
|
-
notEquals?: unknown;
|
|
22160
|
-
};
|
|
22116
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
22161
22117
|
}[] | undefined;
|
|
22162
22118
|
hidden?: boolean | undefined;
|
|
22163
22119
|
}> | undefined;
|
|
@@ -22193,9 +22149,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22193
22149
|
title: string;
|
|
22194
22150
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22195
22151
|
params?: Record<string, string> | undefined;
|
|
22152
|
+
icon?: string | undefined;
|
|
22196
22153
|
pageId?: string | undefined;
|
|
22197
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22154
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22198
22155
|
width?: "full" | "half" | undefined;
|
|
22156
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22157
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22199
22158
|
}[];
|
|
22200
22159
|
instanceTarget?: {
|
|
22201
22160
|
kind: "global";
|
|
@@ -22234,9 +22193,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22234
22193
|
title: string;
|
|
22235
22194
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22236
22195
|
params?: Record<string, string> | undefined;
|
|
22196
|
+
icon?: string | undefined;
|
|
22237
22197
|
pageId?: string | undefined;
|
|
22238
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22198
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22239
22199
|
width?: "full" | "half" | undefined;
|
|
22200
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22201
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22240
22202
|
}[] | undefined;
|
|
22241
22203
|
ui?: {
|
|
22242
22204
|
dir?: string | undefined;
|
|
@@ -22275,18 +22237,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22275
22237
|
placeholder?: string | undefined;
|
|
22276
22238
|
required?: boolean | undefined;
|
|
22277
22239
|
}[] | undefined;
|
|
22278
|
-
visibleWhen?:
|
|
22279
|
-
setting: string;
|
|
22280
|
-
equals?: unknown;
|
|
22281
|
-
notEquals?: unknown;
|
|
22282
|
-
} | undefined;
|
|
22240
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
22283
22241
|
descriptionWhen?: {
|
|
22284
22242
|
description: string;
|
|
22285
|
-
when:
|
|
22286
|
-
setting: string;
|
|
22287
|
-
equals?: unknown;
|
|
22288
|
-
notEquals?: unknown;
|
|
22289
|
-
};
|
|
22243
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
22290
22244
|
}[] | undefined;
|
|
22291
22245
|
hidden?: boolean | undefined;
|
|
22292
22246
|
scope?: "operator" | "global" | undefined;
|
|
@@ -22326,9 +22280,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22326
22280
|
title: string;
|
|
22327
22281
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22328
22282
|
params?: Record<string, string> | undefined;
|
|
22283
|
+
icon?: string | undefined;
|
|
22329
22284
|
pageId?: string | undefined;
|
|
22330
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22285
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22331
22286
|
width?: "full" | "half" | undefined;
|
|
22287
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22288
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22332
22289
|
}[];
|
|
22333
22290
|
instanceTarget?: {
|
|
22334
22291
|
kind: "global";
|
|
@@ -22411,48 +22368,16 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22411
22368
|
key: string;
|
|
22412
22369
|
description?: string | undefined;
|
|
22413
22370
|
}>, "many">>;
|
|
22414
|
-
visibleWhen: z.ZodOptional<z.
|
|
22415
|
-
setting: z.ZodString;
|
|
22416
|
-
equals: z.ZodOptional<z.ZodUnknown>;
|
|
22417
|
-
notEquals: z.ZodOptional<z.ZodUnknown>;
|
|
22418
|
-
}, "strip", z.ZodTypeAny, {
|
|
22419
|
-
setting: string;
|
|
22420
|
-
equals?: unknown;
|
|
22421
|
-
notEquals?: unknown;
|
|
22422
|
-
}, {
|
|
22423
|
-
setting: string;
|
|
22424
|
-
equals?: unknown;
|
|
22425
|
-
notEquals?: unknown;
|
|
22426
|
-
}>>;
|
|
22371
|
+
visibleWhen: z.ZodOptional<z.ZodType<import("./plugin.schema.js").PluginSettingCondition, z.ZodTypeDef, import("./plugin.schema.js").PluginSettingCondition>>;
|
|
22427
22372
|
descriptionWhen: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22428
|
-
when: z.
|
|
22429
|
-
setting: z.ZodString;
|
|
22430
|
-
equals: z.ZodOptional<z.ZodUnknown>;
|
|
22431
|
-
notEquals: z.ZodOptional<z.ZodUnknown>;
|
|
22432
|
-
}, "strip", z.ZodTypeAny, {
|
|
22433
|
-
setting: string;
|
|
22434
|
-
equals?: unknown;
|
|
22435
|
-
notEquals?: unknown;
|
|
22436
|
-
}, {
|
|
22437
|
-
setting: string;
|
|
22438
|
-
equals?: unknown;
|
|
22439
|
-
notEquals?: unknown;
|
|
22440
|
-
}>;
|
|
22373
|
+
when: z.ZodType<import("./plugin.schema.js").PluginSettingCondition, z.ZodTypeDef, import("./plugin.schema.js").PluginSettingCondition>;
|
|
22441
22374
|
description: z.ZodString;
|
|
22442
22375
|
}, "strip", z.ZodTypeAny, {
|
|
22443
22376
|
description: string;
|
|
22444
|
-
when:
|
|
22445
|
-
setting: string;
|
|
22446
|
-
equals?: unknown;
|
|
22447
|
-
notEquals?: unknown;
|
|
22448
|
-
};
|
|
22377
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
22449
22378
|
}, {
|
|
22450
22379
|
description: string;
|
|
22451
|
-
when:
|
|
22452
|
-
setting: string;
|
|
22453
|
-
equals?: unknown;
|
|
22454
|
-
notEquals?: unknown;
|
|
22455
|
-
};
|
|
22380
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
22456
22381
|
}>, "many">>;
|
|
22457
22382
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
22458
22383
|
scope: z.ZodDefault<z.ZodOptional<z.ZodEnum<["global", "operator"]>>>;
|
|
@@ -22481,18 +22406,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22481
22406
|
placeholder?: string | undefined;
|
|
22482
22407
|
required?: boolean | undefined;
|
|
22483
22408
|
}[] | undefined;
|
|
22484
|
-
visibleWhen?:
|
|
22485
|
-
setting: string;
|
|
22486
|
-
equals?: unknown;
|
|
22487
|
-
notEquals?: unknown;
|
|
22488
|
-
} | undefined;
|
|
22409
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
22489
22410
|
descriptionWhen?: {
|
|
22490
22411
|
description: string;
|
|
22491
|
-
when:
|
|
22492
|
-
setting: string;
|
|
22493
|
-
equals?: unknown;
|
|
22494
|
-
notEquals?: unknown;
|
|
22495
|
-
};
|
|
22412
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
22496
22413
|
}[] | undefined;
|
|
22497
22414
|
hidden?: boolean | undefined;
|
|
22498
22415
|
}, {
|
|
@@ -22519,18 +22436,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22519
22436
|
placeholder?: string | undefined;
|
|
22520
22437
|
required?: boolean | undefined;
|
|
22521
22438
|
}[] | undefined;
|
|
22522
|
-
visibleWhen?:
|
|
22523
|
-
setting: string;
|
|
22524
|
-
equals?: unknown;
|
|
22525
|
-
notEquals?: unknown;
|
|
22526
|
-
} | undefined;
|
|
22439
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
22527
22440
|
descriptionWhen?: {
|
|
22528
22441
|
description: string;
|
|
22529
|
-
when:
|
|
22530
|
-
setting: string;
|
|
22531
|
-
equals?: unknown;
|
|
22532
|
-
notEquals?: unknown;
|
|
22533
|
-
};
|
|
22442
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
22534
22443
|
}[] | undefined;
|
|
22535
22444
|
hidden?: boolean | undefined;
|
|
22536
22445
|
scope?: "operator" | "global" | undefined;
|
|
@@ -22555,30 +22464,61 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22555
22464
|
}, {
|
|
22556
22465
|
settingKey: string;
|
|
22557
22466
|
}>, "many">>;
|
|
22558
|
-
panels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22467
|
+
panels: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
22559
22468
|
id: z.ZodString;
|
|
22560
22469
|
title: z.ZodString;
|
|
22561
22470
|
component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
|
|
22562
22471
|
pageId: z.ZodOptional<z.ZodString>;
|
|
22563
22472
|
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"]>>;
|
|
22473
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
22565
22474
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
22475
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
22476
|
+
openMode: z.ZodOptional<z.ZodEnum<["popover", "modal"]>>;
|
|
22477
|
+
uiSize: z.ZodOptional<z.ZodEnum<["sm", "md", "lg"]>>;
|
|
22566
22478
|
}, "strip", z.ZodTypeAny, {
|
|
22567
22479
|
id: string;
|
|
22568
22480
|
title: string;
|
|
22569
22481
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22570
22482
|
params?: Record<string, string> | undefined;
|
|
22483
|
+
icon?: string | undefined;
|
|
22571
22484
|
pageId?: string | undefined;
|
|
22572
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22485
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22573
22486
|
width?: "full" | "half" | undefined;
|
|
22487
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22488
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22574
22489
|
}, {
|
|
22575
22490
|
id: string;
|
|
22576
22491
|
title: string;
|
|
22577
22492
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22578
22493
|
params?: Record<string, string> | undefined;
|
|
22494
|
+
icon?: string | undefined;
|
|
22579
22495
|
pageId?: string | undefined;
|
|
22580
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22496
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22581
22497
|
width?: "full" | "half" | undefined;
|
|
22498
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22499
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22500
|
+
}>, {
|
|
22501
|
+
id: string;
|
|
22502
|
+
title: string;
|
|
22503
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22504
|
+
params?: Record<string, string> | undefined;
|
|
22505
|
+
icon?: string | undefined;
|
|
22506
|
+
pageId?: string | undefined;
|
|
22507
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22508
|
+
width?: "full" | "half" | undefined;
|
|
22509
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22510
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22511
|
+
}, {
|
|
22512
|
+
id: string;
|
|
22513
|
+
title: string;
|
|
22514
|
+
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22515
|
+
params?: Record<string, string> | undefined;
|
|
22516
|
+
icon?: string | undefined;
|
|
22517
|
+
pageId?: string | undefined;
|
|
22518
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22519
|
+
width?: "full" | "half" | undefined;
|
|
22520
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22521
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22582
22522
|
}>, "many">>;
|
|
22583
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">>;
|
|
22584
22524
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto_call_candidate", "auto_call_execution"]>, "many">>;
|
|
@@ -22674,9 +22614,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22674
22614
|
title: string;
|
|
22675
22615
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22676
22616
|
params?: Record<string, string> | undefined;
|
|
22617
|
+
icon?: string | undefined;
|
|
22677
22618
|
pageId?: string | undefined;
|
|
22678
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22619
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22679
22620
|
width?: "full" | "half" | undefined;
|
|
22621
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22622
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22680
22623
|
}[] | undefined;
|
|
22681
22624
|
ui?: {
|
|
22682
22625
|
dir: string;
|
|
@@ -22715,18 +22658,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22715
22658
|
placeholder?: string | undefined;
|
|
22716
22659
|
required?: boolean | undefined;
|
|
22717
22660
|
}[] | undefined;
|
|
22718
|
-
visibleWhen?:
|
|
22719
|
-
setting: string;
|
|
22720
|
-
equals?: unknown;
|
|
22721
|
-
notEquals?: unknown;
|
|
22722
|
-
} | undefined;
|
|
22661
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
22723
22662
|
descriptionWhen?: {
|
|
22724
22663
|
description: string;
|
|
22725
|
-
when:
|
|
22726
|
-
setting: string;
|
|
22727
|
-
equals?: unknown;
|
|
22728
|
-
notEquals?: unknown;
|
|
22729
|
-
};
|
|
22664
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
22730
22665
|
}[] | undefined;
|
|
22731
22666
|
hidden?: boolean | undefined;
|
|
22732
22667
|
}> | undefined;
|
|
@@ -22763,9 +22698,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22763
22698
|
title: string;
|
|
22764
22699
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22765
22700
|
params?: Record<string, string> | undefined;
|
|
22701
|
+
icon?: string | undefined;
|
|
22766
22702
|
pageId?: string | undefined;
|
|
22767
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22703
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22768
22704
|
width?: "full" | "half" | undefined;
|
|
22705
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22706
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22769
22707
|
}[] | undefined;
|
|
22770
22708
|
ui?: {
|
|
22771
22709
|
dir?: string | undefined;
|
|
@@ -22804,18 +22742,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22804
22742
|
placeholder?: string | undefined;
|
|
22805
22743
|
required?: boolean | undefined;
|
|
22806
22744
|
}[] | undefined;
|
|
22807
|
-
visibleWhen?:
|
|
22808
|
-
setting: string;
|
|
22809
|
-
equals?: unknown;
|
|
22810
|
-
notEquals?: unknown;
|
|
22811
|
-
} | undefined;
|
|
22745
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
22812
22746
|
descriptionWhen?: {
|
|
22813
22747
|
description: string;
|
|
22814
|
-
when:
|
|
22815
|
-
setting: string;
|
|
22816
|
-
equals?: unknown;
|
|
22817
|
-
notEquals?: unknown;
|
|
22818
|
-
};
|
|
22748
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
22819
22749
|
}[] | undefined;
|
|
22820
22750
|
hidden?: boolean | undefined;
|
|
22821
22751
|
scope?: "operator" | "global" | undefined;
|
|
@@ -22861,9 +22791,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22861
22791
|
title: string;
|
|
22862
22792
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22863
22793
|
params?: Record<string, string> | undefined;
|
|
22794
|
+
icon?: string | undefined;
|
|
22864
22795
|
pageId?: string | undefined;
|
|
22865
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22796
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22866
22797
|
width?: "full" | "half" | undefined;
|
|
22798
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22799
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22867
22800
|
}[] | undefined;
|
|
22868
22801
|
ui?: {
|
|
22869
22802
|
dir: string;
|
|
@@ -22902,18 +22835,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22902
22835
|
placeholder?: string | undefined;
|
|
22903
22836
|
required?: boolean | undefined;
|
|
22904
22837
|
}[] | undefined;
|
|
22905
|
-
visibleWhen?:
|
|
22906
|
-
setting: string;
|
|
22907
|
-
equals?: unknown;
|
|
22908
|
-
notEquals?: unknown;
|
|
22909
|
-
} | undefined;
|
|
22838
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
22910
22839
|
descriptionWhen?: {
|
|
22911
22840
|
description: string;
|
|
22912
|
-
when:
|
|
22913
|
-
setting: string;
|
|
22914
|
-
equals?: unknown;
|
|
22915
|
-
notEquals?: unknown;
|
|
22916
|
-
};
|
|
22841
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
22917
22842
|
}[] | undefined;
|
|
22918
22843
|
hidden?: boolean | undefined;
|
|
22919
22844
|
}> | undefined;
|
|
@@ -22953,9 +22878,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22953
22878
|
title: string;
|
|
22954
22879
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
22955
22880
|
params?: Record<string, string> | undefined;
|
|
22881
|
+
icon?: string | undefined;
|
|
22956
22882
|
pageId?: string | undefined;
|
|
22957
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22883
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
22958
22884
|
width?: "full" | "half" | undefined;
|
|
22885
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22886
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
22959
22887
|
}[] | undefined;
|
|
22960
22888
|
ui?: {
|
|
22961
22889
|
dir?: string | undefined;
|
|
@@ -22994,18 +22922,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
22994
22922
|
placeholder?: string | undefined;
|
|
22995
22923
|
required?: boolean | undefined;
|
|
22996
22924
|
}[] | undefined;
|
|
22997
|
-
visibleWhen?:
|
|
22998
|
-
setting: string;
|
|
22999
|
-
equals?: unknown;
|
|
23000
|
-
notEquals?: unknown;
|
|
23001
|
-
} | undefined;
|
|
22925
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
23002
22926
|
descriptionWhen?: {
|
|
23003
22927
|
description: string;
|
|
23004
|
-
when:
|
|
23005
|
-
setting: string;
|
|
23006
|
-
equals?: unknown;
|
|
23007
|
-
notEquals?: unknown;
|
|
23008
|
-
};
|
|
22928
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
23009
22929
|
}[] | undefined;
|
|
23010
22930
|
hidden?: boolean | undefined;
|
|
23011
22931
|
scope?: "operator" | "global" | undefined;
|
|
@@ -23055,9 +22975,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
23055
22975
|
title: string;
|
|
23056
22976
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
23057
22977
|
params?: Record<string, string> | undefined;
|
|
22978
|
+
icon?: string | undefined;
|
|
23058
22979
|
pageId?: string | undefined;
|
|
23059
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
22980
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
23060
22981
|
width?: "full" | "half" | undefined;
|
|
22982
|
+
openMode?: "popover" | "modal" | undefined;
|
|
22983
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
23061
22984
|
}[] | undefined;
|
|
23062
22985
|
ui?: {
|
|
23063
22986
|
dir: string;
|
|
@@ -23096,18 +23019,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
23096
23019
|
placeholder?: string | undefined;
|
|
23097
23020
|
required?: boolean | undefined;
|
|
23098
23021
|
}[] | undefined;
|
|
23099
|
-
visibleWhen?:
|
|
23100
|
-
setting: string;
|
|
23101
|
-
equals?: unknown;
|
|
23102
|
-
notEquals?: unknown;
|
|
23103
|
-
} | undefined;
|
|
23022
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
23104
23023
|
descriptionWhen?: {
|
|
23105
23024
|
description: string;
|
|
23106
|
-
when:
|
|
23107
|
-
setting: string;
|
|
23108
|
-
equals?: unknown;
|
|
23109
|
-
notEquals?: unknown;
|
|
23110
|
-
};
|
|
23025
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
23111
23026
|
}[] | undefined;
|
|
23112
23027
|
hidden?: boolean | undefined;
|
|
23113
23028
|
}> | undefined;
|
|
@@ -23152,9 +23067,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
23152
23067
|
title: string;
|
|
23153
23068
|
component: "table" | "key-value" | "chart" | "log" | "iframe";
|
|
23154
23069
|
params?: Record<string, string> | undefined;
|
|
23070
|
+
icon?: string | undefined;
|
|
23155
23071
|
pageId?: string | undefined;
|
|
23156
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | undefined;
|
|
23072
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
23157
23073
|
width?: "full" | "half" | undefined;
|
|
23074
|
+
openMode?: "popover" | "modal" | undefined;
|
|
23075
|
+
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
23158
23076
|
}[] | undefined;
|
|
23159
23077
|
ui?: {
|
|
23160
23078
|
dir?: string | undefined;
|
|
@@ -23193,18 +23111,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
23193
23111
|
placeholder?: string | undefined;
|
|
23194
23112
|
required?: boolean | undefined;
|
|
23195
23113
|
}[] | undefined;
|
|
23196
|
-
visibleWhen?:
|
|
23197
|
-
setting: string;
|
|
23198
|
-
equals?: unknown;
|
|
23199
|
-
notEquals?: unknown;
|
|
23200
|
-
} | undefined;
|
|
23114
|
+
visibleWhen?: import("./plugin.schema.js").PluginSettingCondition | undefined;
|
|
23201
23115
|
descriptionWhen?: {
|
|
23202
23116
|
description: string;
|
|
23203
|
-
when:
|
|
23204
|
-
setting: string;
|
|
23205
|
-
equals?: unknown;
|
|
23206
|
-
notEquals?: unknown;
|
|
23207
|
-
};
|
|
23117
|
+
when: import("./plugin.schema.js").PluginSettingCondition;
|
|
23208
23118
|
}[] | undefined;
|
|
23209
23119
|
hidden?: boolean | undefined;
|
|
23210
23120
|
scope?: "operator" | "global" | undefined;
|