@tx5dr/contracts 1.4.0 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/dist/schema/__tests__/radio-power-support.test.d.ts +2 -0
  2. package/dist/schema/__tests__/radio-power-support.test.d.ts.map +1 -0
  3. package/dist/schema/__tests__/radio-power-support.test.js +19 -0
  4. package/dist/schema/__tests__/radio-power-support.test.js.map +1 -0
  5. package/dist/schema/__tests__/realtime-settings.schema.test.d.ts +2 -0
  6. package/dist/schema/__tests__/realtime-settings.schema.test.d.ts.map +1 -0
  7. package/dist/schema/__tests__/realtime-settings.schema.test.js +122 -0
  8. package/dist/schema/__tests__/realtime-settings.schema.test.js.map +1 -0
  9. package/dist/schema/cpu-profile.schema.d.ts +4 -4
  10. package/dist/schema/desktop-https.schema.d.ts +9 -0
  11. package/dist/schema/desktop-https.schema.d.ts.map +1 -1
  12. package/dist/schema/desktop-https.schema.js +3 -0
  13. package/dist/schema/desktop-https.schema.js.map +1 -1
  14. package/dist/schema/openwebrx.schema.d.ts +1 -1
  15. package/dist/schema/openwebrx.schema.d.ts.map +1 -1
  16. package/dist/schema/openwebrx.schema.js +1 -1
  17. package/dist/schema/openwebrx.schema.js.map +1 -1
  18. package/dist/schema/operator.schema.d.ts +32 -32
  19. package/dist/schema/plugin.schema.d.ts +702 -168
  20. package/dist/schema/plugin.schema.d.ts.map +1 -1
  21. package/dist/schema/plugin.schema.js +38 -3
  22. package/dist/schema/plugin.schema.js.map +1 -1
  23. package/dist/schema/radio-capability.schema.d.ts +42 -2
  24. package/dist/schema/radio-capability.schema.d.ts.map +1 -1
  25. package/dist/schema/radio-capability.schema.js +18 -1
  26. package/dist/schema/radio-capability.schema.js.map +1 -1
  27. package/dist/schema/radio-power-support.d.ts +8 -0
  28. package/dist/schema/radio-power-support.d.ts.map +1 -1
  29. package/dist/schema/radio-power-support.js +38 -26
  30. package/dist/schema/radio-power-support.js.map +1 -1
  31. package/dist/schema/radio-power.schema.d.ts +10 -6
  32. package/dist/schema/radio-power.schema.d.ts.map +1 -1
  33. package/dist/schema/radio-power.schema.js +8 -6
  34. package/dist/schema/radio-power.schema.js.map +1 -1
  35. package/dist/schema/realtime.schema.d.ts +797 -417
  36. package/dist/schema/realtime.schema.d.ts.map +1 -1
  37. package/dist/schema/realtime.schema.js +205 -51
  38. package/dist/schema/realtime.schema.js.map +1 -1
  39. package/dist/schema/server-message-keys.d.ts +2 -2
  40. package/dist/schema/server-message-keys.d.ts.map +1 -1
  41. package/dist/schema/server-message-keys.js +2 -2
  42. package/dist/schema/server-message-keys.js.map +1 -1
  43. package/dist/schema/slot-info.schema.d.ts +6 -0
  44. package/dist/schema/slot-info.schema.d.ts.map +1 -1
  45. package/dist/schema/slot-info.schema.js +3 -1
  46. package/dist/schema/slot-info.schema.js.map +1 -1
  47. package/dist/schema/websocket.schema.d.ts +1436 -640
  48. package/dist/schema/websocket.schema.d.ts.map +1 -1
  49. package/dist/schema/websocket.schema.js +2 -1
  50. package/dist/schema/websocket.schema.js.map +1 -1
  51. package/package.json +1 -1
  52. package/src/schema/__tests__/radio-power-support.test.ts +26 -0
  53. package/src/schema/__tests__/realtime-settings.schema.test.ts +142 -0
  54. package/src/schema/desktop-https.schema.ts +3 -1
  55. package/src/schema/openwebrx.schema.ts +1 -1
  56. package/src/schema/plugin.schema.ts +44 -3
  57. package/src/schema/radio-capability.schema.ts +25 -1
  58. package/src/schema/radio-power-support.ts +49 -26
  59. package/src/schema/radio-power.schema.ts +8 -6
  60. package/src/schema/realtime.schema.ts +247 -65
  61. package/src/schema/server-message-keys.ts +2 -2
  62. package/src/schema/slot-info.schema.ts +3 -1
  63. package/src/schema/websocket.schema.ts +3 -1
@@ -116,6 +116,7 @@ export declare enum WSMessageType {
116
116
  PLUGIN_USER_ACTION = "pluginUserAction",
117
117
  PLUGIN_PAGE_PUSH = "pluginPagePush",
118
118
  PLUGIN_PANEL_META = "pluginPanelMeta",
119
+ PLUGIN_PANEL_CONTRIBUTIONS_CHANGED = "pluginPanelContributionsChanged",
119
120
  OPENWEBRX_LISTEN_STATUS = "openwebrxListenStatus",
120
121
  OPENWEBRX_PROFILE_SELECT_REQUEST = "openwebrxProfileSelectRequest",
121
122
  OPENWEBRX_PROFILE_SELECT_RESPONSE = "openwebrxProfileSelectResponse",
@@ -164,7 +165,7 @@ export declare const SystemStatusSchema: z.ZodObject<{
164
165
  /** 当前电台调制模式(语音模式下使用,如 USB/LSB/FM/AM) */
165
166
  currentRadioMode: z.ZodOptional<z.ZodString>;
166
167
  /** 引擎状态机当前状态 */
167
- engineState: z.ZodOptional<z.ZodEnum<["idle", "waking", "starting", "running", "stopping"]>>;
168
+ engineState: z.ZodOptional<z.ZodEnum<["idle", "starting", "running", "stopping"]>>;
168
169
  /** 引擎状态机上下文的精简投影 */
169
170
  engineContext: z.ZodOptional<z.ZodNullable<z.ZodObject<{
170
171
  error: z.ZodOptional<z.ZodString>;
@@ -199,7 +200,7 @@ export declare const SystemStatusSchema: z.ZodObject<{
199
200
  connectionHealthy: boolean;
200
201
  } | undefined;
201
202
  currentRadioMode?: string | undefined;
202
- engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
203
+ engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
203
204
  engineContext?: {
204
205
  error?: string | undefined;
205
206
  startedResources?: string[] | undefined;
@@ -225,7 +226,7 @@ export declare const SystemStatusSchema: z.ZodObject<{
225
226
  } | undefined;
226
227
  engineMode?: "voice" | "digital" | undefined;
227
228
  currentRadioMode?: string | undefined;
228
- engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
229
+ engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
229
230
  engineContext?: {
230
231
  error?: string | undefined;
231
232
  startedResources?: string[] | undefined;
@@ -1043,18 +1044,21 @@ export declare const WSSlotPackUpdatedMessageSchema: z.ZodObject<{
1043
1044
  totalFramesBeforeDedup: z.ZodDefault<z.ZodNumber>;
1044
1045
  totalFramesAfterDedup: z.ZodDefault<z.ZodNumber>;
1045
1046
  lastUpdated: z.ZodDefault<z.ZodNumber>;
1047
+ updateSeq: z.ZodOptional<z.ZodNumber>;
1046
1048
  }, "strip", z.ZodTypeAny, {
1047
1049
  totalDecodes: number;
1048
1050
  successfulDecodes: number;
1049
1051
  totalFramesBeforeDedup: number;
1050
1052
  totalFramesAfterDedup: number;
1051
1053
  lastUpdated: number;
1054
+ updateSeq?: number | undefined;
1052
1055
  }, {
1053
1056
  totalDecodes?: number | undefined;
1054
1057
  successfulDecodes?: number | undefined;
1055
1058
  totalFramesBeforeDedup?: number | undefined;
1056
1059
  totalFramesAfterDedup?: number | undefined;
1057
1060
  lastUpdated?: number | undefined;
1061
+ updateSeq?: number | undefined;
1058
1062
  }>>;
1059
1063
  decodeHistory: z.ZodDefault<z.ZodArray<z.ZodObject<{
1060
1064
  windowIdx: z.ZodNumber;
@@ -1105,6 +1109,7 @@ export declare const WSSlotPackUpdatedMessageSchema: z.ZodObject<{
1105
1109
  totalFramesBeforeDedup: number;
1106
1110
  totalFramesAfterDedup: number;
1107
1111
  lastUpdated: number;
1112
+ updateSeq?: number | undefined;
1108
1113
  };
1109
1114
  decodeHistory: {
1110
1115
  windowIdx: number;
@@ -1145,6 +1150,7 @@ export declare const WSSlotPackUpdatedMessageSchema: z.ZodObject<{
1145
1150
  totalFramesBeforeDedup?: number | undefined;
1146
1151
  totalFramesAfterDedup?: number | undefined;
1147
1152
  lastUpdated?: number | undefined;
1153
+ updateSeq?: number | undefined;
1148
1154
  } | undefined;
1149
1155
  decodeHistory?: {
1150
1156
  windowIdx: number;
@@ -1189,6 +1195,7 @@ export declare const WSSlotPackUpdatedMessageSchema: z.ZodObject<{
1189
1195
  totalFramesBeforeDedup: number;
1190
1196
  totalFramesAfterDedup: number;
1191
1197
  lastUpdated: number;
1198
+ updateSeq?: number | undefined;
1192
1199
  };
1193
1200
  decodeHistory: {
1194
1201
  windowIdx: number;
@@ -1234,6 +1241,7 @@ export declare const WSSlotPackUpdatedMessageSchema: z.ZodObject<{
1234
1241
  totalFramesBeforeDedup?: number | undefined;
1235
1242
  totalFramesAfterDedup?: number | undefined;
1236
1243
  lastUpdated?: number | undefined;
1244
+ updateSeq?: number | undefined;
1237
1245
  } | undefined;
1238
1246
  decodeHistory?: {
1239
1247
  windowIdx: number;
@@ -2085,7 +2093,7 @@ export declare const WSSystemStatusMessageSchema: z.ZodObject<{
2085
2093
  /** 当前电台调制模式(语音模式下使用,如 USB/LSB/FM/AM) */
2086
2094
  currentRadioMode: z.ZodOptional<z.ZodString>;
2087
2095
  /** 引擎状态机当前状态 */
2088
- engineState: z.ZodOptional<z.ZodEnum<["idle", "waking", "starting", "running", "stopping"]>>;
2096
+ engineState: z.ZodOptional<z.ZodEnum<["idle", "starting", "running", "stopping"]>>;
2089
2097
  /** 引擎状态机上下文的精简投影 */
2090
2098
  engineContext: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2091
2099
  error: z.ZodOptional<z.ZodString>;
@@ -2120,7 +2128,7 @@ export declare const WSSystemStatusMessageSchema: z.ZodObject<{
2120
2128
  connectionHealthy: boolean;
2121
2129
  } | undefined;
2122
2130
  currentRadioMode?: string | undefined;
2123
- engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
2131
+ engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
2124
2132
  engineContext?: {
2125
2133
  error?: string | undefined;
2126
2134
  startedResources?: string[] | undefined;
@@ -2146,7 +2154,7 @@ export declare const WSSystemStatusMessageSchema: z.ZodObject<{
2146
2154
  } | undefined;
2147
2155
  engineMode?: "voice" | "digital" | undefined;
2148
2156
  currentRadioMode?: string | undefined;
2149
- engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
2157
+ engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
2150
2158
  engineContext?: {
2151
2159
  error?: string | undefined;
2152
2160
  startedResources?: string[] | undefined;
@@ -2176,7 +2184,7 @@ export declare const WSSystemStatusMessageSchema: z.ZodObject<{
2176
2184
  connectionHealthy: boolean;
2177
2185
  } | undefined;
2178
2186
  currentRadioMode?: string | undefined;
2179
- engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
2187
+ engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
2180
2188
  engineContext?: {
2181
2189
  error?: string | undefined;
2182
2190
  startedResources?: string[] | undefined;
@@ -2207,7 +2215,7 @@ export declare const WSSystemStatusMessageSchema: z.ZodObject<{
2207
2215
  } | undefined;
2208
2216
  engineMode?: "voice" | "digital" | undefined;
2209
2217
  currentRadioMode?: string | undefined;
2210
- engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
2218
+ engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
2211
2219
  engineContext?: {
2212
2220
  error?: string | undefined;
2213
2221
  startedResources?: string[] | undefined;
@@ -2682,14 +2690,6 @@ export declare const OperatorStatusSchema: z.ZodObject<{
2682
2690
  };
2683
2691
  isTransmitting: boolean;
2684
2692
  transmitCycles?: number[] | undefined;
2685
- slots?: {
2686
- TX1?: string | undefined;
2687
- TX2?: string | undefined;
2688
- TX3?: string | undefined;
2689
- TX4?: string | undefined;
2690
- TX5?: string | undefined;
2691
- TX6?: string | undefined;
2692
- } | undefined;
2693
2693
  runtime?: {
2694
2694
  currentState: string;
2695
2695
  slots?: {
@@ -2709,6 +2709,14 @@ export declare const OperatorStatusSchema: z.ZodObject<{
2709
2709
  } | undefined;
2710
2710
  availableSlots?: string[] | undefined;
2711
2711
  } | undefined;
2712
+ slots?: {
2713
+ TX1?: string | undefined;
2714
+ TX2?: string | undefined;
2715
+ TX3?: string | undefined;
2716
+ TX4?: string | undefined;
2717
+ TX5?: string | undefined;
2718
+ TX6?: string | undefined;
2719
+ } | undefined;
2712
2720
  isInActivePTT?: boolean | undefined;
2713
2721
  currentSlot?: string | undefined;
2714
2722
  }, {
@@ -2730,14 +2738,6 @@ export declare const OperatorStatusSchema: z.ZodObject<{
2730
2738
  };
2731
2739
  isTransmitting: boolean;
2732
2740
  transmitCycles?: number[] | undefined;
2733
- slots?: {
2734
- TX1?: string | undefined;
2735
- TX2?: string | undefined;
2736
- TX3?: string | undefined;
2737
- TX4?: string | undefined;
2738
- TX5?: string | undefined;
2739
- TX6?: string | undefined;
2740
- } | undefined;
2741
2741
  runtime?: {
2742
2742
  currentState: string;
2743
2743
  slots?: {
@@ -2757,6 +2757,14 @@ export declare const OperatorStatusSchema: z.ZodObject<{
2757
2757
  } | undefined;
2758
2758
  availableSlots?: string[] | undefined;
2759
2759
  } | undefined;
2760
+ slots?: {
2761
+ TX1?: string | undefined;
2762
+ TX2?: string | undefined;
2763
+ TX3?: string | undefined;
2764
+ TX4?: string | undefined;
2765
+ TX5?: string | undefined;
2766
+ TX6?: string | undefined;
2767
+ } | undefined;
2760
2768
  isInActivePTT?: boolean | undefined;
2761
2769
  currentSlot?: string | undefined;
2762
2770
  }>;
@@ -2954,14 +2962,6 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
2954
2962
  };
2955
2963
  isTransmitting: boolean;
2956
2964
  transmitCycles?: number[] | undefined;
2957
- slots?: {
2958
- TX1?: string | undefined;
2959
- TX2?: string | undefined;
2960
- TX3?: string | undefined;
2961
- TX4?: string | undefined;
2962
- TX5?: string | undefined;
2963
- TX6?: string | undefined;
2964
- } | undefined;
2965
2965
  runtime?: {
2966
2966
  currentState: string;
2967
2967
  slots?: {
@@ -2981,6 +2981,14 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
2981
2981
  } | undefined;
2982
2982
  availableSlots?: string[] | undefined;
2983
2983
  } | undefined;
2984
+ slots?: {
2985
+ TX1?: string | undefined;
2986
+ TX2?: string | undefined;
2987
+ TX3?: string | undefined;
2988
+ TX4?: string | undefined;
2989
+ TX5?: string | undefined;
2990
+ TX6?: string | undefined;
2991
+ } | undefined;
2984
2992
  isInActivePTT?: boolean | undefined;
2985
2993
  currentSlot?: string | undefined;
2986
2994
  }, {
@@ -3002,14 +3010,6 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3002
3010
  };
3003
3011
  isTransmitting: boolean;
3004
3012
  transmitCycles?: number[] | undefined;
3005
- slots?: {
3006
- TX1?: string | undefined;
3007
- TX2?: string | undefined;
3008
- TX3?: string | undefined;
3009
- TX4?: string | undefined;
3010
- TX5?: string | undefined;
3011
- TX6?: string | undefined;
3012
- } | undefined;
3013
3013
  runtime?: {
3014
3014
  currentState: string;
3015
3015
  slots?: {
@@ -3029,6 +3029,14 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3029
3029
  } | undefined;
3030
3030
  availableSlots?: string[] | undefined;
3031
3031
  } | undefined;
3032
+ slots?: {
3033
+ TX1?: string | undefined;
3034
+ TX2?: string | undefined;
3035
+ TX3?: string | undefined;
3036
+ TX4?: string | undefined;
3037
+ TX5?: string | undefined;
3038
+ TX6?: string | undefined;
3039
+ } | undefined;
3032
3040
  isInActivePTT?: boolean | undefined;
3033
3041
  currentSlot?: string | undefined;
3034
3042
  }>, "many">;
@@ -3052,14 +3060,6 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3052
3060
  };
3053
3061
  isTransmitting: boolean;
3054
3062
  transmitCycles?: number[] | undefined;
3055
- slots?: {
3056
- TX1?: string | undefined;
3057
- TX2?: string | undefined;
3058
- TX3?: string | undefined;
3059
- TX4?: string | undefined;
3060
- TX5?: string | undefined;
3061
- TX6?: string | undefined;
3062
- } | undefined;
3063
3063
  runtime?: {
3064
3064
  currentState: string;
3065
3065
  slots?: {
@@ -3079,6 +3079,14 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3079
3079
  } | undefined;
3080
3080
  availableSlots?: string[] | undefined;
3081
3081
  } | undefined;
3082
+ slots?: {
3083
+ TX1?: string | undefined;
3084
+ TX2?: string | undefined;
3085
+ TX3?: string | undefined;
3086
+ TX4?: string | undefined;
3087
+ TX5?: string | undefined;
3088
+ TX6?: string | undefined;
3089
+ } | undefined;
3082
3090
  isInActivePTT?: boolean | undefined;
3083
3091
  currentSlot?: string | undefined;
3084
3092
  }[];
@@ -3102,14 +3110,6 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3102
3110
  };
3103
3111
  isTransmitting: boolean;
3104
3112
  transmitCycles?: number[] | undefined;
3105
- slots?: {
3106
- TX1?: string | undefined;
3107
- TX2?: string | undefined;
3108
- TX3?: string | undefined;
3109
- TX4?: string | undefined;
3110
- TX5?: string | undefined;
3111
- TX6?: string | undefined;
3112
- } | undefined;
3113
3113
  runtime?: {
3114
3114
  currentState: string;
3115
3115
  slots?: {
@@ -3129,6 +3129,14 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3129
3129
  } | undefined;
3130
3130
  availableSlots?: string[] | undefined;
3131
3131
  } | undefined;
3132
+ slots?: {
3133
+ TX1?: string | undefined;
3134
+ TX2?: string | undefined;
3135
+ TX3?: string | undefined;
3136
+ TX4?: string | undefined;
3137
+ TX5?: string | undefined;
3138
+ TX6?: string | undefined;
3139
+ } | undefined;
3132
3140
  isInActivePTT?: boolean | undefined;
3133
3141
  currentSlot?: string | undefined;
3134
3142
  }[];
@@ -3156,14 +3164,6 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3156
3164
  };
3157
3165
  isTransmitting: boolean;
3158
3166
  transmitCycles?: number[] | undefined;
3159
- slots?: {
3160
- TX1?: string | undefined;
3161
- TX2?: string | undefined;
3162
- TX3?: string | undefined;
3163
- TX4?: string | undefined;
3164
- TX5?: string | undefined;
3165
- TX6?: string | undefined;
3166
- } | undefined;
3167
3167
  runtime?: {
3168
3168
  currentState: string;
3169
3169
  slots?: {
@@ -3183,6 +3183,14 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3183
3183
  } | undefined;
3184
3184
  availableSlots?: string[] | undefined;
3185
3185
  } | undefined;
3186
+ slots?: {
3187
+ TX1?: string | undefined;
3188
+ TX2?: string | undefined;
3189
+ TX3?: string | undefined;
3190
+ TX4?: string | undefined;
3191
+ TX5?: string | undefined;
3192
+ TX6?: string | undefined;
3193
+ } | undefined;
3186
3194
  isInActivePTT?: boolean | undefined;
3187
3195
  currentSlot?: string | undefined;
3188
3196
  }[];
@@ -3211,14 +3219,6 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3211
3219
  };
3212
3220
  isTransmitting: boolean;
3213
3221
  transmitCycles?: number[] | undefined;
3214
- slots?: {
3215
- TX1?: string | undefined;
3216
- TX2?: string | undefined;
3217
- TX3?: string | undefined;
3218
- TX4?: string | undefined;
3219
- TX5?: string | undefined;
3220
- TX6?: string | undefined;
3221
- } | undefined;
3222
3222
  runtime?: {
3223
3223
  currentState: string;
3224
3224
  slots?: {
@@ -3238,6 +3238,14 @@ export declare const WSOperatorsListMessageSchema: z.ZodObject<{
3238
3238
  } | undefined;
3239
3239
  availableSlots?: string[] | undefined;
3240
3240
  } | undefined;
3241
+ slots?: {
3242
+ TX1?: string | undefined;
3243
+ TX2?: string | undefined;
3244
+ TX3?: string | undefined;
3245
+ TX4?: string | undefined;
3246
+ TX5?: string | undefined;
3247
+ TX6?: string | undefined;
3248
+ } | undefined;
3241
3249
  isInActivePTT?: boolean | undefined;
3242
3250
  currentSlot?: string | undefined;
3243
3251
  }[];
@@ -3419,14 +3427,6 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
3419
3427
  };
3420
3428
  isTransmitting: boolean;
3421
3429
  transmitCycles?: number[] | undefined;
3422
- slots?: {
3423
- TX1?: string | undefined;
3424
- TX2?: string | undefined;
3425
- TX3?: string | undefined;
3426
- TX4?: string | undefined;
3427
- TX5?: string | undefined;
3428
- TX6?: string | undefined;
3429
- } | undefined;
3430
3430
  runtime?: {
3431
3431
  currentState: string;
3432
3432
  slots?: {
@@ -3446,6 +3446,14 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
3446
3446
  } | undefined;
3447
3447
  availableSlots?: string[] | undefined;
3448
3448
  } | undefined;
3449
+ slots?: {
3450
+ TX1?: string | undefined;
3451
+ TX2?: string | undefined;
3452
+ TX3?: string | undefined;
3453
+ TX4?: string | undefined;
3454
+ TX5?: string | undefined;
3455
+ TX6?: string | undefined;
3456
+ } | undefined;
3449
3457
  isInActivePTT?: boolean | undefined;
3450
3458
  currentSlot?: string | undefined;
3451
3459
  }, {
@@ -3467,14 +3475,6 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
3467
3475
  };
3468
3476
  isTransmitting: boolean;
3469
3477
  transmitCycles?: number[] | undefined;
3470
- slots?: {
3471
- TX1?: string | undefined;
3472
- TX2?: string | undefined;
3473
- TX3?: string | undefined;
3474
- TX4?: string | undefined;
3475
- TX5?: string | undefined;
3476
- TX6?: string | undefined;
3477
- } | undefined;
3478
3478
  runtime?: {
3479
3479
  currentState: string;
3480
3480
  slots?: {
@@ -3494,6 +3494,14 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
3494
3494
  } | undefined;
3495
3495
  availableSlots?: string[] | undefined;
3496
3496
  } | undefined;
3497
+ slots?: {
3498
+ TX1?: string | undefined;
3499
+ TX2?: string | undefined;
3500
+ TX3?: string | undefined;
3501
+ TX4?: string | undefined;
3502
+ TX5?: string | undefined;
3503
+ TX6?: string | undefined;
3504
+ } | undefined;
3497
3505
  isInActivePTT?: boolean | undefined;
3498
3506
  currentSlot?: string | undefined;
3499
3507
  }>;
@@ -3519,14 +3527,6 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
3519
3527
  };
3520
3528
  isTransmitting: boolean;
3521
3529
  transmitCycles?: number[] | undefined;
3522
- slots?: {
3523
- TX1?: string | undefined;
3524
- TX2?: string | undefined;
3525
- TX3?: string | undefined;
3526
- TX4?: string | undefined;
3527
- TX5?: string | undefined;
3528
- TX6?: string | undefined;
3529
- } | undefined;
3530
3530
  runtime?: {
3531
3531
  currentState: string;
3532
3532
  slots?: {
@@ -3546,6 +3546,14 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
3546
3546
  } | undefined;
3547
3547
  availableSlots?: string[] | undefined;
3548
3548
  } | undefined;
3549
+ slots?: {
3550
+ TX1?: string | undefined;
3551
+ TX2?: string | undefined;
3552
+ TX3?: string | undefined;
3553
+ TX4?: string | undefined;
3554
+ TX5?: string | undefined;
3555
+ TX6?: string | undefined;
3556
+ } | undefined;
3549
3557
  isInActivePTT?: boolean | undefined;
3550
3558
  currentSlot?: string | undefined;
3551
3559
  };
@@ -3572,14 +3580,6 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
3572
3580
  };
