pake-cli 3.2.0-beta11 → 3.2.0-beta15
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/cli.js +223 -63
- package/package.json +9 -9
- package/src-tauri/.pake/pake.json +2 -2
- package/src-tauri/.pake/tauri.conf.json +4 -4
- package/src-tauri/.pake/tauri.macos.conf.json +2 -2
- package/src-tauri/Cargo.lock +57 -27
- package/src-tauri/Cargo.toml +2 -2
- package/src-tauri/gen/schemas/acl-manifests.json +1 -1
- package/src-tauri/gen/schemas/desktop-schema.json +222 -0
- package/src-tauri/gen/schemas/macOS-schema.json +222 -0
- package/src-tauri/.pake/icons/githubcustomtraypng.icns +0 -0
- package/src-tauri/.pake/icons/githubcustomtraytest.icns +0 -0
- package/src-tauri/.pake/icons/githubsystemtraytest.icns +0 -0
- package/src-tauri/.pake/icons/testfix.icns +0 -0
- package/src-tauri/.pake/icons/twi.icns +0 -0
- package/src-tauri/.pake/icons/twitter.icns +0 -0
- package/src-tauri/.pake/icons/twitter1.icns +0 -0
- package/src-tauri/.pake/icons/twitter3.icns +0 -0
- package/src-tauri/.pake/icons/twitter4.icns +0 -0
- package/src-tauri/.pake/icons/twitter5.icns +0 -0
- package/src-tauri/.pake/icons/twitterapp.icns +0 -0
- package/src-tauri/.pake/icons/twittercustomtray.icns +0 -0
- package/src-tauri/.pake/icons/twitterfinal.icns +0 -0
- package/src-tauri/.pake/icons/twitteroptimized.icns +0 -0
- package/src-tauri/.pake/icons/twittertest.icns +0 -0
- package/src-tauri/.pake/icons/wk.icns +0 -0
- package/src-tauri/.pake/icons/wk1.icns +0 -0
- package/src-tauri/.pake/png/githubcustomtraypng.png +0 -0
- package/src-tauri/.pake/png/twi_tray.png +0 -0
- package/src-tauri/.pake/png/twitter5_tray.png +0 -0
- package/src-tauri/.pake/png/twittercustomtray.png +0 -0
- package/src-tauri/.pake/png/twitterfinal_tray.png +0 -0
- package/src-tauri/.pake/png/twitteroptimized_tray.png +0 -0
|
@@ -1826,6 +1826,12 @@
|
|
|
1826
1826
|
"const": "core:window:allow-set-focus",
|
|
1827
1827
|
"markdownDescription": "Enables the set_focus command without any pre-configured scope."
|
|
1828
1828
|
},
|
|
1829
|
+
{
|
|
1830
|
+
"description": "Enables the set_focusable command without any pre-configured scope.",
|
|
1831
|
+
"type": "string",
|
|
1832
|
+
"const": "core:window:allow-set-focusable",
|
|
1833
|
+
"markdownDescription": "Enables the set_focusable command without any pre-configured scope."
|
|
1834
|
+
},
|
|
1829
1835
|
{
|
|
1830
1836
|
"description": "Enables the set_fullscreen command without any pre-configured scope.",
|
|
1831
1837
|
"type": "string",
|
|
@@ -1898,6 +1904,12 @@
|
|
|
1898
1904
|
"const": "core:window:allow-set-shadow",
|
|
1899
1905
|
"markdownDescription": "Enables the set_shadow command without any pre-configured scope."
|
|
1900
1906
|
},
|
|
1907
|
+
{
|
|
1908
|
+
"description": "Enables the set_simple_fullscreen command without any pre-configured scope.",
|
|
1909
|
+
"type": "string",
|
|
1910
|
+
"const": "core:window:allow-set-simple-fullscreen",
|
|
1911
|
+
"markdownDescription": "Enables the set_simple_fullscreen command without any pre-configured scope."
|
|
1912
|
+
},
|
|
1901
1913
|
{
|
|
1902
1914
|
"description": "Enables the set_size command without any pre-configured scope.",
|
|
1903
1915
|
"type": "string",
|
|
@@ -2270,6 +2282,12 @@
|
|
|
2270
2282
|
"const": "core:window:deny-set-focus",
|
|
2271
2283
|
"markdownDescription": "Denies the set_focus command without any pre-configured scope."
|
|
2272
2284
|
},
|
|
2285
|
+
{
|
|
2286
|
+
"description": "Denies the set_focusable command without any pre-configured scope.",
|
|
2287
|
+
"type": "string",
|
|
2288
|
+
"const": "core:window:deny-set-focusable",
|
|
2289
|
+
"markdownDescription": "Denies the set_focusable command without any pre-configured scope."
|
|
2290
|
+
},
|
|
2273
2291
|
{
|
|
2274
2292
|
"description": "Denies the set_fullscreen command without any pre-configured scope.",
|
|
2275
2293
|
"type": "string",
|
|
@@ -2342,6 +2360,12 @@
|
|
|
2342
2360
|
"const": "core:window:deny-set-shadow",
|
|
2343
2361
|
"markdownDescription": "Denies the set_shadow command without any pre-configured scope."
|
|
2344
2362
|
},
|
|
2363
|
+
{
|
|
2364
|
+
"description": "Denies the set_simple_fullscreen command without any pre-configured scope.",
|
|
2365
|
+
"type": "string",
|
|
2366
|
+
"const": "core:window:deny-set-simple-fullscreen",
|
|
2367
|
+
"markdownDescription": "Denies the set_simple_fullscreen command without any pre-configured scope."
|
|
2368
|
+
},
|
|
2345
2369
|
{
|
|
2346
2370
|
"description": "Denies the set_size command without any pre-configured scope.",
|
|
2347
2371
|
"type": "string",
|
|
@@ -2552,6 +2576,204 @@
|
|
|
2552
2576
|
"const": "http:deny-fetch-send",
|
|
2553
2577
|
"markdownDescription": "Denies the fetch_send command without any pre-configured scope."
|
|
2554
2578
|
},
|
|
2579
|
+
{
|
|
2580
|
+
"description": "This permission set configures which\nnotification features are by default exposed.\n\n#### Granted Permissions\n\nIt allows all notification related features.\n\n\n#### This default permission set includes:\n\n- `allow-is-permission-granted`\n- `allow-request-permission`\n- `allow-notify`\n- `allow-register-action-types`\n- `allow-register-listener`\n- `allow-cancel`\n- `allow-get-pending`\n- `allow-remove-active`\n- `allow-get-active`\n- `allow-check-permissions`\n- `allow-show`\n- `allow-batch`\n- `allow-list-channels`\n- `allow-delete-channel`\n- `allow-create-channel`\n- `allow-permission-state`",
|
|
2581
|
+
"type": "string",
|
|
2582
|
+
"const": "notification:default",
|
|
2583
|
+
"markdownDescription": "This permission set configures which\nnotification features are by default exposed.\n\n#### Granted Permissions\n\nIt allows all notification related features.\n\n\n#### This default permission set includes:\n\n- `allow-is-permission-granted`\n- `allow-request-permission`\n- `allow-notify`\n- `allow-register-action-types`\n- `allow-register-listener`\n- `allow-cancel`\n- `allow-get-pending`\n- `allow-remove-active`\n- `allow-get-active`\n- `allow-check-permissions`\n- `allow-show`\n- `allow-batch`\n- `allow-list-channels`\n- `allow-delete-channel`\n- `allow-create-channel`\n- `allow-permission-state`"
|
|
2584
|
+
},
|
|
2585
|
+
{
|
|
2586
|
+
"description": "Enables the batch command without any pre-configured scope.",
|
|
2587
|
+
"type": "string",
|
|
2588
|
+
"const": "notification:allow-batch",
|
|
2589
|
+
"markdownDescription": "Enables the batch command without any pre-configured scope."
|
|
2590
|
+
},
|
|
2591
|
+
{
|
|
2592
|
+
"description": "Enables the cancel command without any pre-configured scope.",
|
|
2593
|
+
"type": "string",
|
|
2594
|
+
"const": "notification:allow-cancel",
|
|
2595
|
+
"markdownDescription": "Enables the cancel command without any pre-configured scope."
|
|
2596
|
+
},
|
|
2597
|
+
{
|
|
2598
|
+
"description": "Enables the check_permissions command without any pre-configured scope.",
|
|
2599
|
+
"type": "string",
|
|
2600
|
+
"const": "notification:allow-check-permissions",
|
|
2601
|
+
"markdownDescription": "Enables the check_permissions command without any pre-configured scope."
|
|
2602
|
+
},
|
|
2603
|
+
{
|
|
2604
|
+
"description": "Enables the create_channel command without any pre-configured scope.",
|
|
2605
|
+
"type": "string",
|
|
2606
|
+
"const": "notification:allow-create-channel",
|
|
2607
|
+
"markdownDescription": "Enables the create_channel command without any pre-configured scope."
|
|
2608
|
+
},
|
|
2609
|
+
{
|
|
2610
|
+
"description": "Enables the delete_channel command without any pre-configured scope.",
|
|
2611
|
+
"type": "string",
|
|
2612
|
+
"const": "notification:allow-delete-channel",
|
|
2613
|
+
"markdownDescription": "Enables the delete_channel command without any pre-configured scope."
|
|
2614
|
+
},
|
|
2615
|
+
{
|
|
2616
|
+
"description": "Enables the get_active command without any pre-configured scope.",
|
|
2617
|
+
"type": "string",
|
|
2618
|
+
"const": "notification:allow-get-active",
|
|
2619
|
+
"markdownDescription": "Enables the get_active command without any pre-configured scope."
|
|
2620
|
+
},
|
|
2621
|
+
{
|
|
2622
|
+
"description": "Enables the get_pending command without any pre-configured scope.",
|
|
2623
|
+
"type": "string",
|
|
2624
|
+
"const": "notification:allow-get-pending",
|
|
2625
|
+
"markdownDescription": "Enables the get_pending command without any pre-configured scope."
|
|
2626
|
+
},
|
|
2627
|
+
{
|
|
2628
|
+
"description": "Enables the is_permission_granted command without any pre-configured scope.",
|
|
2629
|
+
"type": "string",
|
|
2630
|
+
"const": "notification:allow-is-permission-granted",
|
|
2631
|
+
"markdownDescription": "Enables the is_permission_granted command without any pre-configured scope."
|
|
2632
|
+
},
|
|
2633
|
+
{
|
|
2634
|
+
"description": "Enables the list_channels command without any pre-configured scope.",
|
|
2635
|
+
"type": "string",
|
|
2636
|
+
"const": "notification:allow-list-channels",
|
|
2637
|
+
"markdownDescription": "Enables the list_channels command without any pre-configured scope."
|
|
2638
|
+
},
|
|
2639
|
+
{
|
|
2640
|
+
"description": "Enables the notify command without any pre-configured scope.",
|
|
2641
|
+
"type": "string",
|
|
2642
|
+
"const": "notification:allow-notify",
|
|
2643
|
+
"markdownDescription": "Enables the notify command without any pre-configured scope."
|
|
2644
|
+
},
|
|
2645
|
+
{
|
|
2646
|
+
"description": "Enables the permission_state command without any pre-configured scope.",
|
|
2647
|
+
"type": "string",
|
|
2648
|
+
"const": "notification:allow-permission-state",
|
|
2649
|
+
"markdownDescription": "Enables the permission_state command without any pre-configured scope."
|
|
2650
|
+
},
|
|
2651
|
+
{
|
|
2652
|
+
"description": "Enables the register_action_types command without any pre-configured scope.",
|
|
2653
|
+
"type": "string",
|
|
2654
|
+
"const": "notification:allow-register-action-types",
|
|
2655
|
+
"markdownDescription": "Enables the register_action_types command without any pre-configured scope."
|
|
2656
|
+
},
|
|
2657
|
+
{
|
|
2658
|
+
"description": "Enables the register_listener command without any pre-configured scope.",
|
|
2659
|
+
"type": "string",
|
|
2660
|
+
"const": "notification:allow-register-listener",
|
|
2661
|
+
"markdownDescription": "Enables the register_listener command without any pre-configured scope."
|
|
2662
|
+
},
|
|
2663
|
+
{
|
|
2664
|
+
"description": "Enables the remove_active command without any pre-configured scope.",
|
|
2665
|
+
"type": "string",
|
|
2666
|
+
"const": "notification:allow-remove-active",
|
|
2667
|
+
"markdownDescription": "Enables the remove_active command without any pre-configured scope."
|
|
2668
|
+
},
|
|
2669
|
+
{
|
|
2670
|
+
"description": "Enables the request_permission command without any pre-configured scope.",
|
|
2671
|
+
"type": "string",
|
|
2672
|
+
"const": "notification:allow-request-permission",
|
|
2673
|
+
"markdownDescription": "Enables the request_permission command without any pre-configured scope."
|
|
2674
|
+
},
|
|
2675
|
+
{
|
|
2676
|
+
"description": "Enables the show command without any pre-configured scope.",
|
|
2677
|
+
"type": "string",
|
|
2678
|
+
"const": "notification:allow-show",
|
|
2679
|
+
"markdownDescription": "Enables the show command without any pre-configured scope."
|
|
2680
|
+
},
|
|
2681
|
+
{
|
|
2682
|
+
"description": "Denies the batch command without any pre-configured scope.",
|
|
2683
|
+
"type": "string",
|
|
2684
|
+
"const": "notification:deny-batch",
|
|
2685
|
+
"markdownDescription": "Denies the batch command without any pre-configured scope."
|
|
2686
|
+
},
|
|
2687
|
+
{
|
|
2688
|
+
"description": "Denies the cancel command without any pre-configured scope.",
|
|
2689
|
+
"type": "string",
|
|
2690
|
+
"const": "notification:deny-cancel",
|
|
2691
|
+
"markdownDescription": "Denies the cancel command without any pre-configured scope."
|
|
2692
|
+
},
|
|
2693
|
+
{
|
|
2694
|
+
"description": "Denies the check_permissions command without any pre-configured scope.",
|
|
2695
|
+
"type": "string",
|
|
2696
|
+
"const": "notification:deny-check-permissions",
|
|
2697
|
+
"markdownDescription": "Denies the check_permissions command without any pre-configured scope."
|
|
2698
|
+
},
|
|
2699
|
+
{
|
|
2700
|
+
"description": "Denies the create_channel command without any pre-configured scope.",
|
|
2701
|
+
"type": "string",
|
|
2702
|
+
"const": "notification:deny-create-channel",
|
|
2703
|
+
"markdownDescription": "Denies the create_channel command without any pre-configured scope."
|
|
2704
|
+
},
|
|
2705
|
+
{
|
|
2706
|
+
"description": "Denies the delete_channel command without any pre-configured scope.",
|
|
2707
|
+
"type": "string",
|
|
2708
|
+
"const": "notification:deny-delete-channel",
|
|
2709
|
+
"markdownDescription": "Denies the delete_channel command without any pre-configured scope."
|
|
2710
|
+
},
|
|
2711
|
+
{
|
|
2712
|
+
"description": "Denies the get_active command without any pre-configured scope.",
|
|
2713
|
+
"type": "string",
|
|
2714
|
+
"const": "notification:deny-get-active",
|
|
2715
|
+
"markdownDescription": "Denies the get_active command without any pre-configured scope."
|
|
2716
|
+
},
|
|
2717
|
+
{
|
|
2718
|
+
"description": "Denies the get_pending command without any pre-configured scope.",
|
|
2719
|
+
"type": "string",
|
|
2720
|
+
"const": "notification:deny-get-pending",
|
|
2721
|
+
"markdownDescription": "Denies the get_pending command without any pre-configured scope."
|
|
2722
|
+
},
|
|
2723
|
+
{
|
|
2724
|
+
"description": "Denies the is_permission_granted command without any pre-configured scope.",
|
|
2725
|
+
"type": "string",
|
|
2726
|
+
"const": "notification:deny-is-permission-granted",
|
|
2727
|
+
"markdownDescription": "Denies the is_permission_granted command without any pre-configured scope."
|
|
2728
|
+
},
|
|
2729
|
+
{
|
|
2730
|
+
"description": "Denies the list_channels command without any pre-configured scope.",
|
|
2731
|
+
"type": "string",
|
|
2732
|
+
"const": "notification:deny-list-channels",
|
|
2733
|
+
"markdownDescription": "Denies the list_channels command without any pre-configured scope."
|
|
2734
|
+
},
|
|
2735
|
+
{
|
|
2736
|
+
"description": "Denies the notify command without any pre-configured scope.",
|
|
2737
|
+
"type": "string",
|
|
2738
|
+
"const": "notification:deny-notify",
|
|
2739
|
+
"markdownDescription": "Denies the notify command without any pre-configured scope."
|
|
2740
|
+
},
|
|
2741
|
+
{
|
|
2742
|
+
"description": "Denies the permission_state command without any pre-configured scope.",
|
|
2743
|
+
"type": "string",
|
|
2744
|
+
"const": "notification:deny-permission-state",
|
|
2745
|
+
"markdownDescription": "Denies the permission_state command without any pre-configured scope."
|
|
2746
|
+
},
|
|
2747
|
+
{
|
|
2748
|
+
"description": "Denies the register_action_types command without any pre-configured scope.",
|
|
2749
|
+
"type": "string",
|
|
2750
|
+
"const": "notification:deny-register-action-types",
|
|
2751
|
+
"markdownDescription": "Denies the register_action_types command without any pre-configured scope."
|
|
2752
|
+
},
|
|
2753
|
+
{
|
|
2754
|
+
"description": "Denies the register_listener command without any pre-configured scope.",
|
|
2755
|
+
"type": "string",
|
|
2756
|
+
"const": "notification:deny-register-listener",
|
|
2757
|
+
"markdownDescription": "Denies the register_listener command without any pre-configured scope."
|
|
2758
|
+
},
|
|
2759
|
+
{
|
|
2760
|
+
"description": "Denies the remove_active command without any pre-configured scope.",
|
|
2761
|
+
"type": "string",
|
|
2762
|
+
"const": "notification:deny-remove-active",
|
|
2763
|
+
"markdownDescription": "Denies the remove_active command without any pre-configured scope."
|
|
2764
|
+
},
|
|
2765
|
+
{
|
|
2766
|
+
"description": "Denies the request_permission command without any pre-configured scope.",
|
|
2767
|
+
"type": "string",
|
|
2768
|
+
"const": "notification:deny-request-permission",
|
|
2769
|
+
"markdownDescription": "Denies the request_permission command without any pre-configured scope."
|
|
2770
|
+
},
|
|
2771
|
+
{
|
|
2772
|
+
"description": "Denies the show command without any pre-configured scope.",
|
|
2773
|
+
"type": "string",
|
|
2774
|
+
"const": "notification:deny-show",
|
|
2775
|
+
"markdownDescription": "Denies the show command without any pre-configured scope."
|
|
2776
|
+
},
|
|
2555
2777
|
{
|
|
2556
2778
|
"description": "Enables the cancel command without any pre-configured scope.",
|
|
2557
2779
|
"type": "string",
|
|
@@ -1826,6 +1826,12 @@
|
|
|
1826
1826
|
"const": "core:window:allow-set-focus",
|
|
1827
1827
|
"markdownDescription": "Enables the set_focus command without any pre-configured scope."
|
|
1828
1828
|
},
|
|
1829
|
+
{
|
|
1830
|
+
"description": "Enables the set_focusable command without any pre-configured scope.",
|
|
1831
|
+
"type": "string",
|
|
1832
|
+
"const": "core:window:allow-set-focusable",
|
|
1833
|
+
"markdownDescription": "Enables the set_focusable command without any pre-configured scope."
|
|
1834
|
+
},
|
|
1829
1835
|
{
|
|
1830
1836
|
"description": "Enables the set_fullscreen command without any pre-configured scope.",
|
|
1831
1837
|
"type": "string",
|
|
@@ -1898,6 +1904,12 @@
|
|
|
1898
1904
|
"const": "core:window:allow-set-shadow",
|
|
1899
1905
|
"markdownDescription": "Enables the set_shadow command without any pre-configured scope."
|
|
1900
1906
|
},
|
|
1907
|
+
{
|
|
1908
|
+
"description": "Enables the set_simple_fullscreen command without any pre-configured scope.",
|
|
1909
|
+
"type": "string",
|
|
1910
|
+
"const": "core:window:allow-set-simple-fullscreen",
|
|
1911
|
+
"markdownDescription": "Enables the set_simple_fullscreen command without any pre-configured scope."
|
|
1912
|
+
},
|
|
1901
1913
|
{
|
|
1902
1914
|
"description": "Enables the set_size command without any pre-configured scope.",
|
|
1903
1915
|
"type": "string",
|
|
@@ -2270,6 +2282,12 @@
|
|
|
2270
2282
|
"const": "core:window:deny-set-focus",
|
|
2271
2283
|
"markdownDescription": "Denies the set_focus command without any pre-configured scope."
|
|
2272
2284
|
},
|
|
2285
|
+
{
|
|
2286
|
+
"description": "Denies the set_focusable command without any pre-configured scope.",
|
|
2287
|
+
"type": "string",
|
|
2288
|
+
"const": "core:window:deny-set-focusable",
|
|
2289
|
+
"markdownDescription": "Denies the set_focusable command without any pre-configured scope."
|
|
2290
|
+
},
|
|
2273
2291
|
{
|
|
2274
2292
|
"description": "Denies the set_fullscreen command without any pre-configured scope.",
|
|
2275
2293
|
"type": "string",
|
|
@@ -2342,6 +2360,12 @@
|
|
|
2342
2360
|
"const": "core:window:deny-set-shadow",
|
|
2343
2361
|
"markdownDescription": "Denies the set_shadow command without any pre-configured scope."
|
|
2344
2362
|
},
|
|
2363
|
+
{
|
|
2364
|
+
"description": "Denies the set_simple_fullscreen command without any pre-configured scope.",
|
|
2365
|
+
"type": "string",
|
|
2366
|
+
"const": "core:window:deny-set-simple-fullscreen",
|
|
2367
|
+
"markdownDescription": "Denies the set_simple_fullscreen command without any pre-configured scope."
|
|
2368
|
+
},
|
|
2345
2369
|
{
|
|
2346
2370
|
"description": "Denies the set_size command without any pre-configured scope.",
|
|
2347
2371
|
"type": "string",
|
|
@@ -2552,6 +2576,204 @@
|
|
|
2552
2576
|
"const": "http:deny-fetch-send",
|
|
2553
2577
|
"markdownDescription": "Denies the fetch_send command without any pre-configured scope."
|
|
2554
2578
|
},
|
|
2579
|
+
{
|
|
2580
|
+
"description": "This permission set configures which\nnotification features are by default exposed.\n\n#### Granted Permissions\n\nIt allows all notification related features.\n\n\n#### This default permission set includes:\n\n- `allow-is-permission-granted`\n- `allow-request-permission`\n- `allow-notify`\n- `allow-register-action-types`\n- `allow-register-listener`\n- `allow-cancel`\n- `allow-get-pending`\n- `allow-remove-active`\n- `allow-get-active`\n- `allow-check-permissions`\n- `allow-show`\n- `allow-batch`\n- `allow-list-channels`\n- `allow-delete-channel`\n- `allow-create-channel`\n- `allow-permission-state`",
|
|
2581
|
+
"type": "string",
|
|
2582
|
+
"const": "notification:default",
|
|
2583
|
+
"markdownDescription": "This permission set configures which\nnotification features are by default exposed.\n\n#### Granted Permissions\n\nIt allows all notification related features.\n\n\n#### This default permission set includes:\n\n- `allow-is-permission-granted`\n- `allow-request-permission`\n- `allow-notify`\n- `allow-register-action-types`\n- `allow-register-listener`\n- `allow-cancel`\n- `allow-get-pending`\n- `allow-remove-active`\n- `allow-get-active`\n- `allow-check-permissions`\n- `allow-show`\n- `allow-batch`\n- `allow-list-channels`\n- `allow-delete-channel`\n- `allow-create-channel`\n- `allow-permission-state`"
|
|
2584
|
+
},
|
|
2585
|
+
{
|
|
2586
|
+
"description": "Enables the batch command without any pre-configured scope.",
|
|
2587
|
+
"type": "string",
|
|
2588
|
+
"const": "notification:allow-batch",
|
|
2589
|
+
"markdownDescription": "Enables the batch command without any pre-configured scope."
|
|
2590
|
+
},
|
|
2591
|
+
{
|
|
2592
|
+
"description": "Enables the cancel command without any pre-configured scope.",
|
|
2593
|
+
"type": "string",
|
|
2594
|
+
"const": "notification:allow-cancel",
|
|
2595
|
+
"markdownDescription": "Enables the cancel command without any pre-configured scope."
|
|
2596
|
+
},
|
|
2597
|
+
{
|
|
2598
|
+
"description": "Enables the check_permissions command without any pre-configured scope.",
|
|
2599
|
+
"type": "string",
|
|
2600
|
+
"const": "notification:allow-check-permissions",
|
|
2601
|
+
"markdownDescription": "Enables the check_permissions command without any pre-configured scope."
|
|
2602
|
+
},
|
|
2603
|
+
{
|
|
2604
|
+
"description": "Enables the create_channel command without any pre-configured scope.",
|
|
2605
|
+
"type": "string",
|
|
2606
|
+
"const": "notification:allow-create-channel",
|
|
2607
|
+
"markdownDescription": "Enables the create_channel command without any pre-configured scope."
|
|
2608
|
+
},
|
|
2609
|
+
{
|
|
2610
|
+
"description": "Enables the delete_channel command without any pre-configured scope.",
|
|
2611
|
+
"type": "string",
|
|
2612
|
+
"const": "notification:allow-delete-channel",
|
|
2613
|
+
"markdownDescription": "Enables the delete_channel command without any pre-configured scope."
|
|
2614
|
+
},
|
|
2615
|
+
{
|
|
2616
|
+
"description": "Enables the get_active command without any pre-configured scope.",
|
|
2617
|
+
"type": "string",
|
|
2618
|
+
"const": "notification:allow-get-active",
|
|
2619
|
+
"markdownDescription": "Enables the get_active command without any pre-configured scope."
|
|
2620
|
+
},
|
|
2621
|
+
{
|
|
2622
|
+
"description": "Enables the get_pending command without any pre-configured scope.",
|
|
2623
|
+
"type": "string",
|
|
2624
|
+
"const": "notification:allow-get-pending",
|
|
2625
|
+
"markdownDescription": "Enables the get_pending command without any pre-configured scope."
|
|
2626
|
+
},
|
|
2627
|
+
{
|
|
2628
|
+
"description": "Enables the is_permission_granted command without any pre-configured scope.",
|
|
2629
|
+
"type": "string",
|
|
2630
|
+
"const": "notification:allow-is-permission-granted",
|
|
2631
|
+
"markdownDescription": "Enables the is_permission_granted command without any pre-configured scope."
|
|
2632
|
+
},
|
|
2633
|
+
{
|
|
2634
|
+
"description": "Enables the list_channels command without any pre-configured scope.",
|
|
2635
|
+
"type": "string",
|
|
2636
|
+
"const": "notification:allow-list-channels",
|
|
2637
|
+
"markdownDescription": "Enables the list_channels command without any pre-configured scope."
|
|
2638
|
+
},
|
|
2639
|
+
{
|
|
2640
|
+
"description": "Enables the notify command without any pre-configured scope.",
|
|
2641
|
+
"type": "string",
|
|
2642
|
+
"const": "notification:allow-notify",
|
|
2643
|
+
"markdownDescription": "Enables the notify command without any pre-configured scope."
|
|
2644
|
+
},
|
|
2645
|
+
{
|
|
2646
|
+
"description": "Enables the permission_state command without any pre-configured scope.",
|
|
2647
|
+
"type": "string",
|
|
2648
|
+
"const": "notification:allow-permission-state",
|
|
2649
|
+
"markdownDescription": "Enables the permission_state command without any pre-configured scope."
|
|
2650
|
+
},
|
|
2651
|
+
{
|
|
2652
|
+
"description": "Enables the register_action_types command without any pre-configured scope.",
|
|
2653
|
+
"type": "string",
|
|
2654
|
+
"const": "notification:allow-register-action-types",
|
|
2655
|
+
"markdownDescription": "Enables the register_action_types command without any pre-configured scope."
|
|
2656
|
+
},
|
|
2657
|
+
{
|
|
2658
|
+
"description": "Enables the register_listener command without any pre-configured scope.",
|
|
2659
|
+
"type": "string",
|
|
2660
|
+
"const": "notification:allow-register-listener",
|
|
2661
|
+
"markdownDescription": "Enables the register_listener command without any pre-configured scope."
|
|
2662
|
+
},
|
|
2663
|
+
{
|
|
2664
|
+
"description": "Enables the remove_active command without any pre-configured scope.",
|
|
2665
|
+
"type": "string",
|
|
2666
|
+
"const": "notification:allow-remove-active",
|
|
2667
|
+
"markdownDescription": "Enables the remove_active command without any pre-configured scope."
|
|
2668
|
+
},
|
|
2669
|
+
{
|
|
2670
|
+
"description": "Enables the request_permission command without any pre-configured scope.",
|
|
2671
|
+
"type": "string",
|
|
2672
|
+
"const": "notification:allow-request-permission",
|
|
2673
|
+
"markdownDescription": "Enables the request_permission command without any pre-configured scope."
|
|
2674
|
+
},
|
|
2675
|
+
{
|
|
2676
|
+
"description": "Enables the show command without any pre-configured scope.",
|
|
2677
|
+
"type": "string",
|
|
2678
|
+
"const": "notification:allow-show",
|
|
2679
|
+
"markdownDescription": "Enables the show command without any pre-configured scope."
|
|
2680
|
+
},
|
|
2681
|
+
{
|
|
2682
|
+
"description": "Denies the batch command without any pre-configured scope.",
|
|
2683
|
+
"type": "string",
|
|
2684
|
+
"const": "notification:deny-batch",
|
|
2685
|
+
"markdownDescription": "Denies the batch command without any pre-configured scope."
|
|
2686
|
+
},
|
|
2687
|
+
{
|
|
2688
|
+
"description": "Denies the cancel command without any pre-configured scope.",
|
|
2689
|
+
"type": "string",
|
|
2690
|
+
"const": "notification:deny-cancel",
|
|
2691
|
+
"markdownDescription": "Denies the cancel command without any pre-configured scope."
|
|
2692
|
+
},
|
|
2693
|
+
{
|
|
2694
|
+
"description": "Denies the check_permissions command without any pre-configured scope.",
|
|
2695
|
+
"type": "string",
|
|
2696
|
+
"const": "notification:deny-check-permissions",
|
|
2697
|
+
"markdownDescription": "Denies the check_permissions command without any pre-configured scope."
|
|
2698
|
+
},
|
|
2699
|
+
{
|
|
2700
|
+
"description": "Denies the create_channel command without any pre-configured scope.",
|
|
2701
|
+
"type": "string",
|
|
2702
|
+
"const": "notification:deny-create-channel",
|
|
2703
|
+
"markdownDescription": "Denies the create_channel command without any pre-configured scope."
|
|
2704
|
+
},
|
|
2705
|
+
{
|
|
2706
|
+
"description": "Denies the delete_channel command without any pre-configured scope.",
|
|
2707
|
+
"type": "string",
|
|
2708
|
+
"const": "notification:deny-delete-channel",
|
|
2709
|
+
"markdownDescription": "Denies the delete_channel command without any pre-configured scope."
|
|
2710
|
+
},
|
|
2711
|
+
{
|
|
2712
|
+
"description": "Denies the get_active command without any pre-configured scope.",
|
|
2713
|
+
"type": "string",
|
|
2714
|
+
"const": "notification:deny-get-active",
|
|
2715
|
+
"markdownDescription": "Denies the get_active command without any pre-configured scope."
|
|
2716
|
+
},
|
|
2717
|
+
{
|
|
2718
|
+
"description": "Denies the get_pending command without any pre-configured scope.",
|
|
2719
|
+
"type": "string",
|
|
2720
|
+
"const": "notification:deny-get-pending",
|
|
2721
|
+
"markdownDescription": "Denies the get_pending command without any pre-configured scope."
|
|
2722
|
+
},
|
|
2723
|
+
{
|
|
2724
|
+
"description": "Denies the is_permission_granted command without any pre-configured scope.",
|
|
2725
|
+
"type": "string",
|
|
2726
|
+
"const": "notification:deny-is-permission-granted",
|
|
2727
|
+
"markdownDescription": "Denies the is_permission_granted command without any pre-configured scope."
|
|
2728
|
+
},
|
|
2729
|
+
{
|
|
2730
|
+
"description": "Denies the list_channels command without any pre-configured scope.",
|
|
2731
|
+
"type": "string",
|
|
2732
|
+
"const": "notification:deny-list-channels",
|
|
2733
|
+
"markdownDescription": "Denies the list_channels command without any pre-configured scope."
|
|
2734
|
+
},
|
|
2735
|
+
{
|
|
2736
|
+
"description": "Denies the notify command without any pre-configured scope.",
|
|
2737
|
+
"type": "string",
|
|
2738
|
+
"const": "notification:deny-notify",
|
|
2739
|
+
"markdownDescription": "Denies the notify command without any pre-configured scope."
|
|
2740
|
+
},
|
|
2741
|
+
{
|
|
2742
|
+
"description": "Denies the permission_state command without any pre-configured scope.",
|
|
2743
|
+
"type": "string",
|
|
2744
|
+
"const": "notification:deny-permission-state",
|
|
2745
|
+
"markdownDescription": "Denies the permission_state command without any pre-configured scope."
|
|
2746
|
+
},
|
|
2747
|
+
{
|
|
2748
|
+
"description": "Denies the register_action_types command without any pre-configured scope.",
|
|
2749
|
+
"type": "string",
|
|
2750
|
+
"const": "notification:deny-register-action-types",
|
|
2751
|
+
"markdownDescription": "Denies the register_action_types command without any pre-configured scope."
|
|
2752
|
+
},
|
|
2753
|
+
{
|
|
2754
|
+
"description": "Denies the register_listener command without any pre-configured scope.",
|
|
2755
|
+
"type": "string",
|
|
2756
|
+
"const": "notification:deny-register-listener",
|
|
2757
|
+
"markdownDescription": "Denies the register_listener command without any pre-configured scope."
|
|
2758
|
+
},
|
|
2759
|
+
{
|
|
2760
|
+
"description": "Denies the remove_active command without any pre-configured scope.",
|
|
2761
|
+
"type": "string",
|
|
2762
|
+
"const": "notification:deny-remove-active",
|
|
2763
|
+
"markdownDescription": "Denies the remove_active command without any pre-configured scope."
|
|
2764
|
+
},
|
|
2765
|
+
{
|
|
2766
|
+
"description": "Denies the request_permission command without any pre-configured scope.",
|
|
2767
|
+
"type": "string",
|
|
2768
|
+
"const": "notification:deny-request-permission",
|
|
2769
|
+
"markdownDescription": "Denies the request_permission command without any pre-configured scope."
|
|
2770
|
+
},
|
|
2771
|
+
{
|
|
2772
|
+
"description": "Denies the show command without any pre-configured scope.",
|
|
2773
|
+
"type": "string",
|
|
2774
|
+
"const": "notification:deny-show",
|
|
2775
|
+
"markdownDescription": "Denies the show command without any pre-configured scope."
|
|
2776
|
+
},
|
|
2555
2777
|
{
|
|
2556
2778
|
"description": "Enables the cancel command without any pre-configured scope.",
|
|
2557
2779
|
"type": "string",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|