@tx5dr/contracts 1.7.7 → 1.7.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/schema/__tests__/ability.test.js +47 -1
- package/dist/schema/__tests__/ability.test.js.map +1 -1
- package/dist/schema/__tests__/audio.schema.test.js +14 -1
- package/dist/schema/__tests__/audio.schema.test.js.map +1 -1
- package/dist/schema/__tests__/plugin-market.schema.test.js +1 -0
- package/dist/schema/__tests__/plugin-market.schema.test.js.map +1 -1
- package/dist/schema/ability.d.ts +10 -0
- package/dist/schema/ability.d.ts.map +1 -1
- package/dist/schema/ability.js +105 -0
- package/dist/schema/ability.js.map +1 -1
- package/dist/schema/audio.schema.d.ts +30 -0
- package/dist/schema/audio.schema.d.ts.map +1 -1
- package/dist/schema/audio.schema.js +4 -0
- package/dist/schema/audio.schema.js.map +1 -1
- package/dist/schema/plugin.schema.d.ts +79 -77
- package/dist/schema/plugin.schema.d.ts.map +1 -1
- package/dist/schema/plugin.schema.js +4 -0
- package/dist/schema/plugin.schema.js.map +1 -1
- package/dist/schema/radio-profile.schema.d.ts +86 -0
- package/dist/schema/radio-profile.schema.d.ts.map +1 -1
- package/dist/schema/websocket.schema.d.ts +94 -94
- package/package.json +1 -1
- package/src/schema/__tests__/ability.test.ts +59 -0
- package/src/schema/__tests__/audio.schema.test.ts +18 -0
- package/src/schema/__tests__/plugin-market.schema.test.ts +1 -0
- package/src/schema/ability.ts +130 -0
- package/src/schema/audio.schema.ts +7 -0
- package/src/schema/plugin.schema.ts +4 -0
- package/test/plugin-slot-schema.test.ts +9 -0
|
@@ -29,7 +29,7 @@ export type PluginInstanceScope = z.infer<typeof PluginInstanceScopeSchema>;
|
|
|
29
29
|
* Permissions let the host gate sensitive capabilities behind manifest-level
|
|
30
30
|
* intent. Plugins should request the smallest possible set.
|
|
31
31
|
*/
|
|
32
|
-
export declare const PluginPermissionSchema: z.ZodEnum<["network", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>;
|
|
32
|
+
export declare const PluginPermissionSchema: z.ZodEnum<["network", "host:hamlib", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>;
|
|
33
33
|
/**
|
|
34
34
|
* Explicit permission declarations requested by a plugin.
|
|
35
35
|
*/
|
|
@@ -349,8 +349,10 @@ export type PluginCapability = z.infer<typeof PluginCapabilitySchema>;
|
|
|
349
349
|
* - `main-right`: shown in the optional main layout plugin pane on the far right.
|
|
350
350
|
* - `voice-left-top`: shown above the voice frequency control card.
|
|
351
351
|
* - `voice-right-top`: shown in the tabbed top area of the voice right panel.
|
|
352
|
+
* - `cw-left-top`: shown above the CW frequency control card.
|
|
353
|
+
* - `cw-right-top`: shown in the tabbed top area of the CW right panel.
|
|
352
354
|
*/
|
|
353
|
-
export declare const PluginPanelSlotSchema: z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>;
|
|
355
|
+
export declare const PluginPanelSlotSchema: z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-left-top", "cw-right-top", "radio-control-toolbar"]>;
|
|
354
356
|
/**
|
|
355
357
|
* Rendering slot that determines where a panel appears in the UI.
|
|
356
358
|
*/
|
|
@@ -400,7 +402,7 @@ export declare const PluginPanelDescriptorSchema: z.ZodEffects<z.ZodObject<{
|
|
|
400
402
|
/** Optional string params forwarded to iframe panels as URL/init params. */
|
|
401
403
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
402
404
|
/** Where the panel renders. Defaults to `'operator'` (operator card live-panel area). */
|
|
403
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
405
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-left-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
404
406
|
/** Preferred width hint. Defaults to `'half'`. */
|
|
405
407
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
406
408
|
/** Optional FontAwesome Free icon name used by toolbar-style hosts. */
|
|
@@ -416,7 +418,7 @@ export declare const PluginPanelDescriptorSchema: z.ZodEffects<z.ZodObject<{
|
|
|
416
418
|
params?: Record<string, string> | undefined;
|
|
417
419
|
icon?: string | undefined;
|
|
418
420
|
pageId?: string | undefined;
|
|
419
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
421
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
420
422
|
width?: "full" | "half" | undefined;
|
|
421
423
|
openMode?: "popover" | "modal" | undefined;
|
|
422
424
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -427,7 +429,7 @@ export declare const PluginPanelDescriptorSchema: z.ZodEffects<z.ZodObject<{
|
|
|
427
429
|
params?: Record<string, string> | undefined;
|
|
428
430
|
icon?: string | undefined;
|
|
429
431
|
pageId?: string | undefined;
|
|
430
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
432
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
431
433
|
width?: "full" | "half" | undefined;
|
|
432
434
|
openMode?: "popover" | "modal" | undefined;
|
|
433
435
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -438,7 +440,7 @@ export declare const PluginPanelDescriptorSchema: z.ZodEffects<z.ZodObject<{
|
|
|
438
440
|
params?: Record<string, string> | undefined;
|
|
439
441
|
icon?: string | undefined;
|
|
440
442
|
pageId?: string | undefined;
|
|
441
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
443
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
442
444
|
width?: "full" | "half" | undefined;
|
|
443
445
|
openMode?: "popover" | "modal" | undefined;
|
|
444
446
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -449,7 +451,7 @@ export declare const PluginPanelDescriptorSchema: z.ZodEffects<z.ZodObject<{
|
|
|
449
451
|
params?: Record<string, string> | undefined;
|
|
450
452
|
icon?: string | undefined;
|
|
451
453
|
pageId?: string | undefined;
|
|
452
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
454
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
453
455
|
width?: "full" | "half" | undefined;
|
|
454
456
|
openMode?: "popover" | "modal" | undefined;
|
|
455
457
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -512,7 +514,7 @@ export declare const PluginUIPanelContributionGroupSchema: z.ZodObject<{
|
|
|
512
514
|
/** Optional string params forwarded to iframe panels as URL/init params. */
|
|
513
515
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
514
516
|
/** Where the panel renders. Defaults to `'operator'` (operator card live-panel area). */
|
|
515
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
517
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-left-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
516
518
|
/** Preferred width hint. Defaults to `'half'`. */
|
|
517
519
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
518
520
|
/** Optional FontAwesome Free icon name used by toolbar-style hosts. */
|
|
@@ -528,7 +530,7 @@ export declare const PluginUIPanelContributionGroupSchema: z.ZodObject<{
|
|
|
528
530
|
params?: Record<string, string> | undefined;
|
|
529
531
|
icon?: string | undefined;
|
|
530
532
|
pageId?: string | undefined;
|
|
531
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
533
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
532
534
|
width?: "full" | "half" | undefined;
|
|
533
535
|
openMode?: "popover" | "modal" | undefined;
|
|
534
536
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -539,7 +541,7 @@ export declare const PluginUIPanelContributionGroupSchema: z.ZodObject<{
|
|
|
539
541
|
params?: Record<string, string> | undefined;
|
|
540
542
|
icon?: string | undefined;
|
|
541
543
|
pageId?: string | undefined;
|
|
542
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
544
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
543
545
|
width?: "full" | "half" | undefined;
|
|
544
546
|
openMode?: "popover" | "modal" | undefined;
|
|
545
547
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -550,7 +552,7 @@ export declare const PluginUIPanelContributionGroupSchema: z.ZodObject<{
|
|
|
550
552
|
params?: Record<string, string> | undefined;
|
|
551
553
|
icon?: string | undefined;
|
|
552
554
|
pageId?: string | undefined;
|
|
553
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
555
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
554
556
|
width?: "full" | "half" | undefined;
|
|
555
557
|
openMode?: "popover" | "modal" | undefined;
|
|
556
558
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -561,7 +563,7 @@ export declare const PluginUIPanelContributionGroupSchema: z.ZodObject<{
|
|
|
561
563
|
params?: Record<string, string> | undefined;
|
|
562
564
|
icon?: string | undefined;
|
|
563
565
|
pageId?: string | undefined;
|
|
564
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
566
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
565
567
|
width?: "full" | "half" | undefined;
|
|
566
568
|
openMode?: "popover" | "modal" | undefined;
|
|
567
569
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -577,7 +579,7 @@ export declare const PluginUIPanelContributionGroupSchema: z.ZodObject<{
|
|
|
577
579
|
params?: Record<string, string> | undefined;
|
|
578
580
|
icon?: string | undefined;
|
|
579
581
|
pageId?: string | undefined;
|
|
580
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
582
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
581
583
|
width?: "full" | "half" | undefined;
|
|
582
584
|
openMode?: "popover" | "modal" | undefined;
|
|
583
585
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -599,7 +601,7 @@ export declare const PluginUIPanelContributionGroupSchema: z.ZodObject<{
|
|
|
599
601
|
params?: Record<string, string> | undefined;
|
|
600
602
|
icon?: string | undefined;
|
|
601
603
|
pageId?: string | undefined;
|
|
602
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
604
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
603
605
|
width?: "full" | "half" | undefined;
|
|
604
606
|
openMode?: "popover" | "modal" | undefined;
|
|
605
607
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -746,7 +748,7 @@ export declare const PluginManifestSchema: z.ZodObject<{
|
|
|
746
748
|
type: z.ZodEnum<["strategy", "utility"]>;
|
|
747
749
|
instanceScope: z.ZodDefault<z.ZodOptional<z.ZodEnum<["operator", "global"]>>>;
|
|
748
750
|
description: z.ZodOptional<z.ZodString>;
|
|
749
|
-
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>;
|
|
751
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "host:hamlib", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>;
|
|
750
752
|
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
751
753
|
type: z.ZodEnum<["boolean", "number", "string", "string[]", "object[]", "keyedStringArrays", "info"]>;
|
|
752
754
|
default: z.ZodUnknown;
|
|
@@ -910,7 +912,7 @@ export declare const PluginManifestSchema: z.ZodObject<{
|
|
|
910
912
|
/** Optional string params forwarded to iframe panels as URL/init params. */
|
|
911
913
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
912
914
|
/** Where the panel renders. Defaults to `'operator'` (operator card live-panel area). */
|
|
913
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
915
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-left-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
914
916
|
/** Preferred width hint. Defaults to `'half'`. */
|
|
915
917
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
916
918
|
/** Optional FontAwesome Free icon name used by toolbar-style hosts. */
|
|
@@ -926,7 +928,7 @@ export declare const PluginManifestSchema: z.ZodObject<{
|
|
|
926
928
|
params?: Record<string, string> | undefined;
|
|
927
929
|
icon?: string | undefined;
|
|
928
930
|
pageId?: string | undefined;
|
|
929
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
931
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
930
932
|
width?: "full" | "half" | undefined;
|
|
931
933
|
openMode?: "popover" | "modal" | undefined;
|
|
932
934
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -937,7 +939,7 @@ export declare const PluginManifestSchema: z.ZodObject<{
|
|
|
937
939
|
params?: Record<string, string> | undefined;
|
|
938
940
|
icon?: string | undefined;
|
|
939
941
|
pageId?: string | undefined;
|
|
940
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
942
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
941
943
|
width?: "full" | "half" | undefined;
|
|
942
944
|
openMode?: "popover" | "modal" | undefined;
|
|
943
945
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -948,7 +950,7 @@ export declare const PluginManifestSchema: z.ZodObject<{
|
|
|
948
950
|
params?: Record<string, string> | undefined;
|
|
949
951
|
icon?: string | undefined;
|
|
950
952
|
pageId?: string | undefined;
|
|
951
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
953
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
952
954
|
width?: "full" | "half" | undefined;
|
|
953
955
|
openMode?: "popover" | "modal" | undefined;
|
|
954
956
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -959,7 +961,7 @@ export declare const PluginManifestSchema: z.ZodObject<{
|
|
|
959
961
|
params?: Record<string, string> | undefined;
|
|
960
962
|
icon?: string | undefined;
|
|
961
963
|
pageId?: string | undefined;
|
|
962
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
964
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
963
965
|
width?: "full" | "half" | undefined;
|
|
964
966
|
openMode?: "popover" | "modal" | undefined;
|
|
965
967
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -1037,7 +1039,7 @@ export declare const PluginManifestSchema: z.ZodObject<{
|
|
|
1037
1039
|
params?: Record<string, string> | undefined;
|
|
1038
1040
|
icon?: string | undefined;
|
|
1039
1041
|
pageId?: string | undefined;
|
|
1040
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1042
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1041
1043
|
width?: "full" | "half" | undefined;
|
|
1042
1044
|
openMode?: "popover" | "modal" | undefined;
|
|
1043
1045
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -1053,7 +1055,7 @@ export declare const PluginManifestSchema: z.ZodObject<{
|
|
|
1053
1055
|
icon?: string | undefined;
|
|
1054
1056
|
}[];
|
|
1055
1057
|
} | undefined;
|
|
1056
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
1058
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
1057
1059
|
settings?: Record<string, {
|
|
1058
1060
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
1059
1061
|
label: string;
|
|
@@ -1109,7 +1111,7 @@ export declare const PluginManifestSchema: z.ZodObject<{
|
|
|
1109
1111
|
params?: Record<string, string> | undefined;
|
|
1110
1112
|
icon?: string | undefined;
|
|
1111
1113
|
pageId?: string | undefined;
|
|
1112
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1114
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1113
1115
|
width?: "full" | "half" | undefined;
|
|
1114
1116
|
openMode?: "popover" | "modal" | undefined;
|
|
1115
1117
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -1126,7 +1128,7 @@ export declare const PluginManifestSchema: z.ZodObject<{
|
|
|
1126
1128
|
}[] | undefined;
|
|
1127
1129
|
} | undefined;
|
|
1128
1130
|
instanceScope?: "operator" | "global" | undefined;
|
|
1129
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
1131
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
1130
1132
|
settings?: Record<string, {
|
|
1131
1133
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
1132
1134
|
label: string;
|
|
@@ -1386,7 +1388,7 @@ export declare const PluginStatusSchema: z.ZodObject<{
|
|
|
1386
1388
|
/** Optional string params forwarded to iframe panels as URL/init params. */
|
|
1387
1389
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1388
1390
|
/** Where the panel renders. Defaults to `'operator'` (operator card live-panel area). */
|
|
1389
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
1391
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-left-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
1390
1392
|
/** Preferred width hint. Defaults to `'half'`. */
|
|
1391
1393
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
1392
1394
|
/** Optional FontAwesome Free icon name used by toolbar-style hosts. */
|
|
@@ -1402,7 +1404,7 @@ export declare const PluginStatusSchema: z.ZodObject<{
|
|
|
1402
1404
|
params?: Record<string, string> | undefined;
|
|
1403
1405
|
icon?: string | undefined;
|
|
1404
1406
|
pageId?: string | undefined;
|
|
1405
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1407
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1406
1408
|
width?: "full" | "half" | undefined;
|
|
1407
1409
|
openMode?: "popover" | "modal" | undefined;
|
|
1408
1410
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -1413,7 +1415,7 @@ export declare const PluginStatusSchema: z.ZodObject<{
|
|
|
1413
1415
|
params?: Record<string, string> | undefined;
|
|
1414
1416
|
icon?: string | undefined;
|
|
1415
1417
|
pageId?: string | undefined;
|
|
1416
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1418
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1417
1419
|
width?: "full" | "half" | undefined;
|
|
1418
1420
|
openMode?: "popover" | "modal" | undefined;
|
|
1419
1421
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -1424,7 +1426,7 @@ export declare const PluginStatusSchema: z.ZodObject<{
|
|
|
1424
1426
|
params?: Record<string, string> | undefined;
|
|
1425
1427
|
icon?: string | undefined;
|
|
1426
1428
|
pageId?: string | undefined;
|
|
1427
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1429
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1428
1430
|
width?: "full" | "half" | undefined;
|
|
1429
1431
|
openMode?: "popover" | "modal" | undefined;
|
|
1430
1432
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -1435,12 +1437,12 @@ export declare const PluginStatusSchema: z.ZodObject<{
|
|
|
1435
1437
|
params?: Record<string, string> | undefined;
|
|
1436
1438
|
icon?: string | undefined;
|
|
1437
1439
|
pageId?: string | undefined;
|
|
1438
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1440
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1439
1441
|
width?: "full" | "half" | undefined;
|
|
1440
1442
|
openMode?: "popover" | "modal" | undefined;
|
|
1441
1443
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
1442
1444
|
}>, "many">>;
|
|
1443
|
-
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>;
|
|
1445
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "host:hamlib", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>;
|
|
1444
1446
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto_call_candidate", "auto_call_execution"]>, "many">>;
|
|
1445
1447
|
ui: z.ZodOptional<z.ZodObject<{
|
|
1446
1448
|
/** Static file directory relative to the plugin root (default: 'ui'). */
|
|
@@ -1544,7 +1546,7 @@ export declare const PluginStatusSchema: z.ZodObject<{
|
|
|
1544
1546
|
params?: Record<string, string> | undefined;
|
|
1545
1547
|
icon?: string | undefined;
|
|
1546
1548
|
pageId?: string | undefined;
|
|
1547
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1549
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1548
1550
|
width?: "full" | "half" | undefined;
|
|
1549
1551
|
openMode?: "popover" | "modal" | undefined;
|
|
1550
1552
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -1560,7 +1562,7 @@ export declare const PluginStatusSchema: z.ZodObject<{
|
|
|
1560
1562
|
icon?: string | undefined;
|
|
1561
1563
|
}[];
|
|
1562
1564
|
} | undefined;
|
|
1563
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
1565
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
1564
1566
|
settings?: Record<string, {
|
|
1565
1567
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
1566
1568
|
label: string;
|
|
@@ -1628,7 +1630,7 @@ export declare const PluginStatusSchema: z.ZodObject<{
|
|
|
1628
1630
|
params?: Record<string, string> | undefined;
|
|
1629
1631
|
icon?: string | undefined;
|
|
1630
1632
|
pageId?: string | undefined;
|
|
1631
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1633
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1632
1634
|
width?: "full" | "half" | undefined;
|
|
1633
1635
|
openMode?: "popover" | "modal" | undefined;
|
|
1634
1636
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -1645,7 +1647,7 @@ export declare const PluginStatusSchema: z.ZodObject<{
|
|
|
1645
1647
|
}[] | undefined;
|
|
1646
1648
|
} | undefined;
|
|
1647
1649
|
instanceScope?: "operator" | "global" | undefined;
|
|
1648
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
1650
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
1649
1651
|
settings?: Record<string, {
|
|
1650
1652
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
1651
1653
|
label: string;
|
|
@@ -1937,7 +1939,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
1937
1939
|
/** Optional string params forwarded to iframe panels as URL/init params. */
|
|
1938
1940
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1939
1941
|
/** Where the panel renders. Defaults to `'operator'` (operator card live-panel area). */
|
|
1940
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
1942
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-left-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
1941
1943
|
/** Preferred width hint. Defaults to `'half'`. */
|
|
1942
1944
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
1943
1945
|
/** Optional FontAwesome Free icon name used by toolbar-style hosts. */
|
|
@@ -1953,7 +1955,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
1953
1955
|
params?: Record<string, string> | undefined;
|
|
1954
1956
|
icon?: string | undefined;
|
|
1955
1957
|
pageId?: string | undefined;
|
|
1956
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1958
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1957
1959
|
width?: "full" | "half" | undefined;
|
|
1958
1960
|
openMode?: "popover" | "modal" | undefined;
|
|
1959
1961
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -1964,7 +1966,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
1964
1966
|
params?: Record<string, string> | undefined;
|
|
1965
1967
|
icon?: string | undefined;
|
|
1966
1968
|
pageId?: string | undefined;
|
|
1967
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1969
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1968
1970
|
width?: "full" | "half" | undefined;
|
|
1969
1971
|
openMode?: "popover" | "modal" | undefined;
|
|
1970
1972
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -1975,7 +1977,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
1975
1977
|
params?: Record<string, string> | undefined;
|
|
1976
1978
|
icon?: string | undefined;
|
|
1977
1979
|
pageId?: string | undefined;
|
|
1978
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1980
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1979
1981
|
width?: "full" | "half" | undefined;
|
|
1980
1982
|
openMode?: "popover" | "modal" | undefined;
|
|
1981
1983
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -1986,12 +1988,12 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
1986
1988
|
params?: Record<string, string> | undefined;
|
|
1987
1989
|
icon?: string | undefined;
|
|
1988
1990
|
pageId?: string | undefined;
|
|
1989
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1991
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
1990
1992
|
width?: "full" | "half" | undefined;
|
|
1991
1993
|
openMode?: "popover" | "modal" | undefined;
|
|
1992
1994
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
1993
1995
|
}>, "many">>;
|
|
1994
|
-
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>;
|
|
1996
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "host:hamlib", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>;
|
|
1995
1997
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto_call_candidate", "auto_call_execution"]>, "many">>;
|
|
1996
1998
|
ui: z.ZodOptional<z.ZodObject<{
|
|
1997
1999
|
/** Static file directory relative to the plugin root (default: 'ui'). */
|
|
@@ -2095,7 +2097,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
2095
2097
|
params?: Record<string, string> | undefined;
|
|
2096
2098
|
icon?: string | undefined;
|
|
2097
2099
|
pageId?: string | undefined;
|
|
2098
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2100
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2099
2101
|
width?: "full" | "half" | undefined;
|
|
2100
2102
|
openMode?: "popover" | "modal" | undefined;
|
|
2101
2103
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -2111,7 +2113,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
2111
2113
|
icon?: string | undefined;
|
|
2112
2114
|
}[];
|
|
2113
2115
|
} | undefined;
|
|
2114
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
2116
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
2115
2117
|
settings?: Record<string, {
|
|
2116
2118
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
2117
2119
|
label: string;
|
|
@@ -2179,7 +2181,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
2179
2181
|
params?: Record<string, string> | undefined;
|
|
2180
2182
|
icon?: string | undefined;
|
|
2181
2183
|
pageId?: string | undefined;
|
|
2182
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2184
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2183
2185
|
width?: "full" | "half" | undefined;
|
|
2184
2186
|
openMode?: "popover" | "modal" | undefined;
|
|
2185
2187
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -2196,7 +2198,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
2196
2198
|
}[] | undefined;
|
|
2197
2199
|
} | undefined;
|
|
2198
2200
|
instanceScope?: "operator" | "global" | undefined;
|
|
2199
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
2201
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
2200
2202
|
settings?: Record<string, {
|
|
2201
2203
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
2202
2204
|
label: string;
|
|
@@ -2309,7 +2311,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
2309
2311
|
/** Optional string params forwarded to iframe panels as URL/init params. */
|
|
2310
2312
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2311
2313
|
/** Where the panel renders. Defaults to `'operator'` (operator card live-panel area). */
|
|
2312
|
-
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
2314
|
+
slot: z.ZodOptional<z.ZodEnum<["operator", "automation", "main-right", "voice-left-top", "voice-right-top", "cw-left-top", "cw-right-top", "radio-control-toolbar"]>>;
|
|
2313
2315
|
/** Preferred width hint. Defaults to `'half'`. */
|
|
2314
2316
|
width: z.ZodOptional<z.ZodEnum<["half", "full"]>>;
|
|
2315
2317
|
/** Optional FontAwesome Free icon name used by toolbar-style hosts. */
|
|
@@ -2325,7 +2327,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
2325
2327
|
params?: Record<string, string> | undefined;
|
|
2326
2328
|
icon?: string | undefined;
|
|
2327
2329
|
pageId?: string | undefined;
|
|
2328
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2330
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2329
2331
|
width?: "full" | "half" | undefined;
|
|
2330
2332
|
openMode?: "popover" | "modal" | undefined;
|
|
2331
2333
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -2336,7 +2338,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
2336
2338
|
params?: Record<string, string> | undefined;
|
|
2337
2339
|
icon?: string | undefined;
|
|
2338
2340
|
pageId?: string | undefined;
|
|
2339
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2341
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2340
2342
|
width?: "full" | "half" | undefined;
|
|
2341
2343
|
openMode?: "popover" | "modal" | undefined;
|
|
2342
2344
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -2347,7 +2349,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
2347
2349
|
params?: Record<string, string> | undefined;
|
|
2348
2350
|
icon?: string | undefined;
|
|
2349
2351
|
pageId?: string | undefined;
|
|
2350
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2352
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2351
2353
|
width?: "full" | "half" | undefined;
|
|
2352
2354
|
openMode?: "popover" | "modal" | undefined;
|
|
2353
2355
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -2358,7 +2360,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
2358
2360
|
params?: Record<string, string> | undefined;
|
|
2359
2361
|
icon?: string | undefined;
|
|
2360
2362
|
pageId?: string | undefined;
|
|
2361
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2363
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2362
2364
|
width?: "full" | "half" | undefined;
|
|
2363
2365
|
openMode?: "popover" | "modal" | undefined;
|
|
2364
2366
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -2374,7 +2376,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
2374
2376
|
params?: Record<string, string> | undefined;
|
|
2375
2377
|
icon?: string | undefined;
|
|
2376
2378
|
pageId?: string | undefined;
|
|
2377
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2379
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2378
2380
|
width?: "full" | "half" | undefined;
|
|
2379
2381
|
openMode?: "popover" | "modal" | undefined;
|
|
2380
2382
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -2396,7 +2398,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
2396
2398
|
params?: Record<string, string> | undefined;
|
|
2397
2399
|
icon?: string | undefined;
|
|
2398
2400
|
pageId?: string | undefined;
|
|
2399
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2401
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2400
2402
|
width?: "full" | "half" | undefined;
|
|
2401
2403
|
openMode?: "popover" | "modal" | undefined;
|
|
2402
2404
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -2438,7 +2440,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
2438
2440
|
params?: Record<string, string> | undefined;
|
|
2439
2441
|
icon?: string | undefined;
|
|
2440
2442
|
pageId?: string | undefined;
|
|
2441
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2443
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2442
2444
|
width?: "full" | "half" | undefined;
|
|
2443
2445
|
openMode?: "popover" | "modal" | undefined;
|
|
2444
2446
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -2454,7 +2456,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
2454
2456
|
icon?: string | undefined;
|
|
2455
2457
|
}[];
|
|
2456
2458
|
} | undefined;
|
|
2457
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
2459
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
2458
2460
|
settings?: Record<string, {
|
|
2459
2461
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
2460
2462
|
label: string;
|
|
@@ -2521,7 +2523,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
2521
2523
|
params?: Record<string, string> | undefined;
|
|
2522
2524
|
icon?: string | undefined;
|
|
2523
2525
|
pageId?: string | undefined;
|
|
2524
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2526
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2525
2527
|
width?: "full" | "half" | undefined;
|
|
2526
2528
|
openMode?: "popover" | "modal" | undefined;
|
|
2527
2529
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -2560,7 +2562,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
2560
2562
|
params?: Record<string, string> | undefined;
|
|
2561
2563
|
icon?: string | undefined;
|
|
2562
2564
|
pageId?: string | undefined;
|
|
2563
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2565
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2564
2566
|
width?: "full" | "half" | undefined;
|
|
2565
2567
|
openMode?: "popover" | "modal" | undefined;
|
|
2566
2568
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -2577,7 +2579,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
2577
2579
|
}[] | undefined;
|
|
2578
2580
|
} | undefined;
|
|
2579
2581
|
instanceScope?: "operator" | "global" | undefined;
|
|
2580
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
2582
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
2581
2583
|
settings?: Record<string, {
|
|
2582
2584
|
type: "string" | "number" | "boolean" | "string[]" | "object[]" | "keyedStringArrays" | "info";
|
|
2583
2585
|
label: string;
|
|
@@ -2647,7 +2649,7 @@ export declare const PluginSystemSnapshotSchema: z.ZodObject<{
|
|
|
2647
2649
|
params?: Record<string, string> | undefined;
|
|
2648
2650
|
icon?: string | undefined;
|
|
2649
2651
|
pageId?: string | undefined;
|
|
2650
|
-
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2652
|
+
slot?: "operator" | "automation" | "main-right" | "voice-left-top" | "voice-right-top" | "cw-left-top" | "cw-right-top" | "radio-control-toolbar" | undefined;
|
|
2651
2653
|
width?: "full" | "half" | undefined;
|
|
2652
2654
|
openMode?: "popover" | "modal" | undefined;
|
|
2653
2655
|
uiSize?: "sm" | "md" | "lg" | undefined;
|
|
@@ -2730,7 +2732,7 @@ export declare const PluginMarketCatalogEntrySchema: z.ZodObject<{
|
|
|
2730
2732
|
homepage: z.ZodOptional<z.ZodString>;
|
|
2731
2733
|
categories: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
2732
2734
|
keywords: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
2733
|
-
permissions: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>>;
|
|
2735
|
+
permissions: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "host:hamlib", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>>;
|
|
2734
2736
|
screenshots: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2735
2737
|
src: z.ZodString;
|
|
2736
2738
|
alt: z.ZodOptional<z.ZodString>;
|
|
@@ -2749,7 +2751,7 @@ export declare const PluginMarketCatalogEntrySchema: z.ZodObject<{
|
|
|
2749
2751
|
name: string;
|
|
2750
2752
|
description: string;
|
|
2751
2753
|
title: string;
|
|
2752
|
-
permissions: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[];
|
|
2754
|
+
permissions: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[];
|
|
2753
2755
|
artifactUrl: string;
|
|
2754
2756
|
sha256: string;
|
|
2755
2757
|
latestVersion: string;
|
|
@@ -2777,7 +2779,7 @@ export declare const PluginMarketCatalogEntrySchema: z.ZodObject<{
|
|
|
2777
2779
|
minHostVersion: string;
|
|
2778
2780
|
size: number;
|
|
2779
2781
|
publishedAt: string;
|
|
2780
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
2782
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
2781
2783
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
2782
2784
|
author?: string | undefined;
|
|
2783
2785
|
license?: string | undefined;
|
|
@@ -2808,7 +2810,7 @@ export declare const PluginMarketCatalogSchema: z.ZodObject<{
|
|
|
2808
2810
|
homepage: z.ZodOptional<z.ZodString>;
|
|
2809
2811
|
categories: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
2810
2812
|
keywords: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
2811
|
-
permissions: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>>;
|
|
2813
|
+
permissions: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "host:hamlib", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>>;
|
|
2812
2814
|
screenshots: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2813
2815
|
src: z.ZodString;
|
|
2814
2816
|
alt: z.ZodOptional<z.ZodString>;
|
|
@@ -2827,7 +2829,7 @@ export declare const PluginMarketCatalogSchema: z.ZodObject<{
|
|
|
2827
2829
|
name: string;
|
|
2828
2830
|
description: string;
|
|
2829
2831
|
title: string;
|
|
2830
|
-
permissions: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[];
|
|
2832
|
+
permissions: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[];
|
|
2831
2833
|
artifactUrl: string;
|
|
2832
2834
|
sha256: string;
|
|
2833
2835
|
latestVersion: string;
|
|
@@ -2855,7 +2857,7 @@ export declare const PluginMarketCatalogSchema: z.ZodObject<{
|
|
|
2855
2857
|
minHostVersion: string;
|
|
2856
2858
|
size: number;
|
|
2857
2859
|
publishedAt: string;
|
|
2858
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
2860
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
2859
2861
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
2860
2862
|
author?: string | undefined;
|
|
2861
2863
|
license?: string | undefined;
|
|
@@ -2874,7 +2876,7 @@ export declare const PluginMarketCatalogSchema: z.ZodObject<{
|
|
|
2874
2876
|
name: string;
|
|
2875
2877
|
description: string;
|
|
2876
2878
|
title: string;
|
|
2877
|
-
permissions: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[];
|
|
2879
|
+
permissions: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[];
|
|
2878
2880
|
artifactUrl: string;
|
|
2879
2881
|
sha256: string;
|
|
2880
2882
|
latestVersion: string;
|
|
@@ -2907,7 +2909,7 @@ export declare const PluginMarketCatalogSchema: z.ZodObject<{
|
|
|
2907
2909
|
minHostVersion: string;
|
|
2908
2910
|
size: number;
|
|
2909
2911
|
publishedAt: string;
|
|
2910
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
2912
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
2911
2913
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
2912
2914
|
author?: string | undefined;
|
|
2913
2915
|
license?: string | undefined;
|
|
@@ -2942,7 +2944,7 @@ export declare const PluginMarketCatalogResponseSchema: z.ZodObject<{
|
|
|
2942
2944
|
homepage: z.ZodOptional<z.ZodString>;
|
|
2943
2945
|
categories: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
2944
2946
|
keywords: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
2945
|
-
permissions: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>>;
|
|
2947
|
+
permissions: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "host:hamlib", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>>;
|
|
2946
2948
|
screenshots: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2947
2949
|
src: z.ZodString;
|
|
2948
2950
|
alt: z.ZodOptional<z.ZodString>;
|
|
@@ -2961,7 +2963,7 @@ export declare const PluginMarketCatalogResponseSchema: z.ZodObject<{
|
|
|
2961
2963
|
name: string;
|
|
2962
2964
|
description: string;
|
|
2963
2965
|
title: string;
|
|
2964
|
-
permissions: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[];
|
|
2966
|
+
permissions: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[];
|
|
2965
2967
|
artifactUrl: string;
|
|
2966
2968
|
sha256: string;
|
|
2967
2969
|
latestVersion: string;
|
|
@@ -2989,7 +2991,7 @@ export declare const PluginMarketCatalogResponseSchema: z.ZodObject<{
|
|
|
2989
2991
|
minHostVersion: string;
|
|
2990
2992
|
size: number;
|
|
2991
2993
|
publishedAt: string;
|
|
2992
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
2994
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
2993
2995
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
2994
2996
|
author?: string | undefined;
|
|
2995
2997
|
license?: string | undefined;
|
|
@@ -3008,7 +3010,7 @@ export declare const PluginMarketCatalogResponseSchema: z.ZodObject<{
|
|
|
3008
3010
|
name: string;
|
|
3009
3011
|
description: string;
|
|
3010
3012
|
title: string;
|
|
3011
|
-
permissions: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[];
|
|
3013
|
+
permissions: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[];
|
|
3012
3014
|
artifactUrl: string;
|
|
3013
3015
|
sha256: string;
|
|
3014
3016
|
latestVersion: string;
|
|
@@ -3041,7 +3043,7 @@ export declare const PluginMarketCatalogResponseSchema: z.ZodObject<{
|
|
|
3041
3043
|
minHostVersion: string;
|
|
3042
3044
|
size: number;
|
|
3043
3045
|
publishedAt: string;
|
|
3044
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
3046
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
3045
3047
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
3046
3048
|
author?: string | undefined;
|
|
3047
3049
|
license?: string | undefined;
|
|
@@ -3065,7 +3067,7 @@ export declare const PluginMarketCatalogResponseSchema: z.ZodObject<{
|
|
|
3065
3067
|
name: string;
|
|
3066
3068
|
description: string;
|
|
3067
3069
|
title: string;
|
|
3068
|
-
permissions: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[];
|
|
3070
|
+
permissions: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[];
|
|
3069
3071
|
artifactUrl: string;
|
|
3070
3072
|
sha256: string;
|
|
3071
3073
|
latestVersion: string;
|
|
@@ -3101,7 +3103,7 @@ export declare const PluginMarketCatalogResponseSchema: z.ZodObject<{
|
|
|
3101
3103
|
minHostVersion: string;
|
|
3102
3104
|
size: number;
|
|
3103
3105
|
publishedAt: string;
|
|
3104
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
3106
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
3105
3107
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
3106
3108
|
author?: string | undefined;
|
|
3107
3109
|
license?: string | undefined;
|
|
@@ -3134,7 +3136,7 @@ export declare const PluginMarketCatalogEntryResponseSchema: z.ZodObject<{
|
|
|
3134
3136
|
homepage: z.ZodOptional<z.ZodString>;
|
|
3135
3137
|
categories: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3136
3138
|
keywords: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3137
|
-
permissions: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>>;
|
|
3139
|
+
permissions: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<["network", "host:hamlib", "radio:read", "radio:control", "radio:power", "settings:ft8", "settings:decode-windows", "settings:realtime", "settings:frequency-presets", "settings:station", "settings:psk-reporter", "settings:ntp"]>, "many">>>;
|
|
3138
3140
|
screenshots: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3139
3141
|
src: z.ZodString;
|
|
3140
3142
|
alt: z.ZodOptional<z.ZodString>;
|
|
@@ -3153,7 +3155,7 @@ export declare const PluginMarketCatalogEntryResponseSchema: z.ZodObject<{
|
|
|
3153
3155
|
name: string;
|
|
3154
3156
|
description: string;
|
|
3155
3157
|
title: string;
|
|
3156
|
-
permissions: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[];
|
|
3158
|
+
permissions: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[];
|
|
3157
3159
|
artifactUrl: string;
|
|
3158
3160
|
sha256: string;
|
|
3159
3161
|
latestVersion: string;
|
|
@@ -3181,7 +3183,7 @@ export declare const PluginMarketCatalogEntryResponseSchema: z.ZodObject<{
|
|
|
3181
3183
|
minHostVersion: string;
|
|
3182
3184
|
size: number;
|
|
3183
3185
|
publishedAt: string;
|
|
3184
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
3186
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
3185
3187
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
3186
3188
|
author?: string | undefined;
|
|
3187
3189
|
license?: string | undefined;
|
|
@@ -3203,7 +3205,7 @@ export declare const PluginMarketCatalogEntryResponseSchema: z.ZodObject<{
|
|
|
3203
3205
|
name: string;
|
|
3204
3206
|
description: string;
|
|
3205
3207
|
title: string;
|
|
3206
|
-
permissions: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[];
|
|
3208
|
+
permissions: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[];
|
|
3207
3209
|
artifactUrl: string;
|
|
3208
3210
|
sha256: string;
|
|
3209
3211
|
latestVersion: string;
|
|
@@ -3235,7 +3237,7 @@ export declare const PluginMarketCatalogEntryResponseSchema: z.ZodObject<{
|
|
|
3235
3237
|
minHostVersion: string;
|
|
3236
3238
|
size: number;
|
|
3237
3239
|
publishedAt: string;
|
|
3238
|
-
permissions?: ("network" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
3240
|
+
permissions?: ("network" | "host:hamlib" | "radio:read" | "radio:control" | "radio:power" | "settings:ft8" | "settings:decode-windows" | "settings:realtime" | "settings:frequency-presets" | "settings:station" | "settings:psk-reporter" | "settings:ntp")[] | undefined;
|
|
3239
3241
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
3240
3242
|
author?: string | undefined;
|
|
3241
3243
|
license?: string | undefined;
|