3573
3581
  isTransmitting: boolean;
3574
3582
  transmitCycles?: number[] | undefined;
3575
- slots?: {
3576
- TX1?: string | undefined;
3577
- TX2?: string | undefined;
3578
- TX3?: string | undefined;
3579
- TX4?: string | undefined;
3580
- TX5?: string | undefined;
3581
- TX6?: string | undefined;
3582
- } | undefined;
3583
3583
  runtime?: {
3584
3584
  currentState: string;
3585
3585
  slots?: {
@@ -3599,6 +3599,14 @@ export declare const WSOperatorStatusUpdateMessageSchema: z.ZodObject<{
3599
3599
  } | undefined;
3600
3600
  availableSlots?: string[] | undefined;
3601
3601
  } | undefined;
3602
+ slots?: {
3603
+ TX1?: string | undefined;
3604
+ TX2?: string | undefined;
3605
+ TX3?: string | undefined;
3606
+ TX4?: string | undefined;
3607
+ TX5?: string | undefined;
3608
+ TX6?: string | undefined;
3609
+ } | undefined;
3602
3610
  isInActivePTT?: boolean | undefined;
3603
3611
  currentSlot?: string | undefined;
3604
3612
  };
@@ -7551,6 +7559,9 @@ export declare const WSRadioCapabilityListMessageSchema: z.ZodObject<{
7551
7559
  capabilities: z.ZodArray<z.ZodObject<{
7552
7560
  id: z.ZodString;
7553
7561
  supported: z.ZodBoolean;
7562
+ availability: z.ZodOptional<z.ZodEnum<["available", "unavailable", "unknown"]>>;
7563
+ availabilityReason: z.ZodOptional<z.ZodEnum<["runtime_error", "busy", "unsupported_by_current_mode", "radio_reported_unavailable", "unknown"]>>;
7564
+ lastError: z.ZodOptional<z.ZodString>;
7554
7565
  value: z.ZodNullable<z.ZodUnion<[z.ZodBoolean, z.ZodNumber, z.ZodString]>>;
7555
7566
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
7556
7567
  updatedAt: z.ZodNumber;
@@ -7560,12 +7571,18 @@ export declare const WSRadioCapabilityListMessageSchema: z.ZodObject<{
7560
7571
  supported: boolean;
7561
7572
  updatedAt: number;
7562
7573
  meta?: Record<string, unknown> | undefined;
7574
+ lastError?: string | undefined;
7575
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7576
+ availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7563
7577
  }, {
7564
7578
  value: string | number | boolean | null;
7565
7579
  id: string;
7566
7580
  supported: boolean;
7567
7581
  updatedAt: number;
7568
7582
  meta?: Record<string, unknown> | undefined;
7583
+ lastError?: string | undefined;
7584
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7585
+ availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7569
7586
  }>, "many">;
7570
7587
  }, "strip", z.ZodTypeAny, {
7571
7588
  capabilities: {
@@ -7574,6 +7591,9 @@ export declare const WSRadioCapabilityListMessageSchema: z.ZodObject<{
7574
7591
  supported: boolean;
7575
7592
  updatedAt: number;
7576
7593
  meta?: Record<string, unknown> | undefined;
7594
+ lastError?: string | undefined;
7595
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7596
+ availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7577
7597
  }[];
7578
7598
  descriptors: {
7579
7599
  id: string;
@@ -7618,6 +7638,9 @@ export declare const WSRadioCapabilityListMessageSchema: z.ZodObject<{
7618
7638
  supported: boolean;
7619
7639
  updatedAt: number;
7620
7640
  meta?: Record<string, unknown> | undefined;
7641
+ lastError?: string | undefined;
7642
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7643
+ availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7621
7644
  }[];
7622
7645
  descriptors: {
7623
7646
  id: string;
@@ -7666,6 +7689,9 @@ export declare const WSRadioCapabilityListMessageSchema: z.ZodObject<{
7666
7689
  supported: boolean;
7667
7690
  updatedAt: number;
7668
7691
  meta?: Record<string, unknown> | undefined;
7692
+ lastError?: string | undefined;
7693
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7694
+ availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7669
7695
  }[];
7670
7696
  descriptors: {
7671
7697
  id: string;
@@ -7715,6 +7741,9 @@ export declare const WSRadioCapabilityListMessageSchema: z.ZodObject<{
7715
7741
  supported: boolean;
7716
7742
  updatedAt: number;
7717
7743
  meta?: Record<string, unknown> | undefined;
7744
+ lastError?: string | undefined;
7745
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7746
+ availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7718
7747
  }[];
7719
7748
  descriptors: {
7720
7749
  id: string;
@@ -7767,6 +7796,9 @@ export declare const WSRadioCapabilityChangedMessageSchema: z.ZodObject<{
7767
7796
  data: z.ZodObject<{
7768
7797
  id: z.ZodString;
7769
7798
  supported: z.ZodBoolean;
7799
+ availability: z.ZodOptional<z.ZodEnum<["available", "unavailable", "unknown"]>>;
7800
+ availabilityReason: z.ZodOptional<z.ZodEnum<["runtime_error", "busy", "unsupported_by_current_mode", "radio_reported_unavailable", "unknown"]>>;
7801
+ lastError: z.ZodOptional<z.ZodString>;
7770
7802
  value: z.ZodNullable<z.ZodUnion<[z.ZodBoolean, z.ZodNumber, z.ZodString]>>;
7771
7803
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
7772
7804
  updatedAt: z.ZodNumber;
@@ -7776,12 +7808,18 @@ export declare const WSRadioCapabilityChangedMessageSchema: z.ZodObject<{
7776
7808
  supported: boolean;
7777
7809
  updatedAt: number;
7778
7810
  meta?: Record<string, unknown> | undefined;
7811
+ lastError?: string | undefined;
7812
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7813
+ availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7779
7814
  }, {
7780
7815
  value: string | number | boolean | null;
7781
7816
  id: string;
7782
7817
  supported: boolean;
7783
7818
  updatedAt: number;
7784
7819
  meta?: Record<string, unknown> | undefined;
7820
+ lastError?: string | undefined;
7821
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7822
+ availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7785
7823
  }>;
7786
7824
  }, "strip", z.ZodTypeAny, {
7787
7825
  type: WSMessageType.RADIO_CAPABILITY_CHANGED;
@@ -7792,6 +7830,9 @@ export declare const WSRadioCapabilityChangedMessageSchema: z.ZodObject<{
7792
7830
  supported: boolean;
7793
7831
  updatedAt: number;
7794
7832
  meta?: Record<string, unknown> | undefined;
7833
+ lastError?: string | undefined;
7834
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7835
+ availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7795
7836
  };
7796
7837
  id?: string | undefined;
7797
7838
  }, {
@@ -7803,6 +7844,9 @@ export declare const WSRadioCapabilityChangedMessageSchema: z.ZodObject<{
7803
7844
  supported: boolean;
7804
7845
  updatedAt: number;
7805
7846
  meta?: Record<string, unknown> | undefined;
7847
+ lastError?: string | undefined;
7848
+ availability?: "unknown" | "available" | "unavailable" | undefined;
7849
+ availabilityReason?: "unknown" | "runtime_error" | "busy" | "unsupported_by_current_mode" | "radio_reported_unavailable" | undefined;
7806
7850
  };
7807
7851
  id?: string | undefined;
7808
7852
  }>;
@@ -8036,7 +8080,7 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8036
8080
  lastError: z.ZodOptional<z.ZodString>;
8037
8081
  assignedOperatorIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8038
8082
  settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
8039
- type: z.ZodEnum<["boolean", "number", "string", "string[]", "info"]>;
8083
+ type: z.ZodEnum<["boolean", "number", "string", "string[]", "object[]", "info"]>;
8040
8084
  default: z.ZodUnknown;
8041
8085
  label: z.ZodString;
8042
8086
  description: z.ZodOptional<z.ZodString>;
@@ -8052,9 +8096,32 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8052
8096
  value: string;
8053
8097
  label: string;
8054
8098
  }>, "many">>;
8099
+ itemFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
8100
+ key: z.ZodString;
8101
+ type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["string", "number", "boolean"]>>>;
8102
+ label: z.ZodString;
8103
+ description: z.ZodOptional<z.ZodString>;
8104
+ placeholder: z.ZodOptional<z.ZodString>;
8105
+ required: z.ZodOptional<z.ZodBoolean>;
8106
+ }, "strip", z.ZodTypeAny, {
8107
+ type: "string" | "number" | "boolean";
8108
+ label: string;
8109
+ key: string;
8110
+ description?: string | undefined;
8111
+ placeholder?: string | undefined;
8112
+ required?: boolean | undefined;
8113
+ }, {
8114
+ label: string;
8115
+ key: string;
8116
+ type?: "string" | "number" | "boolean" | undefined;
8117
+ description?: string | undefined;
8118
+ placeholder?: string | undefined;
8119
+ required?: boolean | undefined;
8120
+ }>, "many">>;
8121
+ hidden: z.ZodOptional<z.ZodBoolean>;
8055
8122
  scope: z.ZodDefault<z.ZodOptional<z.ZodEnum<["global", "operator"]>>>;
8056
8123
  }, "strip", z.ZodTypeAny, {
8057
- type: "string" | "number" | "boolean" | "string[]" | "info";
8124
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
8058
8125
  label: string;
8059
8126
  scope: "operator" | "global";
8060
8127
  options?: {
@@ -8065,8 +8132,17 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8065
8132
  max?: number | undefined;
8066
8133
  description?: string | undefined;
8067
8134
  default?: unknown;
8135
+ itemFields?: {
8136
+ type: "string" | "number" | "boolean";
8137
+ label: string;
8138
+ key: string;
8139
+ description?: string | undefined;
8140
+ placeholder?: string | undefined;
8141
+ required?: boolean | undefined;
8142
+ }[] | undefined;
8143
+ hidden?: boolean | undefined;
8068
8144
  }, {
8069
- type: "string" | "number" | "boolean" | "string[]" | "info";
8145
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
8070
8146
  label: string;
8071
8147
  options?: {
8072
8148
  value: string;
@@ -8076,6 +8152,15 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8076
8152
  max?: number | undefined;
8077
8153
  description?: string | undefined;
8078
8154
  default?: unknown;
8155
+ itemFields?: {
8156
+ label: string;
8157
+ key: string;
8158
+ type?: "string" | "number" | "boolean" | undefined;
8159
+ description?: string | undefined;
8160
+ placeholder?: string | undefined;
8161
+ required?: boolean | undefined;
8162
+ }[] | undefined;
8163
+ hidden?: boolean | undefined;
8079
8164
  scope?: "operator" | "global" | undefined;
8080
8165
  }>>>;
8081
8166
  quickActions: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -8103,12 +8188,14 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8103
8188
  title: z.ZodString;
8104
8189
  component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
8105
8190
  pageId: z.ZodOptional<z.ZodString>;
8191
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
8106
8192
  slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top"]>>;
8107
8193
  width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
8108
8194
  }, "strip", z.ZodTypeAny, {
8109
8195
  id: string;
8110
8196
  title: string;
8111
8197
  component: "table" | "key-value" | "chart" | "log" | "iframe";
8198
+ params?: Record<string, string> | undefined;
8112
8199
  pageId?: string | undefined;
8113
8200
  slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8114
8201
  width?: "full" | "half" | undefined;
@@ -8116,11 +8203,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8116
8203
  id: string;
8117
8204
  title: string;
8118
8205
  component: "table" | "key-value" | "chart" | "log" | "iframe";
8206
+ params?: Record<string, string> | undefined;
8119
8207
  pageId?: string | undefined;
8120
8208
  slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8121
8209
  width?: "full" | "half" | undefined;
8122
8210
  }>, "many">>;
8123
- permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network"]>, "many">>;
8211
+ permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "radio:read", "radio:control", "radio:power"]>, "many">>;
8124
8212
  capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto_call_candidate", "auto_call_execution"]>, "many">>;
8125
8213
  ui: z.ZodOptional<z.ZodObject<{
8126
8214
  dir: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -8201,6 +8289,23 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8201
8289
  autoDisabled: boolean;
8202
8290
  errorCount: number;
8203
8291
  description?: string | undefined;
8292
+ source?: {
8293
+ kind: "marketplace";
8294
+ version: string;
8295
+ channel: "stable" | "nightly";
8296
+ artifactUrl: string;
8297
+ sha256: string;
8298
+ installedAt: number;
8299
+ } | undefined;
8300
+ panels?: {
8301
+ id: string;
8302
+ title: string;
8303
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
8304
+ params?: Record<string, string> | undefined;
8305
+ pageId?: string | undefined;
8306
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8307
+ width?: "full" | "half" | undefined;
8308
+ }[] | undefined;
8204
8309
  ui?: {
8205
8310
  dir: string;
8206
8311
  pages: {
@@ -8212,9 +8317,9 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8212
8317
  icon?: string | undefined;
8213
8318
  }[];
8214
8319
  } | undefined;
8215
- permissions?: "network"[] | undefined;
8320
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
8216
8321
  settings?: Record<string, {
8217
- type: "string" | "number" | "boolean" | "string[]" | "info";
8322
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
8218
8323
  label: string;
8219
8324
  scope: "operator" | "global";
8220
8325
  options?: {
@@ -8225,6 +8330,15 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8225
8330
  max?: number | undefined;
8226
8331
  description?: string | undefined;
8227
8332
  default?: unknown;
8333
+ itemFields?: {
8334
+ type: "string" | "number" | "boolean";
8335
+ label: string;
8336
+ key: string;
8337
+ description?: string | undefined;
8338
+ placeholder?: string | undefined;
8339
+ required?: boolean | undefined;
8340
+ }[] | undefined;
8341
+ hidden?: boolean | undefined;
8228
8342
  }> | undefined;
8229
8343
  quickActions?: {
8230
8344
  id: string;
@@ -8234,26 +8348,10 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8234
8348
  quickSettings?: {
8235
8349
  settingKey: string;
8236
8350
  }[] | undefined;
8237
- panels?: {
8238
- id: string;
8239
- title: string;
8240
- component: "table" | "key-value" | "chart" | "log" | "iframe";
8241
- pageId?: string | undefined;
8242
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8243
- width?: "full" | "half" | undefined;
8244
- }[] | undefined;
8245
8351
  lastError?: string | undefined;
8246
8352
  assignedOperatorIds?: string[] | undefined;
8247
8353
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
8248
8354
  locales?: Record<string, Record<string, string>> | undefined;
8249
- source?: {
8250
- kind: "marketplace";
8251
- version: string;
8252
- channel: "stable" | "nightly";
8253
- artifactUrl: string;
8254
- sha256: string;
8255
- installedAt: number;
8256
- } | undefined;
8257
8355
  }, {
8258
8356
  type: "strategy" | "utility";
8259
8357
  name: string;
@@ -8262,8 +8360,25 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8262
8360
  isBuiltIn: boolean;
8263
8361
  errorCount: number;
8264
8362
  description?: string | undefined;
8265
- ui?: {
8266
- dir?: string | undefined;
8363
+ source?: {
8364
+ kind: "marketplace";
8365
+ version: string;
8366
+ channel: "stable" | "nightly";
8367
+ artifactUrl: string;
8368
+ sha256: string;
8369
+ installedAt: number;
8370
+ } | undefined;
8371
+ panels?: {
8372
+ id: string;
8373
+ title: string;
8374
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
8375
+ params?: Record<string, string> | undefined;
8376
+ pageId?: string | undefined;
8377
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8378
+ width?: "full" | "half" | undefined;
8379
+ }[] | undefined;
8380
+ ui?: {
8381
+ dir?: string | undefined;
8267
8382
  pages?: {
8268
8383
  id: string;
8269
8384
  title: string;
@@ -8274,9 +8389,9 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8274
8389
  }[] | undefined;
8275
8390
  } | undefined;
8276
8391
  instanceScope?: "operator" | "global" | undefined;
8277
- permissions?: "network"[] | undefined;
8392
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
8278
8393
  settings?: Record<string, {
8279
- type: "string" | "number" | "boolean" | "string[]" | "info";
8394
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
8280
8395
  label: string;
8281
8396
  options?: {
8282
8397
  value: string;
@@ -8286,6 +8401,15 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8286
8401
  max?: number | undefined;
8287
8402
  description?: string | undefined;
8288
8403
  default?: unknown;
8404
+ itemFields?: {
8405
+ label: string;
8406
+ key: string;
8407
+ type?: "string" | "number" | "boolean" | undefined;
8408
+ description?: string | undefined;
8409
+ placeholder?: string | undefined;
8410
+ required?: boolean | undefined;
8411
+ }[] | undefined;
8412
+ hidden?: boolean | undefined;
8289
8413
  scope?: "operator" | "global" | undefined;
8290
8414
  }> | undefined;
8291
8415
  quickActions?: {
@@ -8296,28 +8420,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8296
8420
  quickSettings?: {
8297
8421
  settingKey: string;
8298
8422
  }[] | undefined;
8299
- panels?: {
8300
- id: string;
8301
- title: string;
8302
- component: "table" | "key-value" | "chart" | "log" | "iframe";
8303
- pageId?: string | undefined;
8304
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8305
- width?: "full" | "half" | undefined;
8306
- }[] | undefined;
8307
8423
  loaded?: boolean | undefined;
8308
8424
  autoDisabled?: boolean | undefined;
8309
8425
  lastError?: string | undefined;
8310
8426
  assignedOperatorIds?: string[] | undefined;
8311
8427
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
8312
8428
  locales?: Record<string, Record<string, string>> | undefined;
8313
- source?: {
8314
- kind: "marketplace";
8315
- version: string;
8316
- channel: "stable" | "nightly";
8317
- artifactUrl: string;
8318
- sha256: string;
8319
- installedAt: number;
8320
- } | undefined;
8321
8429
  }>, "many">;
8322
8430
  panelMeta: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
8323
8431
  pluginName: z.ZodString;
@@ -8355,6 +8463,90 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8355
8463
  pluginName: string;
8356
8464
  panelId: string;
8357
8465
  }>, "many">>>;
8466
+ panelContributions: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
8467
+ pluginName: z.ZodString;
8468
+ groupId: z.ZodString;
8469
+ source: z.ZodEnum<["manifest", "runtime"]>;
8470
+ instanceTarget: z.ZodOptional<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
8471
+ kind: z.ZodLiteral<"global">;
8472
+ }, "strip", z.ZodTypeAny, {
8473
+ kind: "global";
8474
+ }, {
8475
+ kind: "global";
8476
+ }>, z.ZodObject<{
8477
+ kind: z.ZodLiteral<"operator">;
8478
+ operatorId: z.ZodString;
8479
+ }, "strip", z.ZodTypeAny, {
8480
+ operatorId: string;
8481
+ kind: "operator";
8482
+ }, {
8483
+ operatorId: string;
8484
+ kind: "operator";
8485
+ }>]>>;
8486
+ panels: z.ZodArray<z.ZodObject<{
8487
+ id: z.ZodString;
8488
+ title: z.ZodString;
8489
+ component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
8490
+ pageId: z.ZodOptional<z.ZodString>;
8491
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
8492
+ slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top"]>>;
8493
+ width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
8494
+ }, "strip", z.ZodTypeAny, {
8495
+ id: string;
8496
+ title: string;
8497
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
8498
+ params?: Record<string, string> | undefined;
8499
+ pageId?: string | undefined;
8500
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8501
+ width?: "full" | "half" | undefined;
8502
+ }, {
8503
+ id: string;
8504
+ title: string;
8505
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
8506
+ params?: Record<string, string> | undefined;
8507
+ pageId?: string | undefined;
8508
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8509
+ width?: "full" | "half" | undefined;
8510
+ }>, "many">;
8511
+ }, "strip", z.ZodTypeAny, {
8512
+ pluginName: string;
8513
+ groupId: string;
8514
+ source: "manifest" | "runtime";
8515
+ panels: {
8516
+ id: string;
8517
+ title: string;
8518
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
8519
+ params?: Record<string, string> | undefined;
8520
+ pageId?: string | undefined;
8521
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8522
+ width?: "full" | "half" | undefined;
8523
+ }[];
8524
+ instanceTarget?: {
8525
+ kind: "global";
8526
+ } | {
8527
+ operatorId: string;
8528
+ kind: "operator";
8529
+ } | undefined;
8530
+ }, {
8531
+ pluginName: string;
8532
+ groupId: string;
8533
+ source: "manifest" | "runtime";
8534
+ panels: {
8535
+ id: string;
8536
+ title: string;
8537
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
8538
+ params?: Record<string, string> | undefined;
8539
+ pageId?: string | undefined;
8540
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8541
+ width?: "full" | "half" | undefined;
8542
+ }[];
8543
+ instanceTarget?: {
8544
+ kind: "global";
8545
+ } | {
8546
+ operatorId: string;
8547
+ kind: "operator";
8548
+ } | undefined;
8549
+ }>, "many">>>;
8358
8550
  lastError: z.ZodOptional<z.ZodString>;
8359
8551
  }, "strip", z.ZodTypeAny, {
8360
8552
  state: "error" | "ready" | "reloading";
@@ -8370,6 +8562,23 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8370
8562
  autoDisabled: boolean;
8371
8563
  errorCount: number;
8372
8564
  description?: string | undefined;
8565
+ source?: {
8566
+ kind: "marketplace";
8567
+ version: string;
8568
+ channel: "stable" | "nightly";
8569
+ artifactUrl: string;
8570
+ sha256: string;
8571
+ installedAt: number;
8572
+ } | undefined;
8573
+ panels?: {
8574
+ id: string;
8575
+ title: string;
8576
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
8577
+ params?: Record<string, string> | undefined;
8578
+ pageId?: string | undefined;
8579
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8580
+ width?: "full" | "half" | undefined;
8581
+ }[] | undefined;
8373
8582
  ui?: {
8374
8583
  dir: string;
8375
8584
  pages: {
@@ -8381,9 +8590,9 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8381
8590
  icon?: string | undefined;
8382
8591
  }[];
8383
8592
  } | undefined;
8384
- permissions?: "network"[] | undefined;
8593
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
8385
8594
  settings?: Record<string, {
8386
- type: "string" | "number" | "boolean" | "string[]" | "info";
8595
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
8387
8596
  label: string;
8388
8597
  scope: "operator" | "global";
8389
8598
  options?: {
@@ -8394,6 +8603,15 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8394
8603
  max?: number | undefined;
8395
8604
  description?: string | undefined;
8396
8605
  default?: unknown;
8606
+ itemFields?: {
8607
+ type: "string" | "number" | "boolean";
8608
+ label: string;
8609
+ key: string;
8610
+ description?: string | undefined;
8611
+ placeholder?: string | undefined;
8612
+ required?: boolean | undefined;
8613
+ }[] | undefined;
8614
+ hidden?: boolean | undefined;
8397
8615
  }> | undefined;
8398
8616
  quickActions?: {
8399
8617
  id: string;
@@ -8403,26 +8621,10 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8403
8621
  quickSettings?: {
8404
8622
  settingKey: string;
8405
8623
  }[] | undefined;
8406
- panels?: {
8407
- id: string;
8408
- title: string;
8409
- component: "table" | "key-value" | "chart" | "log" | "iframe";
8410
- pageId?: string | undefined;
8411
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8412
- width?: "full" | "half" | undefined;
8413
- }[] | undefined;
8414
8624
  lastError?: string | undefined;
8415
8625
  assignedOperatorIds?: string[] | undefined;
8416
8626
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
8417
8627
  locales?: Record<string, Record<string, string>> | undefined;
8418
- source?: {
8419
- kind: "marketplace";
8420
- version: string;
8421
- channel: "stable" | "nightly";
8422
- artifactUrl: string;
8423
- sha256: string;
8424
- installedAt: number;
8425
- } | undefined;
8426
8628
  }[];
8427
8629
  panelMeta: {
8428
8630
  operatorId: string;
@@ -8434,6 +8636,26 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8434
8636
  pluginName: string;
8435
8637
  panelId: string;
8436
8638
  }[];
8639
+ panelContributions: {
8640
+ pluginName: string;
8641
+ groupId: string;
8642
+ source: "manifest" | "runtime";
8643
+ panels: {
8644
+ id: string;
8645
+ title: string;
8646
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
8647
+ params?: Record<string, string> | undefined;
8648
+ pageId?: string | undefined;
8649
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8650
+ width?: "full" | "half" | undefined;
8651
+ }[];
8652
+ instanceTarget?: {
8653
+ kind: "global";
8654
+ } | {
8655
+ operatorId: string;
8656
+ kind: "operator";
8657
+ } | undefined;
8658
+ }[];
8437
8659
  lastError?: string | undefined;
8438
8660
  }, {
8439
8661
  state: "error" | "ready" | "reloading";
@@ -8446,6 +8668,23 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8446
8668
  isBuiltIn: boolean;
8447
8669
  errorCount: number;
8448
8670
  description?: string | undefined;
8671
+ source?: {
8672
+ kind: "marketplace";
8673
+ version: string;
8674
+ channel: "stable" | "nightly";
8675
+ artifactUrl: string;
8676
+ sha256: string;
8677
+ installedAt: number;
8678
+ } | undefined;
8679
+ panels?: {
8680
+ id: string;
8681
+ title: string;
8682
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
8683
+ params?: Record<string, string> | undefined;
8684
+ pageId?: string | undefined;
8685
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8686
+ width?: "full" | "half" | undefined;
8687
+ }[] | undefined;
8449
8688
  ui?: {
8450
8689
  dir?: string | undefined;
8451
8690
  pages?: {
@@ -8458,9 +8697,9 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8458
8697
  }[] | undefined;
8459
8698
  } | undefined;
8460
8699
  instanceScope?: "operator" | "global" | undefined;
8461
- permissions?: "network"[] | undefined;
8700
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
8462
8701
  settings?: Record<string, {
8463
- type: "string" | "number" | "boolean" | "string[]" | "info";
8702
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
8464
8703
  label: string;
8465
8704
  options?: {
8466
8705
  value: string;
@@ -8470,6 +8709,15 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8470
8709
  max?: number | undefined;
8471
8710
  description?: string | undefined;
8472
8711
  default?: unknown;
8712
+ itemFields?: {
8713
+ label: string;
8714
+ key: string;
8715
+ type?: "string" | "number" | "boolean" | undefined;
8716
+ description?: string | undefined;
8717
+ placeholder?: string | undefined;
8718
+ required?: boolean | undefined;
8719
+ }[] | undefined;
8720
+ hidden?: boolean | undefined;
8473
8721
  scope?: "operator" | "global" | undefined;
8474
8722
  }> | undefined;
8475
8723
  quickActions?: {
@@ -8480,28 +8728,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8480
8728
  quickSettings?: {
8481
8729
  settingKey: string;
8482
8730
  }[] | undefined;
8483
- panels?: {
8484
- id: string;
8485
- title: string;
8486
- component: "table" | "key-value" | "chart" | "log" | "iframe";
8487
- pageId?: string | undefined;
8488
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8489
- width?: "full" | "half" | undefined;
8490
- }[] | undefined;
8491
8731
  loaded?: boolean | undefined;
8492
8732
  autoDisabled?: boolean | undefined;
8493
8733
  lastError?: string | undefined;
8494
8734
  assignedOperatorIds?: string[] | undefined;
8495
8735
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
8496
8736
  locales?: Record<string, Record<string, string>> | undefined;
8497
- source?: {
8498
- kind: "marketplace";
8499
- version: string;
8500
- channel: "stable" | "nightly";
8501
- artifactUrl: string;
8502
- sha256: string;
8503
- installedAt: number;
8504
- } | undefined;
8505
8737
  }[];
8506
8738
  lastError?: string | undefined;
8507
8739
  panelMeta?: {
@@ -8514,6 +8746,26 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8514
8746
  pluginName: string;
8515
8747
  panelId: string;
8516
8748
  }[] | undefined;
8749
+ panelContributions?: {
8750
+ pluginName: string;
8751
+ groupId: string;
8752
+ source: "manifest" | "runtime";
8753
+ panels: {
8754
+ id: string;
8755
+ title: string;
8756
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
8757
+ params?: Record<string, string> | undefined;
8758
+ pageId?: string | undefined;
8759
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8760
+ width?: "full" | "half" | undefined;
8761
+ }[];
8762
+ instanceTarget?: {
8763
+ kind: "global";
8764
+ } | {
8765
+ operatorId: string;
8766
+ kind: "operator";
8767
+ } | undefined;
8768
+ }[] | undefined;
8517
8769
  }>;
8518
8770
  }, "strip", z.ZodTypeAny, {
8519
8771
  type: WSMessageType.PLUGIN_LIST;
@@ -8532,6 +8784,23 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8532
8784
  autoDisabled: boolean;
8533
8785
  errorCount: number;
8534
8786
  description?: string | undefined;
8787
+ source?: {
8788
+ kind: "marketplace";
8789
+ version: string;
8790
+ channel: "stable" | "nightly";
8791
+ artifactUrl: string;
8792
+ sha256: string;
8793
+ installedAt: number;
8794
+ } | undefined;
8795
+ panels?: {
8796
+ id: string;
8797
+ title: string;
8798
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
8799
+ params?: Record<string, string> | undefined;
8800
+ pageId?: string | undefined;
8801
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8802
+ width?: "full" | "half" | undefined;
8803
+ }[] | undefined;
8535
8804
  ui?: {
8536
8805
  dir: string;
8537
8806
  pages: {
@@ -8543,9 +8812,9 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8543
8812
  icon?: string | undefined;
8544
8813
  }[];
8545
8814
  } | undefined;
8546
- permissions?: "network"[] | undefined;
8815
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
8547
8816
  settings?: Record<string, {
8548
- type: "string" | "number" | "boolean" | "string[]" | "info";
8817
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
8549
8818
  label: string;
8550
8819
  scope: "operator" | "global";
8551
8820
  options?: {
@@ -8556,6 +8825,15 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8556
8825
  max?: number | undefined;
8557
8826
  description?: string | undefined;
8558
8827
  default?: unknown;
8828
+ itemFields?: {
8829
+ type: "string" | "number" | "boolean";
8830
+ label: string;
8831
+ key: string;
8832
+ description?: string | undefined;
8833
+ placeholder?: string | undefined;
8834
+ required?: boolean | undefined;
8835
+ }[] | undefined;
8836
+ hidden?: boolean | undefined;
8559
8837
  }> | undefined;
8560
8838
  quickActions?: {
8561
8839
  id: string;
@@ -8565,26 +8843,10 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8565
8843
  quickSettings?: {
8566
8844
  settingKey: string;
8567
8845
  }[] | undefined;
8568
- panels?: {
8569
- id: string;
8570
- title: string;
8571
- component: "table" | "key-value" | "chart" | "log" | "iframe";
8572
- pageId?: string | undefined;
8573
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8574
- width?: "full" | "half" | undefined;
8575
- }[] | undefined;
8576
8846
  lastError?: string | undefined;
8577
8847
  assignedOperatorIds?: string[] | undefined;
8578
8848
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
8579
8849
  locales?: Record<string, Record<string, string>> | undefined;
8580
- source?: {
8581
- kind: "marketplace";
8582
- version: string;
8583
- channel: "stable" | "nightly";
8584
- artifactUrl: string;
8585
- sha256: string;
8586
- installedAt: number;
8587
- } | undefined;
8588
8850
  }[];
8589
8851
  panelMeta: {
8590
8852
  operatorId: string;
@@ -8596,6 +8858,26 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8596
8858
  pluginName: string;
8597
8859
  panelId: string;
8598
8860
  }[];
8861
+ panelContributions: {
8862
+ pluginName: string;
8863
+ groupId: string;
8864
+ source: "manifest" | "runtime";
8865
+ panels: {
8866
+ id: string;
8867
+ title: string;
8868
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
8869
+ params?: Record<string, string> | undefined;
8870
+ pageId?: string | undefined;
8871
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8872
+ width?: "full" | "half" | undefined;
8873
+ }[];
8874
+ instanceTarget?: {
8875
+ kind: "global";
8876
+ } | {
8877
+ operatorId: string;
8878
+ kind: "operator";
8879
+ } | undefined;
8880
+ }[];
8599
8881
  lastError?: string | undefined;
8600
8882
  };
8601
8883
  id?: string | undefined;
@@ -8613,6 +8895,23 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8613
8895
  isBuiltIn: boolean;
8614
8896
  errorCount: number;
8615
8897
  description?: string | undefined;
8898
+ source?: {
8899
+ kind: "marketplace";
8900
+ version: string;
8901
+ channel: "stable" | "nightly";
8902
+ artifactUrl: string;
8903
+ sha256: string;
8904
+ installedAt: number;
8905
+ } | undefined;
8906
+ panels?: {
8907
+ id: string;
8908
+ title: string;
8909
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
8910
+ params?: Record<string, string> | undefined;
8911
+ pageId?: string | undefined;
8912
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8913
+ width?: "full" | "half" | undefined;
8914
+ }[] | undefined;
8616
8915
  ui?: {
8617
8916
  dir?: string | undefined;
8618
8917
  pages?: {
@@ -8625,9 +8924,9 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8625
8924
  }[] | undefined;
8626
8925
  } | undefined;
8627
8926
  instanceScope?: "operator" | "global" | undefined;
8628
- permissions?: "network"[] | undefined;
8927
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
8629
8928
  settings?: Record<string, {
8630
- type: "string" | "number" | "boolean" | "string[]" | "info";
8929
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
8631
8930
  label: string;
8632
8931
  options?: {
8633
8932
  value: string;
@@ -8637,6 +8936,15 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8637
8936
  max?: number | undefined;
8638
8937
  description?: string | undefined;
8639
8938
  default?: unknown;
8939
+ itemFields?: {
8940
+ label: string;
8941
+ key: string;
8942
+ type?: "string" | "number" | "boolean" | undefined;
8943
+ description?: string | undefined;
8944
+ placeholder?: string | undefined;
8945
+ required?: boolean | undefined;
8946
+ }[] | undefined;
8947
+ hidden?: boolean | undefined;
8640
8948
  scope?: "operator" | "global" | undefined;
8641
8949
  }> | undefined;
8642
8950
  quickActions?: {
@@ -8647,28 +8955,12 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8647
8955
  quickSettings?: {
8648
8956
  settingKey: string;
8649
8957
  }[] | undefined;
8650
- panels?: {
8651
- id: string;
8652
- title: string;
8653
- component: "table" | "key-value" | "chart" | "log" | "iframe";
8654
- pageId?: string | undefined;
8655
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8656
- width?: "full" | "half" | undefined;
8657
- }[] | undefined;
8658
8958
  loaded?: boolean | undefined;
8659
8959
  autoDisabled?: boolean | undefined;
8660
8960
  lastError?: string | undefined;
8661
8961
  assignedOperatorIds?: string[] | undefined;
8662
8962
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
8663
8963
  locales?: Record<string, Record<string, string>> | undefined;
8664
- source?: {
8665
- kind: "marketplace";
8666
- version: string;
8667
- channel: "stable" | "nightly";
8668
- artifactUrl: string;
8669
- sha256: string;
8670
- installedAt: number;
8671
- } | undefined;
8672
8964
  }[];
8673
8965
  lastError?: string | undefined;
8674
8966
  panelMeta?: {
@@ -8681,7 +8973,27 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
8681
8973
  pluginName: string;
8682
8974
  panelId: string;
8683
8975
  }[] | undefined;
8684
- };
8976
+ panelContributions?: {
8977
+ pluginName: string;
8978
+ groupId: string;
8979
+ source: "manifest" | "runtime";
8980
+ panels: {
8981
+ id: string;
8982
+ title: string;
8983
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
8984
+ params?: Record<string, string> | undefined;
8985
+ pageId?: string | undefined;
8986
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8987
+ width?: "full" | "half" | undefined;
8988
+ }[];
8989
+ instanceTarget?: {
8990
+ kind: "global";
8991
+ } | {
8992
+ operatorId: string;
8993
+ kind: "operator";
8994
+ } | undefined;
8995
+ }[] | undefined;
8996
+ };
8685
8997
  id?: string | undefined;
8686
8998
  }>;
8687
8999
  export type WSPluginListMessage = z.infer<typeof WSPluginListMessageSchema>;
@@ -8706,7 +9018,7 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
8706
9018
  lastError: z.ZodOptional<z.ZodString>;
8707
9019
  assignedOperatorIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8708
9020
  settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
8709
- type: z.ZodEnum<["boolean", "number", "string", "string[]", "info"]>;
9021
+ type: z.ZodEnum<["boolean", "number", "string", "string[]", "object[]", "info"]>;
8710
9022
  default: z.ZodUnknown;
8711
9023
  label: z.ZodString;
8712
9024
  description: z.ZodOptional<z.ZodString>;
@@ -8722,9 +9034,32 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
8722
9034
  value: string;
8723
9035
  label: string;
8724
9036
  }>, "many">>;
9037
+ itemFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
9038
+ key: z.ZodString;
9039
+ type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["string", "number", "boolean"]>>>;
9040
+ label: z.ZodString;
9041
+ description: z.ZodOptional<z.ZodString>;
9042
+ placeholder: z.ZodOptional<z.ZodString>;
9043
+ required: z.ZodOptional<z.ZodBoolean>;
9044
+ }, "strip", z.ZodTypeAny, {
9045
+ type: "string" | "number" | "boolean";
9046
+ label: string;
9047
+ key: string;
9048
+ description?: string | undefined;
9049
+ placeholder?: string | undefined;
9050
+ required?: boolean | undefined;
9051
+ }, {
9052
+ label: string;
9053
+ key: string;
9054
+ type?: "string" | "number" | "boolean" | undefined;
9055
+ description?: string | undefined;
9056
+ placeholder?: string | undefined;
9057
+ required?: boolean | undefined;
9058
+ }>, "many">>;
9059
+ hidden: z.ZodOptional<z.ZodBoolean>;
8725
9060
  scope: z.ZodDefault<z.ZodOptional<z.ZodEnum<["global", "operator"]>>>;
8726
9061
  }, "strip", z.ZodTypeAny, {
8727
- type: "string" | "number" | "boolean" | "string[]" | "info";
9062
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
8728
9063
  label: string;
8729
9064
  scope: "operator" | "global";
8730
9065
  options?: {
@@ -8735,8 +9070,17 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
8735
9070
  max?: number | undefined;
8736
9071
  description?: string | undefined;
8737
9072
  default?: unknown;
9073
+ itemFields?: {
9074
+ type: "string" | "number" | "boolean";
9075
+ label: string;
9076
+ key: string;
9077
+ description?: string | undefined;
9078
+ placeholder?: string | undefined;
9079
+ required?: boolean | undefined;
9080
+ }[] | undefined;
9081
+ hidden?: boolean | undefined;
8738
9082
  }, {
8739
- type: "string" | "number" | "boolean" | "string[]" | "info";
9083
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
8740
9084
  label: string;
8741
9085
  options?: {
8742
9086
  value: string;
@@ -8746,6 +9090,15 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
8746
9090
  max?: number | undefined;
8747
9091
  description?: string | undefined;
8748
9092
  default?: unknown;
9093
+ itemFields?: {
9094
+ label: string;
9095
+ key: string;
9096
+ type?: "string" | "number" | "boolean" | undefined;
9097
+ description?: string | undefined;
9098
+ placeholder?: string | undefined;
9099
+ required?: boolean | undefined;
9100
+ }[] | undefined;
9101
+ hidden?: boolean | undefined;
8749
9102
  scope?: "operator" | "global" | undefined;
8750
9103
  }>>>;
8751
9104
  quickActions: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -8773,12 +9126,14 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
8773
9126
  title: z.ZodString;
8774
9127
  component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
8775
9128
  pageId: z.ZodOptional<z.ZodString>;
9129
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
8776
9130
  slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top"]>>;
8777
9131
  width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
8778
9132
  }, "strip", z.ZodTypeAny, {
8779
9133
  id: string;
8780
9134
  title: string;
8781
9135
  component: "table" | "key-value" | "chart" | "log" | "iframe";
9136
+ params?: Record<string, string> | undefined;
8782
9137
  pageId?: string | undefined;
8783
9138
  slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8784
9139
  width?: "full" | "half" | undefined;
@@ -8786,11 +9141,12 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
8786
9141
  id: string;
8787
9142
  title: string;
8788
9143
  component: "table" | "key-value" | "chart" | "log" | "iframe";
9144
+ params?: Record<string, string> | undefined;
8789
9145
  pageId?: string | undefined;
8790
9146
  slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8791
9147
  width?: "full" | "half" | undefined;
8792
9148
  }>, "many">>;
8793
- permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network"]>, "many">>;
9149
+ permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "radio:read", "radio:control", "radio:power"]>, "many">>;
8794
9150
  capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto_call_candidate", "auto_call_execution"]>, "many">>;
8795
9151
  ui: z.ZodOptional<z.ZodObject<{
8796
9152
  dir: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -8871,6 +9227,23 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
8871
9227
  autoDisabled: boolean;
8872
9228
  errorCount: number;
8873
9229
  description?: string | undefined;
9230
+ source?: {
9231
+ kind: "marketplace";
9232
+ version: string;
9233
+ channel: "stable" | "nightly";
9234
+ artifactUrl: string;
9235
+ sha256: string;
9236
+ installedAt: number;
9237
+ } | undefined;
9238
+ panels?: {
9239
+ id: string;
9240
+ title: string;
9241
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
9242
+ params?: Record<string, string> | undefined;
9243
+ pageId?: string | undefined;
9244
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
9245
+ width?: "full" | "half" | undefined;
9246
+ }[] | undefined;
8874
9247
  ui?: {
8875
9248
  dir: string;
8876
9249
  pages: {
@@ -8882,9 +9255,9 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
8882
9255
  icon?: string | undefined;
8883
9256
  }[];
8884
9257
  } | undefined;
8885
- permissions?: "network"[] | undefined;
9258
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
8886
9259
  settings?: Record<string, {
8887
- type: "string" | "number" | "boolean" | "string[]" | "info";
9260
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
8888
9261
  label: string;
8889
9262
  scope: "operator" | "global";
8890
9263
  options?: {
@@ -8895,6 +9268,15 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
8895
9268
  max?: number | undefined;
8896
9269
  description?: string | undefined;
8897
9270
  default?: unknown;
9271
+ itemFields?: {
9272
+ type: "string" | "number" | "boolean";
9273
+ label: string;
9274
+ key: string;
9275
+ description?: string | undefined;
9276
+ placeholder?: string | undefined;
9277
+ required?: boolean | undefined;
9278
+ }[] | undefined;
9279
+ hidden?: boolean | undefined;
8898
9280
  }> | undefined;
8899
9281
  quickActions?: {
8900
9282
  id: string;
@@ -8904,26 +9286,10 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
8904
9286
  quickSettings?: {
8905
9287
  settingKey: string;
8906
9288
  }[] | undefined;
8907
- panels?: {
8908
- id: string;
8909
- title: string;
8910
- component: "table" | "key-value" | "chart" | "log" | "iframe";
8911
- pageId?: string | undefined;
8912
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8913
- width?: "full" | "half" | undefined;
8914
- }[] | undefined;
8915
9289
  lastError?: string | undefined;
8916
9290
  assignedOperatorIds?: string[] | undefined;
8917
9291
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
8918
9292
  locales?: Record<string, Record<string, string>> | undefined;
8919
- source?: {
8920
- kind: "marketplace";
8921
- version: string;
8922
- channel: "stable" | "nightly";
8923
- artifactUrl: string;
8924
- sha256: string;
8925
- installedAt: number;
8926
- } | undefined;
8927
9293
  }, {
8928
9294
  type: "strategy" | "utility";
8929
9295
  name: string;
@@ -8932,6 +9298,23 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
8932
9298
  isBuiltIn: boolean;
8933
9299
  errorCount: number;
8934
9300
  description?: string | undefined;
9301
+ source?: {
9302
+ kind: "marketplace";
9303
+ version: string;
9304
+ channel: "stable" | "nightly";
9305
+ artifactUrl: string;
9306
+ sha256: string;
9307
+ installedAt: number;
9308
+ } | undefined;
9309
+ panels?: {
9310
+ id: string;
9311
+ title: string;
9312
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
9313
+ params?: Record<string, string> | undefined;
9314
+ pageId?: string | undefined;
9315
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
9316
+ width?: "full" | "half" | undefined;
9317
+ }[] | undefined;
8935
9318
  ui?: {
8936
9319
  dir?: string | undefined;
8937
9320
  pages?: {
@@ -8944,9 +9327,9 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
8944
9327
  }[] | undefined;
8945
9328
  } | undefined;
8946
9329
  instanceScope?: "operator" | "global" | undefined;
8947
- permissions?: "network"[] | undefined;
9330
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
8948
9331
  settings?: Record<string, {
8949
- type: "string" | "number" | "boolean" | "string[]" | "info";
9332
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
8950
9333
  label: string;
8951
9334
  options?: {
8952
9335
  value: string;
@@ -8956,6 +9339,15 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
8956
9339
  max?: number | undefined;
8957
9340
  description?: string | undefined;
8958
9341
  default?: unknown;
9342
+ itemFields?: {
9343
+ label: string;
9344
+ key: string;
9345
+ type?: "string" | "number" | "boolean" | undefined;
9346
+ description?: string | undefined;
9347
+ placeholder?: string | undefined;
9348
+ required?: boolean | undefined;
9349
+ }[] | undefined;
9350
+ hidden?: boolean | undefined;
8959
9351
  scope?: "operator" | "global" | undefined;
8960
9352
  }> | undefined;
8961
9353
  quickActions?: {
@@ -8966,28 +9358,12 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
8966
9358
  quickSettings?: {
8967
9359
  settingKey: string;
8968
9360
  }[] | undefined;
8969
- panels?: {
8970
- id: string;
8971
- title: string;
8972
- component: "table" | "key-value" | "chart" | "log" | "iframe";
8973
- pageId?: string | undefined;
8974
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
8975
- width?: "full" | "half" | undefined;
8976
- }[] | undefined;
8977
9361
  loaded?: boolean | undefined;
8978
9362
  autoDisabled?: boolean | undefined;
8979
9363
  lastError?: string | undefined;
8980
9364
  assignedOperatorIds?: string[] | undefined;
8981
9365
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
8982
9366
  locales?: Record<string, Record<string, string>> | undefined;
8983
- source?: {
8984
- kind: "marketplace";
8985
- version: string;
8986
- channel: "stable" | "nightly";
8987
- artifactUrl: string;
8988
- sha256: string;
8989
- installedAt: number;
8990
- } | undefined;
8991
9367
  }>;
8992
9368
  }, "strip", z.ZodTypeAny, {
8993
9369
  generation: number;
@@ -9002,6 +9378,23 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9002
9378
  autoDisabled: boolean;
9003
9379
  errorCount: number;
9004
9380
  description?: string | undefined;
9381
+ source?: {
9382
+ kind: "marketplace";
9383
+ version: string;
9384
+ channel: "stable" | "nightly";
9385
+ artifactUrl: string;
9386
+ sha256: string;
9387
+ installedAt: number;
9388
+ } | undefined;
9389
+ panels?: {
9390
+ id: string;
9391
+ title: string;
9392
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
9393
+ params?: Record<string, string> | undefined;
9394
+ pageId?: string | undefined;
9395
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
9396
+ width?: "full" | "half" | undefined;
9397
+ }[] | undefined;
9005
9398
  ui?: {
9006
9399
  dir: string;
9007
9400
  pages: {
@@ -9013,9 +9406,9 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9013
9406
  icon?: string | undefined;
9014
9407
  }[];
9015
9408
  } | undefined;
9016
- permissions?: "network"[] | undefined;
9409
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
9017
9410
  settings?: Record<string, {
9018
- type: "string" | "number" | "boolean" | "string[]" | "info";
9411
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
9019
9412
  label: string;
9020
9413
  scope: "operator" | "global";
9021
9414
  options?: {
@@ -9026,6 +9419,15 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9026
9419
  max?: number | undefined;
9027
9420
  description?: string | undefined;
9028
9421
  default?: unknown;
9422
+ itemFields?: {
9423
+ type: "string" | "number" | "boolean";
9424
+ label: string;
9425
+ key: string;
9426
+ description?: string | undefined;
9427
+ placeholder?: string | undefined;
9428
+ required?: boolean | undefined;
9429
+ }[] | undefined;
9430
+ hidden?: boolean | undefined;
9029
9431
  }> | undefined;
9030
9432
  quickActions?: {
9031
9433
  id: string;
@@ -9035,26 +9437,10 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9035
9437
  quickSettings?: {
9036
9438
  settingKey: string;
9037
9439
  }[] | undefined;
9038
- panels?: {
9039
- id: string;
9040
- title: string;
9041
- component: "table" | "key-value" | "chart" | "log" | "iframe";
9042
- pageId?: string | undefined;
9043
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
9044
- width?: "full" | "half" | undefined;
9045
- }[] | undefined;
9046
9440
  lastError?: string | undefined;
9047
9441
  assignedOperatorIds?: string[] | undefined;
9048
9442
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
9049
9443
  locales?: Record<string, Record<string, string>> | undefined;
9050
- source?: {
9051
- kind: "marketplace";
9052
- version: string;
9053
- channel: "stable" | "nightly";
9054
- artifactUrl: string;
9055
- sha256: string;
9056
- installedAt: number;
9057
- } | undefined;
9058
9444
  };
9059
9445
  }, {
9060
9446
  generation: number;
@@ -9066,6 +9452,23 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9066
9452
  isBuiltIn: boolean;
9067
9453
  errorCount: number;
9068
9454
  description?: string | undefined;
9455
+ source?: {
9456
+ kind: "marketplace";
9457
+ version: string;
9458
+ channel: "stable" | "nightly";
9459
+ artifactUrl: string;
9460
+ sha256: string;
9461
+ installedAt: number;
9462
+ } | undefined;
9463
+ panels?: {
9464
+ id: string;
9465
+ title: string;
9466
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
9467
+ params?: Record<string, string> | undefined;
9468
+ pageId?: string | undefined;
9469
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
9470
+ width?: "full" | "half" | undefined;
9471
+ }[] | undefined;
9069
9472
  ui?: {
9070
9473
  dir?: string | undefined;
9071
9474
  pages?: {
@@ -9078,9 +9481,9 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9078
9481
  }[] | undefined;
9079
9482
  } | undefined;
9080
9483
  instanceScope?: "operator" | "global" | undefined;
9081
- permissions?: "network"[] | undefined;
9484
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
9082
9485
  settings?: Record<string, {
9083
- type: "string" | "number" | "boolean" | "string[]" | "info";
9486
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
9084
9487
  label: string;
9085
9488
  options?: {
9086
9489
  value: string;
@@ -9090,6 +9493,15 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9090
9493
  max?: number | undefined;
9091
9494
  description?: string | undefined;
9092
9495
  default?: unknown;
9496
+ itemFields?: {
9497
+ label: string;
9498
+ key: string;
9499
+ type?: "string" | "number" | "boolean" | undefined;
9500
+ description?: string | undefined;
9501
+ placeholder?: string | undefined;
9502
+ required?: boolean | undefined;
9503
+ }[] | undefined;
9504
+ hidden?: boolean | undefined;
9093
9505
  scope?: "operator" | "global" | undefined;
9094
9506
  }> | undefined;
9095
9507
  quickActions?: {
@@ -9100,28 +9512,12 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9100
9512
  quickSettings?: {
9101
9513
  settingKey: string;
9102
9514
  }[] | undefined;
9103
- panels?: {
9104
- id: string;
9105
- title: string;
9106
- component: "table" | "key-value" | "chart" | "log" | "iframe";
9107
- pageId?: string | undefined;
9108
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
9109
- width?: "full" | "half" | undefined;
9110
- }[] | undefined;
9111
9515
  loaded?: boolean | undefined;
9112
9516
  autoDisabled?: boolean | undefined;
9113
9517
  lastError?: string | undefined;
9114
9518
  assignedOperatorIds?: string[] | undefined;
9115
9519
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
9116
9520
  locales?: Record<string, Record<string, string>> | undefined;
9117
- source?: {
9118
- kind: "marketplace";
9119
- version: string;
9120
- channel: "stable" | "nightly";
9121
- artifactUrl: string;
9122
- sha256: string;
9123
- installedAt: number;
9124
- } | undefined;
9125
9521
  };
9126
9522
  }>;
9127
9523
  }, "strip", z.ZodTypeAny, {
@@ -9140,6 +9536,23 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9140
9536
  autoDisabled: boolean;
9141
9537
  errorCount: number;
9142
9538
  description?: string | undefined;
9539
+ source?: {
9540
+ kind: "marketplace";
9541
+ version: string;
9542
+ channel: "stable" | "nightly";
9543
+ artifactUrl: string;
9544
+ sha256: string;
9545
+ installedAt: number;
9546
+ } | undefined;
9547
+ panels?: {
9548
+ id: string;
9549
+ title: string;
9550
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
9551
+ params?: Record<string, string> | undefined;
9552
+ pageId?: string | undefined;
9553
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
9554
+ width?: "full" | "half" | undefined;
9555
+ }[] | undefined;
9143
9556
  ui?: {
9144
9557
  dir: string;
9145
9558
  pages: {
@@ -9151,9 +9564,9 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9151
9564
  icon?: string | undefined;
9152
9565
  }[];
9153
9566
  } | undefined;
9154
- permissions?: "network"[] | undefined;
9567
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
9155
9568
  settings?: Record<string, {
9156
- type: "string" | "number" | "boolean" | "string[]" | "info";
9569
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
9157
9570
  label: string;
9158
9571
  scope: "operator" | "global";
9159
9572
  options?: {
@@ -9164,6 +9577,15 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9164
9577
  max?: number | undefined;
9165
9578
  description?: string | undefined;
9166
9579
  default?: unknown;
9580
+ itemFields?: {
9581
+ type: "string" | "number" | "boolean";
9582
+ label: string;
9583
+ key: string;
9584
+ description?: string | undefined;
9585
+ placeholder?: string | undefined;
9586
+ required?: boolean | undefined;
9587
+ }[] | undefined;
9588
+ hidden?: boolean | undefined;
9167
9589
  }> | undefined;
9168
9590
  quickActions?: {
9169
9591
  id: string;
@@ -9173,26 +9595,10 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9173
9595
  quickSettings?: {
9174
9596
  settingKey: string;
9175
9597
  }[] | undefined;
9176
- panels?: {
9177
- id: string;
9178
- title: string;
9179
- component: "table" | "key-value" | "chart" | "log" | "iframe";
9180
- pageId?: string | undefined;
9181
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
9182
- width?: "full" | "half" | undefined;
9183
- }[] | undefined;
9184
9598
  lastError?: string | undefined;
9185
9599
  assignedOperatorIds?: string[] | undefined;
9186
9600
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
9187
9601
  locales?: Record<string, Record<string, string>> | undefined;
9188
- source?: {
9189
- kind: "marketplace";
9190
- version: string;
9191
- channel: "stable" | "nightly";
9192
- artifactUrl: string;
9193
- sha256: string;
9194
- installedAt: number;
9195
- } | undefined;
9196
9602
  };
9197
9603
  };
9198
9604
  id?: string | undefined;
@@ -9209,6 +9615,23 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9209
9615
  isBuiltIn: boolean;
9210
9616
  errorCount: number;
9211
9617
  description?: string | undefined;
9618
+ source?: {
9619
+ kind: "marketplace";
9620
+ version: string;
9621
+ channel: "stable" | "nightly";
9622
+ artifactUrl: string;
9623
+ sha256: string;
9624
+ installedAt: number;
9625
+ } | undefined;
9626
+ panels?: {
9627
+ id: string;
9628
+ title: string;
9629
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
9630
+ params?: Record<string, string> | undefined;
9631
+ pageId?: string | undefined;
9632
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
9633
+ width?: "full" | "half" | undefined;
9634
+ }[] | undefined;
9212
9635
  ui?: {
9213
9636
  dir?: string | undefined;
9214
9637
  pages?: {
@@ -9221,9 +9644,9 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9221
9644
  }[] | undefined;
9222
9645
  } | undefined;
9223
9646
  instanceScope?: "operator" | "global" | undefined;
9224
- permissions?: "network"[] | undefined;
9647
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
9225
9648
  settings?: Record<string, {
9226
- type: "string" | "number" | "boolean" | "string[]" | "info";
9649
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
9227
9650
  label: string;
9228
9651
  options?: {
9229
9652
  value: string;
@@ -9233,6 +9656,15 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9233
9656
  max?: number | undefined;
9234
9657
  description?: string | undefined;
9235
9658
  default?: unknown;
9659
+ itemFields?: {
9660
+ label: string;
9661
+ key: string;
9662
+ type?: "string" | "number" | "boolean" | undefined;
9663
+ description?: string | undefined;
9664
+ placeholder?: string | undefined;
9665
+ required?: boolean | undefined;
9666
+ }[] | undefined;
9667
+ hidden?: boolean | undefined;
9236
9668
  scope?: "operator" | "global" | undefined;
9237
9669
  }> | undefined;
9238
9670
  quickActions?: {
@@ -9243,28 +9675,12 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
9243
9675
  quickSettings?: {
9244
9676
  settingKey: string;
9245
9677
  }[] | undefined;
9246
- panels?: {
9247
- id: string;
9248
- title: string;
9249
- component: "table" | "key-value" | "chart" | "log" | "iframe";
9250
- pageId?: string | undefined;
9251
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
9252
- width?: "full" | "half" | undefined;
9253
- }[] | undefined;
9254
9678
  loaded?: boolean | undefined;
9255
9679
  autoDisabled?: boolean | undefined;
9256
9680
  lastError?: string | undefined;
9257
9681
  assignedOperatorIds?: string[] | undefined;
9258
9682
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
9259
9683
  locales?: Record<string, Record<string, string>> | undefined;
9260
- source?: {
9261
- kind: "marketplace";
9262
- version: string;
9263
- channel: "stable" | "nightly";
9264
- artifactUrl: string;
9265
- sha256: string;
9266
- installedAt: number;
9267
- } | undefined;
9268
9684
  };
9269
9685
  };
9270
9686
  id?: string | undefined;
@@ -9922,18 +10338,21 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
9922
10338
  totalFramesBeforeDedup: z.ZodDefault<z.ZodNumber>;
9923
10339
  totalFramesAfterDedup: z.ZodDefault<z.ZodNumber>;
9924
10340
  lastUpdated: z.ZodDefault<z.ZodNumber>;
10341
+ updateSeq: z.ZodOptional<z.ZodNumber>;
9925
10342
  }, "strip", z.ZodTypeAny, {
9926
10343
  totalDecodes: number;
9927
10344
  successfulDecodes: number;
9928
10345
  totalFramesBeforeDedup: number;
9929
10346
  totalFramesAfterDedup: number;
9930
10347
  lastUpdated: number;
10348
+ updateSeq?: number | undefined;
9931
10349
  }, {
9932
10350
  totalDecodes?: number | undefined;
9933
10351
  successfulDecodes?: number | undefined;
9934
10352
  totalFramesBeforeDedup?: number | undefined;
9935
10353
  totalFramesAfterDedup?: number | undefined;
9936
10354
  lastUpdated?: number | undefined;
10355
+ updateSeq?: number | undefined;
9937
10356
  }>>;
9938
10357
  decodeHistory: z.ZodDefault<z.ZodArray<z.ZodObject<{
9939
10358
  windowIdx: z.ZodNumber;
@@ -9984,6 +10403,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
9984
10403
  totalFramesBeforeDedup: number;
9985
10404
  totalFramesAfterDedup: number;
9986
10405
  lastUpdated: number;
10406
+ updateSeq?: number | undefined;
9987
10407
  };
9988
10408
  decodeHistory: {
9989
10409
  windowIdx: number;
@@ -10024,6 +10444,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10024
10444
  totalFramesBeforeDedup?: number | undefined;
10025
10445
  totalFramesAfterDedup?: number | undefined;
10026
10446
  lastUpdated?: number | undefined;
10447
+ updateSeq?: number | undefined;
10027
10448
  } | undefined;
10028
10449
  decodeHistory?: {
10029
10450
  windowIdx: number;
@@ -10068,6 +10489,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10068
10489
  totalFramesBeforeDedup: number;
10069
10490
  totalFramesAfterDedup: number;
10070
10491
  lastUpdated: number;
10492
+ updateSeq?: number | undefined;
10071
10493
  };
10072
10494
  decodeHistory: {
10073
10495
  windowIdx: number;
@@ -10113,6 +10535,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10113
10535
  totalFramesBeforeDedup?: number | undefined;
10114
10536
  totalFramesAfterDedup?: number | undefined;
10115
10537
  lastUpdated?: number | undefined;
10538
+ updateSeq?: number | undefined;
10116
10539
  } | undefined;
10117
10540
  decodeHistory?: {
10118
10541
  windowIdx: number;
@@ -10957,7 +11380,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10957
11380
  /** 当前电台调制模式(语音模式下使用,如 USB/LSB/FM/AM) */
10958
11381
  currentRadioMode: z.ZodOptional<z.ZodString>;
10959
11382
  /** 引擎状态机当前状态 */
10960
- engineState: z.ZodOptional<z.ZodEnum<["idle", "waking", "starting", "running", "stopping"]>>;
11383
+ engineState: z.ZodOptional<z.ZodEnum<["idle", "starting", "running", "stopping"]>>;
10961
11384
  /** 引擎状态机上下文的精简投影 */
10962
11385
  engineContext: z.ZodOptional<z.ZodNullable<z.ZodObject<{
10963
11386
  error: z.ZodOptional<z.ZodString>;
@@ -10992,7 +11415,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10992
11415
  connectionHealthy: boolean;
10993
11416
  } | undefined;
10994
11417
  currentRadioMode?: string | undefined;
10995
- engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
11418
+ engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
10996
11419
  engineContext?: {
10997
11420
  error?: string | undefined;
10998
11421
  startedResources?: string[] | undefined;
@@ -11018,7 +11441,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11018
11441
  } | undefined;
11019
11442
  engineMode?: "voice" | "digital" | undefined;
11020
11443
  currentRadioMode?: string | undefined;
11021
- engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
11444
+ engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
11022
11445
  engineContext?: {
11023
11446
  error?: string | undefined;
11024
11447
  startedResources?: string[] | undefined;
@@ -11048,7 +11471,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11048
11471
  connectionHealthy: boolean;
11049
11472
  } | undefined;
11050
11473
  currentRadioMode?: string | undefined;
11051
- engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
11474
+ engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
11052
11475
  engineContext?: {
11053
11476
  error?: string | undefined;
11054
11477
  startedResources?: string[] | undefined;
@@ -11079,7 +11502,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11079
11502
  } | undefined;
11080
11503
  engineMode?: "voice" | "digital" | undefined;
11081
11504
  currentRadioMode?: string | undefined;
11082
- engineState?: "idle" | "stopping" | "waking" | "running" | "starting" | undefined;
11505
+ engineState?: "idle" | "stopping" | "running" | "starting" | undefined;
11083
11506
  engineContext?: {
11084
11507
  error?: string | undefined;
11085
11508
  startedResources?: string[] | undefined;
@@ -11607,14 +12030,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11607
12030
  };
11608
12031
  isTransmitting: boolean;
11609
12032
  transmitCycles?: number[] | undefined;
11610
- slots?: {
11611
- TX1?: string | undefined;
11612
- TX2?: string | undefined;
11613
- TX3?: string | undefined;
11614
- TX4?: string | undefined;
11615
- TX5?: string | undefined;
11616
- TX6?: string | undefined;
11617
- } | undefined;
11618
12033
  runtime?: {
11619
12034
  currentState: string;
11620
12035
  slots?: {
@@ -11634,6 +12049,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11634
12049
  } | undefined;
11635
12050
  availableSlots?: string[] | undefined;
11636
12051
  } | undefined;
12052
+ slots?: {
12053
+ TX1?: string | undefined;
12054
+ TX2?: string | undefined;
12055
+ TX3?: string | undefined;
12056
+ TX4?: string | undefined;
12057
+ TX5?: string | undefined;
12058
+ TX6?: string | undefined;
12059
+ } | undefined;
11637
12060
  isInActivePTT?: boolean | undefined;
11638
12061
  currentSlot?: string | undefined;
11639
12062
  }, {
@@ -11655,14 +12078,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11655
12078
  };
11656
12079
  isTransmitting: boolean;
11657
12080
  transmitCycles?: number[] | undefined;
11658
- slots?: {
11659
- TX1?: string | undefined;
11660
- TX2?: string | undefined;
11661
- TX3?: string | undefined;
11662
- TX4?: string | undefined;
11663
- TX5?: string | undefined;
11664
- TX6?: string | undefined;
11665
- } | undefined;
11666
12081
  runtime?: {
11667
12082
  currentState: string;
11668
12083
  slots?: {
@@ -11682,6 +12097,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11682
12097
  } | undefined;
11683
12098
  availableSlots?: string[] | undefined;
11684
12099
  } | undefined;
12100
+ slots?: {
12101
+ TX1?: string | undefined;
12102
+ TX2?: string | undefined;
12103
+ TX3?: string | undefined;
12104
+ TX4?: string | undefined;
12105
+ TX5?: string | undefined;
12106
+ TX6?: string | undefined;
12107
+ } | undefined;
11685
12108
  isInActivePTT?: boolean | undefined;
11686
12109
  currentSlot?: string | undefined;
11687
12110
  }>, "many">;
@@ -11705,14 +12128,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11705
12128
  };
11706
12129
  isTransmitting: boolean;
11707
12130
  transmitCycles?: number[] | undefined;
11708
- slots?: {
11709
- TX1?: string | undefined;
11710
- TX2?: string | undefined;
11711
- TX3?: string | undefined;
11712
- TX4?: string | undefined;
11713
- TX5?: string | undefined;
11714
- TX6?: string | undefined;
11715
- } | undefined;
11716
12131
  runtime?: {
11717
12132
  currentState: string;
11718
12133
  slots?: {
@@ -11732,6 +12147,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11732
12147
  } | undefined;
11733
12148
  availableSlots?: string[] | undefined;
11734
12149
  } | undefined;
12150
+ slots?: {
12151
+ TX1?: string | undefined;
12152
+ TX2?: string | undefined;
12153
+ TX3?: string | undefined;
12154
+ TX4?: string | undefined;
12155
+ TX5?: string | undefined;
12156
+ TX6?: string | undefined;
12157
+ } | undefined;
11735
12158
  isInActivePTT?: boolean | undefined;
11736
12159
  currentSlot?: string | undefined;
11737
12160
  }[];
@@ -11755,14 +12178,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11755
12178
  };
11756
12179
  isTransmitting: boolean;
11757
12180
  transmitCycles?: number[] | undefined;
11758
- slots?: {
11759
- TX1?: string | undefined;
11760
- TX2?: string | undefined;
11761
- TX3?: string | undefined;
11762
- TX4?: string | undefined;
11763
- TX5?: string | undefined;
11764
- TX6?: string | undefined;
11765
- } | undefined;
11766
12181
  runtime?: {
11767
12182
  currentState: string;
11768
12183
  slots?: {
@@ -11782,6 +12197,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11782
12197
  } | undefined;
11783
12198
  availableSlots?: string[] | undefined;
11784
12199
  } | undefined;
12200
+ slots?: {
12201
+ TX1?: string | undefined;
12202
+ TX2?: string | undefined;
12203
+ TX3?: string | undefined;
12204
+ TX4?: string | undefined;
12205
+ TX5?: string | undefined;
12206
+ TX6?: string | undefined;
12207
+ } | undefined;
11785
12208
  isInActivePTT?: boolean | undefined;
11786
12209
  currentSlot?: string | undefined;
11787
12210
  }[];
@@ -11809,14 +12232,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11809
12232
  };
11810
12233
  isTransmitting: boolean;
11811
12234
  transmitCycles?: number[] | undefined;
11812
- slots?: {
11813
- TX1?: string | undefined;
11814
- TX2?: string | undefined;
11815
- TX3?: string | undefined;
11816
- TX4?: string | undefined;
11817
- TX5?: string | undefined;
11818
- TX6?: string | undefined;
11819
- } | undefined;
11820
12235
  runtime?: {
11821
12236
  currentState: string;
11822
12237
  slots?: {
@@ -11836,6 +12251,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11836
12251
  } | undefined;
11837
12252
  availableSlots?: string[] | undefined;
11838
12253
  } | undefined;
12254
+ slots?: {
12255
+ TX1?: string | undefined;
12256
+ TX2?: string | undefined;
12257
+ TX3?: string | undefined;
12258
+ TX4?: string | undefined;
12259
+ TX5?: string | undefined;
12260
+ TX6?: string | undefined;
12261
+ } | undefined;
11839
12262
  isInActivePTT?: boolean | undefined;
11840
12263
  currentSlot?: string | undefined;
11841
12264
  }[];
@@ -11864,14 +12287,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11864
12287
  };
11865
12288
  isTransmitting: boolean;
11866
12289
  transmitCycles?: number[] | undefined;
11867
- slots?: {
11868
- TX1?: string | undefined;
11869
- TX2?: string | undefined;
11870
- TX3?: string | undefined;
11871
- TX4?: string | undefined;
11872
- TX5?: string | undefined;
11873
- TX6?: string | undefined;
11874
- } | undefined;
11875
12290
  runtime?: {
11876
12291
  currentState: string;
11877
12292
  slots?: {
@@ -11891,6 +12306,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
11891
12306
  } | undefined;
11892
12307
  availableSlots?: string[] | undefined;
11893
12308
  } | undefined;
12309
+ slots?: {
12310
+ TX1?: string | undefined;
12311
+ TX2?: string | undefined;
12312
+ TX3?: string | undefined;
12313
+ TX4?: string | undefined;
12314
+ TX5?: string | undefined;
12315
+ TX6?: string | undefined;
12316
+ } | undefined;
11894
12317
  isInActivePTT?: boolean | undefined;
11895
12318
  currentSlot?: string | undefined;
11896
12319
  }[];
@@ -12068,14 +12491,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12068
12491
  };
12069
12492
  isTransmitting: boolean;
12070
12493
  transmitCycles?: number[] | undefined;
12071
- slots?: {
12072
- TX1?: string | undefined;
12073
- TX2?: string | undefined;
12074
- TX3?: string | undefined;
12075
- TX4?: string | undefined;
12076
- TX5?: string | undefined;
12077
- TX6?: string | undefined;
12078
- } | undefined;
12079
12494
  runtime?: {
12080
12495
  currentState: string;
12081
12496
  slots?: {
@@ -12095,6 +12510,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12095
12510
  } | undefined;
12096
12511
  availableSlots?: string[] | undefined;
12097
12512
  } | undefined;
12513
+ slots?: {
12514
+ TX1?: string | undefined;
12515
+ TX2?: string | undefined;
12516
+ TX3?: string | undefined;
12517
+ TX4?: string | undefined;
12518
+ TX5?: string | undefined;
12519
+ TX6?: string | undefined;
12520
+ } | undefined;
12098
12521
  isInActivePTT?: boolean | undefined;
12099
12522
  currentSlot?: string | undefined;
12100
12523
  }, {
@@ -12116,14 +12539,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12116
12539
  };
12117
12540
  isTransmitting: boolean;
12118
12541
  transmitCycles?: number[] | undefined;
12119
- slots?: {
12120
- TX1?: string | undefined;
12121
- TX2?: string | undefined;
12122
- TX3?: string | undefined;
12123
- TX4?: string | undefined;
12124
- TX5?: string | undefined;
12125
- TX6?: string | undefined;
12126
- } | undefined;
12127
12542
  runtime?: {
12128
12543
  currentState: string;
12129
12544
  slots?: {
@@ -12143,6 +12558,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12143
12558
  } | undefined;
12144
12559
  availableSlots?: string[] | undefined;
12145
12560
  } | undefined;
12561
+ slots?: {
12562
+ TX1?: string | undefined;
12563
+ TX2?: string | undefined;
12564
+ TX3?: string | undefined;
12565
+ TX4?: string | undefined;
12566
+ TX5?: string | undefined;
12567
+ TX6?: string | undefined;
12568
+ } | undefined;
12146
12569
  isInActivePTT?: boolean | undefined;
12147
12570
  currentSlot?: string | undefined;
12148
12571
  }>;
@@ -12168,14 +12591,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12168
12591
  };
12169
12592
  isTransmitting: boolean;
12170
12593
  transmitCycles?: number[] | undefined;
12171
- slots?: {
12172
- TX1?: string | undefined;
12173
- TX2?: string | undefined;
12174
- TX3?: string | undefined;
12175
- TX4?: string | undefined;
12176
- TX5?: string | undefined;
12177
- TX6?: string | undefined;
12178
- } | undefined;
12179
12594
  runtime?: {
12180
12595
  currentState: string;
12181
12596
  slots?: {
@@ -12195,6 +12610,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12195
12610
  } | undefined;
12196
12611
  availableSlots?: string[] | undefined;
12197
12612
  } | undefined;
12613
+ slots?: {
12614
+ TX1?: string | undefined;
12615
+ TX2?: string | undefined;
12616
+ TX3?: string | undefined;
12617
+ TX4?: string | undefined;
12618
+ TX5?: string | undefined;
12619
+ TX6?: string | undefined;
12620
+ } | undefined;
12198
12621
  isInActivePTT?: boolean | undefined;
12199
12622
  currentSlot?: string | undefined;
12200
12623
  };
@@ -12221,14 +12644,6 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12221
12644
  };
12222
12645
  isTransmitting: boolean;
12223
12646
  transmitCycles?: number[] | undefined;
12224
- slots?: {
12225
- TX1?: string | undefined;
12226
- TX2?: string | undefined;
12227
- TX3?: string | undefined;
12228
- TX4?: string | undefined;
12229
- TX5?: string | undefined;
12230
- TX6?: string | undefined;
12231
- } | undefined;
12232
12647
  runtime?: {
12233
12648
  currentState: string;
12234
12649
  slots?: {
@@ -12248,6 +12663,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
12248
12663
  } | undefined;
12249
12664
  availableSlots?: string[] | undefined;
12250
12665
  } | undefined;
12666
+ slots?: {
12667
+ TX1?: string | undefined;
12668
+ TX2?: string | undefined;
12669
+ TX3?: string | undefined;
12670
+ TX4?: string | undefined;
12671
+ TX5?: string | undefined;
12672
+ TX6?: string | undefined;
12673
+ } | undefined;
12251
12674
  isInActivePTT?: boolean | undefined;
12252
12675
  currentSlot?: string | undefined;
12253
12676
  };
@@ -15531,7 +15954,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15531
15954
  lastError: z.ZodOptional<z.ZodString>;
15532
15955
  assignedOperatorIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
15533
15956
  settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
15534
- type: z.ZodEnum<["boolean", "number", "string", "string[]", "info"]>;
15957
+ type: z.ZodEnum<["boolean", "number", "string", "string[]", "object[]", "info"]>;
15535
15958
  default: z.ZodUnknown;
15536
15959
  label: z.ZodString;
15537
15960
  description: z.ZodOptional<z.ZodString>;
@@ -15547,9 +15970,32 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15547
15970
  value: string;
15548
15971
  label: string;
15549
15972
  }>, "many">>;
15973
+ itemFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
15974
+ key: z.ZodString;
15975
+ type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["string", "number", "boolean"]>>>;
15976
+ label: z.ZodString;
15977
+ description: z.ZodOptional<z.ZodString>;
15978
+ placeholder: z.ZodOptional<z.ZodString>;
15979
+ required: z.ZodOptional<z.ZodBoolean>;
15980
+ }, "strip", z.ZodTypeAny, {
15981
+ type: "string" | "number" | "boolean";
15982
+ label: string;
15983
+ key: string;
15984
+ description?: string | undefined;
15985
+ placeholder?: string | undefined;
15986
+ required?: boolean | undefined;
15987
+ }, {
15988
+ label: string;
15989
+ key: string;
15990
+ type?: "string" | "number" | "boolean" | undefined;
15991
+ description?: string | undefined;
15992
+ placeholder?: string | undefined;
15993
+ required?: boolean | undefined;
15994
+ }>, "many">>;
15995
+ hidden: z.ZodOptional<z.ZodBoolean>;
15550
15996
  scope: z.ZodDefault<z.ZodOptional<z.ZodEnum<["global", "operator"]>>>;
15551
15997
  }, "strip", z.ZodTypeAny, {
15552
- type: "string" | "number" | "boolean" | "string[]" | "info";
15998
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
15553
15999
  label: string;
15554
16000
  scope: "operator" | "global";
15555
16001
  options?: {
@@ -15560,8 +16006,17 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15560
16006
  max?: number | undefined;
15561
16007
  description?: string | undefined;
15562
16008
  default?: unknown;
16009
+ itemFields?: {
16010
+ type: "string" | "number" | "boolean";
16011
+ label: string;
16012
+ key: string;
16013
+ description?: string | undefined;
16014
+ placeholder?: string | undefined;
16015
+ required?: boolean | undefined;
16016
+ }[] | undefined;
16017
+ hidden?: boolean | undefined;
15563
16018
  }, {
15564
- type: "string" | "number" | "boolean" | "string[]" | "info";
16019
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
15565
16020
  label: string;
15566
16021
  options?: {
15567
16022
  value: string;
@@ -15571,6 +16026,15 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15571
16026
  max?: number | undefined;
15572
16027
  description?: string | undefined;
15573
16028
  default?: unknown;
16029
+ itemFields?: {
16030
+ label: string;
16031
+ key: string;
16032
+ type?: "string" | "number" | "boolean" | undefined;
16033
+ description?: string | undefined;
16034
+ placeholder?: string | undefined;
16035
+ required?: boolean | undefined;
16036
+ }[] | undefined;
16037
+ hidden?: boolean | undefined;
15574
16038
  scope?: "operator" | "global" | undefined;
15575
16039
  }>>>;
15576
16040
  quickActions: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -15598,12 +16062,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15598
16062
  title: z.ZodString;
15599
16063
  component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
15600
16064
  pageId: z.ZodOptional<z.ZodString>;
16065
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
15601
16066
  slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top"]>>;
15602
16067
  width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
15603
16068
  }, "strip", z.ZodTypeAny, {
15604
16069
  id: string;
15605
16070
  title: string;
15606
16071
  component: "table" | "key-value" | "chart" | "log" | "iframe";
16072
+ params?: Record<string, string> | undefined;
15607
16073
  pageId?: string | undefined;
15608
16074
  slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
15609
16075
  width?: "full" | "half" | undefined;
@@ -15611,11 +16077,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15611
16077
  id: string;
15612
16078
  title: string;
15613
16079
  component: "table" | "key-value" | "chart" | "log" | "iframe";
16080
+ params?: Record<string, string> | undefined;
15614
16081
  pageId?: string | undefined;
15615
16082
  slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
15616
16083
  width?: "full" | "half" | undefined;
15617
16084
  }>, "many">>;
15618
- permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network"]>, "many">>;
16085
+ permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "radio:read", "radio:control", "radio:power"]>, "many">>;
15619
16086
  capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto_call_candidate", "auto_call_execution"]>, "many">>;
15620
16087
  ui: z.ZodOptional<z.ZodObject<{
15621
16088
  dir: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -15696,6 +16163,23 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15696
16163
  autoDisabled: boolean;
15697
16164
  errorCount: number;
15698
16165
  description?: string | undefined;
16166
+ source?: {
16167
+ kind: "marketplace";
16168
+ version: string;
16169
+ channel: "stable" | "nightly";
16170
+ artifactUrl: string;
16171
+ sha256: string;
16172
+ installedAt: number;
16173
+ } | undefined;
16174
+ panels?: {
16175
+ id: string;
16176
+ title: string;
16177
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
16178
+ params?: Record<string, string> | undefined;
16179
+ pageId?: string | undefined;
16180
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16181
+ width?: "full" | "half" | undefined;
16182
+ }[] | undefined;
15699
16183
  ui?: {
15700
16184
  dir: string;
15701
16185
  pages: {
@@ -15707,9 +16191,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15707
16191
  icon?: string | undefined;
15708
16192
  }[];
15709
16193
  } | undefined;
15710
- permissions?: "network"[] | undefined;
16194
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
15711
16195
  settings?: Record<string, {
15712
- type: "string" | "number" | "boolean" | "string[]" | "info";
16196
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
15713
16197
  label: string;
15714
16198
  scope: "operator" | "global";
15715
16199
  options?: {
@@ -15720,6 +16204,15 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15720
16204
  max?: number | undefined;
15721
16205
  description?: string | undefined;
15722
16206
  default?: unknown;
16207
+ itemFields?: {
16208
+ type: "string" | "number" | "boolean";
16209
+ label: string;
16210
+ key: string;
16211
+ description?: string | undefined;
16212
+ placeholder?: string | undefined;
16213
+ required?: boolean | undefined;
16214
+ }[] | undefined;
16215
+ hidden?: boolean | undefined;
15723
16216
  }> | undefined;
15724
16217
  quickActions?: {
15725
16218
  id: string;
@@ -15729,26 +16222,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15729
16222
  quickSettings?: {
15730
16223
  settingKey: string;
15731
16224
  }[] | undefined;
15732
- panels?: {
15733
- id: string;
15734
- title: string;
15735
- component: "table" | "key-value" | "chart" | "log" | "iframe";
15736
- pageId?: string | undefined;
15737
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
15738
- width?: "full" | "half" | undefined;
15739
- }[] | undefined;
15740
16225
  lastError?: string | undefined;
15741
16226
  assignedOperatorIds?: string[] | undefined;
15742
16227
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
15743
16228
  locales?: Record<string, Record<string, string>> | undefined;
15744
- source?: {
15745
- kind: "marketplace";
15746
- version: string;
15747
- channel: "stable" | "nightly";
15748
- artifactUrl: string;
15749
- sha256: string;
15750
- installedAt: number;
15751
- } | undefined;
15752
16229
  }, {
15753
16230
  type: "strategy" | "utility";
15754
16231
  name: string;
@@ -15757,6 +16234,23 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15757
16234
  isBuiltIn: boolean;
15758
16235
  errorCount: number;
15759
16236
  description?: string | undefined;
16237
+ source?: {
16238
+ kind: "marketplace";
16239
+ version: string;
16240
+ channel: "stable" | "nightly";
16241
+ artifactUrl: string;
16242
+ sha256: string;
16243
+ installedAt: number;
16244
+ } | undefined;
16245
+ panels?: {
16246
+ id: string;
16247
+ title: string;
16248
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
16249
+ params?: Record<string, string> | undefined;
16250
+ pageId?: string | undefined;
16251
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16252
+ width?: "full" | "half" | undefined;
16253
+ }[] | undefined;
15760
16254
  ui?: {
15761
16255
  dir?: string | undefined;
15762
16256
  pages?: {
@@ -15769,9 +16263,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15769
16263
  }[] | undefined;
15770
16264
  } | undefined;
15771
16265
  instanceScope?: "operator" | "global" | undefined;
15772
- permissions?: "network"[] | undefined;
16266
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
15773
16267
  settings?: Record<string, {
15774
- type: "string" | "number" | "boolean" | "string[]" | "info";
16268
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
15775
16269
  label: string;
15776
16270
  options?: {
15777
16271
  value: string;
@@ -15781,6 +16275,15 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15781
16275
  max?: number | undefined;
15782
16276
  description?: string | undefined;
15783
16277
  default?: unknown;
16278
+ itemFields?: {
16279
+ label: string;
16280
+ key: string;
16281
+ type?: "string" | "number" | "boolean" | undefined;
16282
+ description?: string | undefined;
16283
+ placeholder?: string | undefined;
16284
+ required?: boolean | undefined;
16285
+ }[] | undefined;
16286
+ hidden?: boolean | undefined;
15784
16287
  scope?: "operator" | "global" | undefined;
15785
16288
  }> | undefined;
15786
16289
  quickActions?: {
@@ -15791,28 +16294,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15791
16294
  quickSettings?: {
15792
16295
  settingKey: string;
15793
16296
  }[] | undefined;
15794
- panels?: {
15795
- id: string;
15796
- title: string;
15797
- component: "table" | "key-value" | "chart" | "log" | "iframe";
15798
- pageId?: string | undefined;
15799
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
15800
- width?: "full" | "half" | undefined;
15801
- }[] | undefined;
15802
16297
  loaded?: boolean | undefined;
15803
16298
  autoDisabled?: boolean | undefined;
15804
16299
  lastError?: string | undefined;
15805
16300
  assignedOperatorIds?: string[] | undefined;
15806
16301
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
15807
16302
  locales?: Record<string, Record<string, string>> | undefined;
15808
- source?: {
15809
- kind: "marketplace";
15810
- version: string;
15811
- channel: "stable" | "nightly";
15812
- artifactUrl: string;
15813
- sha256: string;
15814
- installedAt: number;
15815
- } | undefined;
15816
16303
  }>, "many">;
15817
16304
  panelMeta: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
15818
16305
  pluginName: z.ZodString;
@@ -15850,6 +16337,90 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15850
16337
  pluginName: string;
15851
16338
  panelId: string;
15852
16339
  }>, "many">>>;
16340
+ panelContributions: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
16341
+ pluginName: z.ZodString;
16342
+ groupId: z.ZodString;
16343
+ source: z.ZodEnum<["manifest", "runtime"]>;
16344
+ instanceTarget: z.ZodOptional<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
16345
+ kind: z.ZodLiteral<"global">;
16346
+ }, "strip", z.ZodTypeAny, {
16347
+ kind: "global";
16348
+ }, {
16349
+ kind: "global";
16350
+ }>, z.ZodObject<{
16351
+ kind: z.ZodLiteral<"operator">;
16352
+ operatorId: z.ZodString;
16353
+ }, "strip", z.ZodTypeAny, {
16354
+ operatorId: string;
16355
+ kind: "operator";
16356
+ }, {
16357
+ operatorId: string;
16358
+ kind: "operator";
16359
+ }>]>>;
16360
+ panels: z.ZodArray<z.ZodObject<{
16361
+ id: z.ZodString;
16362
+ title: z.ZodString;
16363
+ component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
16364
+ pageId: z.ZodOptional<z.ZodString>;
16365
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
16366
+ slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top"]>>;
16367
+ width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
16368
+ }, "strip", z.ZodTypeAny, {
16369
+ id: string;
16370
+ title: string;
16371
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
16372
+ params?: Record<string, string> | undefined;
16373
+ pageId?: string | undefined;
16374
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16375
+ width?: "full" | "half" | undefined;
16376
+ }, {
16377
+ id: string;
16378
+ title: string;
16379
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
16380
+ params?: Record<string, string> | undefined;
16381
+ pageId?: string | undefined;
16382
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16383
+ width?: "full" | "half" | undefined;
16384
+ }>, "many">;
16385
+ }, "strip", z.ZodTypeAny, {
16386
+ pluginName: string;
16387
+ groupId: string;
16388
+ source: "manifest" | "runtime";
16389
+ panels: {
16390
+ id: string;
16391
+ title: string;
16392
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
16393
+ params?: Record<string, string> | undefined;
16394
+ pageId?: string | undefined;
16395
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16396
+ width?: "full" | "half" | undefined;
16397
+ }[];
16398
+ instanceTarget?: {
16399
+ kind: "global";
16400
+ } | {
16401
+ operatorId: string;
16402
+ kind: "operator";
16403
+ } | undefined;
16404
+ }, {
16405
+ pluginName: string;
16406
+ groupId: string;
16407
+ source: "manifest" | "runtime";
16408
+ panels: {
16409
+ id: string;
16410
+ title: string;
16411
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
16412
+ params?: Record<string, string> | undefined;
16413
+ pageId?: string | undefined;
16414
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16415
+ width?: "full" | "half" | undefined;
16416
+ }[];
16417
+ instanceTarget?: {
16418
+ kind: "global";
16419
+ } | {
16420
+ operatorId: string;
16421
+ kind: "operator";
16422
+ } | undefined;
16423
+ }>, "many">>>;
15853
16424
  lastError: z.ZodOptional<z.ZodString>;
15854
16425
  }, "strip", z.ZodTypeAny, {
15855
16426
  state: "error" | "ready" | "reloading";
@@ -15865,6 +16436,23 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15865
16436
  autoDisabled: boolean;
15866
16437
  errorCount: number;
15867
16438
  description?: string | undefined;
16439
+ source?: {
16440
+ kind: "marketplace";
16441
+ version: string;
16442
+ channel: "stable" | "nightly";
16443
+ artifactUrl: string;
16444
+ sha256: string;
16445
+ installedAt: number;
16446
+ } | undefined;
16447
+ panels?: {
16448
+ id: string;
16449
+ title: string;
16450
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
16451
+ params?: Record<string, string> | undefined;
16452
+ pageId?: string | undefined;
16453
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16454
+ width?: "full" | "half" | undefined;
16455
+ }[] | undefined;
15868
16456
  ui?: {
15869
16457
  dir: string;
15870
16458
  pages: {
@@ -15876,9 +16464,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15876
16464
  icon?: string | undefined;
15877
16465
  }[];
15878
16466
  } | undefined;
15879
- permissions?: "network"[] | undefined;
16467
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
15880
16468
  settings?: Record<string, {
15881
- type: "string" | "number" | "boolean" | "string[]" | "info";
16469
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
15882
16470
  label: string;
15883
16471
  scope: "operator" | "global";
15884
16472
  options?: {
@@ -15889,6 +16477,15 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15889
16477
  max?: number | undefined;
15890
16478
  description?: string | undefined;
15891
16479
  default?: unknown;
16480
+ itemFields?: {
16481
+ type: "string" | "number" | "boolean";
16482
+ label: string;
16483
+ key: string;
16484
+ description?: string | undefined;
16485
+ placeholder?: string | undefined;
16486
+ required?: boolean | undefined;
16487
+ }[] | undefined;
16488
+ hidden?: boolean | undefined;
15892
16489
  }> | undefined;
15893
16490
  quickActions?: {
15894
16491
  id: string;
@@ -15898,26 +16495,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15898
16495
  quickSettings?: {
15899
16496
  settingKey: string;
15900
16497
  }[] | undefined;
15901
- panels?: {
15902
- id: string;
15903
- title: string;
15904
- component: "table" | "key-value" | "chart" | "log" | "iframe";
15905
- pageId?: string | undefined;
15906
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
15907
- width?: "full" | "half" | undefined;
15908
- }[] | undefined;
15909
16498
  lastError?: string | undefined;
15910
16499
  assignedOperatorIds?: string[] | undefined;
15911
16500
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
15912
16501
  locales?: Record<string, Record<string, string>> | undefined;
15913
- source?: {
15914
- kind: "marketplace";
15915
- version: string;
15916
- channel: "stable" | "nightly";
15917
- artifactUrl: string;
15918
- sha256: string;
15919
- installedAt: number;
15920
- } | undefined;
15921
16502
  }[];
15922
16503
  panelMeta: {
15923
16504
  operatorId: string;
@@ -15929,6 +16510,26 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15929
16510
  pluginName: string;
15930
16511
  panelId: string;
15931
16512
  }[];
16513
+ panelContributions: {
16514
+ pluginName: string;
16515
+ groupId: string;
16516
+ source: "manifest" | "runtime";
16517
+ panels: {
16518
+ id: string;
16519
+ title: string;
16520
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
16521
+ params?: Record<string, string> | undefined;
16522
+ pageId?: string | undefined;
16523
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16524
+ width?: "full" | "half" | undefined;
16525
+ }[];
16526
+ instanceTarget?: {
16527
+ kind: "global";
16528
+ } | {
16529
+ operatorId: string;
16530
+ kind: "operator";
16531
+ } | undefined;
16532
+ }[];
15932
16533
  lastError?: string | undefined;
15933
16534
  }, {
15934
16535
  state: "error" | "ready" | "reloading";
@@ -15941,6 +16542,23 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15941
16542
  isBuiltIn: boolean;
15942
16543
  errorCount: number;
15943
16544
  description?: string | undefined;
16545
+ source?: {
16546
+ kind: "marketplace";
16547
+ version: string;
16548
+ channel: "stable" | "nightly";
16549
+ artifactUrl: string;
16550
+ sha256: string;
16551
+ installedAt: number;
16552
+ } | undefined;
16553
+ panels?: {
16554
+ id: string;
16555
+ title: string;
16556
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
16557
+ params?: Record<string, string> | undefined;
16558
+ pageId?: string | undefined;
16559
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16560
+ width?: "full" | "half" | undefined;
16561
+ }[] | undefined;
15944
16562
  ui?: {
15945
16563
  dir?: string | undefined;
15946
16564
  pages?: {
@@ -15953,9 +16571,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15953
16571
  }[] | undefined;
15954
16572
  } | undefined;
15955
16573
  instanceScope?: "operator" | "global" | undefined;
15956
- permissions?: "network"[] | undefined;
16574
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
15957
16575
  settings?: Record<string, {
15958
- type: "string" | "number" | "boolean" | "string[]" | "info";
16576
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
15959
16577
  label: string;
15960
16578
  options?: {
15961
16579
  value: string;
@@ -15965,6 +16583,15 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15965
16583
  max?: number | undefined;
15966
16584
  description?: string | undefined;
15967
16585
  default?: unknown;
16586
+ itemFields?: {
16587
+ label: string;
16588
+ key: string;
16589
+ type?: "string" | "number" | "boolean" | undefined;
16590
+ description?: string | undefined;
16591
+ placeholder?: string | undefined;
16592
+ required?: boolean | undefined;
16593
+ }[] | undefined;
16594
+ hidden?: boolean | undefined;
15968
16595
  scope?: "operator" | "global" | undefined;
15969
16596
  }> | undefined;
15970
16597
  quickActions?: {
@@ -15975,28 +16602,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
15975
16602
  quickSettings?: {
15976
16603
  settingKey: string;
15977
16604
  }[] | undefined;
15978
- panels?: {
15979
- id: string;
15980
- title: string;
15981
- component: "table" | "key-value" | "chart" | "log" | "iframe";
15982
- pageId?: string | undefined;
15983
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
15984
- width?: "full" | "half" | undefined;
15985
- }[] | undefined;
15986
16605
  loaded?: boolean | undefined;
15987
16606
  autoDisabled?: boolean | undefined;
15988
16607
  lastError?: string | undefined;
15989
16608
  assignedOperatorIds?: string[] | undefined;
15990
16609
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
15991
16610
  locales?: Record<string, Record<string, string>> | undefined;
15992
- source?: {
15993
- kind: "marketplace";
15994
- version: string;
15995
- channel: "stable" | "nightly";
15996
- artifactUrl: string;
15997
- sha256: string;
15998
- installedAt: number;
15999
- } | undefined;
16000
16611
  }[];
16001
16612
  lastError?: string | undefined;
16002
16613
  panelMeta?: {
@@ -16009,6 +16620,26 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16009
16620
  pluginName: string;
16010
16621
  panelId: string;
16011
16622
  }[] | undefined;
16623
+ panelContributions?: {
16624
+ pluginName: string;
16625
+ groupId: string;
16626
+ source: "manifest" | "runtime";
16627
+ panels: {
16628
+ id: string;
16629
+ title: string;
16630
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
16631
+ params?: Record<string, string> | undefined;
16632
+ pageId?: string | undefined;
16633
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16634
+ width?: "full" | "half" | undefined;
16635
+ }[];
16636
+ instanceTarget?: {
16637
+ kind: "global";
16638
+ } | {
16639
+ operatorId: string;
16640
+ kind: "operator";
16641
+ } | undefined;
16642
+ }[] | undefined;
16012
16643
  }>;
16013
16644
  }, "strip", z.ZodTypeAny, {
16014
16645
  type: WSMessageType.PLUGIN_LIST;
@@ -16027,6 +16658,23 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16027
16658
  autoDisabled: boolean;
16028
16659
  errorCount: number;
16029
16660
  description?: string | undefined;
16661
+ source?: {
16662
+ kind: "marketplace";
16663
+ version: string;
16664
+ channel: "stable" | "nightly";
16665
+ artifactUrl: string;
16666
+ sha256: string;
16667
+ installedAt: number;
16668
+ } | undefined;
16669
+ panels?: {
16670
+ id: string;
16671
+ title: string;
16672
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
16673
+ params?: Record<string, string> | undefined;
16674
+ pageId?: string | undefined;
16675
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16676
+ width?: "full" | "half" | undefined;
16677
+ }[] | undefined;
16030
16678
  ui?: {
16031
16679
  dir: string;
16032
16680
  pages: {
@@ -16038,9 +16686,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16038
16686
  icon?: string | undefined;
16039
16687
  }[];
16040
16688
  } | undefined;
16041
- permissions?: "network"[] | undefined;
16689
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
16042
16690
  settings?: Record<string, {
16043
- type: "string" | "number" | "boolean" | "string[]" | "info";
16691
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
16044
16692
  label: string;
16045
16693
  scope: "operator" | "global";
16046
16694
  options?: {
@@ -16051,6 +16699,15 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16051
16699
  max?: number | undefined;
16052
16700
  description?: string | undefined;
16053
16701
  default?: unknown;
16702
+ itemFields?: {
16703
+ type: "string" | "number" | "boolean";
16704
+ label: string;
16705
+ key: string;
16706
+ description?: string | undefined;
16707
+ placeholder?: string | undefined;
16708
+ required?: boolean | undefined;
16709
+ }[] | undefined;
16710
+ hidden?: boolean | undefined;
16054
16711
  }> | undefined;
16055
16712
  quickActions?: {
16056
16713
  id: string;
@@ -16060,26 +16717,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16060
16717
  quickSettings?: {
16061
16718
  settingKey: string;
16062
16719
  }[] | undefined;
16063
- panels?: {
16064
- id: string;
16065
- title: string;
16066
- component: "table" | "key-value" | "chart" | "log" | "iframe";
16067
- pageId?: string | undefined;
16068
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16069
- width?: "full" | "half" | undefined;
16070
- }[] | undefined;
16071
16720
  lastError?: string | undefined;
16072
16721
  assignedOperatorIds?: string[] | undefined;
16073
16722
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
16074
16723
  locales?: Record<string, Record<string, string>> | undefined;
16075
- source?: {
16076
- kind: "marketplace";
16077
- version: string;
16078
- channel: "stable" | "nightly";
16079
- artifactUrl: string;
16080
- sha256: string;
16081
- installedAt: number;
16082
- } | undefined;
16083
16724
  }[];
16084
16725
  panelMeta: {
16085
16726
  operatorId: string;
@@ -16091,6 +16732,26 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16091
16732
  pluginName: string;
16092
16733
  panelId: string;
16093
16734
  }[];
16735
+ panelContributions: {
16736
+ pluginName: string;
16737
+ groupId: string;
16738
+ source: "manifest" | "runtime";
16739
+ panels: {
16740
+ id: string;
16741
+ title: string;
16742
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
16743
+ params?: Record<string, string> | undefined;
16744
+ pageId?: string | undefined;
16745
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16746
+ width?: "full" | "half" | undefined;
16747
+ }[];
16748
+ instanceTarget?: {
16749
+ kind: "global";
16750
+ } | {
16751
+ operatorId: string;
16752
+ kind: "operator";
16753
+ } | undefined;
16754
+ }[];
16094
16755
  lastError?: string | undefined;
16095
16756
  };
16096
16757
  id?: string | undefined;
@@ -16108,6 +16769,23 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16108
16769
  isBuiltIn: boolean;
16109
16770
  errorCount: number;
16110
16771
  description?: string | undefined;
16772
+ source?: {
16773
+ kind: "marketplace";
16774
+ version: string;
16775
+ channel: "stable" | "nightly";
16776
+ artifactUrl: string;
16777
+ sha256: string;
16778
+ installedAt: number;
16779
+ } | undefined;
16780
+ panels?: {
16781
+ id: string;
16782
+ title: string;
16783
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
16784
+ params?: Record<string, string> | undefined;
16785
+ pageId?: string | undefined;
16786
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16787
+ width?: "full" | "half" | undefined;
16788
+ }[] | undefined;
16111
16789
  ui?: {
16112
16790
  dir?: string | undefined;
16113
16791
  pages?: {
@@ -16120,9 +16798,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16120
16798
  }[] | undefined;
16121
16799
  } | undefined;
16122
16800
  instanceScope?: "operator" | "global" | undefined;
16123
- permissions?: "network"[] | undefined;
16801
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
16124
16802
  settings?: Record<string, {
16125
- type: "string" | "number" | "boolean" | "string[]" | "info";
16803
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
16126
16804
  label: string;
16127
16805
  options?: {
16128
16806
  value: string;
@@ -16132,6 +16810,15 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16132
16810
  max?: number | undefined;
16133
16811
  description?: string | undefined;
16134
16812
  default?: unknown;
16813
+ itemFields?: {
16814
+ label: string;
16815
+ key: string;
16816
+ type?: "string" | "number" | "boolean" | undefined;
16817
+ description?: string | undefined;
16818
+ placeholder?: string | undefined;
16819
+ required?: boolean | undefined;
16820
+ }[] | undefined;
16821
+ hidden?: boolean | undefined;
16135
16822
  scope?: "operator" | "global" | undefined;
16136
16823
  }> | undefined;
16137
16824
  quickActions?: {
@@ -16142,28 +16829,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16142
16829
  quickSettings?: {
16143
16830
  settingKey: string;
16144
16831
  }[] | undefined;
16145
- panels?: {
16146
- id: string;
16147
- title: string;
16148
- component: "table" | "key-value" | "chart" | "log" | "iframe";
16149
- pageId?: string | undefined;
16150
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16151
- width?: "full" | "half" | undefined;
16152
- }[] | undefined;
16153
16832
  loaded?: boolean | undefined;
16154
16833
  autoDisabled?: boolean | undefined;
16155
16834
  lastError?: string | undefined;
16156
16835
  assignedOperatorIds?: string[] | undefined;
16157
16836
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
16158
16837
  locales?: Record<string, Record<string, string>> | undefined;
16159
- source?: {
16160
- kind: "marketplace";
16161
- version: string;
16162
- channel: "stable" | "nightly";
16163
- artifactUrl: string;
16164
- sha256: string;
16165
- installedAt: number;
16166
- } | undefined;
16167
16838
  }[];
16168
16839
  lastError?: string | undefined;
16169
16840
  panelMeta?: {
@@ -16176,6 +16847,26 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16176
16847
  pluginName: string;
16177
16848
  panelId: string;
16178
16849
  }[] | undefined;
16850
+ panelContributions?: {
16851
+ pluginName: string;
16852
+ groupId: string;
16853
+ source: "manifest" | "runtime";
16854
+ panels: {
16855
+ id: string;
16856
+ title: string;
16857
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
16858
+ params?: Record<string, string> | undefined;
16859
+ pageId?: string | undefined;
16860
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16861
+ width?: "full" | "half" | undefined;
16862
+ }[];
16863
+ instanceTarget?: {
16864
+ kind: "global";
16865
+ } | {
16866
+ operatorId: string;
16867
+ kind: "operator";
16868
+ } | undefined;
16869
+ }[] | undefined;
16179
16870
  };
16180
16871
  id?: string | undefined;
16181
16872
  }>, z.ZodObject<{
@@ -16199,7 +16890,7 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16199
16890
  lastError: z.ZodOptional<z.ZodString>;
16200
16891
  assignedOperatorIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16201
16892
  settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
16202
- type: z.ZodEnum<["boolean", "number", "string", "string[]", "info"]>;
16893
+ type: z.ZodEnum<["boolean", "number", "string", "string[]", "object[]", "info"]>;
16203
16894
  default: z.ZodUnknown;
16204
16895
  label: z.ZodString;
16205
16896
  description: z.ZodOptional<z.ZodString>;
@@ -16215,9 +16906,32 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16215
16906
  value: string;
16216
16907
  label: string;
16217
16908
  }>, "many">>;
16909
+ itemFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
16910
+ key: z.ZodString;
16911
+ type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["string", "number", "boolean"]>>>;
16912
+ label: z.ZodString;
16913
+ description: z.ZodOptional<z.ZodString>;
16914
+ placeholder: z.ZodOptional<z.ZodString>;
16915
+ required: z.ZodOptional<z.ZodBoolean>;
16916
+ }, "strip", z.ZodTypeAny, {
16917
+ type: "string" | "number" | "boolean";
16918
+ label: string;
16919
+ key: string;
16920
+ description?: string | undefined;
16921
+ placeholder?: string | undefined;
16922
+ required?: boolean | undefined;
16923
+ }, {
16924
+ label: string;
16925
+ key: string;
16926
+ type?: "string" | "number" | "boolean" | undefined;
16927
+ description?: string | undefined;
16928
+ placeholder?: string | undefined;
16929
+ required?: boolean | undefined;
16930
+ }>, "many">>;
16931
+ hidden: z.ZodOptional<z.ZodBoolean>;
16218
16932
  scope: z.ZodDefault<z.ZodOptional<z.ZodEnum<["global", "operator"]>>>;
16219
16933
  }, "strip", z.ZodTypeAny, {
16220
- type: "string" | "number" | "boolean" | "string[]" | "info";
16934
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
16221
16935
  label: string;
16222
16936
  scope: "operator" | "global";
16223
16937
  options?: {
@@ -16228,8 +16942,17 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16228
16942
  max?: number | undefined;
16229
16943
  description?: string | undefined;
16230
16944
  default?: unknown;
16945
+ itemFields?: {
16946
+ type: "string" | "number" | "boolean";
16947
+ label: string;
16948
+ key: string;
16949
+ description?: string | undefined;
16950
+ placeholder?: string | undefined;
16951
+ required?: boolean | undefined;
16952
+ }[] | undefined;
16953
+ hidden?: boolean | undefined;
16231
16954
  }, {
16232
- type: "string" | "number" | "boolean" | "string[]" | "info";
16955
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
16233
16956
  label: string;
16234
16957
  options?: {
16235
16958
  value: string;
@@ -16239,6 +16962,15 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16239
16962
  max?: number | undefined;
16240
16963
  description?: string | undefined;
16241
16964
  default?: unknown;
16965
+ itemFields?: {
16966
+ label: string;
16967
+ key: string;
16968
+ type?: "string" | "number" | "boolean" | undefined;
16969
+ description?: string | undefined;
16970
+ placeholder?: string | undefined;
16971
+ required?: boolean | undefined;
16972
+ }[] | undefined;
16973
+ hidden?: boolean | undefined;
16242
16974
  scope?: "operator" | "global" | undefined;
16243
16975
  }>>>;
16244
16976
  quickActions: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -16266,12 +16998,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16266
16998
  title: z.ZodString;
16267
16999
  component: z.ZodEnum<["table", "key-value", "chart", "log", "iframe"]>;
16268
17000
  pageId: z.ZodOptional<z.ZodString>;
17001
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
16269
17002
  slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top"]>>;
16270
17003
  width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
16271
17004
  }, "strip", z.ZodTypeAny, {
16272
17005
  id: string;
16273
17006
  title: string;
16274
17007
  component: "table" | "key-value" | "chart" | "log" | "iframe";
17008
+ params?: Record<string, string> | undefined;
16275
17009
  pageId?: string | undefined;
16276
17010
  slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16277
17011
  width?: "full" | "half" | undefined;
@@ -16279,11 +17013,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16279
17013
  id: string;
16280
17014
  title: string;
16281
17015
  component: "table" | "key-value" | "chart" | "log" | "iframe";
17016
+ params?: Record<string, string> | undefined;
16282
17017
  pageId?: string | undefined;
16283
17018
  slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16284
17019
  width?: "full" | "half" | undefined;
16285
17020
  }>, "many">>;
16286
- permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network"]>, "many">>;
17021
+ permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "radio:read", "radio:control", "radio:power"]>, "many">>;
16287
17022
  capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto_call_candidate", "auto_call_execution"]>, "many">>;
16288
17023
  ui: z.ZodOptional<z.ZodObject<{
16289
17024
  dir: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -16364,6 +17099,23 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16364
17099
  autoDisabled: boolean;
16365
17100
  errorCount: number;
16366
17101
  description?: string | undefined;
17102
+ source?: {
17103
+ kind: "marketplace";
17104
+ version: string;
17105
+ channel: "stable" | "nightly";
17106
+ artifactUrl: string;
17107
+ sha256: string;
17108
+ installedAt: number;
17109
+ } | undefined;
17110
+ panels?: {
17111
+ id: string;
17112
+ title: string;
17113
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
17114
+ params?: Record<string, string> | undefined;
17115
+ pageId?: string | undefined;
17116
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
17117
+ width?: "full" | "half" | undefined;
17118
+ }[] | undefined;
16367
17119
  ui?: {
16368
17120
  dir: string;
16369
17121
  pages: {
@@ -16375,9 +17127,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16375
17127
  icon?: string | undefined;
16376
17128
  }[];
16377
17129
  } | undefined;
16378
- permissions?: "network"[] | undefined;
17130
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
16379
17131
  settings?: Record<string, {
16380
- type: "string" | "number" | "boolean" | "string[]" | "info";
17132
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
16381
17133
  label: string;
16382
17134
  scope: "operator" | "global";
16383
17135
  options?: {
@@ -16388,6 +17140,15 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16388
17140
  max?: number | undefined;
16389
17141
  description?: string | undefined;
16390
17142
  default?: unknown;
17143
+ itemFields?: {
17144
+ type: "string" | "number" | "boolean";
17145
+ label: string;
17146
+ key: string;
17147
+ description?: string | undefined;
17148
+ placeholder?: string | undefined;
17149
+ required?: boolean | undefined;
17150
+ }[] | undefined;
17151
+ hidden?: boolean | undefined;
16391
17152
  }> | undefined;
16392
17153
  quickActions?: {
16393
17154
  id: string;
@@ -16397,26 +17158,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16397
17158
  quickSettings?: {
16398
17159
  settingKey: string;
16399
17160
  }[] | undefined;
16400
- panels?: {
16401
- id: string;
16402
- title: string;
16403
- component: "table" | "key-value" | "chart" | "log" | "iframe";
16404
- pageId?: string | undefined;
16405
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16406
- width?: "full" | "half" | undefined;
16407
- }[] | undefined;
16408
17161
  lastError?: string | undefined;
16409
17162
  assignedOperatorIds?: string[] | undefined;
16410
17163
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
16411
17164
  locales?: Record<string, Record<string, string>> | undefined;
16412
- source?: {
16413
- kind: "marketplace";
16414
- version: string;
16415
- channel: "stable" | "nightly";
16416
- artifactUrl: string;
16417
- sha256: string;
16418
- installedAt: number;
16419
- } | undefined;
16420
17165
  }, {
16421
17166
  type: "strategy" | "utility";
16422
17167
  name: string;
@@ -16425,6 +17170,23 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16425
17170
  isBuiltIn: boolean;
16426
17171
  errorCount: number;
16427
17172
  description?: string | undefined;
17173
+ source?: {
17174
+ kind: "marketplace";
17175
+ version: string;
17176
+ channel: "stable" | "nightly";
17177
+ artifactUrl: string;
17178
+ sha256: string;
17179
+ installedAt: number;
17180
+ } | undefined;
17181
+ panels?: {
17182
+ id: string;
17183
+ title: string;
17184
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
17185
+ params?: Record<string, string> | undefined;
17186
+ pageId?: string | undefined;
17187
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
17188
+ width?: "full" | "half" | undefined;
17189
+ }[] | undefined;
16428
17190
  ui?: {
16429
17191
  dir?: string | undefined;
16430
17192
  pages?: {
@@ -16437,9 +17199,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16437
17199
  }[] | undefined;
16438
17200
  } | undefined;
16439
17201
  instanceScope?: "operator" | "global" | undefined;
16440
- permissions?: "network"[] | undefined;
17202
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
16441
17203
  settings?: Record<string, {
16442
- type: "string" | "number" | "boolean" | "string[]" | "info";
17204
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
16443
17205
  label: string;
16444
17206
  options?: {
16445
17207
  value: string;
@@ -16449,6 +17211,15 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16449
17211
  max?: number | undefined;
16450
17212
  description?: string | undefined;
16451
17213
  default?: unknown;
17214
+ itemFields?: {
17215
+ label: string;
17216
+ key: string;
17217
+ type?: "string" | "number" | "boolean" | undefined;
17218
+ description?: string | undefined;
17219
+ placeholder?: string | undefined;
17220
+ required?: boolean | undefined;
17221
+ }[] | undefined;
17222
+ hidden?: boolean | undefined;
16452
17223
  scope?: "operator" | "global" | undefined;
16453
17224
  }> | undefined;
16454
17225
  quickActions?: {
@@ -16459,28 +17230,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16459
17230
  quickSettings?: {
16460
17231
  settingKey: string;
16461
17232
  }[] | undefined;
16462
- panels?: {
16463
- id: string;
16464
- title: string;
16465
- component: "table" | "key-value" | "chart" | "log" | "iframe";
16466
- pageId?: string | undefined;
16467
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16468
- width?: "full" | "half" | undefined;
16469
- }[] | undefined;
16470
17233
  loaded?: boolean | undefined;
16471
17234
  autoDisabled?: boolean | undefined;
16472
17235
  lastError?: string | undefined;
16473
17236
  assignedOperatorIds?: string[] | undefined;
16474
17237
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
16475
17238
  locales?: Record<string, Record<string, string>> | undefined;
16476
- source?: {
16477
- kind: "marketplace";
16478
- version: string;
16479
- channel: "stable" | "nightly";
16480
- artifactUrl: string;
16481
- sha256: string;
16482
- installedAt: number;
16483
- } | undefined;
16484
17239
  }>;
16485
17240
  }, "strip", z.ZodTypeAny, {
16486
17241
  generation: number;
@@ -16495,6 +17250,23 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16495
17250
  autoDisabled: boolean;
16496
17251
  errorCount: number;
16497
17252
  description?: string | undefined;
17253
+ source?: {
17254
+ kind: "marketplace";
17255
+ version: string;
17256
+ channel: "stable" | "nightly";
17257
+ artifactUrl: string;
17258
+ sha256: string;
17259
+ installedAt: number;
17260
+ } | undefined;
17261
+ panels?: {
17262
+ id: string;
17263
+ title: string;
17264
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
17265
+ params?: Record<string, string> | undefined;
17266
+ pageId?: string | undefined;
17267
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
17268
+ width?: "full" | "half" | undefined;
17269
+ }[] | undefined;
16498
17270
  ui?: {
16499
17271
  dir: string;
16500
17272
  pages: {
@@ -16506,9 +17278,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16506
17278
  icon?: string | undefined;
16507
17279
  }[];
16508
17280
  } | undefined;
16509
- permissions?: "network"[] | undefined;
17281
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
16510
17282
  settings?: Record<string, {
16511
- type: "string" | "number" | "boolean" | "string[]" | "info";
17283
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
16512
17284
  label: string;
16513
17285
  scope: "operator" | "global";
16514
17286
  options?: {
@@ -16519,6 +17291,15 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16519
17291
  max?: number | undefined;
16520
17292
  description?: string | undefined;
16521
17293
  default?: unknown;
17294
+ itemFields?: {
17295
+ type: "string" | "number" | "boolean";
17296
+ label: string;
17297
+ key: string;
17298
+ description?: string | undefined;
17299
+ placeholder?: string | undefined;
17300
+ required?: boolean | undefined;
17301
+ }[] | undefined;
17302
+ hidden?: boolean | undefined;
16522
17303
  }> | undefined;
16523
17304
  quickActions?: {
16524
17305
  id: string;
@@ -16528,26 +17309,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16528
17309
  quickSettings?: {
16529
17310
  settingKey: string;
16530
17311
  }[] | undefined;
16531
- panels?: {
16532
- id: string;
16533
- title: string;
16534
- component: "table" | "key-value" | "chart" | "log" | "iframe";
16535
- pageId?: string | undefined;
16536
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16537
- width?: "full" | "half" | undefined;
16538
- }[] | undefined;
16539
17312
  lastError?: string | undefined;
16540
17313
  assignedOperatorIds?: string[] | undefined;
16541
17314
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
16542
17315
  locales?: Record<string, Record<string, string>> | undefined;
16543
- source?: {
16544
- kind: "marketplace";
16545
- version: string;
16546
- channel: "stable" | "nightly";
16547
- artifactUrl: string;
16548
- sha256: string;
16549
- installedAt: number;
16550
- } | undefined;
16551
17316
  };
16552
17317
  }, {
16553
17318
  generation: number;
@@ -16559,6 +17324,23 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16559
17324
  isBuiltIn: boolean;
16560
17325
  errorCount: number;
16561
17326
  description?: string | undefined;
17327
+ source?: {
17328
+ kind: "marketplace";
17329
+ version: string;
17330
+ channel: "stable" | "nightly";
17331
+ artifactUrl: string;
17332
+ sha256: string;
17333
+ installedAt: number;
17334
+ } | undefined;
17335
+ panels?: {
17336
+ id: string;
17337
+ title: string;
17338
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
17339
+ params?: Record<string, string> | undefined;
17340
+ pageId?: string | undefined;
17341
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
17342
+ width?: "full" | "half" | undefined;
17343
+ }[] | undefined;
16562
17344
  ui?: {
16563
17345
  dir?: string | undefined;
16564
17346
  pages?: {
@@ -16571,9 +17353,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16571
17353
  }[] | undefined;
16572
17354
  } | undefined;
16573
17355
  instanceScope?: "operator" | "global" | undefined;
16574
- permissions?: "network"[] | undefined;
17356
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
16575
17357
  settings?: Record<string, {
16576
- type: "string" | "number" | "boolean" | "string[]" | "info";
17358
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
16577
17359
  label: string;
16578
17360
  options?: {
16579
17361
  value: string;
@@ -16583,6 +17365,15 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16583
17365
  max?: number | undefined;
16584
17366
  description?: string | undefined;
16585
17367
  default?: unknown;
17368
+ itemFields?: {
17369
+ label: string;
17370
+ key: string;
17371
+ type?: "string" | "number" | "boolean" | undefined;
17372
+ description?: string | undefined;
17373
+ placeholder?: string | undefined;
17374
+ required?: boolean | undefined;
17375
+ }[] | undefined;
17376
+ hidden?: boolean | undefined;
16586
17377
  scope?: "operator" | "global" | undefined;
16587
17378
  }> | undefined;
16588
17379
  quickActions?: {
@@ -16593,28 +17384,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16593
17384
  quickSettings?: {
16594
17385
  settingKey: string;
16595
17386
  }[] | undefined;
16596
- panels?: {
16597
- id: string;
16598
- title: string;
16599
- component: "table" | "key-value" | "chart" | "log" | "iframe";
16600
- pageId?: string | undefined;
16601
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16602
- width?: "full" | "half" | undefined;
16603
- }[] | undefined;
16604
17387
  loaded?: boolean | undefined;
16605
17388
  autoDisabled?: boolean | undefined;
16606
17389
  lastError?: string | undefined;
16607
17390
  assignedOperatorIds?: string[] | undefined;
16608
17391
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
16609
17392
  locales?: Record<string, Record<string, string>> | undefined;
16610
- source?: {
16611
- kind: "marketplace";
16612
- version: string;
16613
- channel: "stable" | "nightly";
16614
- artifactUrl: string;
16615
- sha256: string;
16616
- installedAt: number;
16617
- } | undefined;
16618
17393
  };
16619
17394
  }>;
16620
17395
  }, "strip", z.ZodTypeAny, {
@@ -16633,6 +17408,23 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16633
17408
  autoDisabled: boolean;
16634
17409
  errorCount: number;
16635
17410
  description?: string | undefined;
17411
+ source?: {
17412
+ kind: "marketplace";
17413
+ version: string;
17414
+ channel: "stable" | "nightly";
17415
+ artifactUrl: string;
17416
+ sha256: string;
17417
+ installedAt: number;
17418
+ } | undefined;
17419
+ panels?: {
17420
+ id: string;
17421
+ title: string;
17422
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
17423
+ params?: Record<string, string> | undefined;
17424
+ pageId?: string | undefined;
17425
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
17426
+ width?: "full" | "half" | undefined;
17427
+ }[] | undefined;
16636
17428
  ui?: {
16637
17429
  dir: string;
16638
17430
  pages: {
@@ -16644,9 +17436,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16644
17436
  icon?: string | undefined;
16645
17437
  }[];
16646
17438
  } | undefined;
16647
- permissions?: "network"[] | undefined;
17439
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
16648
17440
  settings?: Record<string, {
16649
- type: "string" | "number" | "boolean" | "string[]" | "info";
17441
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
16650
17442
  label: string;
16651
17443
  scope: "operator" | "global";
16652
17444
  options?: {
@@ -16657,6 +17449,15 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16657
17449
  max?: number | undefined;
16658
17450
  description?: string | undefined;
16659
17451
  default?: unknown;
17452
+ itemFields?: {
17453
+ type: "string" | "number" | "boolean";
17454
+ label: string;
17455
+ key: string;
17456
+ description?: string | undefined;
17457
+ placeholder?: string | undefined;
17458
+ required?: boolean | undefined;
17459
+ }[] | undefined;
17460
+ hidden?: boolean | undefined;
16660
17461
  }> | undefined;
16661
17462
  quickActions?: {
16662
17463
  id: string;
@@ -16666,26 +17467,10 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16666
17467
  quickSettings?: {
16667
17468
  settingKey: string;
16668
17469
  }[] | undefined;
16669
- panels?: {
16670
- id: string;
16671
- title: string;
16672
- component: "table" | "key-value" | "chart" | "log" | "iframe";
16673
- pageId?: string | undefined;
16674
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16675
- width?: "full" | "half" | undefined;
16676
- }[] | undefined;
16677
17470
  lastError?: string | undefined;
16678
17471
  assignedOperatorIds?: string[] | undefined;
16679
17472
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
16680
17473
  locales?: Record<string, Record<string, string>> | undefined;
16681
- source?: {
16682
- kind: "marketplace";
16683
- version: string;
16684
- channel: "stable" | "nightly";
16685
- artifactUrl: string;
16686
- sha256: string;
16687
- installedAt: number;
16688
- } | undefined;
16689
17474
  };
16690
17475
  };
16691
17476
  id?: string | undefined;
@@ -16702,6 +17487,23 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16702
17487
  isBuiltIn: boolean;
16703
17488
  errorCount: number;
16704
17489
  description?: string | undefined;
17490
+ source?: {
17491
+ kind: "marketplace";
17492
+ version: string;
17493
+ channel: "stable" | "nightly";
17494
+ artifactUrl: string;
17495
+ sha256: string;
17496
+ installedAt: number;
17497
+ } | undefined;
17498
+ panels?: {
17499
+ id: string;
17500
+ title: string;
17501
+ component: "table" | "key-value" | "chart" | "log" | "iframe";
17502
+ params?: Record<string, string> | undefined;
17503
+ pageId?: string | undefined;
17504
+ slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
17505
+ width?: "full" | "half" | undefined;
17506
+ }[] | undefined;
16705
17507
  ui?: {
16706
17508
  dir?: string | undefined;
16707
17509
  pages?: {
@@ -16714,9 +17516,9 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16714
17516
  }[] | undefined;
16715
17517
  } | undefined;
16716
17518
  instanceScope?: "operator" | "global" | undefined;
16717
- permissions?: "network"[] | undefined;
17519
+ permissions?: ("network" | "radio:read" | "radio:control" | "radio:power")[] | undefined;
16718
17520
  settings?: Record<string, {
16719
- type: "string" | "number" | "boolean" | "string[]" | "info";
17521
+ type: "string" | "number" | "boolean" | "string[]" | "object[]" | "info";
16720
17522
  label: string;
16721
17523
  options?: {
16722
17524
  value: string;
@@ -16726,6 +17528,15 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16726
17528
  max?: number | undefined;
16727
17529
  description?: string | undefined;
16728
17530
  default?: unknown;
17531
+ itemFields?: {
17532
+ label: string;
17533
+ key: string;
17534
+ type?: "string" | "number" | "boolean" | undefined;
17535
+ description?: string | undefined;
17536
+ placeholder?: string | undefined;
17537
+ required?: boolean | undefined;
17538
+ }[] | undefined;
17539
+ hidden?: boolean | undefined;
16729
17540
  scope?: "operator" | "global" | undefined;
16730
17541
  }> | undefined;
16731
17542
  quickActions?: {
@@ -16736,28 +17547,12 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
16736
17547
  quickSettings?: {
16737
17548
  settingKey: string;
16738
17549
  }[] | undefined;
16739
- panels?: {
16740
- id: string;
16741
- title: string;
16742
- component: "table" | "key-value" | "chart" | "log" | "iframe";
16743
- pageId?: string | undefined;
16744
- slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | undefined;
16745
- width?: "full" | "half" | undefined;
16746
- }[] | undefined;
16747
17550
  loaded?: boolean | undefined;
16748
17551
  autoDisabled?: boolean | undefined;
16749
17552
  lastError?: string | undefined;
16750
17553
  assignedOperatorIds?: string[] | undefined;
16751
17554
  capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
16752
17555
  locales?: Record<string, Record<string, string>> | undefined;
16753
- source?: {
16754
- kind: "marketplace";
16755
- version: string;
16756
- channel: "stable" | "nightly";
16757
- artifactUrl: string;
16758
- sha256: string;
16759
- installedAt: number;
16760
- } | undefined;
16761
17556
  };
16762
17557
  };
16763
17558
  id?: string | undefined;
@@ -17256,6 +18051,7 @@ export interface DigitalRadioEngineEvents {
17256
18051
  data?: unknown;
17257
18052
  }) => void;
17258
18053
  pluginPanelMeta: (data: import('./plugin.schema.js').PluginPanelMetaPayload) => void;
18054
+ pluginPanelContributionsChanged: (data: import('./plugin.schema.js').PluginUIPanelContributionGroup) => void;
17259
18055
  encodeStart: (slotInfo: z.infer<typeof SlotInfoSchema>) => void;
17260
18056
  transmitStart: (slotInfo: z.infer<typeof SlotInfoSchema>) => void;
17261
18057
  timingWarning: (data: {