From 7d6807383e387ed27df949d19449dd5fd6619057 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Madis=20V=C3=A4in?= Date: Mon, 9 Feb 2026 17:37:44 +0200 Subject: [PATCH 1/4] =?UTF-8?q?=E2=9C=A8=20feat:=20add=20tauri-plugin-shel?= =?UTF-8?q?l=20and=20Typst=20sidecar=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Set up infrastructure for Typst-based PDF generation as a Tauri sidecar binary. Adds shell plugin, capability permissions, externalBin and resource bundling config. Co-Authored-By: Claude Opus 4.6 --- .gitignore | 3 + src-tauri/Cargo.lock | 64 +++++ src-tauri/Cargo.toml | 1 + src-tauri/capabilities/shell.json | 18 ++ src-tauri/gen/schemas/acl-manifests.json | 2 +- src-tauri/gen/schemas/capabilities.json | 2 +- src-tauri/gen/schemas/desktop-schema.json | 320 ++++++++++++++++++++++ src-tauri/gen/schemas/macOS-schema.json | 320 ++++++++++++++++++++++ src-tauri/src/lib.rs | 2 + src-tauri/tauri.conf.json | 7 +- 10 files changed, 734 insertions(+), 5 deletions(-) create mode 100644 src-tauri/capabilities/shell.json diff --git a/.gitignore b/.gitignore index e29a665..8692b95 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,6 @@ dist-ssr *.sw? # Sentry Config File .env.sentry-build-plugin + +# Typst sidecar binary (download per-platform) +src-tauri/binaries/ diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 71f988c..a0ddc13 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -3178,6 +3178,16 @@ dependencies = [ "windows-sys 0.61.2", ] +[[package]] +name = "os_pipe" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + [[package]] name = "osakit" version = "0.3.1" @@ -4614,12 +4624,44 @@ dependencies = [ "digest", ] +[[package]] +name = "shared_child" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e362d9935bc50f019969e2f9ecd66786612daae13e8f277be7bfb66e8bed3f7" +dependencies = [ + "libc", + "sigchld", + "windows-sys 0.60.2", +] + [[package]] name = "shlex" version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" +[[package]] +name = "sigchld" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47106eded3c154e70176fc83df9737335c94ce22f821c32d17ed1db1f83badb1" +dependencies = [ + "libc", + "os_pipe", + "signal-hook", +] + +[[package]] +name = "signal-hook" +version = "0.3.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2" +dependencies = [ + "libc", + "signal-hook-registry", +] + [[package]] name = "signal-hook-registry" version = "1.4.8" @@ -5386,6 +5428,27 @@ dependencies = [ "tauri-plugin", ] +[[package]] +name = "tauri-plugin-shell" +version = "2.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8457dbf9e2bab1edd8df22bb2c20857a59a9868e79cb3eac5ed639eec4d0c73b" +dependencies = [ + "encoding_rs", + "log", + "open", + "os_pipe", + "regex", + "schemars 0.8.22", + "serde", + "serde_json", + "shared_child", + "tauri", + "tauri-plugin", + "thiserror 2.0.18", + "tokio", +] + [[package]] name = "tauri-plugin-updater" version = "2.10.0" @@ -6058,6 +6121,7 @@ dependencies = [ "tauri-plugin-http", "tauri-plugin-opener", "tauri-plugin-process", + "tauri-plugin-shell", "tauri-plugin-updater", "tokio", ] diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index b497fa5..18df947 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -28,6 +28,7 @@ tauri-plugin-process = "2.3.1" tauri-plugin-fs = "2.4.5" tauri-plugin-opener = "2.5.3" tauri-plugin-http = "2.5.7" +tauri-plugin-shell = "2" sqlx = { version = "0.8.6", features = ["runtime-tokio-native-tls", "sqlite", "macros", "migrate"] } tokio = { version = "1.49.0", features = ["full"] } nanoid = "0.4" diff --git a/src-tauri/capabilities/shell.json b/src-tauri/capabilities/shell.json new file mode 100644 index 0000000..9be93ae --- /dev/null +++ b/src-tauri/capabilities/shell.json @@ -0,0 +1,18 @@ +{ + "$schema": "../gen/schemas/desktop-schema.json", + "identifier": "shell-capability", + "description": "Shell capabilities for sidecar binaries", + "windows": ["main"], + "permissions": [ + { + "identifier": "shell:allow-execute", + "allow": [ + { + "name": "binaries/typst", + "sidecar": true, + "args": true + } + ] + } + ] +} diff --git a/src-tauri/gen/schemas/acl-manifests.json b/src-tauri/gen/schemas/acl-manifests.json index 5115282..1140db6 100644 --- a/src-tauri/gen/schemas/acl-manifests.json +++ b/src-tauri/gen/schemas/acl-manifests.json @@ -1 +1 @@ -{"core":{"default_permission":{"identifier":"default","description":"Default core plugins set.","permissions":["core:path:default","core:event:default","core:window:default","core:webview:default","core:app:default","core:image:default","core:resources:default","core:menu:default","core:tray:default"]},"permissions":{},"permission_sets":{},"global_scope_schema":null},"core:app":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin.","permissions":["allow-version","allow-name","allow-tauri-version","allow-identifier","allow-bundle-type","allow-register-listener","allow-remove-listener"]},"permissions":{"allow-app-hide":{"identifier":"allow-app-hide","description":"Enables the app_hide command without any pre-configured scope.","commands":{"allow":["app_hide"],"deny":[]}},"allow-app-show":{"identifier":"allow-app-show","description":"Enables the app_show command without any pre-configured scope.","commands":{"allow":["app_show"],"deny":[]}},"allow-bundle-type":{"identifier":"allow-bundle-type","description":"Enables the bundle_type command without any pre-configured scope.","commands":{"allow":["bundle_type"],"deny":[]}},"allow-default-window-icon":{"identifier":"allow-default-window-icon","description":"Enables the default_window_icon command without any pre-configured scope.","commands":{"allow":["default_window_icon"],"deny":[]}},"allow-fetch-data-store-identifiers":{"identifier":"allow-fetch-data-store-identifiers","description":"Enables the fetch_data_store_identifiers command without any pre-configured scope.","commands":{"allow":["fetch_data_store_identifiers"],"deny":[]}},"allow-identifier":{"identifier":"allow-identifier","description":"Enables the identifier command without any pre-configured scope.","commands":{"allow":["identifier"],"deny":[]}},"allow-name":{"identifier":"allow-name","description":"Enables the name command without any pre-configured scope.","commands":{"allow":["name"],"deny":[]}},"allow-register-listener":{"identifier":"allow-register-listener","description":"Enables the register_listener command without any pre-configured scope.","commands":{"allow":["register_listener"],"deny":[]}},"allow-remove-data-store":{"identifier":"allow-remove-data-store","description":"Enables the remove_data_store command without any pre-configured scope.","commands":{"allow":["remove_data_store"],"deny":[]}},"allow-remove-listener":{"identifier":"allow-remove-listener","description":"Enables the remove_listener command without any pre-configured scope.","commands":{"allow":["remove_listener"],"deny":[]}},"allow-set-app-theme":{"identifier":"allow-set-app-theme","description":"Enables the set_app_theme command without any pre-configured scope.","commands":{"allow":["set_app_theme"],"deny":[]}},"allow-set-dock-visibility":{"identifier":"allow-set-dock-visibility","description":"Enables the set_dock_visibility command without any pre-configured scope.","commands":{"allow":["set_dock_visibility"],"deny":[]}},"allow-tauri-version":{"identifier":"allow-tauri-version","description":"Enables the tauri_version command without any pre-configured scope.","commands":{"allow":["tauri_version"],"deny":[]}},"allow-version":{"identifier":"allow-version","description":"Enables the version command without any pre-configured scope.","commands":{"allow":["version"],"deny":[]}},"deny-app-hide":{"identifier":"deny-app-hide","description":"Denies the app_hide command without any pre-configured scope.","commands":{"allow":[],"deny":["app_hide"]}},"deny-app-show":{"identifier":"deny-app-show","description":"Denies the app_show command without any pre-configured scope.","commands":{"allow":[],"deny":["app_show"]}},"deny-bundle-type":{"identifier":"deny-bundle-type","description":"Denies the bundle_type command without any pre-configured scope.","commands":{"allow":[],"deny":["bundle_type"]}},"deny-default-window-icon":{"identifier":"deny-default-window-icon","description":"Denies the default_window_icon command without any pre-configured scope.","commands":{"allow":[],"deny":["default_window_icon"]}},"deny-fetch-data-store-identifiers":{"identifier":"deny-fetch-data-store-identifiers","description":"Denies the fetch_data_store_identifiers command without any pre-configured scope.","commands":{"allow":[],"deny":["fetch_data_store_identifiers"]}},"deny-identifier":{"identifier":"deny-identifier","description":"Denies the identifier command without any pre-configured scope.","commands":{"allow":[],"deny":["identifier"]}},"deny-name":{"identifier":"deny-name","description":"Denies the name command without any pre-configured scope.","commands":{"allow":[],"deny":["name"]}},"deny-register-listener":{"identifier":"deny-register-listener","description":"Denies the register_listener command without any pre-configured scope.","commands":{"allow":[],"deny":["register_listener"]}},"deny-remove-data-store":{"identifier":"deny-remove-data-store","description":"Denies the remove_data_store command without any pre-configured scope.","commands":{"allow":[],"deny":["remove_data_store"]}},"deny-remove-listener":{"identifier":"deny-remove-listener","description":"Denies the remove_listener command without any pre-configured scope.","commands":{"allow":[],"deny":["remove_listener"]}},"deny-set-app-theme":{"identifier":"deny-set-app-theme","description":"Denies the set_app_theme command without any pre-configured scope.","commands":{"allow":[],"deny":["set_app_theme"]}},"deny-set-dock-visibility":{"identifier":"deny-set-dock-visibility","description":"Denies the set_dock_visibility command without any pre-configured scope.","commands":{"allow":[],"deny":["set_dock_visibility"]}},"deny-tauri-version":{"identifier":"deny-tauri-version","description":"Denies the tauri_version command without any pre-configured scope.","commands":{"allow":[],"deny":["tauri_version"]}},"deny-version":{"identifier":"deny-version","description":"Denies the version command without any pre-configured scope.","commands":{"allow":[],"deny":["version"]}}},"permission_sets":{},"global_scope_schema":null},"core:event":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin, which enables all commands.","permissions":["allow-listen","allow-unlisten","allow-emit","allow-emit-to"]},"permissions":{"allow-emit":{"identifier":"allow-emit","description":"Enables the emit command without any pre-configured scope.","commands":{"allow":["emit"],"deny":[]}},"allow-emit-to":{"identifier":"allow-emit-to","description":"Enables the emit_to command without any pre-configured scope.","commands":{"allow":["emit_to"],"deny":[]}},"allow-listen":{"identifier":"allow-listen","description":"Enables the listen command without any pre-configured scope.","commands":{"allow":["listen"],"deny":[]}},"allow-unlisten":{"identifier":"allow-unlisten","description":"Enables the unlisten command without any pre-configured scope.","commands":{"allow":["unlisten"],"deny":[]}},"deny-emit":{"identifier":"deny-emit","description":"Denies the emit command without any pre-configured scope.","commands":{"allow":[],"deny":["emit"]}},"deny-emit-to":{"identifier":"deny-emit-to","description":"Denies the emit_to command without any pre-configured scope.","commands":{"allow":[],"deny":["emit_to"]}},"deny-listen":{"identifier":"deny-listen","description":"Denies the listen command without any pre-configured scope.","commands":{"allow":[],"deny":["listen"]}},"deny-unlisten":{"identifier":"deny-unlisten","description":"Denies the unlisten command without any pre-configured scope.","commands":{"allow":[],"deny":["unlisten"]}}},"permission_sets":{},"global_scope_schema":null},"core:image":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin, which enables all commands.","permissions":["allow-new","allow-from-bytes","allow-from-path","allow-rgba","allow-size"]},"permissions":{"allow-from-bytes":{"identifier":"allow-from-bytes","description":"Enables the from_bytes command without any pre-configured scope.","commands":{"allow":["from_bytes"],"deny":[]}},"allow-from-path":{"identifier":"allow-from-path","description":"Enables the from_path command without any pre-configured scope.","commands":{"allow":["from_path"],"deny":[]}},"allow-new":{"identifier":"allow-new","description":"Enables the new command without any pre-configured scope.","commands":{"allow":["new"],"deny":[]}},"allow-rgba":{"identifier":"allow-rgba","description":"Enables the rgba command without any pre-configured scope.","commands":{"allow":["rgba"],"deny":[]}},"allow-size":{"identifier":"allow-size","description":"Enables the size command without any pre-configured scope.","commands":{"allow":["size"],"deny":[]}},"deny-from-bytes":{"identifier":"deny-from-bytes","description":"Denies the from_bytes command without any pre-configured scope.","commands":{"allow":[],"deny":["from_bytes"]}},"deny-from-path":{"identifier":"deny-from-path","description":"Denies the from_path command without any pre-configured scope.","commands":{"allow":[],"deny":["from_path"]}},"deny-new":{"identifier":"deny-new","description":"Denies the new command without any pre-configured scope.","commands":{"allow":[],"deny":["new"]}},"deny-rgba":{"identifier":"deny-rgba","description":"Denies the rgba command without any pre-configured scope.","commands":{"allow":[],"deny":["rgba"]}},"deny-size":{"identifier":"deny-size","description":"Denies the size command without any pre-configured scope.","commands":{"allow":[],"deny":["size"]}}},"permission_sets":{},"global_scope_schema":null},"core:menu":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin, which enables all commands.","permissions":["allow-new","allow-append","allow-prepend","allow-insert","allow-remove","allow-remove-at","allow-items","allow-get","allow-popup","allow-create-default","allow-set-as-app-menu","allow-set-as-window-menu","allow-text","allow-set-text","allow-is-enabled","allow-set-enabled","allow-set-accelerator","allow-set-as-windows-menu-for-nsapp","allow-set-as-help-menu-for-nsapp","allow-is-checked","allow-set-checked","allow-set-icon"]},"permissions":{"allow-append":{"identifier":"allow-append","description":"Enables the append command without any pre-configured scope.","commands":{"allow":["append"],"deny":[]}},"allow-create-default":{"identifier":"allow-create-default","description":"Enables the create_default command without any pre-configured scope.","commands":{"allow":["create_default"],"deny":[]}},"allow-get":{"identifier":"allow-get","description":"Enables the get command without any pre-configured scope.","commands":{"allow":["get"],"deny":[]}},"allow-insert":{"identifier":"allow-insert","description":"Enables the insert command without any pre-configured scope.","commands":{"allow":["insert"],"deny":[]}},"allow-is-checked":{"identifier":"allow-is-checked","description":"Enables the is_checked command without any pre-configured scope.","commands":{"allow":["is_checked"],"deny":[]}},"allow-is-enabled":{"identifier":"allow-is-enabled","description":"Enables the is_enabled command without any pre-configured scope.","commands":{"allow":["is_enabled"],"deny":[]}},"allow-items":{"identifier":"allow-items","description":"Enables the items command without any pre-configured scope.","commands":{"allow":["items"],"deny":[]}},"allow-new":{"identifier":"allow-new","description":"Enables the new command without any pre-configured scope.","commands":{"allow":["new"],"deny":[]}},"allow-popup":{"identifier":"allow-popup","description":"Enables the popup command without any pre-configured scope.","commands":{"allow":["popup"],"deny":[]}},"allow-prepend":{"identifier":"allow-prepend","description":"Enables the prepend command without any pre-configured scope.","commands":{"allow":["prepend"],"deny":[]}},"allow-remove":{"identifier":"allow-remove","description":"Enables the remove command without any pre-configured scope.","commands":{"allow":["remove"],"deny":[]}},"allow-remove-at":{"identifier":"allow-remove-at","description":"Enables the remove_at command without any pre-configured scope.","commands":{"allow":["remove_at"],"deny":[]}},"allow-set-accelerator":{"identifier":"allow-set-accelerator","description":"Enables the set_accelerator command without any pre-configured scope.","commands":{"allow":["set_accelerator"],"deny":[]}},"allow-set-as-app-menu":{"identifier":"allow-set-as-app-menu","description":"Enables the set_as_app_menu command without any pre-configured scope.","commands":{"allow":["set_as_app_menu"],"deny":[]}},"allow-set-as-help-menu-for-nsapp":{"identifier":"allow-set-as-help-menu-for-nsapp","description":"Enables the set_as_help_menu_for_nsapp command without any pre-configured scope.","commands":{"allow":["set_as_help_menu_for_nsapp"],"deny":[]}},"allow-set-as-window-menu":{"identifier":"allow-set-as-window-menu","description":"Enables the set_as_window_menu command without any pre-configured scope.","commands":{"allow":["set_as_window_menu"],"deny":[]}},"allow-set-as-windows-menu-for-nsapp":{"identifier":"allow-set-as-windows-menu-for-nsapp","description":"Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope.","commands":{"allow":["set_as_windows_menu_for_nsapp"],"deny":[]}},"allow-set-checked":{"identifier":"allow-set-checked","description":"Enables the set_checked command without any pre-configured scope.","commands":{"allow":["set_checked"],"deny":[]}},"allow-set-enabled":{"identifier":"allow-set-enabled","description":"Enables the set_enabled command without any pre-configured scope.","commands":{"allow":["set_enabled"],"deny":[]}},"allow-set-icon":{"identifier":"allow-set-icon","description":"Enables the set_icon command without any pre-configured scope.","commands":{"allow":["set_icon"],"deny":[]}},"allow-set-text":{"identifier":"allow-set-text","description":"Enables the set_text command without any pre-configured scope.","commands":{"allow":["set_text"],"deny":[]}},"allow-text":{"identifier":"allow-text","description":"Enables the text command without any pre-configured scope.","commands":{"allow":["text"],"deny":[]}},"deny-append":{"identifier":"deny-append","description":"Denies the append command without any pre-configured scope.","commands":{"allow":[],"deny":["append"]}},"deny-create-default":{"identifier":"deny-create-default","description":"Denies the create_default command without any pre-configured scope.","commands":{"allow":[],"deny":["create_default"]}},"deny-get":{"identifier":"deny-get","description":"Denies the get command without any pre-configured scope.","commands":{"allow":[],"deny":["get"]}},"deny-insert":{"identifier":"deny-insert","description":"Denies the insert command without any pre-configured scope.","commands":{"allow":[],"deny":["insert"]}},"deny-is-checked":{"identifier":"deny-is-checked","description":"Denies the is_checked command without any pre-configured scope.","commands":{"allow":[],"deny":["is_checked"]}},"deny-is-enabled":{"identifier":"deny-is-enabled","description":"Denies the is_enabled command without any pre-configured scope.","commands":{"allow":[],"deny":["is_enabled"]}},"deny-items":{"identifier":"deny-items","description":"Denies the items command without any pre-configured scope.","commands":{"allow":[],"deny":["items"]}},"deny-new":{"identifier":"deny-new","description":"Denies the new command without any pre-configured scope.","commands":{"allow":[],"deny":["new"]}},"deny-popup":{"identifier":"deny-popup","description":"Denies the popup command without any pre-configured scope.","commands":{"allow":[],"deny":["popup"]}},"deny-prepend":{"identifier":"deny-prepend","description":"Denies the prepend command without any pre-configured scope.","commands":{"allow":[],"deny":["prepend"]}},"deny-remove":{"identifier":"deny-remove","description":"Denies the remove command without any pre-configured scope.","commands":{"allow":[],"deny":["remove"]}},"deny-remove-at":{"identifier":"deny-remove-at","description":"Denies the remove_at command without any pre-configured scope.","commands":{"allow":[],"deny":["remove_at"]}},"deny-set-accelerator":{"identifier":"deny-set-accelerator","description":"Denies the set_accelerator command without any pre-configured scope.","commands":{"allow":[],"deny":["set_accelerator"]}},"deny-set-as-app-menu":{"identifier":"deny-set-as-app-menu","description":"Denies the set_as_app_menu command without any pre-configured scope.","commands":{"allow":[],"deny":["set_as_app_menu"]}},"deny-set-as-help-menu-for-nsapp":{"identifier":"deny-set-as-help-menu-for-nsapp","description":"Denies the set_as_help_menu_for_nsapp command without any pre-configured scope.","commands":{"allow":[],"deny":["set_as_help_menu_for_nsapp"]}},"deny-set-as-window-menu":{"identifier":"deny-set-as-window-menu","description":"Denies the set_as_window_menu command without any pre-configured scope.","commands":{"allow":[],"deny":["set_as_window_menu"]}},"deny-set-as-windows-menu-for-nsapp":{"identifier":"deny-set-as-windows-menu-for-nsapp","description":"Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope.","commands":{"allow":[],"deny":["set_as_windows_menu_for_nsapp"]}},"deny-set-checked":{"identifier":"deny-set-checked","description":"Denies the set_checked command without any pre-configured scope.","commands":{"allow":[],"deny":["set_checked"]}},"deny-set-enabled":{"identifier":"deny-set-enabled","description":"Denies the set_enabled command without any pre-configured scope.","commands":{"allow":[],"deny":["set_enabled"]}},"deny-set-icon":{"identifier":"deny-set-icon","description":"Denies the set_icon command without any pre-configured scope.","commands":{"allow":[],"deny":["set_icon"]}},"deny-set-text":{"identifier":"deny-set-text","description":"Denies the set_text command without any pre-configured scope.","commands":{"allow":[],"deny":["set_text"]}},"deny-text":{"identifier":"deny-text","description":"Denies the text command without any pre-configured scope.","commands":{"allow":[],"deny":["text"]}}},"permission_sets":{},"global_scope_schema":null},"core:path":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin, which enables all commands.","permissions":["allow-resolve-directory","allow-resolve","allow-normalize","allow-join","allow-dirname","allow-extname","allow-basename","allow-is-absolute"]},"permissions":{"allow-basename":{"identifier":"allow-basename","description":"Enables the basename command without any pre-configured scope.","commands":{"allow":["basename"],"deny":[]}},"allow-dirname":{"identifier":"allow-dirname","description":"Enables the dirname command without any pre-configured scope.","commands":{"allow":["dirname"],"deny":[]}},"allow-extname":{"identifier":"allow-extname","description":"Enables the extname command without any pre-configured scope.","commands":{"allow":["extname"],"deny":[]}},"allow-is-absolute":{"identifier":"allow-is-absolute","description":"Enables the is_absolute command without any pre-configured scope.","commands":{"allow":["is_absolute"],"deny":[]}},"allow-join":{"identifier":"allow-join","description":"Enables the join command without any pre-configured scope.","commands":{"allow":["join"],"deny":[]}},"allow-normalize":{"identifier":"allow-normalize","description":"Enables the normalize command without any pre-configured scope.","commands":{"allow":["normalize"],"deny":[]}},"allow-resolve":{"identifier":"allow-resolve","description":"Enables the resolve command without any pre-configured scope.","commands":{"allow":["resolve"],"deny":[]}},"allow-resolve-directory":{"identifier":"allow-resolve-directory","description":"Enables the resolve_directory command without any pre-configured scope.","commands":{"allow":["resolve_directory"],"deny":[]}},"deny-basename":{"identifier":"deny-basename","description":"Denies the basename command without any pre-configured scope.","commands":{"allow":[],"deny":["basename"]}},"deny-dirname":{"identifier":"deny-dirname","description":"Denies the dirname command without any pre-configured scope.","commands":{"allow":[],"deny":["dirname"]}},"deny-extname":{"identifier":"deny-extname","description":"Denies the extname command without any pre-configured scope.","commands":{"allow":[],"deny":["extname"]}},"deny-is-absolute":{"identifier":"deny-is-absolute","description":"Denies the is_absolute command without any pre-configured scope.","commands":{"allow":[],"deny":["is_absolute"]}},"deny-join":{"identifier":"deny-join","description":"Denies the join command without any pre-configured scope.","commands":{"allow":[],"deny":["join"]}},"deny-normalize":{"identifier":"deny-normalize","description":"Denies the normalize command without any pre-configured scope.","commands":{"allow":[],"deny":["normalize"]}},"deny-resolve":{"identifier":"deny-resolve","description":"Denies the resolve command without any pre-configured scope.","commands":{"allow":[],"deny":["resolve"]}},"deny-resolve-directory":{"identifier":"deny-resolve-directory","description":"Denies the resolve_directory command without any pre-configured scope.","commands":{"allow":[],"deny":["resolve_directory"]}}},"permission_sets":{},"global_scope_schema":null},"core:resources":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin, which enables all commands.","permissions":["allow-close"]},"permissions":{"allow-close":{"identifier":"allow-close","description":"Enables the close command without any pre-configured scope.","commands":{"allow":["close"],"deny":[]}},"deny-close":{"identifier":"deny-close","description":"Denies the close command without any pre-configured scope.","commands":{"allow":[],"deny":["close"]}}},"permission_sets":{},"global_scope_schema":null},"core:tray":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin, which enables all commands.","permissions":["allow-new","allow-get-by-id","allow-remove-by-id","allow-set-icon","allow-set-menu","allow-set-tooltip","allow-set-title","allow-set-visible","allow-set-temp-dir-path","allow-set-icon-as-template","allow-set-show-menu-on-left-click"]},"permissions":{"allow-get-by-id":{"identifier":"allow-get-by-id","description":"Enables the get_by_id command without any pre-configured scope.","commands":{"allow":["get_by_id"],"deny":[]}},"allow-new":{"identifier":"allow-new","description":"Enables the new command without any pre-configured scope.","commands":{"allow":["new"],"deny":[]}},"allow-remove-by-id":{"identifier":"allow-remove-by-id","description":"Enables the remove_by_id command without any pre-configured scope.","commands":{"allow":["remove_by_id"],"deny":[]}},"allow-set-icon":{"identifier":"allow-set-icon","description":"Enables the set_icon command without any pre-configured scope.","commands":{"allow":["set_icon"],"deny":[]}},"allow-set-icon-as-template":{"identifier":"allow-set-icon-as-template","description":"Enables the set_icon_as_template command without any pre-configured scope.","commands":{"allow":["set_icon_as_template"],"deny":[]}},"allow-set-menu":{"identifier":"allow-set-menu","description":"Enables the set_menu command without any pre-configured scope.","commands":{"allow":["set_menu"],"deny":[]}},"allow-set-show-menu-on-left-click":{"identifier":"allow-set-show-menu-on-left-click","description":"Enables the set_show_menu_on_left_click command without any pre-configured scope.","commands":{"allow":["set_show_menu_on_left_click"],"deny":[]}},"allow-set-temp-dir-path":{"identifier":"allow-set-temp-dir-path","description":"Enables the set_temp_dir_path command without any pre-configured scope.","commands":{"allow":["set_temp_dir_path"],"deny":[]}},"allow-set-title":{"identifier":"allow-set-title","description":"Enables the set_title command without any pre-configured scope.","commands":{"allow":["set_title"],"deny":[]}},"allow-set-tooltip":{"identifier":"allow-set-tooltip","description":"Enables the set_tooltip command without any pre-configured scope.","commands":{"allow":["set_tooltip"],"deny":[]}},"allow-set-visible":{"identifier":"allow-set-visible","description":"Enables the set_visible command without any pre-configured scope.","commands":{"allow":["set_visible"],"deny":[]}},"deny-get-by-id":{"identifier":"deny-get-by-id","description":"Denies the get_by_id command without any pre-configured scope.","commands":{"allow":[],"deny":["get_by_id"]}},"deny-new":{"identifier":"deny-new","description":"Denies the new command without any pre-configured scope.","commands":{"allow":[],"deny":["new"]}},"deny-remove-by-id":{"identifier":"deny-remove-by-id","description":"Denies the remove_by_id command without any pre-configured scope.","commands":{"allow":[],"deny":["remove_by_id"]}},"deny-set-icon":{"identifier":"deny-set-icon","description":"Denies the set_icon command without any pre-configured scope.","commands":{"allow":[],"deny":["set_icon"]}},"deny-set-icon-as-template":{"identifier":"deny-set-icon-as-template","description":"Denies the set_icon_as_template command without any pre-configured scope.","commands":{"allow":[],"deny":["set_icon_as_template"]}},"deny-set-menu":{"identifier":"deny-set-menu","description":"Denies the set_menu command without any pre-configured scope.","commands":{"allow":[],"deny":["set_menu"]}},"deny-set-show-menu-on-left-click":{"identifier":"deny-set-show-menu-on-left-click","description":"Denies the set_show_menu_on_left_click command without any pre-configured scope.","commands":{"allow":[],"deny":["set_show_menu_on_left_click"]}},"deny-set-temp-dir-path":{"identifier":"deny-set-temp-dir-path","description":"Denies the set_temp_dir_path command without any pre-configured scope.","commands":{"allow":[],"deny":["set_temp_dir_path"]}},"deny-set-title":{"identifier":"deny-set-title","description":"Denies the set_title command without any pre-configured scope.","commands":{"allow":[],"deny":["set_title"]}},"deny-set-tooltip":{"identifier":"deny-set-tooltip","description":"Denies the set_tooltip command without any pre-configured scope.","commands":{"allow":[],"deny":["set_tooltip"]}},"deny-set-visible":{"identifier":"deny-set-visible","description":"Denies the set_visible command without any pre-configured scope.","commands":{"allow":[],"deny":["set_visible"]}}},"permission_sets":{},"global_scope_schema":null},"core:webview":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin.","permissions":["allow-get-all-webviews","allow-webview-position","allow-webview-size","allow-internal-toggle-devtools"]},"permissions":{"allow-clear-all-browsing-data":{"identifier":"allow-clear-all-browsing-data","description":"Enables the clear_all_browsing_data command without any pre-configured scope.","commands":{"allow":["clear_all_browsing_data"],"deny":[]}},"allow-create-webview":{"identifier":"allow-create-webview","description":"Enables the create_webview command without any pre-configured scope.","commands":{"allow":["create_webview"],"deny":[]}},"allow-create-webview-window":{"identifier":"allow-create-webview-window","description":"Enables the create_webview_window command without any pre-configured scope.","commands":{"allow":["create_webview_window"],"deny":[]}},"allow-get-all-webviews":{"identifier":"allow-get-all-webviews","description":"Enables the get_all_webviews command without any pre-configured scope.","commands":{"allow":["get_all_webviews"],"deny":[]}},"allow-internal-toggle-devtools":{"identifier":"allow-internal-toggle-devtools","description":"Enables the internal_toggle_devtools command without any pre-configured scope.","commands":{"allow":["internal_toggle_devtools"],"deny":[]}},"allow-print":{"identifier":"allow-print","description":"Enables the print command without any pre-configured scope.","commands":{"allow":["print"],"deny":[]}},"allow-reparent":{"identifier":"allow-reparent","description":"Enables the reparent command without any pre-configured scope.","commands":{"allow":["reparent"],"deny":[]}},"allow-set-webview-auto-resize":{"identifier":"allow-set-webview-auto-resize","description":"Enables the set_webview_auto_resize command without any pre-configured scope.","commands":{"allow":["set_webview_auto_resize"],"deny":[]}},"allow-set-webview-background-color":{"identifier":"allow-set-webview-background-color","description":"Enables the set_webview_background_color command without any pre-configured scope.","commands":{"allow":["set_webview_background_color"],"deny":[]}},"allow-set-webview-focus":{"identifier":"allow-set-webview-focus","description":"Enables the set_webview_focus command without any pre-configured scope.","commands":{"allow":["set_webview_focus"],"deny":[]}},"allow-set-webview-position":{"identifier":"allow-set-webview-position","description":"Enables the set_webview_position command without any pre-configured scope.","commands":{"allow":["set_webview_position"],"deny":[]}},"allow-set-webview-size":{"identifier":"allow-set-webview-size","description":"Enables the set_webview_size command without any pre-configured scope.","commands":{"allow":["set_webview_size"],"deny":[]}},"allow-set-webview-zoom":{"identifier":"allow-set-webview-zoom","description":"Enables the set_webview_zoom command without any pre-configured scope.","commands":{"allow":["set_webview_zoom"],"deny":[]}},"allow-webview-close":{"identifier":"allow-webview-close","description":"Enables the webview_close command without any pre-configured scope.","commands":{"allow":["webview_close"],"deny":[]}},"allow-webview-hide":{"identifier":"allow-webview-hide","description":"Enables the webview_hide command without any pre-configured scope.","commands":{"allow":["webview_hide"],"deny":[]}},"allow-webview-position":{"identifier":"allow-webview-position","description":"Enables the webview_position command without any pre-configured scope.","commands":{"allow":["webview_position"],"deny":[]}},"allow-webview-show":{"identifier":"allow-webview-show","description":"Enables the webview_show command without any pre-configured scope.","commands":{"allow":["webview_show"],"deny":[]}},"allow-webview-size":{"identifier":"allow-webview-size","description":"Enables the webview_size command without any pre-configured scope.","commands":{"allow":["webview_size"],"deny":[]}},"deny-clear-all-browsing-data":{"identifier":"deny-clear-all-browsing-data","description":"Denies the clear_all_browsing_data command without any pre-configured scope.","commands":{"allow":[],"deny":["clear_all_browsing_data"]}},"deny-create-webview":{"identifier":"deny-create-webview","description":"Denies the create_webview command without any pre-configured scope.","commands":{"allow":[],"deny":["create_webview"]}},"deny-create-webview-window":{"identifier":"deny-create-webview-window","description":"Denies the create_webview_window command without any pre-configured scope.","commands":{"allow":[],"deny":["create_webview_window"]}},"deny-get-all-webviews":{"identifier":"deny-get-all-webviews","description":"Denies the get_all_webviews command without any pre-configured scope.","commands":{"allow":[],"deny":["get_all_webviews"]}},"deny-internal-toggle-devtools":{"identifier":"deny-internal-toggle-devtools","description":"Denies the internal_toggle_devtools command without any pre-configured scope.","commands":{"allow":[],"deny":["internal_toggle_devtools"]}},"deny-print":{"identifier":"deny-print","description":"Denies the print command without any pre-configured scope.","commands":{"allow":[],"deny":["print"]}},"deny-reparent":{"identifier":"deny-reparent","description":"Denies the reparent command without any pre-configured scope.","commands":{"allow":[],"deny":["reparent"]}},"deny-set-webview-auto-resize":{"identifier":"deny-set-webview-auto-resize","description":"Denies the set_webview_auto_resize command without any pre-configured scope.","commands":{"allow":[],"deny":["set_webview_auto_resize"]}},"deny-set-webview-background-color":{"identifier":"deny-set-webview-background-color","description":"Denies the set_webview_background_color command without any pre-configured scope.","commands":{"allow":[],"deny":["set_webview_background_color"]}},"deny-set-webview-focus":{"identifier":"deny-set-webview-focus","description":"Denies the set_webview_focus command without any pre-configured scope.","commands":{"allow":[],"deny":["set_webview_focus"]}},"deny-set-webview-position":{"identifier":"deny-set-webview-position","description":"Denies the set_webview_position command without any pre-configured scope.","commands":{"allow":[],"deny":["set_webview_position"]}},"deny-set-webview-size":{"identifier":"deny-set-webview-size","description":"Denies the set_webview_size command without any pre-configured scope.","commands":{"allow":[],"deny":["set_webview_size"]}},"deny-set-webview-zoom":{"identifier":"deny-set-webview-zoom","description":"Denies the set_webview_zoom command without any pre-configured scope.","commands":{"allow":[],"deny":["set_webview_zoom"]}},"deny-webview-close":{"identifier":"deny-webview-close","description":"Denies the webview_close command without any pre-configured scope.","commands":{"allow":[],"deny":["webview_close"]}},"deny-webview-hide":{"identifier":"deny-webview-hide","description":"Denies the webview_hide command without any pre-configured scope.","commands":{"allow":[],"deny":["webview_hide"]}},"deny-webview-position":{"identifier":"deny-webview-position","description":"Denies the webview_position command without any pre-configured scope.","commands":{"allow":[],"deny":["webview_position"]}},"deny-webview-show":{"identifier":"deny-webview-show","description":"Denies the webview_show command without any pre-configured scope.","commands":{"allow":[],"deny":["webview_show"]}},"deny-webview-size":{"identifier":"deny-webview-size","description":"Denies the webview_size command without any pre-configured scope.","commands":{"allow":[],"deny":["webview_size"]}}},"permission_sets":{},"global_scope_schema":null},"core:window":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin.","permissions":["allow-get-all-windows","allow-scale-factor","allow-inner-position","allow-outer-position","allow-inner-size","allow-outer-size","allow-is-fullscreen","allow-is-minimized","allow-is-maximized","allow-is-focused","allow-is-decorated","allow-is-resizable","allow-is-maximizable","allow-is-minimizable","allow-is-closable","allow-is-visible","allow-is-enabled","allow-title","allow-current-monitor","allow-primary-monitor","allow-monitor-from-point","allow-available-monitors","allow-cursor-position","allow-theme","allow-is-always-on-top","allow-internal-toggle-maximize"]},"permissions":{"allow-available-monitors":{"identifier":"allow-available-monitors","description":"Enables the available_monitors command without any pre-configured scope.","commands":{"allow":["available_monitors"],"deny":[]}},"allow-center":{"identifier":"allow-center","description":"Enables the center command without any pre-configured scope.","commands":{"allow":["center"],"deny":[]}},"allow-close":{"identifier":"allow-close","description":"Enables the close command without any pre-configured scope.","commands":{"allow":["close"],"deny":[]}},"allow-create":{"identifier":"allow-create","description":"Enables the create command without any pre-configured scope.","commands":{"allow":["create"],"deny":[]}},"allow-current-monitor":{"identifier":"allow-current-monitor","description":"Enables the current_monitor command without any pre-configured scope.","commands":{"allow":["current_monitor"],"deny":[]}},"allow-cursor-position":{"identifier":"allow-cursor-position","description":"Enables the cursor_position command without any pre-configured scope.","commands":{"allow":["cursor_position"],"deny":[]}},"allow-destroy":{"identifier":"allow-destroy","description":"Enables the destroy command without any pre-configured scope.","commands":{"allow":["destroy"],"deny":[]}},"allow-get-all-windows":{"identifier":"allow-get-all-windows","description":"Enables the get_all_windows command without any pre-configured scope.","commands":{"allow":["get_all_windows"],"deny":[]}},"allow-hide":{"identifier":"allow-hide","description":"Enables the hide command without any pre-configured scope.","commands":{"allow":["hide"],"deny":[]}},"allow-inner-position":{"identifier":"allow-inner-position","description":"Enables the inner_position command without any pre-configured scope.","commands":{"allow":["inner_position"],"deny":[]}},"allow-inner-size":{"identifier":"allow-inner-size","description":"Enables the inner_size command without any pre-configured scope.","commands":{"allow":["inner_size"],"deny":[]}},"allow-internal-toggle-maximize":{"identifier":"allow-internal-toggle-maximize","description":"Enables the internal_toggle_maximize command without any pre-configured scope.","commands":{"allow":["internal_toggle_maximize"],"deny":[]}},"allow-is-always-on-top":{"identifier":"allow-is-always-on-top","description":"Enables the is_always_on_top command without any pre-configured scope.","commands":{"allow":["is_always_on_top"],"deny":[]}},"allow-is-closable":{"identifier":"allow-is-closable","description":"Enables the is_closable command without any pre-configured scope.","commands":{"allow":["is_closable"],"deny":[]}},"allow-is-decorated":{"identifier":"allow-is-decorated","description":"Enables the is_decorated command without any pre-configured scope.","commands":{"allow":["is_decorated"],"deny":[]}},"allow-is-enabled":{"identifier":"allow-is-enabled","description":"Enables the is_enabled command without any pre-configured scope.","commands":{"allow":["is_enabled"],"deny":[]}},"allow-is-focused":{"identifier":"allow-is-focused","description":"Enables the is_focused command without any pre-configured scope.","commands":{"allow":["is_focused"],"deny":[]}},"allow-is-fullscreen":{"identifier":"allow-is-fullscreen","description":"Enables the is_fullscreen command without any pre-configured scope.","commands":{"allow":["is_fullscreen"],"deny":[]}},"allow-is-maximizable":{"identifier":"allow-is-maximizable","description":"Enables the is_maximizable command without any pre-configured scope.","commands":{"allow":["is_maximizable"],"deny":[]}},"allow-is-maximized":{"identifier":"allow-is-maximized","description":"Enables the is_maximized command without any pre-configured scope.","commands":{"allow":["is_maximized"],"deny":[]}},"allow-is-minimizable":{"identifier":"allow-is-minimizable","description":"Enables the is_minimizable command without any pre-configured scope.","commands":{"allow":["is_minimizable"],"deny":[]}},"allow-is-minimized":{"identifier":"allow-is-minimized","description":"Enables the is_minimized command without any pre-configured scope.","commands":{"allow":["is_minimized"],"deny":[]}},"allow-is-resizable":{"identifier":"allow-is-resizable","description":"Enables the is_resizable command without any pre-configured scope.","commands":{"allow":["is_resizable"],"deny":[]}},"allow-is-visible":{"identifier":"allow-is-visible","description":"Enables the is_visible command without any pre-configured scope.","commands":{"allow":["is_visible"],"deny":[]}},"allow-maximize":{"identifier":"allow-maximize","description":"Enables the maximize command without any pre-configured scope.","commands":{"allow":["maximize"],"deny":[]}},"allow-minimize":{"identifier":"allow-minimize","description":"Enables the minimize command without any pre-configured scope.","commands":{"allow":["minimize"],"deny":[]}},"allow-monitor-from-point":{"identifier":"allow-monitor-from-point","description":"Enables the monitor_from_point command without any pre-configured scope.","commands":{"allow":["monitor_from_point"],"deny":[]}},"allow-outer-position":{"identifier":"allow-outer-position","description":"Enables the outer_position command without any pre-configured scope.","commands":{"allow":["outer_position"],"deny":[]}},"allow-outer-size":{"identifier":"allow-outer-size","description":"Enables the outer_size command without any pre-configured scope.","commands":{"allow":["outer_size"],"deny":[]}},"allow-primary-monitor":{"identifier":"allow-primary-monitor","description":"Enables the primary_monitor command without any pre-configured scope.","commands":{"allow":["primary_monitor"],"deny":[]}},"allow-request-user-attention":{"identifier":"allow-request-user-attention","description":"Enables the request_user_attention command without any pre-configured scope.","commands":{"allow":["request_user_attention"],"deny":[]}},"allow-scale-factor":{"identifier":"allow-scale-factor","description":"Enables the scale_factor command without any pre-configured scope.","commands":{"allow":["scale_factor"],"deny":[]}},"allow-set-always-on-bottom":{"identifier":"allow-set-always-on-bottom","description":"Enables the set_always_on_bottom command without any pre-configured scope.","commands":{"allow":["set_always_on_bottom"],"deny":[]}},"allow-set-always-on-top":{"identifier":"allow-set-always-on-top","description":"Enables the set_always_on_top command without any pre-configured scope.","commands":{"allow":["set_always_on_top"],"deny":[]}},"allow-set-background-color":{"identifier":"allow-set-background-color","description":"Enables the set_background_color command without any pre-configured scope.","commands":{"allow":["set_background_color"],"deny":[]}},"allow-set-badge-count":{"identifier":"allow-set-badge-count","description":"Enables the set_badge_count command without any pre-configured scope.","commands":{"allow":["set_badge_count"],"deny":[]}},"allow-set-badge-label":{"identifier":"allow-set-badge-label","description":"Enables the set_badge_label command without any pre-configured scope.","commands":{"allow":["set_badge_label"],"deny":[]}},"allow-set-closable":{"identifier":"allow-set-closable","description":"Enables the set_closable command without any pre-configured scope.","commands":{"allow":["set_closable"],"deny":[]}},"allow-set-content-protected":{"identifier":"allow-set-content-protected","description":"Enables the set_content_protected command without any pre-configured scope.","commands":{"allow":["set_content_protected"],"deny":[]}},"allow-set-cursor-grab":{"identifier":"allow-set-cursor-grab","description":"Enables the set_cursor_grab command without any pre-configured scope.","commands":{"allow":["set_cursor_grab"],"deny":[]}},"allow-set-cursor-icon":{"identifier":"allow-set-cursor-icon","description":"Enables the set_cursor_icon command without any pre-configured scope.","commands":{"allow":["set_cursor_icon"],"deny":[]}},"allow-set-cursor-position":{"identifier":"allow-set-cursor-position","description":"Enables the set_cursor_position command without any pre-configured scope.","commands":{"allow":["set_cursor_position"],"deny":[]}},"allow-set-cursor-visible":{"identifier":"allow-set-cursor-visible","description":"Enables the set_cursor_visible command without any pre-configured scope.","commands":{"allow":["set_cursor_visible"],"deny":[]}},"allow-set-decorations":{"identifier":"allow-set-decorations","description":"Enables the set_decorations command without any pre-configured scope.","commands":{"allow":["set_decorations"],"deny":[]}},"allow-set-effects":{"identifier":"allow-set-effects","description":"Enables the set_effects command without any pre-configured scope.","commands":{"allow":["set_effects"],"deny":[]}},"allow-set-enabled":{"identifier":"allow-set-enabled","description":"Enables the set_enabled command without any pre-configured scope.","commands":{"allow":["set_enabled"],"deny":[]}},"allow-set-focus":{"identifier":"allow-set-focus","description":"Enables the set_focus command without any pre-configured scope.","commands":{"allow":["set_focus"],"deny":[]}},"allow-set-focusable":{"identifier":"allow-set-focusable","description":"Enables the set_focusable command without any pre-configured scope.","commands":{"allow":["set_focusable"],"deny":[]}},"allow-set-fullscreen":{"identifier":"allow-set-fullscreen","description":"Enables the set_fullscreen command without any pre-configured scope.","commands":{"allow":["set_fullscreen"],"deny":[]}},"allow-set-icon":{"identifier":"allow-set-icon","description":"Enables the set_icon command without any pre-configured scope.","commands":{"allow":["set_icon"],"deny":[]}},"allow-set-ignore-cursor-events":{"identifier":"allow-set-ignore-cursor-events","description":"Enables the set_ignore_cursor_events command without any pre-configured scope.","commands":{"allow":["set_ignore_cursor_events"],"deny":[]}},"allow-set-max-size":{"identifier":"allow-set-max-size","description":"Enables the set_max_size command without any pre-configured scope.","commands":{"allow":["set_max_size"],"deny":[]}},"allow-set-maximizable":{"identifier":"allow-set-maximizable","description":"Enables the set_maximizable command without any pre-configured scope.","commands":{"allow":["set_maximizable"],"deny":[]}},"allow-set-min-size":{"identifier":"allow-set-min-size","description":"Enables the set_min_size command without any pre-configured scope.","commands":{"allow":["set_min_size"],"deny":[]}},"allow-set-minimizable":{"identifier":"allow-set-minimizable","description":"Enables the set_minimizable command without any pre-configured scope.","commands":{"allow":["set_minimizable"],"deny":[]}},"allow-set-overlay-icon":{"identifier":"allow-set-overlay-icon","description":"Enables the set_overlay_icon command without any pre-configured scope.","commands":{"allow":["set_overlay_icon"],"deny":[]}},"allow-set-position":{"identifier":"allow-set-position","description":"Enables the set_position command without any pre-configured scope.","commands":{"allow":["set_position"],"deny":[]}},"allow-set-progress-bar":{"identifier":"allow-set-progress-bar","description":"Enables the set_progress_bar command without any pre-configured scope.","commands":{"allow":["set_progress_bar"],"deny":[]}},"allow-set-resizable":{"identifier":"allow-set-resizable","description":"Enables the set_resizable command without any pre-configured scope.","commands":{"allow":["set_resizable"],"deny":[]}},"allow-set-shadow":{"identifier":"allow-set-shadow","description":"Enables the set_shadow command without any pre-configured scope.","commands":{"allow":["set_shadow"],"deny":[]}},"allow-set-simple-fullscreen":{"identifier":"allow-set-simple-fullscreen","description":"Enables the set_simple_fullscreen command without any pre-configured scope.","commands":{"allow":["set_simple_fullscreen"],"deny":[]}},"allow-set-size":{"identifier":"allow-set-size","description":"Enables the set_size command without any pre-configured scope.","commands":{"allow":["set_size"],"deny":[]}},"allow-set-size-constraints":{"identifier":"allow-set-size-constraints","description":"Enables the set_size_constraints command without any pre-configured scope.","commands":{"allow":["set_size_constraints"],"deny":[]}},"allow-set-skip-taskbar":{"identifier":"allow-set-skip-taskbar","description":"Enables the set_skip_taskbar command without any pre-configured scope.","commands":{"allow":["set_skip_taskbar"],"deny":[]}},"allow-set-theme":{"identifier":"allow-set-theme","description":"Enables the set_theme command without any pre-configured scope.","commands":{"allow":["set_theme"],"deny":[]}},"allow-set-title":{"identifier":"allow-set-title","description":"Enables the set_title command without any pre-configured scope.","commands":{"allow":["set_title"],"deny":[]}},"allow-set-title-bar-style":{"identifier":"allow-set-title-bar-style","description":"Enables the set_title_bar_style command without any pre-configured scope.","commands":{"allow":["set_title_bar_style"],"deny":[]}},"allow-set-visible-on-all-workspaces":{"identifier":"allow-set-visible-on-all-workspaces","description":"Enables the set_visible_on_all_workspaces command without any pre-configured scope.","commands":{"allow":["set_visible_on_all_workspaces"],"deny":[]}},"allow-show":{"identifier":"allow-show","description":"Enables the show command without any pre-configured scope.","commands":{"allow":["show"],"deny":[]}},"allow-start-dragging":{"identifier":"allow-start-dragging","description":"Enables the start_dragging command without any pre-configured scope.","commands":{"allow":["start_dragging"],"deny":[]}},"allow-start-resize-dragging":{"identifier":"allow-start-resize-dragging","description":"Enables the start_resize_dragging command without any pre-configured scope.","commands":{"allow":["start_resize_dragging"],"deny":[]}},"allow-theme":{"identifier":"allow-theme","description":"Enables the theme command without any pre-configured scope.","commands":{"allow":["theme"],"deny":[]}},"allow-title":{"identifier":"allow-title","description":"Enables the title command without any pre-configured scope.","commands":{"allow":["title"],"deny":[]}},"allow-toggle-maximize":{"identifier":"allow-toggle-maximize","description":"Enables the toggle_maximize command without any pre-configured scope.","commands":{"allow":["toggle_maximize"],"deny":[]}},"allow-unmaximize":{"identifier":"allow-unmaximize","description":"Enables the unmaximize command without any pre-configured scope.","commands":{"allow":["unmaximize"],"deny":[]}},"allow-unminimize":{"identifier":"allow-unminimize","description":"Enables the unminimize command without any pre-configured scope.","commands":{"allow":["unminimize"],"deny":[]}},"deny-available-monitors":{"identifier":"deny-available-monitors","description":"Denies the available_monitors command without any pre-configured scope.","commands":{"allow":[],"deny":["available_monitors"]}},"deny-center":{"identifier":"deny-center","description":"Denies the center command without any pre-configured scope.","commands":{"allow":[],"deny":["center"]}},"deny-close":{"identifier":"deny-close","description":"Denies the close command without any pre-configured scope.","commands":{"allow":[],"deny":["close"]}},"deny-create":{"identifier":"deny-create","description":"Denies the create command without any pre-configured scope.","commands":{"allow":[],"deny":["create"]}},"deny-current-monitor":{"identifier":"deny-current-monitor","description":"Denies the current_monitor command without any pre-configured scope.","commands":{"allow":[],"deny":["current_monitor"]}},"deny-cursor-position":{"identifier":"deny-cursor-position","description":"Denies the cursor_position command without any pre-configured scope.","commands":{"allow":[],"deny":["cursor_position"]}},"deny-destroy":{"identifier":"deny-destroy","description":"Denies the destroy command without any pre-configured scope.","commands":{"allow":[],"deny":["destroy"]}},"deny-get-all-windows":{"identifier":"deny-get-all-windows","description":"Denies the get_all_windows command without any pre-configured scope.","commands":{"allow":[],"deny":["get_all_windows"]}},"deny-hide":{"identifier":"deny-hide","description":"Denies the hide command without any pre-configured scope.","commands":{"allow":[],"deny":["hide"]}},"deny-inner-position":{"identifier":"deny-inner-position","description":"Denies the inner_position command without any pre-configured scope.","commands":{"allow":[],"deny":["inner_position"]}},"deny-inner-size":{"identifier":"deny-inner-size","description":"Denies the inner_size command without any pre-configured scope.","commands":{"allow":[],"deny":["inner_size"]}},"deny-internal-toggle-maximize":{"identifier":"deny-internal-toggle-maximize","description":"Denies the internal_toggle_maximize command without any pre-configured scope.","commands":{"allow":[],"deny":["internal_toggle_maximize"]}},"deny-is-always-on-top":{"identifier":"deny-is-always-on-top","description":"Denies the is_always_on_top command without any pre-configured scope.","commands":{"allow":[],"deny":["is_always_on_top"]}},"deny-is-closable":{"identifier":"deny-is-closable","description":"Denies the is_closable command without any pre-configured scope.","commands":{"allow":[],"deny":["is_closable"]}},"deny-is-decorated":{"identifier":"deny-is-decorated","description":"Denies the is_decorated command without any pre-configured scope.","commands":{"allow":[],"deny":["is_decorated"]}},"deny-is-enabled":{"identifier":"deny-is-enabled","description":"Denies the is_enabled command without any pre-configured scope.","commands":{"allow":[],"deny":["is_enabled"]}},"deny-is-focused":{"identifier":"deny-is-focused","description":"Denies the is_focused command without any pre-configured scope.","commands":{"allow":[],"deny":["is_focused"]}},"deny-is-fullscreen":{"identifier":"deny-is-fullscreen","description":"Denies the is_fullscreen command without any pre-configured scope.","commands":{"allow":[],"deny":["is_fullscreen"]}},"deny-is-maximizable":{"identifier":"deny-is-maximizable","description":"Denies the is_maximizable command without any pre-configured scope.","commands":{"allow":[],"deny":["is_maximizable"]}},"deny-is-maximized":{"identifier":"deny-is-maximized","description":"Denies the is_maximized command without any pre-configured scope.","commands":{"allow":[],"deny":["is_maximized"]}},"deny-is-minimizable":{"identifier":"deny-is-minimizable","description":"Denies the is_minimizable command without any pre-configured scope.","commands":{"allow":[],"deny":["is_minimizable"]}},"deny-is-minimized":{"identifier":"deny-is-minimized","description":"Denies the is_minimized command without any pre-configured scope.","commands":{"allow":[],"deny":["is_minimized"]}},"deny-is-resizable":{"identifier":"deny-is-resizable","description":"Denies the is_resizable command without any pre-configured scope.","commands":{"allow":[],"deny":["is_resizable"]}},"deny-is-visible":{"identifier":"deny-is-visible","description":"Denies the is_visible command without any pre-configured scope.","commands":{"allow":[],"deny":["is_visible"]}},"deny-maximize":{"identifier":"deny-maximize","description":"Denies the maximize command without any pre-configured scope.","commands":{"allow":[],"deny":["maximize"]}},"deny-minimize":{"identifier":"deny-minimize","description":"Denies the minimize command without any pre-configured scope.","commands":{"allow":[],"deny":["minimize"]}},"deny-monitor-from-point":{"identifier":"deny-monitor-from-point","description":"Denies the monitor_from_point command without any pre-configured scope.","commands":{"allow":[],"deny":["monitor_from_point"]}},"deny-outer-position":{"identifier":"deny-outer-position","description":"Denies the outer_position command without any pre-configured scope.","commands":{"allow":[],"deny":["outer_position"]}},"deny-outer-size":{"identifier":"deny-outer-size","description":"Denies the outer_size command without any pre-configured scope.","commands":{"allow":[],"deny":["outer_size"]}},"deny-primary-monitor":{"identifier":"deny-primary-monitor","description":"Denies the primary_monitor command without any pre-configured scope.","commands":{"allow":[],"deny":["primary_monitor"]}},"deny-request-user-attention":{"identifier":"deny-request-user-attention","description":"Denies the request_user_attention command without any pre-configured scope.","commands":{"allow":[],"deny":["request_user_attention"]}},"deny-scale-factor":{"identifier":"deny-scale-factor","description":"Denies the scale_factor command without any pre-configured scope.","commands":{"allow":[],"deny":["scale_factor"]}},"deny-set-always-on-bottom":{"identifier":"deny-set-always-on-bottom","description":"Denies the set_always_on_bottom command without any pre-configured scope.","commands":{"allow":[],"deny":["set_always_on_bottom"]}},"deny-set-always-on-top":{"identifier":"deny-set-always-on-top","description":"Denies the set_always_on_top command without any pre-configured scope.","commands":{"allow":[],"deny":["set_always_on_top"]}},"deny-set-background-color":{"identifier":"deny-set-background-color","description":"Denies the set_background_color command without any pre-configured scope.","commands":{"allow":[],"deny":["set_background_color"]}},"deny-set-badge-count":{"identifier":"deny-set-badge-count","description":"Denies the set_badge_count command without any pre-configured scope.","commands":{"allow":[],"deny":["set_badge_count"]}},"deny-set-badge-label":{"identifier":"deny-set-badge-label","description":"Denies the set_badge_label command without any pre-configured scope.","commands":{"allow":[],"deny":["set_badge_label"]}},"deny-set-closable":{"identifier":"deny-set-closable","description":"Denies the set_closable command without any pre-configured scope.","commands":{"allow":[],"deny":["set_closable"]}},"deny-set-content-protected":{"identifier":"deny-set-content-protected","description":"Denies the set_content_protected command without any pre-configured scope.","commands":{"allow":[],"deny":["set_content_protected"]}},"deny-set-cursor-grab":{"identifier":"deny-set-cursor-grab","description":"Denies the set_cursor_grab command without any pre-configured scope.","commands":{"allow":[],"deny":["set_cursor_grab"]}},"deny-set-cursor-icon":{"identifier":"deny-set-cursor-icon","description":"Denies the set_cursor_icon command without any pre-configured scope.","commands":{"allow":[],"deny":["set_cursor_icon"]}},"deny-set-cursor-position":{"identifier":"deny-set-cursor-position","description":"Denies the set_cursor_position command without any pre-configured scope.","commands":{"allow":[],"deny":["set_cursor_position"]}},"deny-set-cursor-visible":{"identifier":"deny-set-cursor-visible","description":"Denies the set_cursor_visible command without any pre-configured scope.","commands":{"allow":[],"deny":["set_cursor_visible"]}},"deny-set-decorations":{"identifier":"deny-set-decorations","description":"Denies the set_decorations command without any pre-configured scope.","commands":{"allow":[],"deny":["set_decorations"]}},"deny-set-effects":{"identifier":"deny-set-effects","description":"Denies the set_effects command without any pre-configured scope.","commands":{"allow":[],"deny":["set_effects"]}},"deny-set-enabled":{"identifier":"deny-set-enabled","description":"Denies the set_enabled command without any pre-configured scope.","commands":{"allow":[],"deny":["set_enabled"]}},"deny-set-focus":{"identifier":"deny-set-focus","description":"Denies the set_focus command without any pre-configured scope.","commands":{"allow":[],"deny":["set_focus"]}},"deny-set-focusable":{"identifier":"deny-set-focusable","description":"Denies the set_focusable command without any pre-configured scope.","commands":{"allow":[],"deny":["set_focusable"]}},"deny-set-fullscreen":{"identifier":"deny-set-fullscreen","description":"Denies the set_fullscreen command without any pre-configured scope.","commands":{"allow":[],"deny":["set_fullscreen"]}},"deny-set-icon":{"identifier":"deny-set-icon","description":"Denies the set_icon command without any pre-configured scope.","commands":{"allow":[],"deny":["set_icon"]}},"deny-set-ignore-cursor-events":{"identifier":"deny-set-ignore-cursor-events","description":"Denies the set_ignore_cursor_events command without any pre-configured scope.","commands":{"allow":[],"deny":["set_ignore_cursor_events"]}},"deny-set-max-size":{"identifier":"deny-set-max-size","description":"Denies the set_max_size command without any pre-configured scope.","commands":{"allow":[],"deny":["set_max_size"]}},"deny-set-maximizable":{"identifier":"deny-set-maximizable","description":"Denies the set_maximizable command without any pre-configured scope.","commands":{"allow":[],"deny":["set_maximizable"]}},"deny-set-min-size":{"identifier":"deny-set-min-size","description":"Denies the set_min_size command without any pre-configured scope.","commands":{"allow":[],"deny":["set_min_size"]}},"deny-set-minimizable":{"identifier":"deny-set-minimizable","description":"Denies the set_minimizable command without any pre-configured scope.","commands":{"allow":[],"deny":["set_minimizable"]}},"deny-set-overlay-icon":{"identifier":"deny-set-overlay-icon","description":"Denies the set_overlay_icon command without any pre-configured scope.","commands":{"allow":[],"deny":["set_overlay_icon"]}},"deny-set-position":{"identifier":"deny-set-position","description":"Denies the set_position command without any pre-configured scope.","commands":{"allow":[],"deny":["set_position"]}},"deny-set-progress-bar":{"identifier":"deny-set-progress-bar","description":"Denies the set_progress_bar command without any pre-configured scope.","commands":{"allow":[],"deny":["set_progress_bar"]}},"deny-set-resizable":{"identifier":"deny-set-resizable","description":"Denies the set_resizable command without any pre-configured scope.","commands":{"allow":[],"deny":["set_resizable"]}},"deny-set-shadow":{"identifier":"deny-set-shadow","description":"Denies the set_shadow command without any pre-configured scope.","commands":{"allow":[],"deny":["set_shadow"]}},"deny-set-simple-fullscreen":{"identifier":"deny-set-simple-fullscreen","description":"Denies the set_simple_fullscreen command without any pre-configured scope.","commands":{"allow":[],"deny":["set_simple_fullscreen"]}},"deny-set-size":{"identifier":"deny-set-size","description":"Denies the set_size command without any pre-configured scope.","commands":{"allow":[],"deny":["set_size"]}},"deny-set-size-constraints":{"identifier":"deny-set-size-constraints","description":"Denies the set_size_constraints command without any pre-configured scope.","commands":{"allow":[],"deny":["set_size_constraints"]}},"deny-set-skip-taskbar":{"identifier":"deny-set-skip-taskbar","description":"Denies the set_skip_taskbar command without any pre-configured scope.","commands":{"allow":[],"deny":["set_skip_taskbar"]}},"deny-set-theme":{"identifier":"deny-set-theme","description":"Denies the set_theme command without any pre-configured scope.","commands":{"allow":[],"deny":["set_theme"]}},"deny-set-title":{"identifier":"deny-set-title","description":"Denies the set_title command without any pre-configured scope.","commands":{"allow":[],"deny":["set_title"]}},"deny-set-title-bar-style":{"identifier":"deny-set-title-bar-style","description":"Denies the set_title_bar_style command without any pre-configured scope.","commands":{"allow":[],"deny":["set_title_bar_style"]}},"deny-set-visible-on-all-workspaces":{"identifier":"deny-set-visible-on-all-workspaces","description":"Denies the set_visible_on_all_workspaces command without any pre-configured scope.","commands":{"allow":[],"deny":["set_visible_on_all_workspaces"]}},"deny-show":{"identifier":"deny-show","description":"Denies the show command without any pre-configured scope.","commands":{"allow":[],"deny":["show"]}},"deny-start-dragging":{"identifier":"deny-start-dragging","description":"Denies the start_dragging command without any pre-configured scope.","commands":{"allow":[],"deny":["start_dragging"]}},"deny-start-resize-dragging":{"identifier":"deny-start-resize-dragging","description":"Denies the start_resize_dragging command without any pre-configured scope.","commands":{"allow":[],"deny":["start_resize_dragging"]}},"deny-theme":{"identifier":"deny-theme","description":"Denies the theme command without any pre-configured scope.","commands":{"allow":[],"deny":["theme"]}},"deny-title":{"identifier":"deny-title","description":"Denies the title command without any pre-configured scope.","commands":{"allow":[],"deny":["title"]}},"deny-toggle-maximize":{"identifier":"deny-toggle-maximize","description":"Denies the toggle_maximize command without any pre-configured scope.","commands":{"allow":[],"deny":["toggle_maximize"]}},"deny-unmaximize":{"identifier":"deny-unmaximize","description":"Denies the unmaximize command without any pre-configured scope.","commands":{"allow":[],"deny":["unmaximize"]}},"deny-unminimize":{"identifier":"deny-unminimize","description":"Denies the unminimize command without any pre-configured scope.","commands":{"allow":[],"deny":["unminimize"]}}},"permission_sets":{},"global_scope_schema":null},"dialog":{"default_permission":{"identifier":"default","description":"This permission set configures the types of dialogs\navailable from the dialog plugin.\n\n#### Granted Permissions\n\nAll dialog types are enabled.\n\n\n","permissions":["allow-ask","allow-confirm","allow-message","allow-save","allow-open"]},"permissions":{"allow-ask":{"identifier":"allow-ask","description":"Enables the ask command without any pre-configured scope.","commands":{"allow":["ask"],"deny":[]}},"allow-confirm":{"identifier":"allow-confirm","description":"Enables the confirm command without any pre-configured scope.","commands":{"allow":["confirm"],"deny":[]}},"allow-message":{"identifier":"allow-message","description":"Enables the message command without any pre-configured scope.","commands":{"allow":["message"],"deny":[]}},"allow-open":{"identifier":"allow-open","description":"Enables the open command without any pre-configured scope.","commands":{"allow":["open"],"deny":[]}},"allow-save":{"identifier":"allow-save","description":"Enables the save command without any pre-configured scope.","commands":{"allow":["save"],"deny":[]}},"deny-ask":{"identifier":"deny-ask","description":"Denies the ask command without any pre-configured scope.","commands":{"allow":[],"deny":["ask"]}},"deny-confirm":{"identifier":"deny-confirm","description":"Denies the confirm command without any pre-configured scope.","commands":{"allow":[],"deny":["confirm"]}},"deny-message":{"identifier":"deny-message","description":"Denies the message command without any pre-configured scope.","commands":{"allow":[],"deny":["message"]}},"deny-open":{"identifier":"deny-open","description":"Denies the open command without any pre-configured scope.","commands":{"allow":[],"deny":["open"]}},"deny-save":{"identifier":"deny-save","description":"Denies the save command without any pre-configured scope.","commands":{"allow":[],"deny":["save"]}}},"permission_sets":{},"global_scope_schema":null},"fs":{"default_permission":{"identifier":"default","description":"This set of permissions describes the what kind of\nfile system access the `fs` plugin has enabled or denied by default.\n\n#### Granted Permissions\n\nThis default permission set enables read access to the\napplication specific directories (AppConfig, AppData, AppLocalData, AppCache,\nAppLog) and all files and sub directories created in it.\nThe location of these directories depends on the operating system,\nwhere the application is run.\n\nIn general these directories need to be manually created\nby the application at runtime, before accessing files or folders\nin it is possible.\n\nTherefore, it is also allowed to create all of these folders via\nthe `mkdir` command.\n\n#### Denied Permissions\n\nThis default permission set prevents access to critical components\nof the Tauri application by default.\nOn Windows the webview data folder access is denied.\n","permissions":["create-app-specific-dirs","read-app-specific-dirs-recursive","deny-default"]},"permissions":{"allow-copy-file":{"identifier":"allow-copy-file","description":"Enables the copy_file command without any pre-configured scope.","commands":{"allow":["copy_file"],"deny":[]}},"allow-create":{"identifier":"allow-create","description":"Enables the create command without any pre-configured scope.","commands":{"allow":["create"],"deny":[]}},"allow-exists":{"identifier":"allow-exists","description":"Enables the exists command without any pre-configured scope.","commands":{"allow":["exists"],"deny":[]}},"allow-fstat":{"identifier":"allow-fstat","description":"Enables the fstat command without any pre-configured scope.","commands":{"allow":["fstat"],"deny":[]}},"allow-ftruncate":{"identifier":"allow-ftruncate","description":"Enables the ftruncate command without any pre-configured scope.","commands":{"allow":["ftruncate"],"deny":[]}},"allow-lstat":{"identifier":"allow-lstat","description":"Enables the lstat command without any pre-configured scope.","commands":{"allow":["lstat"],"deny":[]}},"allow-mkdir":{"identifier":"allow-mkdir","description":"Enables the mkdir command without any pre-configured scope.","commands":{"allow":["mkdir"],"deny":[]}},"allow-open":{"identifier":"allow-open","description":"Enables the open command without any pre-configured scope.","commands":{"allow":["open"],"deny":[]}},"allow-read":{"identifier":"allow-read","description":"Enables the read command without any pre-configured scope.","commands":{"allow":["read"],"deny":[]}},"allow-read-dir":{"identifier":"allow-read-dir","description":"Enables the read_dir command without any pre-configured scope.","commands":{"allow":["read_dir"],"deny":[]}},"allow-read-file":{"identifier":"allow-read-file","description":"Enables the read_file command without any pre-configured scope.","commands":{"allow":["read_file"],"deny":[]}},"allow-read-text-file":{"identifier":"allow-read-text-file","description":"Enables the read_text_file command without any pre-configured scope.","commands":{"allow":["read_text_file"],"deny":[]}},"allow-read-text-file-lines":{"identifier":"allow-read-text-file-lines","description":"Enables the read_text_file_lines command without any pre-configured scope.","commands":{"allow":["read_text_file_lines","read_text_file_lines_next"],"deny":[]}},"allow-read-text-file-lines-next":{"identifier":"allow-read-text-file-lines-next","description":"Enables the read_text_file_lines_next command without any pre-configured scope.","commands":{"allow":["read_text_file_lines_next"],"deny":[]}},"allow-remove":{"identifier":"allow-remove","description":"Enables the remove command without any pre-configured scope.","commands":{"allow":["remove"],"deny":[]}},"allow-rename":{"identifier":"allow-rename","description":"Enables the rename command without any pre-configured scope.","commands":{"allow":["rename"],"deny":[]}},"allow-seek":{"identifier":"allow-seek","description":"Enables the seek command without any pre-configured scope.","commands":{"allow":["seek"],"deny":[]}},"allow-size":{"identifier":"allow-size","description":"Enables the size command without any pre-configured scope.","commands":{"allow":["size"],"deny":[]}},"allow-stat":{"identifier":"allow-stat","description":"Enables the stat command without any pre-configured scope.","commands":{"allow":["stat"],"deny":[]}},"allow-truncate":{"identifier":"allow-truncate","description":"Enables the truncate command without any pre-configured scope.","commands":{"allow":["truncate"],"deny":[]}},"allow-unwatch":{"identifier":"allow-unwatch","description":"Enables the unwatch command without any pre-configured scope.","commands":{"allow":["unwatch"],"deny":[]}},"allow-watch":{"identifier":"allow-watch","description":"Enables the watch command without any pre-configured scope.","commands":{"allow":["watch"],"deny":[]}},"allow-write":{"identifier":"allow-write","description":"Enables the write command without any pre-configured scope.","commands":{"allow":["write"],"deny":[]}},"allow-write-file":{"identifier":"allow-write-file","description":"Enables the write_file command without any pre-configured scope.","commands":{"allow":["write_file","open","write"],"deny":[]}},"allow-write-text-file":{"identifier":"allow-write-text-file","description":"Enables the write_text_file command without any pre-configured scope.","commands":{"allow":["write_text_file"],"deny":[]}},"create-app-specific-dirs":{"identifier":"create-app-specific-dirs","description":"This permissions allows to create the application specific directories.\n","commands":{"allow":["mkdir","scope-app-index"],"deny":[]}},"deny-copy-file":{"identifier":"deny-copy-file","description":"Denies the copy_file command without any pre-configured scope.","commands":{"allow":[],"deny":["copy_file"]}},"deny-create":{"identifier":"deny-create","description":"Denies the create command without any pre-configured scope.","commands":{"allow":[],"deny":["create"]}},"deny-exists":{"identifier":"deny-exists","description":"Denies the exists command without any pre-configured scope.","commands":{"allow":[],"deny":["exists"]}},"deny-fstat":{"identifier":"deny-fstat","description":"Denies the fstat command without any pre-configured scope.","commands":{"allow":[],"deny":["fstat"]}},"deny-ftruncate":{"identifier":"deny-ftruncate","description":"Denies the ftruncate command without any pre-configured scope.","commands":{"allow":[],"deny":["ftruncate"]}},"deny-lstat":{"identifier":"deny-lstat","description":"Denies the lstat command without any pre-configured scope.","commands":{"allow":[],"deny":["lstat"]}},"deny-mkdir":{"identifier":"deny-mkdir","description":"Denies the mkdir command without any pre-configured scope.","commands":{"allow":[],"deny":["mkdir"]}},"deny-open":{"identifier":"deny-open","description":"Denies the open command without any pre-configured scope.","commands":{"allow":[],"deny":["open"]}},"deny-read":{"identifier":"deny-read","description":"Denies the read command without any pre-configured scope.","commands":{"allow":[],"deny":["read"]}},"deny-read-dir":{"identifier":"deny-read-dir","description":"Denies the read_dir command without any pre-configured scope.","commands":{"allow":[],"deny":["read_dir"]}},"deny-read-file":{"identifier":"deny-read-file","description":"Denies the read_file command without any pre-configured scope.","commands":{"allow":[],"deny":["read_file"]}},"deny-read-text-file":{"identifier":"deny-read-text-file","description":"Denies the read_text_file command without any pre-configured scope.","commands":{"allow":[],"deny":["read_text_file"]}},"deny-read-text-file-lines":{"identifier":"deny-read-text-file-lines","description":"Denies the read_text_file_lines command without any pre-configured scope.","commands":{"allow":[],"deny":["read_text_file_lines"]}},"deny-read-text-file-lines-next":{"identifier":"deny-read-text-file-lines-next","description":"Denies the read_text_file_lines_next command without any pre-configured scope.","commands":{"allow":[],"deny":["read_text_file_lines_next"]}},"deny-remove":{"identifier":"deny-remove","description":"Denies the remove command without any pre-configured scope.","commands":{"allow":[],"deny":["remove"]}},"deny-rename":{"identifier":"deny-rename","description":"Denies the rename command without any pre-configured scope.","commands":{"allow":[],"deny":["rename"]}},"deny-seek":{"identifier":"deny-seek","description":"Denies the seek command without any pre-configured scope.","commands":{"allow":[],"deny":["seek"]}},"deny-size":{"identifier":"deny-size","description":"Denies the size command without any pre-configured scope.","commands":{"allow":[],"deny":["size"]}},"deny-stat":{"identifier":"deny-stat","description":"Denies the stat command without any pre-configured scope.","commands":{"allow":[],"deny":["stat"]}},"deny-truncate":{"identifier":"deny-truncate","description":"Denies the truncate command without any pre-configured scope.","commands":{"allow":[],"deny":["truncate"]}},"deny-unwatch":{"identifier":"deny-unwatch","description":"Denies the unwatch command without any pre-configured scope.","commands":{"allow":[],"deny":["unwatch"]}},"deny-watch":{"identifier":"deny-watch","description":"Denies the watch command without any pre-configured scope.","commands":{"allow":[],"deny":["watch"]}},"deny-webview-data-linux":{"identifier":"deny-webview-data-linux","description":"This denies read access to the\n`$APPLOCALDATA` folder on linux as the webview data and configuration values are stored here.\nAllowing access can lead to sensitive information disclosure and should be well considered.","commands":{"allow":[],"deny":[]}},"deny-webview-data-windows":{"identifier":"deny-webview-data-windows","description":"This denies read access to the\n`$APPLOCALDATA/EBWebView` folder on windows as the webview data and configuration values are stored here.\nAllowing access can lead to sensitive information disclosure and should be well considered.","commands":{"allow":[],"deny":[]}},"deny-write":{"identifier":"deny-write","description":"Denies the write command without any pre-configured scope.","commands":{"allow":[],"deny":["write"]}},"deny-write-file":{"identifier":"deny-write-file","description":"Denies the write_file command without any pre-configured scope.","commands":{"allow":[],"deny":["write_file"]}},"deny-write-text-file":{"identifier":"deny-write-text-file","description":"Denies the write_text_file command without any pre-configured scope.","commands":{"allow":[],"deny":["write_text_file"]}},"read-all":{"identifier":"read-all","description":"This enables all read related commands without any pre-configured accessible paths.","commands":{"allow":["read_dir","read_file","read","open","read_text_file","read_text_file_lines","read_text_file_lines_next","seek","stat","lstat","fstat","exists","watch","unwatch"],"deny":[]}},"read-app-specific-dirs-recursive":{"identifier":"read-app-specific-dirs-recursive","description":"This permission allows recursive read functionality on the application\nspecific base directories. \n","commands":{"allow":["read_dir","read_file","read_text_file","read_text_file_lines","read_text_file_lines_next","exists","scope-app-recursive"],"deny":[]}},"read-dirs":{"identifier":"read-dirs","description":"This enables directory read and file metadata related commands without any pre-configured accessible paths.","commands":{"allow":["read_dir","stat","lstat","fstat","exists"],"deny":[]}},"read-files":{"identifier":"read-files","description":"This enables file read related commands without any pre-configured accessible paths.","commands":{"allow":["read_file","read","open","read_text_file","read_text_file_lines","read_text_file_lines_next","seek","stat","lstat","fstat","exists"],"deny":[]}},"read-meta":{"identifier":"read-meta","description":"This enables all index or metadata related commands without any pre-configured accessible paths.","commands":{"allow":["read_dir","stat","lstat","fstat","exists","size"],"deny":[]}},"scope":{"identifier":"scope","description":"An empty permission you can use to modify the global scope.\n\n## Example\n\n```json\n{\n \"identifier\": \"read-documents\",\n \"windows\": [\"main\"],\n \"permissions\": [\n \"fs:allow-read\",\n {\n \"identifier\": \"fs:scope\",\n \"allow\": [\n \"$APPDATA/documents/**/*\"\n ],\n \"deny\": [\n \"$APPDATA/documents/secret.txt\"\n ]\n }\n ]\n}\n```\n","commands":{"allow":[],"deny":[]}},"scope-app":{"identifier":"scope-app","description":"This scope permits access to all files and list content of top level directories in the application folders.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPCONFIG"},{"path":"$APPCONFIG/*"},{"path":"$APPDATA"},{"path":"$APPDATA/*"},{"path":"$APPLOCALDATA"},{"path":"$APPLOCALDATA/*"},{"path":"$APPCACHE"},{"path":"$APPCACHE/*"},{"path":"$APPLOG"},{"path":"$APPLOG/*"}]}},"scope-app-index":{"identifier":"scope-app-index","description":"This scope permits to list all files and folders in the application directories.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPCONFIG"},{"path":"$APPDATA"},{"path":"$APPLOCALDATA"},{"path":"$APPCACHE"},{"path":"$APPLOG"}]}},"scope-app-recursive":{"identifier":"scope-app-recursive","description":"This scope permits recursive access to the complete application folders, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPCONFIG"},{"path":"$APPCONFIG/**"},{"path":"$APPDATA"},{"path":"$APPDATA/**"},{"path":"$APPLOCALDATA"},{"path":"$APPLOCALDATA/**"},{"path":"$APPCACHE"},{"path":"$APPCACHE/**"},{"path":"$APPLOG"},{"path":"$APPLOG/**"}]}},"scope-appcache":{"identifier":"scope-appcache","description":"This scope permits access to all files and list content of top level directories in the `$APPCACHE` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPCACHE"},{"path":"$APPCACHE/*"}]}},"scope-appcache-index":{"identifier":"scope-appcache-index","description":"This scope permits to list all files and folders in the `$APPCACHE`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPCACHE"}]}},"scope-appcache-recursive":{"identifier":"scope-appcache-recursive","description":"This scope permits recursive access to the complete `$APPCACHE` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPCACHE"},{"path":"$APPCACHE/**"}]}},"scope-appconfig":{"identifier":"scope-appconfig","description":"This scope permits access to all files and list content of top level directories in the `$APPCONFIG` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPCONFIG"},{"path":"$APPCONFIG/*"}]}},"scope-appconfig-index":{"identifier":"scope-appconfig-index","description":"This scope permits to list all files and folders in the `$APPCONFIG`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPCONFIG"}]}},"scope-appconfig-recursive":{"identifier":"scope-appconfig-recursive","description":"This scope permits recursive access to the complete `$APPCONFIG` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPCONFIG"},{"path":"$APPCONFIG/**"}]}},"scope-appdata":{"identifier":"scope-appdata","description":"This scope permits access to all files and list content of top level directories in the `$APPDATA` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPDATA"},{"path":"$APPDATA/*"}]}},"scope-appdata-index":{"identifier":"scope-appdata-index","description":"This scope permits to list all files and folders in the `$APPDATA`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPDATA"}]}},"scope-appdata-recursive":{"identifier":"scope-appdata-recursive","description":"This scope permits recursive access to the complete `$APPDATA` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPDATA"},{"path":"$APPDATA/**"}]}},"scope-applocaldata":{"identifier":"scope-applocaldata","description":"This scope permits access to all files and list content of top level directories in the `$APPLOCALDATA` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPLOCALDATA"},{"path":"$APPLOCALDATA/*"}]}},"scope-applocaldata-index":{"identifier":"scope-applocaldata-index","description":"This scope permits to list all files and folders in the `$APPLOCALDATA`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPLOCALDATA"}]}},"scope-applocaldata-recursive":{"identifier":"scope-applocaldata-recursive","description":"This scope permits recursive access to the complete `$APPLOCALDATA` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPLOCALDATA"},{"path":"$APPLOCALDATA/**"}]}},"scope-applog":{"identifier":"scope-applog","description":"This scope permits access to all files and list content of top level directories in the `$APPLOG` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPLOG"},{"path":"$APPLOG/*"}]}},"scope-applog-index":{"identifier":"scope-applog-index","description":"This scope permits to list all files and folders in the `$APPLOG`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPLOG"}]}},"scope-applog-recursive":{"identifier":"scope-applog-recursive","description":"This scope permits recursive access to the complete `$APPLOG` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPLOG"},{"path":"$APPLOG/**"}]}},"scope-audio":{"identifier":"scope-audio","description":"This scope permits access to all files and list content of top level directories in the `$AUDIO` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$AUDIO"},{"path":"$AUDIO/*"}]}},"scope-audio-index":{"identifier":"scope-audio-index","description":"This scope permits to list all files and folders in the `$AUDIO`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$AUDIO"}]}},"scope-audio-recursive":{"identifier":"scope-audio-recursive","description":"This scope permits recursive access to the complete `$AUDIO` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$AUDIO"},{"path":"$AUDIO/**"}]}},"scope-cache":{"identifier":"scope-cache","description":"This scope permits access to all files and list content of top level directories in the `$CACHE` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$CACHE"},{"path":"$CACHE/*"}]}},"scope-cache-index":{"identifier":"scope-cache-index","description":"This scope permits to list all files and folders in the `$CACHE`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$CACHE"}]}},"scope-cache-recursive":{"identifier":"scope-cache-recursive","description":"This scope permits recursive access to the complete `$CACHE` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$CACHE"},{"path":"$CACHE/**"}]}},"scope-config":{"identifier":"scope-config","description":"This scope permits access to all files and list content of top level directories in the `$CONFIG` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$CONFIG"},{"path":"$CONFIG/*"}]}},"scope-config-index":{"identifier":"scope-config-index","description":"This scope permits to list all files and folders in the `$CONFIG`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$CONFIG"}]}},"scope-config-recursive":{"identifier":"scope-config-recursive","description":"This scope permits recursive access to the complete `$CONFIG` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$CONFIG"},{"path":"$CONFIG/**"}]}},"scope-data":{"identifier":"scope-data","description":"This scope permits access to all files and list content of top level directories in the `$DATA` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DATA"},{"path":"$DATA/*"}]}},"scope-data-index":{"identifier":"scope-data-index","description":"This scope permits to list all files and folders in the `$DATA`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DATA"}]}},"scope-data-recursive":{"identifier":"scope-data-recursive","description":"This scope permits recursive access to the complete `$DATA` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DATA"},{"path":"$DATA/**"}]}},"scope-desktop":{"identifier":"scope-desktop","description":"This scope permits access to all files and list content of top level directories in the `$DESKTOP` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DESKTOP"},{"path":"$DESKTOP/*"}]}},"scope-desktop-index":{"identifier":"scope-desktop-index","description":"This scope permits to list all files and folders in the `$DESKTOP`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DESKTOP"}]}},"scope-desktop-recursive":{"identifier":"scope-desktop-recursive","description":"This scope permits recursive access to the complete `$DESKTOP` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DESKTOP"},{"path":"$DESKTOP/**"}]}},"scope-document":{"identifier":"scope-document","description":"This scope permits access to all files and list content of top level directories in the `$DOCUMENT` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DOCUMENT"},{"path":"$DOCUMENT/*"}]}},"scope-document-index":{"identifier":"scope-document-index","description":"This scope permits to list all files and folders in the `$DOCUMENT`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DOCUMENT"}]}},"scope-document-recursive":{"identifier":"scope-document-recursive","description":"This scope permits recursive access to the complete `$DOCUMENT` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DOCUMENT"},{"path":"$DOCUMENT/**"}]}},"scope-download":{"identifier":"scope-download","description":"This scope permits access to all files and list content of top level directories in the `$DOWNLOAD` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DOWNLOAD"},{"path":"$DOWNLOAD/*"}]}},"scope-download-index":{"identifier":"scope-download-index","description":"This scope permits to list all files and folders in the `$DOWNLOAD`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DOWNLOAD"}]}},"scope-download-recursive":{"identifier":"scope-download-recursive","description":"This scope permits recursive access to the complete `$DOWNLOAD` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DOWNLOAD"},{"path":"$DOWNLOAD/**"}]}},"scope-exe":{"identifier":"scope-exe","description":"This scope permits access to all files and list content of top level directories in the `$EXE` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$EXE"},{"path":"$EXE/*"}]}},"scope-exe-index":{"identifier":"scope-exe-index","description":"This scope permits to list all files and folders in the `$EXE`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$EXE"}]}},"scope-exe-recursive":{"identifier":"scope-exe-recursive","description":"This scope permits recursive access to the complete `$EXE` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$EXE"},{"path":"$EXE/**"}]}},"scope-font":{"identifier":"scope-font","description":"This scope permits access to all files and list content of top level directories in the `$FONT` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$FONT"},{"path":"$FONT/*"}]}},"scope-font-index":{"identifier":"scope-font-index","description":"This scope permits to list all files and folders in the `$FONT`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$FONT"}]}},"scope-font-recursive":{"identifier":"scope-font-recursive","description":"This scope permits recursive access to the complete `$FONT` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$FONT"},{"path":"$FONT/**"}]}},"scope-home":{"identifier":"scope-home","description":"This scope permits access to all files and list content of top level directories in the `$HOME` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$HOME"},{"path":"$HOME/*"}]}},"scope-home-index":{"identifier":"scope-home-index","description":"This scope permits to list all files and folders in the `$HOME`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$HOME"}]}},"scope-home-recursive":{"identifier":"scope-home-recursive","description":"This scope permits recursive access to the complete `$HOME` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$HOME"},{"path":"$HOME/**"}]}},"scope-localdata":{"identifier":"scope-localdata","description":"This scope permits access to all files and list content of top level directories in the `$LOCALDATA` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$LOCALDATA"},{"path":"$LOCALDATA/*"}]}},"scope-localdata-index":{"identifier":"scope-localdata-index","description":"This scope permits to list all files and folders in the `$LOCALDATA`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$LOCALDATA"}]}},"scope-localdata-recursive":{"identifier":"scope-localdata-recursive","description":"This scope permits recursive access to the complete `$LOCALDATA` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$LOCALDATA"},{"path":"$LOCALDATA/**"}]}},"scope-log":{"identifier":"scope-log","description":"This scope permits access to all files and list content of top level directories in the `$LOG` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$LOG"},{"path":"$LOG/*"}]}},"scope-log-index":{"identifier":"scope-log-index","description":"This scope permits to list all files and folders in the `$LOG`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$LOG"}]}},"scope-log-recursive":{"identifier":"scope-log-recursive","description":"This scope permits recursive access to the complete `$LOG` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$LOG"},{"path":"$LOG/**"}]}},"scope-picture":{"identifier":"scope-picture","description":"This scope permits access to all files and list content of top level directories in the `$PICTURE` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$PICTURE"},{"path":"$PICTURE/*"}]}},"scope-picture-index":{"identifier":"scope-picture-index","description":"This scope permits to list all files and folders in the `$PICTURE`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$PICTURE"}]}},"scope-picture-recursive":{"identifier":"scope-picture-recursive","description":"This scope permits recursive access to the complete `$PICTURE` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$PICTURE"},{"path":"$PICTURE/**"}]}},"scope-public":{"identifier":"scope-public","description":"This scope permits access to all files and list content of top level directories in the `$PUBLIC` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$PUBLIC"},{"path":"$PUBLIC/*"}]}},"scope-public-index":{"identifier":"scope-public-index","description":"This scope permits to list all files and folders in the `$PUBLIC`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$PUBLIC"}]}},"scope-public-recursive":{"identifier":"scope-public-recursive","description":"This scope permits recursive access to the complete `$PUBLIC` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$PUBLIC"},{"path":"$PUBLIC/**"}]}},"scope-resource":{"identifier":"scope-resource","description":"This scope permits access to all files and list content of top level directories in the `$RESOURCE` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$RESOURCE"},{"path":"$RESOURCE/*"}]}},"scope-resource-index":{"identifier":"scope-resource-index","description":"This scope permits to list all files and folders in the `$RESOURCE`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$RESOURCE"}]}},"scope-resource-recursive":{"identifier":"scope-resource-recursive","description":"This scope permits recursive access to the complete `$RESOURCE` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$RESOURCE"},{"path":"$RESOURCE/**"}]}},"scope-runtime":{"identifier":"scope-runtime","description":"This scope permits access to all files and list content of top level directories in the `$RUNTIME` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$RUNTIME"},{"path":"$RUNTIME/*"}]}},"scope-runtime-index":{"identifier":"scope-runtime-index","description":"This scope permits to list all files and folders in the `$RUNTIME`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$RUNTIME"}]}},"scope-runtime-recursive":{"identifier":"scope-runtime-recursive","description":"This scope permits recursive access to the complete `$RUNTIME` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$RUNTIME"},{"path":"$RUNTIME/**"}]}},"scope-temp":{"identifier":"scope-temp","description":"This scope permits access to all files and list content of top level directories in the `$TEMP` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$TEMP"},{"path":"$TEMP/*"}]}},"scope-temp-index":{"identifier":"scope-temp-index","description":"This scope permits to list all files and folders in the `$TEMP`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$TEMP"}]}},"scope-temp-recursive":{"identifier":"scope-temp-recursive","description":"This scope permits recursive access to the complete `$TEMP` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$TEMP"},{"path":"$TEMP/**"}]}},"scope-template":{"identifier":"scope-template","description":"This scope permits access to all files and list content of top level directories in the `$TEMPLATE` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$TEMPLATE"},{"path":"$TEMPLATE/*"}]}},"scope-template-index":{"identifier":"scope-template-index","description":"This scope permits to list all files and folders in the `$TEMPLATE`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$TEMPLATE"}]}},"scope-template-recursive":{"identifier":"scope-template-recursive","description":"This scope permits recursive access to the complete `$TEMPLATE` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$TEMPLATE"},{"path":"$TEMPLATE/**"}]}},"scope-video":{"identifier":"scope-video","description":"This scope permits access to all files and list content of top level directories in the `$VIDEO` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$VIDEO"},{"path":"$VIDEO/*"}]}},"scope-video-index":{"identifier":"scope-video-index","description":"This scope permits to list all files and folders in the `$VIDEO`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$VIDEO"}]}},"scope-video-recursive":{"identifier":"scope-video-recursive","description":"This scope permits recursive access to the complete `$VIDEO` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$VIDEO"},{"path":"$VIDEO/**"}]}},"write-all":{"identifier":"write-all","description":"This enables all write related commands without any pre-configured accessible paths.","commands":{"allow":["mkdir","create","copy_file","remove","rename","truncate","ftruncate","write","write_file","write_text_file"],"deny":[]}},"write-files":{"identifier":"write-files","description":"This enables all file write related commands without any pre-configured accessible paths.","commands":{"allow":["create","copy_file","remove","rename","truncate","ftruncate","write","write_file","write_text_file"],"deny":[]}}},"permission_sets":{"allow-app-meta":{"identifier":"allow-app-meta","description":"This allows non-recursive read access to metadata of the application folders, including file listing and statistics.","permissions":["read-meta","scope-app-index"]},"allow-app-meta-recursive":{"identifier":"allow-app-meta-recursive","description":"This allows full recursive read access to metadata of the application folders, including file listing and statistics.","permissions":["read-meta","scope-app-recursive"]},"allow-app-read":{"identifier":"allow-app-read","description":"This allows non-recursive read access to the application folders.","permissions":["read-all","scope-app"]},"allow-app-read-recursive":{"identifier":"allow-app-read-recursive","description":"This allows full recursive read access to the complete application folders, files and subdirectories.","permissions":["read-all","scope-app-recursive"]},"allow-app-write":{"identifier":"allow-app-write","description":"This allows non-recursive write access to the application folders.","permissions":["write-all","scope-app"]},"allow-app-write-recursive":{"identifier":"allow-app-write-recursive","description":"This allows full recursive write access to the complete application folders, files and subdirectories.","permissions":["write-all","scope-app-recursive"]},"allow-appcache-meta":{"identifier":"allow-appcache-meta","description":"This allows non-recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.","permissions":["read-meta","scope-appcache-index"]},"allow-appcache-meta-recursive":{"identifier":"allow-appcache-meta-recursive","description":"This allows full recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.","permissions":["read-meta","scope-appcache-recursive"]},"allow-appcache-read":{"identifier":"allow-appcache-read","description":"This allows non-recursive read access to the `$APPCACHE` folder.","permissions":["read-all","scope-appcache"]},"allow-appcache-read-recursive":{"identifier":"allow-appcache-read-recursive","description":"This allows full recursive read access to the complete `$APPCACHE` folder, files and subdirectories.","permissions":["read-all","scope-appcache-recursive"]},"allow-appcache-write":{"identifier":"allow-appcache-write","description":"This allows non-recursive write access to the `$APPCACHE` folder.","permissions":["write-all","scope-appcache"]},"allow-appcache-write-recursive":{"identifier":"allow-appcache-write-recursive","description":"This allows full recursive write access to the complete `$APPCACHE` folder, files and subdirectories.","permissions":["write-all","scope-appcache-recursive"]},"allow-appconfig-meta":{"identifier":"allow-appconfig-meta","description":"This allows non-recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.","permissions":["read-meta","scope-appconfig-index"]},"allow-appconfig-meta-recursive":{"identifier":"allow-appconfig-meta-recursive","description":"This allows full recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.","permissions":["read-meta","scope-appconfig-recursive"]},"allow-appconfig-read":{"identifier":"allow-appconfig-read","description":"This allows non-recursive read access to the `$APPCONFIG` folder.","permissions":["read-all","scope-appconfig"]},"allow-appconfig-read-recursive":{"identifier":"allow-appconfig-read-recursive","description":"This allows full recursive read access to the complete `$APPCONFIG` folder, files and subdirectories.","permissions":["read-all","scope-appconfig-recursive"]},"allow-appconfig-write":{"identifier":"allow-appconfig-write","description":"This allows non-recursive write access to the `$APPCONFIG` folder.","permissions":["write-all","scope-appconfig"]},"allow-appconfig-write-recursive":{"identifier":"allow-appconfig-write-recursive","description":"This allows full recursive write access to the complete `$APPCONFIG` folder, files and subdirectories.","permissions":["write-all","scope-appconfig-recursive"]},"allow-appdata-meta":{"identifier":"allow-appdata-meta","description":"This allows non-recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.","permissions":["read-meta","scope-appdata-index"]},"allow-appdata-meta-recursive":{"identifier":"allow-appdata-meta-recursive","description":"This allows full recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.","permissions":["read-meta","scope-appdata-recursive"]},"allow-appdata-read":{"identifier":"allow-appdata-read","description":"This allows non-recursive read access to the `$APPDATA` folder.","permissions":["read-all","scope-appdata"]},"allow-appdata-read-recursive":{"identifier":"allow-appdata-read-recursive","description":"This allows full recursive read access to the complete `$APPDATA` folder, files and subdirectories.","permissions":["read-all","scope-appdata-recursive"]},"allow-appdata-write":{"identifier":"allow-appdata-write","description":"This allows non-recursive write access to the `$APPDATA` folder.","permissions":["write-all","scope-appdata"]},"allow-appdata-write-recursive":{"identifier":"allow-appdata-write-recursive","description":"This allows full recursive write access to the complete `$APPDATA` folder, files and subdirectories.","permissions":["write-all","scope-appdata-recursive"]},"allow-applocaldata-meta":{"identifier":"allow-applocaldata-meta","description":"This allows non-recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.","permissions":["read-meta","scope-applocaldata-index"]},"allow-applocaldata-meta-recursive":{"identifier":"allow-applocaldata-meta-recursive","description":"This allows full recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.","permissions":["read-meta","scope-applocaldata-recursive"]},"allow-applocaldata-read":{"identifier":"allow-applocaldata-read","description":"This allows non-recursive read access to the `$APPLOCALDATA` folder.","permissions":["read-all","scope-applocaldata"]},"allow-applocaldata-read-recursive":{"identifier":"allow-applocaldata-read-recursive","description":"This allows full recursive read access to the complete `$APPLOCALDATA` folder, files and subdirectories.","permissions":["read-all","scope-applocaldata-recursive"]},"allow-applocaldata-write":{"identifier":"allow-applocaldata-write","description":"This allows non-recursive write access to the `$APPLOCALDATA` folder.","permissions":["write-all","scope-applocaldata"]},"allow-applocaldata-write-recursive":{"identifier":"allow-applocaldata-write-recursive","description":"This allows full recursive write access to the complete `$APPLOCALDATA` folder, files and subdirectories.","permissions":["write-all","scope-applocaldata-recursive"]},"allow-applog-meta":{"identifier":"allow-applog-meta","description":"This allows non-recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.","permissions":["read-meta","scope-applog-index"]},"allow-applog-meta-recursive":{"identifier":"allow-applog-meta-recursive","description":"This allows full recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.","permissions":["read-meta","scope-applog-recursive"]},"allow-applog-read":{"identifier":"allow-applog-read","description":"This allows non-recursive read access to the `$APPLOG` folder.","permissions":["read-all","scope-applog"]},"allow-applog-read-recursive":{"identifier":"allow-applog-read-recursive","description":"This allows full recursive read access to the complete `$APPLOG` folder, files and subdirectories.","permissions":["read-all","scope-applog-recursive"]},"allow-applog-write":{"identifier":"allow-applog-write","description":"This allows non-recursive write access to the `$APPLOG` folder.","permissions":["write-all","scope-applog"]},"allow-applog-write-recursive":{"identifier":"allow-applog-write-recursive","description":"This allows full recursive write access to the complete `$APPLOG` folder, files and subdirectories.","permissions":["write-all","scope-applog-recursive"]},"allow-audio-meta":{"identifier":"allow-audio-meta","description":"This allows non-recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.","permissions":["read-meta","scope-audio-index"]},"allow-audio-meta-recursive":{"identifier":"allow-audio-meta-recursive","description":"This allows full recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.","permissions":["read-meta","scope-audio-recursive"]},"allow-audio-read":{"identifier":"allow-audio-read","description":"This allows non-recursive read access to the `$AUDIO` folder.","permissions":["read-all","scope-audio"]},"allow-audio-read-recursive":{"identifier":"allow-audio-read-recursive","description":"This allows full recursive read access to the complete `$AUDIO` folder, files and subdirectories.","permissions":["read-all","scope-audio-recursive"]},"allow-audio-write":{"identifier":"allow-audio-write","description":"This allows non-recursive write access to the `$AUDIO` folder.","permissions":["write-all","scope-audio"]},"allow-audio-write-recursive":{"identifier":"allow-audio-write-recursive","description":"This allows full recursive write access to the complete `$AUDIO` folder, files and subdirectories.","permissions":["write-all","scope-audio-recursive"]},"allow-cache-meta":{"identifier":"allow-cache-meta","description":"This allows non-recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.","permissions":["read-meta","scope-cache-index"]},"allow-cache-meta-recursive":{"identifier":"allow-cache-meta-recursive","description":"This allows full recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.","permissions":["read-meta","scope-cache-recursive"]},"allow-cache-read":{"identifier":"allow-cache-read","description":"This allows non-recursive read access to the `$CACHE` folder.","permissions":["read-all","scope-cache"]},"allow-cache-read-recursive":{"identifier":"allow-cache-read-recursive","description":"This allows full recursive read access to the complete `$CACHE` folder, files and subdirectories.","permissions":["read-all","scope-cache-recursive"]},"allow-cache-write":{"identifier":"allow-cache-write","description":"This allows non-recursive write access to the `$CACHE` folder.","permissions":["write-all","scope-cache"]},"allow-cache-write-recursive":{"identifier":"allow-cache-write-recursive","description":"This allows full recursive write access to the complete `$CACHE` folder, files and subdirectories.","permissions":["write-all","scope-cache-recursive"]},"allow-config-meta":{"identifier":"allow-config-meta","description":"This allows non-recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.","permissions":["read-meta","scope-config-index"]},"allow-config-meta-recursive":{"identifier":"allow-config-meta-recursive","description":"This allows full recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.","permissions":["read-meta","scope-config-recursive"]},"allow-config-read":{"identifier":"allow-config-read","description":"This allows non-recursive read access to the `$CONFIG` folder.","permissions":["read-all","scope-config"]},"allow-config-read-recursive":{"identifier":"allow-config-read-recursive","description":"This allows full recursive read access to the complete `$CONFIG` folder, files and subdirectories.","permissions":["read-all","scope-config-recursive"]},"allow-config-write":{"identifier":"allow-config-write","description":"This allows non-recursive write access to the `$CONFIG` folder.","permissions":["write-all","scope-config"]},"allow-config-write-recursive":{"identifier":"allow-config-write-recursive","description":"This allows full recursive write access to the complete `$CONFIG` folder, files and subdirectories.","permissions":["write-all","scope-config-recursive"]},"allow-data-meta":{"identifier":"allow-data-meta","description":"This allows non-recursive read access to metadata of the `$DATA` folder, including file listing and statistics.","permissions":["read-meta","scope-data-index"]},"allow-data-meta-recursive":{"identifier":"allow-data-meta-recursive","description":"This allows full recursive read access to metadata of the `$DATA` folder, including file listing and statistics.","permissions":["read-meta","scope-data-recursive"]},"allow-data-read":{"identifier":"allow-data-read","description":"This allows non-recursive read access to the `$DATA` folder.","permissions":["read-all","scope-data"]},"allow-data-read-recursive":{"identifier":"allow-data-read-recursive","description":"This allows full recursive read access to the complete `$DATA` folder, files and subdirectories.","permissions":["read-all","scope-data-recursive"]},"allow-data-write":{"identifier":"allow-data-write","description":"This allows non-recursive write access to the `$DATA` folder.","permissions":["write-all","scope-data"]},"allow-data-write-recursive":{"identifier":"allow-data-write-recursive","description":"This allows full recursive write access to the complete `$DATA` folder, files and subdirectories.","permissions":["write-all","scope-data-recursive"]},"allow-desktop-meta":{"identifier":"allow-desktop-meta","description":"This allows non-recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.","permissions":["read-meta","scope-desktop-index"]},"allow-desktop-meta-recursive":{"identifier":"allow-desktop-meta-recursive","description":"This allows full recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.","permissions":["read-meta","scope-desktop-recursive"]},"allow-desktop-read":{"identifier":"allow-desktop-read","description":"This allows non-recursive read access to the `$DESKTOP` folder.","permissions":["read-all","scope-desktop"]},"allow-desktop-read-recursive":{"identifier":"allow-desktop-read-recursive","description":"This allows full recursive read access to the complete `$DESKTOP` folder, files and subdirectories.","permissions":["read-all","scope-desktop-recursive"]},"allow-desktop-write":{"identifier":"allow-desktop-write","description":"This allows non-recursive write access to the `$DESKTOP` folder.","permissions":["write-all","scope-desktop"]},"allow-desktop-write-recursive":{"identifier":"allow-desktop-write-recursive","description":"This allows full recursive write access to the complete `$DESKTOP` folder, files and subdirectories.","permissions":["write-all","scope-desktop-recursive"]},"allow-document-meta":{"identifier":"allow-document-meta","description":"This allows non-recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.","permissions":["read-meta","scope-document-index"]},"allow-document-meta-recursive":{"identifier":"allow-document-meta-recursive","description":"This allows full recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.","permissions":["read-meta","scope-document-recursive"]},"allow-document-read":{"identifier":"allow-document-read","description":"This allows non-recursive read access to the `$DOCUMENT` folder.","permissions":["read-all","scope-document"]},"allow-document-read-recursive":{"identifier":"allow-document-read-recursive","description":"This allows full recursive read access to the complete `$DOCUMENT` folder, files and subdirectories.","permissions":["read-all","scope-document-recursive"]},"allow-document-write":{"identifier":"allow-document-write","description":"This allows non-recursive write access to the `$DOCUMENT` folder.","permissions":["write-all","scope-document"]},"allow-document-write-recursive":{"identifier":"allow-document-write-recursive","description":"This allows full recursive write access to the complete `$DOCUMENT` folder, files and subdirectories.","permissions":["write-all","scope-document-recursive"]},"allow-download-meta":{"identifier":"allow-download-meta","description":"This allows non-recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.","permissions":["read-meta","scope-download-index"]},"allow-download-meta-recursive":{"identifier":"allow-download-meta-recursive","description":"This allows full recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.","permissions":["read-meta","scope-download-recursive"]},"allow-download-read":{"identifier":"allow-download-read","description":"This allows non-recursive read access to the `$DOWNLOAD` folder.","permissions":["read-all","scope-download"]},"allow-download-read-recursive":{"identifier":"allow-download-read-recursive","description":"This allows full recursive read access to the complete `$DOWNLOAD` folder, files and subdirectories.","permissions":["read-all","scope-download-recursive"]},"allow-download-write":{"identifier":"allow-download-write","description":"This allows non-recursive write access to the `$DOWNLOAD` folder.","permissions":["write-all","scope-download"]},"allow-download-write-recursive":{"identifier":"allow-download-write-recursive","description":"This allows full recursive write access to the complete `$DOWNLOAD` folder, files and subdirectories.","permissions":["write-all","scope-download-recursive"]},"allow-exe-meta":{"identifier":"allow-exe-meta","description":"This allows non-recursive read access to metadata of the `$EXE` folder, including file listing and statistics.","permissions":["read-meta","scope-exe-index"]},"allow-exe-meta-recursive":{"identifier":"allow-exe-meta-recursive","description":"This allows full recursive read access to metadata of the `$EXE` folder, including file listing and statistics.","permissions":["read-meta","scope-exe-recursive"]},"allow-exe-read":{"identifier":"allow-exe-read","description":"This allows non-recursive read access to the `$EXE` folder.","permissions":["read-all","scope-exe"]},"allow-exe-read-recursive":{"identifier":"allow-exe-read-recursive","description":"This allows full recursive read access to the complete `$EXE` folder, files and subdirectories.","permissions":["read-all","scope-exe-recursive"]},"allow-exe-write":{"identifier":"allow-exe-write","description":"This allows non-recursive write access to the `$EXE` folder.","permissions":["write-all","scope-exe"]},"allow-exe-write-recursive":{"identifier":"allow-exe-write-recursive","description":"This allows full recursive write access to the complete `$EXE` folder, files and subdirectories.","permissions":["write-all","scope-exe-recursive"]},"allow-font-meta":{"identifier":"allow-font-meta","description":"This allows non-recursive read access to metadata of the `$FONT` folder, including file listing and statistics.","permissions":["read-meta","scope-font-index"]},"allow-font-meta-recursive":{"identifier":"allow-font-meta-recursive","description":"This allows full recursive read access to metadata of the `$FONT` folder, including file listing and statistics.","permissions":["read-meta","scope-font-recursive"]},"allow-font-read":{"identifier":"allow-font-read","description":"This allows non-recursive read access to the `$FONT` folder.","permissions":["read-all","scope-font"]},"allow-font-read-recursive":{"identifier":"allow-font-read-recursive","description":"This allows full recursive read access to the complete `$FONT` folder, files and subdirectories.","permissions":["read-all","scope-font-recursive"]},"allow-font-write":{"identifier":"allow-font-write","description":"This allows non-recursive write access to the `$FONT` folder.","permissions":["write-all","scope-font"]},"allow-font-write-recursive":{"identifier":"allow-font-write-recursive","description":"This allows full recursive write access to the complete `$FONT` folder, files and subdirectories.","permissions":["write-all","scope-font-recursive"]},"allow-home-meta":{"identifier":"allow-home-meta","description":"This allows non-recursive read access to metadata of the `$HOME` folder, including file listing and statistics.","permissions":["read-meta","scope-home-index"]},"allow-home-meta-recursive":{"identifier":"allow-home-meta-recursive","description":"This allows full recursive read access to metadata of the `$HOME` folder, including file listing and statistics.","permissions":["read-meta","scope-home-recursive"]},"allow-home-read":{"identifier":"allow-home-read","description":"This allows non-recursive read access to the `$HOME` folder.","permissions":["read-all","scope-home"]},"allow-home-read-recursive":{"identifier":"allow-home-read-recursive","description":"This allows full recursive read access to the complete `$HOME` folder, files and subdirectories.","permissions":["read-all","scope-home-recursive"]},"allow-home-write":{"identifier":"allow-home-write","description":"This allows non-recursive write access to the `$HOME` folder.","permissions":["write-all","scope-home"]},"allow-home-write-recursive":{"identifier":"allow-home-write-recursive","description":"This allows full recursive write access to the complete `$HOME` folder, files and subdirectories.","permissions":["write-all","scope-home-recursive"]},"allow-localdata-meta":{"identifier":"allow-localdata-meta","description":"This allows non-recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.","permissions":["read-meta","scope-localdata-index"]},"allow-localdata-meta-recursive":{"identifier":"allow-localdata-meta-recursive","description":"This allows full recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.","permissions":["read-meta","scope-localdata-recursive"]},"allow-localdata-read":{"identifier":"allow-localdata-read","description":"This allows non-recursive read access to the `$LOCALDATA` folder.","permissions":["read-all","scope-localdata"]},"allow-localdata-read-recursive":{"identifier":"allow-localdata-read-recursive","description":"This allows full recursive read access to the complete `$LOCALDATA` folder, files and subdirectories.","permissions":["read-all","scope-localdata-recursive"]},"allow-localdata-write":{"identifier":"allow-localdata-write","description":"This allows non-recursive write access to the `$LOCALDATA` folder.","permissions":["write-all","scope-localdata"]},"allow-localdata-write-recursive":{"identifier":"allow-localdata-write-recursive","description":"This allows full recursive write access to the complete `$LOCALDATA` folder, files and subdirectories.","permissions":["write-all","scope-localdata-recursive"]},"allow-log-meta":{"identifier":"allow-log-meta","description":"This allows non-recursive read access to metadata of the `$LOG` folder, including file listing and statistics.","permissions":["read-meta","scope-log-index"]},"allow-log-meta-recursive":{"identifier":"allow-log-meta-recursive","description":"This allows full recursive read access to metadata of the `$LOG` folder, including file listing and statistics.","permissions":["read-meta","scope-log-recursive"]},"allow-log-read":{"identifier":"allow-log-read","description":"This allows non-recursive read access to the `$LOG` folder.","permissions":["read-all","scope-log"]},"allow-log-read-recursive":{"identifier":"allow-log-read-recursive","description":"This allows full recursive read access to the complete `$LOG` folder, files and subdirectories.","permissions":["read-all","scope-log-recursive"]},"allow-log-write":{"identifier":"allow-log-write","description":"This allows non-recursive write access to the `$LOG` folder.","permissions":["write-all","scope-log"]},"allow-log-write-recursive":{"identifier":"allow-log-write-recursive","description":"This allows full recursive write access to the complete `$LOG` folder, files and subdirectories.","permissions":["write-all","scope-log-recursive"]},"allow-picture-meta":{"identifier":"allow-picture-meta","description":"This allows non-recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.","permissions":["read-meta","scope-picture-index"]},"allow-picture-meta-recursive":{"identifier":"allow-picture-meta-recursive","description":"This allows full recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.","permissions":["read-meta","scope-picture-recursive"]},"allow-picture-read":{"identifier":"allow-picture-read","description":"This allows non-recursive read access to the `$PICTURE` folder.","permissions":["read-all","scope-picture"]},"allow-picture-read-recursive":{"identifier":"allow-picture-read-recursive","description":"This allows full recursive read access to the complete `$PICTURE` folder, files and subdirectories.","permissions":["read-all","scope-picture-recursive"]},"allow-picture-write":{"identifier":"allow-picture-write","description":"This allows non-recursive write access to the `$PICTURE` folder.","permissions":["write-all","scope-picture"]},"allow-picture-write-recursive":{"identifier":"allow-picture-write-recursive","description":"This allows full recursive write access to the complete `$PICTURE` folder, files and subdirectories.","permissions":["write-all","scope-picture-recursive"]},"allow-public-meta":{"identifier":"allow-public-meta","description":"This allows non-recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.","permissions":["read-meta","scope-public-index"]},"allow-public-meta-recursive":{"identifier":"allow-public-meta-recursive","description":"This allows full recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.","permissions":["read-meta","scope-public-recursive"]},"allow-public-read":{"identifier":"allow-public-read","description":"This allows non-recursive read access to the `$PUBLIC` folder.","permissions":["read-all","scope-public"]},"allow-public-read-recursive":{"identifier":"allow-public-read-recursive","description":"This allows full recursive read access to the complete `$PUBLIC` folder, files and subdirectories.","permissions":["read-all","scope-public-recursive"]},"allow-public-write":{"identifier":"allow-public-write","description":"This allows non-recursive write access to the `$PUBLIC` folder.","permissions":["write-all","scope-public"]},"allow-public-write-recursive":{"identifier":"allow-public-write-recursive","description":"This allows full recursive write access to the complete `$PUBLIC` folder, files and subdirectories.","permissions":["write-all","scope-public-recursive"]},"allow-resource-meta":{"identifier":"allow-resource-meta","description":"This allows non-recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.","permissions":["read-meta","scope-resource-index"]},"allow-resource-meta-recursive":{"identifier":"allow-resource-meta-recursive","description":"This allows full recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.","permissions":["read-meta","scope-resource-recursive"]},"allow-resource-read":{"identifier":"allow-resource-read","description":"This allows non-recursive read access to the `$RESOURCE` folder.","permissions":["read-all","scope-resource"]},"allow-resource-read-recursive":{"identifier":"allow-resource-read-recursive","description":"This allows full recursive read access to the complete `$RESOURCE` folder, files and subdirectories.","permissions":["read-all","scope-resource-recursive"]},"allow-resource-write":{"identifier":"allow-resource-write","description":"This allows non-recursive write access to the `$RESOURCE` folder.","permissions":["write-all","scope-resource"]},"allow-resource-write-recursive":{"identifier":"allow-resource-write-recursive","description":"This allows full recursive write access to the complete `$RESOURCE` folder, files and subdirectories.","permissions":["write-all","scope-resource-recursive"]},"allow-runtime-meta":{"identifier":"allow-runtime-meta","description":"This allows non-recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.","permissions":["read-meta","scope-runtime-index"]},"allow-runtime-meta-recursive":{"identifier":"allow-runtime-meta-recursive","description":"This allows full recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.","permissions":["read-meta","scope-runtime-recursive"]},"allow-runtime-read":{"identifier":"allow-runtime-read","description":"This allows non-recursive read access to the `$RUNTIME` folder.","permissions":["read-all","scope-runtime"]},"allow-runtime-read-recursive":{"identifier":"allow-runtime-read-recursive","description":"This allows full recursive read access to the complete `$RUNTIME` folder, files and subdirectories.","permissions":["read-all","scope-runtime-recursive"]},"allow-runtime-write":{"identifier":"allow-runtime-write","description":"This allows non-recursive write access to the `$RUNTIME` folder.","permissions":["write-all","scope-runtime"]},"allow-runtime-write-recursive":{"identifier":"allow-runtime-write-recursive","description":"This allows full recursive write access to the complete `$RUNTIME` folder, files and subdirectories.","permissions":["write-all","scope-runtime-recursive"]},"allow-temp-meta":{"identifier":"allow-temp-meta","description":"This allows non-recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.","permissions":["read-meta","scope-temp-index"]},"allow-temp-meta-recursive":{"identifier":"allow-temp-meta-recursive","description":"This allows full recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.","permissions":["read-meta","scope-temp-recursive"]},"allow-temp-read":{"identifier":"allow-temp-read","description":"This allows non-recursive read access to the `$TEMP` folder.","permissions":["read-all","scope-temp"]},"allow-temp-read-recursive":{"identifier":"allow-temp-read-recursive","description":"This allows full recursive read access to the complete `$TEMP` folder, files and subdirectories.","permissions":["read-all","scope-temp-recursive"]},"allow-temp-write":{"identifier":"allow-temp-write","description":"This allows non-recursive write access to the `$TEMP` folder.","permissions":["write-all","scope-temp"]},"allow-temp-write-recursive":{"identifier":"allow-temp-write-recursive","description":"This allows full recursive write access to the complete `$TEMP` folder, files and subdirectories.","permissions":["write-all","scope-temp-recursive"]},"allow-template-meta":{"identifier":"allow-template-meta","description":"This allows non-recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.","permissions":["read-meta","scope-template-index"]},"allow-template-meta-recursive":{"identifier":"allow-template-meta-recursive","description":"This allows full recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.","permissions":["read-meta","scope-template-recursive"]},"allow-template-read":{"identifier":"allow-template-read","description":"This allows non-recursive read access to the `$TEMPLATE` folder.","permissions":["read-all","scope-template"]},"allow-template-read-recursive":{"identifier":"allow-template-read-recursive","description":"This allows full recursive read access to the complete `$TEMPLATE` folder, files and subdirectories.","permissions":["read-all","scope-template-recursive"]},"allow-template-write":{"identifier":"allow-template-write","description":"This allows non-recursive write access to the `$TEMPLATE` folder.","permissions":["write-all","scope-template"]},"allow-template-write-recursive":{"identifier":"allow-template-write-recursive","description":"This allows full recursive write access to the complete `$TEMPLATE` folder, files and subdirectories.","permissions":["write-all","scope-template-recursive"]},"allow-video-meta":{"identifier":"allow-video-meta","description":"This allows non-recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.","permissions":["read-meta","scope-video-index"]},"allow-video-meta-recursive":{"identifier":"allow-video-meta-recursive","description":"This allows full recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.","permissions":["read-meta","scope-video-recursive"]},"allow-video-read":{"identifier":"allow-video-read","description":"This allows non-recursive read access to the `$VIDEO` folder.","permissions":["read-all","scope-video"]},"allow-video-read-recursive":{"identifier":"allow-video-read-recursive","description":"This allows full recursive read access to the complete `$VIDEO` folder, files and subdirectories.","permissions":["read-all","scope-video-recursive"]},"allow-video-write":{"identifier":"allow-video-write","description":"This allows non-recursive write access to the `$VIDEO` folder.","permissions":["write-all","scope-video"]},"allow-video-write-recursive":{"identifier":"allow-video-write-recursive","description":"This allows full recursive write access to the complete `$VIDEO` folder, files and subdirectories.","permissions":["write-all","scope-video-recursive"]},"deny-default":{"identifier":"deny-default","description":"This denies access to dangerous Tauri relevant files and folders by default.","permissions":["deny-webview-data-linux","deny-webview-data-windows"]}},"global_scope_schema":{"$schema":"http://json-schema.org/draft-07/schema#","anyOf":[{"description":"A path that can be accessed by the webview when using the fs APIs. FS scope path pattern.\n\nThe pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.","type":"string"},{"properties":{"path":{"description":"A path that can be accessed by the webview when using the fs APIs.\n\nThe pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.","type":"string"}},"required":["path"],"type":"object"}],"description":"FS scope entry.","title":"FsScopeEntry"}},"http":{"default_permission":{"identifier":"default","description":"This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n","permissions":["allow-fetch","allow-fetch-cancel","allow-fetch-send","allow-fetch-read-body","allow-fetch-cancel-body"]},"permissions":{"allow-fetch":{"identifier":"allow-fetch","description":"Enables the fetch command without any pre-configured scope.","commands":{"allow":["fetch"],"deny":[]}},"allow-fetch-cancel":{"identifier":"allow-fetch-cancel","description":"Enables the fetch_cancel command without any pre-configured scope.","commands":{"allow":["fetch_cancel"],"deny":[]}},"allow-fetch-cancel-body":{"identifier":"allow-fetch-cancel-body","description":"Enables the fetch_cancel_body command without any pre-configured scope.","commands":{"allow":["fetch_cancel_body"],"deny":[]}},"allow-fetch-read-body":{"identifier":"allow-fetch-read-body","description":"Enables the fetch_read_body command without any pre-configured scope.","commands":{"allow":["fetch_read_body"],"deny":[]}},"allow-fetch-send":{"identifier":"allow-fetch-send","description":"Enables the fetch_send command without any pre-configured scope.","commands":{"allow":["fetch_send"],"deny":[]}},"deny-fetch":{"identifier":"deny-fetch","description":"Denies the fetch command without any pre-configured scope.","commands":{"allow":[],"deny":["fetch"]}},"deny-fetch-cancel":{"identifier":"deny-fetch-cancel","description":"Denies the fetch_cancel command without any pre-configured scope.","commands":{"allow":[],"deny":["fetch_cancel"]}},"deny-fetch-cancel-body":{"identifier":"deny-fetch-cancel-body","description":"Denies the fetch_cancel_body command without any pre-configured scope.","commands":{"allow":[],"deny":["fetch_cancel_body"]}},"deny-fetch-read-body":{"identifier":"deny-fetch-read-body","description":"Denies the fetch_read_body command without any pre-configured scope.","commands":{"allow":[],"deny":["fetch_read_body"]}},"deny-fetch-send":{"identifier":"deny-fetch-send","description":"Denies the fetch_send command without any pre-configured scope.","commands":{"allow":[],"deny":["fetch_send"]}}},"permission_sets":{},"global_scope_schema":{"$schema":"http://json-schema.org/draft-07/schema#","anyOf":[{"description":"A URL that can be accessed by the webview when using the HTTP APIs. Wildcards can be used following the URL pattern standard.\n\nSee [the URL Pattern spec](https://urlpattern.spec.whatwg.org/) for more information.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin on port 443\n\n- \"https://*:*\" : allows all HTTPS origin on any port\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"","type":"string"},{"properties":{"url":{"description":"A URL that can be accessed by the webview when using the HTTP APIs. Wildcards can be used following the URL pattern standard.\n\nSee [the URL Pattern spec](https://urlpattern.spec.whatwg.org/) for more information.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin on port 443\n\n- \"https://*:*\" : allows all HTTPS origin on any port\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"","type":"string"}},"required":["url"],"type":"object"}],"description":"HTTP scope entry.","title":"HttpScopeEntry"}},"opener":{"default_permission":{"identifier":"default","description":"This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer","permissions":["allow-open-url","allow-reveal-item-in-dir","allow-default-urls"]},"permissions":{"allow-default-urls":{"identifier":"allow-default-urls","description":"This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"url":"mailto:*"},{"url":"tel:*"},{"url":"http://*"},{"url":"https://*"}]}},"allow-open-path":{"identifier":"allow-open-path","description":"Enables the open_path command without any pre-configured scope.","commands":{"allow":["open_path"],"deny":[]}},"allow-open-url":{"identifier":"allow-open-url","description":"Enables the open_url command without any pre-configured scope.","commands":{"allow":["open_url"],"deny":[]}},"allow-reveal-item-in-dir":{"identifier":"allow-reveal-item-in-dir","description":"Enables the reveal_item_in_dir command without any pre-configured scope.","commands":{"allow":["reveal_item_in_dir"],"deny":[]}},"deny-open-path":{"identifier":"deny-open-path","description":"Denies the open_path command without any pre-configured scope.","commands":{"allow":[],"deny":["open_path"]}},"deny-open-url":{"identifier":"deny-open-url","description":"Denies the open_url command without any pre-configured scope.","commands":{"allow":[],"deny":["open_url"]}},"deny-reveal-item-in-dir":{"identifier":"deny-reveal-item-in-dir","description":"Denies the reveal_item_in_dir command without any pre-configured scope.","commands":{"allow":[],"deny":["reveal_item_in_dir"]}}},"permission_sets":{},"global_scope_schema":{"$schema":"http://json-schema.org/draft-07/schema#","anyOf":[{"properties":{"app":{"allOf":[{"$ref":"#/definitions/Application"}],"description":"An application to open this url with, for example: firefox."},"url":{"description":"A URL that can be opened by the webview when using the Opener APIs.\n\nWildcards can be used following the UNIX glob pattern.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"","type":"string"}},"required":["url"],"type":"object"},{"properties":{"app":{"allOf":[{"$ref":"#/definitions/Application"}],"description":"An application to open this path with, for example: xdg-open."},"path":{"description":"A path that can be opened by the webview when using the Opener APIs.\n\nThe pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.","type":"string"}},"required":["path"],"type":"object"}],"definitions":{"Application":{"anyOf":[{"description":"Open in default application.","type":"null"},{"description":"If true, allow open with any application.","type":"boolean"},{"description":"Allow specific application to open with.","type":"string"}],"description":"Opener scope application."}},"description":"Opener scope entry.","title":"OpenerScopeEntry"}},"process":{"default_permission":{"identifier":"default","description":"This permission set configures which\nprocess features are by default exposed.\n\n#### Granted Permissions\n\nThis enables to quit via `allow-exit` and restart via `allow-restart`\nthe application.\n","permissions":["allow-exit","allow-restart"]},"permissions":{"allow-exit":{"identifier":"allow-exit","description":"Enables the exit command without any pre-configured scope.","commands":{"allow":["exit"],"deny":[]}},"allow-restart":{"identifier":"allow-restart","description":"Enables the restart command without any pre-configured scope.","commands":{"allow":["restart"],"deny":[]}},"deny-exit":{"identifier":"deny-exit","description":"Denies the exit command without any pre-configured scope.","commands":{"allow":[],"deny":["exit"]}},"deny-restart":{"identifier":"deny-restart","description":"Denies the restart command without any pre-configured scope.","commands":{"allow":[],"deny":["restart"]}}},"permission_sets":{},"global_scope_schema":null},"updater":{"default_permission":{"identifier":"default","description":"This permission set configures which kind of\nupdater functions are exposed to the frontend.\n\n#### Granted Permissions\n\nThe full workflow from checking for updates to installing them\nis enabled.\n\n","permissions":["allow-check","allow-download","allow-install","allow-download-and-install"]},"permissions":{"allow-check":{"identifier":"allow-check","description":"Enables the check command without any pre-configured scope.","commands":{"allow":["check"],"deny":[]}},"allow-download":{"identifier":"allow-download","description":"Enables the download command without any pre-configured scope.","commands":{"allow":["download"],"deny":[]}},"allow-download-and-install":{"identifier":"allow-download-and-install","description":"Enables the download_and_install command without any pre-configured scope.","commands":{"allow":["download_and_install"],"deny":[]}},"allow-install":{"identifier":"allow-install","description":"Enables the install command without any pre-configured scope.","commands":{"allow":["install"],"deny":[]}},"deny-check":{"identifier":"deny-check","description":"Denies the check command without any pre-configured scope.","commands":{"allow":[],"deny":["check"]}},"deny-download":{"identifier":"deny-download","description":"Denies the download command without any pre-configured scope.","commands":{"allow":[],"deny":["download"]}},"deny-download-and-install":{"identifier":"deny-download-and-install","description":"Denies the download_and_install command without any pre-configured scope.","commands":{"allow":[],"deny":["download_and_install"]}},"deny-install":{"identifier":"deny-install","description":"Denies the install command without any pre-configured scope.","commands":{"allow":[],"deny":["install"]}}},"permission_sets":{},"global_scope_schema":null}} \ No newline at end of file +{"core":{"default_permission":{"identifier":"default","description":"Default core plugins set.","permissions":["core:path:default","core:event:default","core:window:default","core:webview:default","core:app:default","core:image:default","core:resources:default","core:menu:default","core:tray:default"]},"permissions":{},"permission_sets":{},"global_scope_schema":null},"core:app":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin.","permissions":["allow-version","allow-name","allow-tauri-version","allow-identifier","allow-bundle-type","allow-register-listener","allow-remove-listener"]},"permissions":{"allow-app-hide":{"identifier":"allow-app-hide","description":"Enables the app_hide command without any pre-configured scope.","commands":{"allow":["app_hide"],"deny":[]}},"allow-app-show":{"identifier":"allow-app-show","description":"Enables the app_show command without any pre-configured scope.","commands":{"allow":["app_show"],"deny":[]}},"allow-bundle-type":{"identifier":"allow-bundle-type","description":"Enables the bundle_type command without any pre-configured scope.","commands":{"allow":["bundle_type"],"deny":[]}},"allow-default-window-icon":{"identifier":"allow-default-window-icon","description":"Enables the default_window_icon command without any pre-configured scope.","commands":{"allow":["default_window_icon"],"deny":[]}},"allow-fetch-data-store-identifiers":{"identifier":"allow-fetch-data-store-identifiers","description":"Enables the fetch_data_store_identifiers command without any pre-configured scope.","commands":{"allow":["fetch_data_store_identifiers"],"deny":[]}},"allow-identifier":{"identifier":"allow-identifier","description":"Enables the identifier command without any pre-configured scope.","commands":{"allow":["identifier"],"deny":[]}},"allow-name":{"identifier":"allow-name","description":"Enables the name command without any pre-configured scope.","commands":{"allow":["name"],"deny":[]}},"allow-register-listener":{"identifier":"allow-register-listener","description":"Enables the register_listener command without any pre-configured scope.","commands":{"allow":["register_listener"],"deny":[]}},"allow-remove-data-store":{"identifier":"allow-remove-data-store","description":"Enables the remove_data_store command without any pre-configured scope.","commands":{"allow":["remove_data_store"],"deny":[]}},"allow-remove-listener":{"identifier":"allow-remove-listener","description":"Enables the remove_listener command without any pre-configured scope.","commands":{"allow":["remove_listener"],"deny":[]}},"allow-set-app-theme":{"identifier":"allow-set-app-theme","description":"Enables the set_app_theme command without any pre-configured scope.","commands":{"allow":["set_app_theme"],"deny":[]}},"allow-set-dock-visibility":{"identifier":"allow-set-dock-visibility","description":"Enables the set_dock_visibility command without any pre-configured scope.","commands":{"allow":["set_dock_visibility"],"deny":[]}},"allow-tauri-version":{"identifier":"allow-tauri-version","description":"Enables the tauri_version command without any pre-configured scope.","commands":{"allow":["tauri_version"],"deny":[]}},"allow-version":{"identifier":"allow-version","description":"Enables the version command without any pre-configured scope.","commands":{"allow":["version"],"deny":[]}},"deny-app-hide":{"identifier":"deny-app-hide","description":"Denies the app_hide command without any pre-configured scope.","commands":{"allow":[],"deny":["app_hide"]}},"deny-app-show":{"identifier":"deny-app-show","description":"Denies the app_show command without any pre-configured scope.","commands":{"allow":[],"deny":["app_show"]}},"deny-bundle-type":{"identifier":"deny-bundle-type","description":"Denies the bundle_type command without any pre-configured scope.","commands":{"allow":[],"deny":["bundle_type"]}},"deny-default-window-icon":{"identifier":"deny-default-window-icon","description":"Denies the default_window_icon command without any pre-configured scope.","commands":{"allow":[],"deny":["default_window_icon"]}},"deny-fetch-data-store-identifiers":{"identifier":"deny-fetch-data-store-identifiers","description":"Denies the fetch_data_store_identifiers command without any pre-configured scope.","commands":{"allow":[],"deny":["fetch_data_store_identifiers"]}},"deny-identifier":{"identifier":"deny-identifier","description":"Denies the identifier command without any pre-configured scope.","commands":{"allow":[],"deny":["identifier"]}},"deny-name":{"identifier":"deny-name","description":"Denies the name command without any pre-configured scope.","commands":{"allow":[],"deny":["name"]}},"deny-register-listener":{"identifier":"deny-register-listener","description":"Denies the register_listener command without any pre-configured scope.","commands":{"allow":[],"deny":["register_listener"]}},"deny-remove-data-store":{"identifier":"deny-remove-data-store","description":"Denies the remove_data_store command without any pre-configured scope.","commands":{"allow":[],"deny":["remove_data_store"]}},"deny-remove-listener":{"identifier":"deny-remove-listener","description":"Denies the remove_listener command without any pre-configured scope.","commands":{"allow":[],"deny":["remove_listener"]}},"deny-set-app-theme":{"identifier":"deny-set-app-theme","description":"Denies the set_app_theme command without any pre-configured scope.","commands":{"allow":[],"deny":["set_app_theme"]}},"deny-set-dock-visibility":{"identifier":"deny-set-dock-visibility","description":"Denies the set_dock_visibility command without any pre-configured scope.","commands":{"allow":[],"deny":["set_dock_visibility"]}},"deny-tauri-version":{"identifier":"deny-tauri-version","description":"Denies the tauri_version command without any pre-configured scope.","commands":{"allow":[],"deny":["tauri_version"]}},"deny-version":{"identifier":"deny-version","description":"Denies the version command without any pre-configured scope.","commands":{"allow":[],"deny":["version"]}}},"permission_sets":{},"global_scope_schema":null},"core:event":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin, which enables all commands.","permissions":["allow-listen","allow-unlisten","allow-emit","allow-emit-to"]},"permissions":{"allow-emit":{"identifier":"allow-emit","description":"Enables the emit command without any pre-configured scope.","commands":{"allow":["emit"],"deny":[]}},"allow-emit-to":{"identifier":"allow-emit-to","description":"Enables the emit_to command without any pre-configured scope.","commands":{"allow":["emit_to"],"deny":[]}},"allow-listen":{"identifier":"allow-listen","description":"Enables the listen command without any pre-configured scope.","commands":{"allow":["listen"],"deny":[]}},"allow-unlisten":{"identifier":"allow-unlisten","description":"Enables the unlisten command without any pre-configured scope.","commands":{"allow":["unlisten"],"deny":[]}},"deny-emit":{"identifier":"deny-emit","description":"Denies the emit command without any pre-configured scope.","commands":{"allow":[],"deny":["emit"]}},"deny-emit-to":{"identifier":"deny-emit-to","description":"Denies the emit_to command without any pre-configured scope.","commands":{"allow":[],"deny":["emit_to"]}},"deny-listen":{"identifier":"deny-listen","description":"Denies the listen command without any pre-configured scope.","commands":{"allow":[],"deny":["listen"]}},"deny-unlisten":{"identifier":"deny-unlisten","description":"Denies the unlisten command without any pre-configured scope.","commands":{"allow":[],"deny":["unlisten"]}}},"permission_sets":{},"global_scope_schema":null},"core:image":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin, which enables all commands.","permissions":["allow-new","allow-from-bytes","allow-from-path","allow-rgba","allow-size"]},"permissions":{"allow-from-bytes":{"identifier":"allow-from-bytes","description":"Enables the from_bytes command without any pre-configured scope.","commands":{"allow":["from_bytes"],"deny":[]}},"allow-from-path":{"identifier":"allow-from-path","description":"Enables the from_path command without any pre-configured scope.","commands":{"allow":["from_path"],"deny":[]}},"allow-new":{"identifier":"allow-new","description":"Enables the new command without any pre-configured scope.","commands":{"allow":["new"],"deny":[]}},"allow-rgba":{"identifier":"allow-rgba","description":"Enables the rgba command without any pre-configured scope.","commands":{"allow":["rgba"],"deny":[]}},"allow-size":{"identifier":"allow-size","description":"Enables the size command without any pre-configured scope.","commands":{"allow":["size"],"deny":[]}},"deny-from-bytes":{"identifier":"deny-from-bytes","description":"Denies the from_bytes command without any pre-configured scope.","commands":{"allow":[],"deny":["from_bytes"]}},"deny-from-path":{"identifier":"deny-from-path","description":"Denies the from_path command without any pre-configured scope.","commands":{"allow":[],"deny":["from_path"]}},"deny-new":{"identifier":"deny-new","description":"Denies the new command without any pre-configured scope.","commands":{"allow":[],"deny":["new"]}},"deny-rgba":{"identifier":"deny-rgba","description":"Denies the rgba command without any pre-configured scope.","commands":{"allow":[],"deny":["rgba"]}},"deny-size":{"identifier":"deny-size","description":"Denies the size command without any pre-configured scope.","commands":{"allow":[],"deny":["size"]}}},"permission_sets":{},"global_scope_schema":null},"core:menu":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin, which enables all commands.","permissions":["allow-new","allow-append","allow-prepend","allow-insert","allow-remove","allow-remove-at","allow-items","allow-get","allow-popup","allow-create-default","allow-set-as-app-menu","allow-set-as-window-menu","allow-text","allow-set-text","allow-is-enabled","allow-set-enabled","allow-set-accelerator","allow-set-as-windows-menu-for-nsapp","allow-set-as-help-menu-for-nsapp","allow-is-checked","allow-set-checked","allow-set-icon"]},"permissions":{"allow-append":{"identifier":"allow-append","description":"Enables the append command without any pre-configured scope.","commands":{"allow":["append"],"deny":[]}},"allow-create-default":{"identifier":"allow-create-default","description":"Enables the create_default command without any pre-configured scope.","commands":{"allow":["create_default"],"deny":[]}},"allow-get":{"identifier":"allow-get","description":"Enables the get command without any pre-configured scope.","commands":{"allow":["get"],"deny":[]}},"allow-insert":{"identifier":"allow-insert","description":"Enables the insert command without any pre-configured scope.","commands":{"allow":["insert"],"deny":[]}},"allow-is-checked":{"identifier":"allow-is-checked","description":"Enables the is_checked command without any pre-configured scope.","commands":{"allow":["is_checked"],"deny":[]}},"allow-is-enabled":{"identifier":"allow-is-enabled","description":"Enables the is_enabled command without any pre-configured scope.","commands":{"allow":["is_enabled"],"deny":[]}},"allow-items":{"identifier":"allow-items","description":"Enables the items command without any pre-configured scope.","commands":{"allow":["items"],"deny":[]}},"allow-new":{"identifier":"allow-new","description":"Enables the new command without any pre-configured scope.","commands":{"allow":["new"],"deny":[]}},"allow-popup":{"identifier":"allow-popup","description":"Enables the popup command without any pre-configured scope.","commands":{"allow":["popup"],"deny":[]}},"allow-prepend":{"identifier":"allow-prepend","description":"Enables the prepend command without any pre-configured scope.","commands":{"allow":["prepend"],"deny":[]}},"allow-remove":{"identifier":"allow-remove","description":"Enables the remove command without any pre-configured scope.","commands":{"allow":["remove"],"deny":[]}},"allow-remove-at":{"identifier":"allow-remove-at","description":"Enables the remove_at command without any pre-configured scope.","commands":{"allow":["remove_at"],"deny":[]}},"allow-set-accelerator":{"identifier":"allow-set-accelerator","description":"Enables the set_accelerator command without any pre-configured scope.","commands":{"allow":["set_accelerator"],"deny":[]}},"allow-set-as-app-menu":{"identifier":"allow-set-as-app-menu","description":"Enables the set_as_app_menu command without any pre-configured scope.","commands":{"allow":["set_as_app_menu"],"deny":[]}},"allow-set-as-help-menu-for-nsapp":{"identifier":"allow-set-as-help-menu-for-nsapp","description":"Enables the set_as_help_menu_for_nsapp command without any pre-configured scope.","commands":{"allow":["set_as_help_menu_for_nsapp"],"deny":[]}},"allow-set-as-window-menu":{"identifier":"allow-set-as-window-menu","description":"Enables the set_as_window_menu command without any pre-configured scope.","commands":{"allow":["set_as_window_menu"],"deny":[]}},"allow-set-as-windows-menu-for-nsapp":{"identifier":"allow-set-as-windows-menu-for-nsapp","description":"Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope.","commands":{"allow":["set_as_windows_menu_for_nsapp"],"deny":[]}},"allow-set-checked":{"identifier":"allow-set-checked","description":"Enables the set_checked command without any pre-configured scope.","commands":{"allow":["set_checked"],"deny":[]}},"allow-set-enabled":{"identifier":"allow-set-enabled","description":"Enables the set_enabled command without any pre-configured scope.","commands":{"allow":["set_enabled"],"deny":[]}},"allow-set-icon":{"identifier":"allow-set-icon","description":"Enables the set_icon command without any pre-configured scope.","commands":{"allow":["set_icon"],"deny":[]}},"allow-set-text":{"identifier":"allow-set-text","description":"Enables the set_text command without any pre-configured scope.","commands":{"allow":["set_text"],"deny":[]}},"allow-text":{"identifier":"allow-text","description":"Enables the text command without any pre-configured scope.","commands":{"allow":["text"],"deny":[]}},"deny-append":{"identifier":"deny-append","description":"Denies the append command without any pre-configured scope.","commands":{"allow":[],"deny":["append"]}},"deny-create-default":{"identifier":"deny-create-default","description":"Denies the create_default command without any pre-configured scope.","commands":{"allow":[],"deny":["create_default"]}},"deny-get":{"identifier":"deny-get","description":"Denies the get command without any pre-configured scope.","commands":{"allow":[],"deny":["get"]}},"deny-insert":{"identifier":"deny-insert","description":"Denies the insert command without any pre-configured scope.","commands":{"allow":[],"deny":["insert"]}},"deny-is-checked":{"identifier":"deny-is-checked","description":"Denies the is_checked command without any pre-configured scope.","commands":{"allow":[],"deny":["is_checked"]}},"deny-is-enabled":{"identifier":"deny-is-enabled","description":"Denies the is_enabled command without any pre-configured scope.","commands":{"allow":[],"deny":["is_enabled"]}},"deny-items":{"identifier":"deny-items","description":"Denies the items command without any pre-configured scope.","commands":{"allow":[],"deny":["items"]}},"deny-new":{"identifier":"deny-new","description":"Denies the new command without any pre-configured scope.","commands":{"allow":[],"deny":["new"]}},"deny-popup":{"identifier":"deny-popup","description":"Denies the popup command without any pre-configured scope.","commands":{"allow":[],"deny":["popup"]}},"deny-prepend":{"identifier":"deny-prepend","description":"Denies the prepend command without any pre-configured scope.","commands":{"allow":[],"deny":["prepend"]}},"deny-remove":{"identifier":"deny-remove","description":"Denies the remove command without any pre-configured scope.","commands":{"allow":[],"deny":["remove"]}},"deny-remove-at":{"identifier":"deny-remove-at","description":"Denies the remove_at command without any pre-configured scope.","commands":{"allow":[],"deny":["remove_at"]}},"deny-set-accelerator":{"identifier":"deny-set-accelerator","description":"Denies the set_accelerator command without any pre-configured scope.","commands":{"allow":[],"deny":["set_accelerator"]}},"deny-set-as-app-menu":{"identifier":"deny-set-as-app-menu","description":"Denies the set_as_app_menu command without any pre-configured scope.","commands":{"allow":[],"deny":["set_as_app_menu"]}},"deny-set-as-help-menu-for-nsapp":{"identifier":"deny-set-as-help-menu-for-nsapp","description":"Denies the set_as_help_menu_for_nsapp command without any pre-configured scope.","commands":{"allow":[],"deny":["set_as_help_menu_for_nsapp"]}},"deny-set-as-window-menu":{"identifier":"deny-set-as-window-menu","description":"Denies the set_as_window_menu command without any pre-configured scope.","commands":{"allow":[],"deny":["set_as_window_menu"]}},"deny-set-as-windows-menu-for-nsapp":{"identifier":"deny-set-as-windows-menu-for-nsapp","description":"Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope.","commands":{"allow":[],"deny":["set_as_windows_menu_for_nsapp"]}},"deny-set-checked":{"identifier":"deny-set-checked","description":"Denies the set_checked command without any pre-configured scope.","commands":{"allow":[],"deny":["set_checked"]}},"deny-set-enabled":{"identifier":"deny-set-enabled","description":"Denies the set_enabled command without any pre-configured scope.","commands":{"allow":[],"deny":["set_enabled"]}},"deny-set-icon":{"identifier":"deny-set-icon","description":"Denies the set_icon command without any pre-configured scope.","commands":{"allow":[],"deny":["set_icon"]}},"deny-set-text":{"identifier":"deny-set-text","description":"Denies the set_text command without any pre-configured scope.","commands":{"allow":[],"deny":["set_text"]}},"deny-text":{"identifier":"deny-text","description":"Denies the text command without any pre-configured scope.","commands":{"allow":[],"deny":["text"]}}},"permission_sets":{},"global_scope_schema":null},"core:path":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin, which enables all commands.","permissions":["allow-resolve-directory","allow-resolve","allow-normalize","allow-join","allow-dirname","allow-extname","allow-basename","allow-is-absolute"]},"permissions":{"allow-basename":{"identifier":"allow-basename","description":"Enables the basename command without any pre-configured scope.","commands":{"allow":["basename"],"deny":[]}},"allow-dirname":{"identifier":"allow-dirname","description":"Enables the dirname command without any pre-configured scope.","commands":{"allow":["dirname"],"deny":[]}},"allow-extname":{"identifier":"allow-extname","description":"Enables the extname command without any pre-configured scope.","commands":{"allow":["extname"],"deny":[]}},"allow-is-absolute":{"identifier":"allow-is-absolute","description":"Enables the is_absolute command without any pre-configured scope.","commands":{"allow":["is_absolute"],"deny":[]}},"allow-join":{"identifier":"allow-join","description":"Enables the join command without any pre-configured scope.","commands":{"allow":["join"],"deny":[]}},"allow-normalize":{"identifier":"allow-normalize","description":"Enables the normalize command without any pre-configured scope.","commands":{"allow":["normalize"],"deny":[]}},"allow-resolve":{"identifier":"allow-resolve","description":"Enables the resolve command without any pre-configured scope.","commands":{"allow":["resolve"],"deny":[]}},"allow-resolve-directory":{"identifier":"allow-resolve-directory","description":"Enables the resolve_directory command without any pre-configured scope.","commands":{"allow":["resolve_directory"],"deny":[]}},"deny-basename":{"identifier":"deny-basename","description":"Denies the basename command without any pre-configured scope.","commands":{"allow":[],"deny":["basename"]}},"deny-dirname":{"identifier":"deny-dirname","description":"Denies the dirname command without any pre-configured scope.","commands":{"allow":[],"deny":["dirname"]}},"deny-extname":{"identifier":"deny-extname","description":"Denies the extname command without any pre-configured scope.","commands":{"allow":[],"deny":["extname"]}},"deny-is-absolute":{"identifier":"deny-is-absolute","description":"Denies the is_absolute command without any pre-configured scope.","commands":{"allow":[],"deny":["is_absolute"]}},"deny-join":{"identifier":"deny-join","description":"Denies the join command without any pre-configured scope.","commands":{"allow":[],"deny":["join"]}},"deny-normalize":{"identifier":"deny-normalize","description":"Denies the normalize command without any pre-configured scope.","commands":{"allow":[],"deny":["normalize"]}},"deny-resolve":{"identifier":"deny-resolve","description":"Denies the resolve command without any pre-configured scope.","commands":{"allow":[],"deny":["resolve"]}},"deny-resolve-directory":{"identifier":"deny-resolve-directory","description":"Denies the resolve_directory command without any pre-configured scope.","commands":{"allow":[],"deny":["resolve_directory"]}}},"permission_sets":{},"global_scope_schema":null},"core:resources":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin, which enables all commands.","permissions":["allow-close"]},"permissions":{"allow-close":{"identifier":"allow-close","description":"Enables the close command without any pre-configured scope.","commands":{"allow":["close"],"deny":[]}},"deny-close":{"identifier":"deny-close","description":"Denies the close command without any pre-configured scope.","commands":{"allow":[],"deny":["close"]}}},"permission_sets":{},"global_scope_schema":null},"core:tray":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin, which enables all commands.","permissions":["allow-new","allow-get-by-id","allow-remove-by-id","allow-set-icon","allow-set-menu","allow-set-tooltip","allow-set-title","allow-set-visible","allow-set-temp-dir-path","allow-set-icon-as-template","allow-set-show-menu-on-left-click"]},"permissions":{"allow-get-by-id":{"identifier":"allow-get-by-id","description":"Enables the get_by_id command without any pre-configured scope.","commands":{"allow":["get_by_id"],"deny":[]}},"allow-new":{"identifier":"allow-new","description":"Enables the new command without any pre-configured scope.","commands":{"allow":["new"],"deny":[]}},"allow-remove-by-id":{"identifier":"allow-remove-by-id","description":"Enables the remove_by_id command without any pre-configured scope.","commands":{"allow":["remove_by_id"],"deny":[]}},"allow-set-icon":{"identifier":"allow-set-icon","description":"Enables the set_icon command without any pre-configured scope.","commands":{"allow":["set_icon"],"deny":[]}},"allow-set-icon-as-template":{"identifier":"allow-set-icon-as-template","description":"Enables the set_icon_as_template command without any pre-configured scope.","commands":{"allow":["set_icon_as_template"],"deny":[]}},"allow-set-menu":{"identifier":"allow-set-menu","description":"Enables the set_menu command without any pre-configured scope.","commands":{"allow":["set_menu"],"deny":[]}},"allow-set-show-menu-on-left-click":{"identifier":"allow-set-show-menu-on-left-click","description":"Enables the set_show_menu_on_left_click command without any pre-configured scope.","commands":{"allow":["set_show_menu_on_left_click"],"deny":[]}},"allow-set-temp-dir-path":{"identifier":"allow-set-temp-dir-path","description":"Enables the set_temp_dir_path command without any pre-configured scope.","commands":{"allow":["set_temp_dir_path"],"deny":[]}},"allow-set-title":{"identifier":"allow-set-title","description":"Enables the set_title command without any pre-configured scope.","commands":{"allow":["set_title"],"deny":[]}},"allow-set-tooltip":{"identifier":"allow-set-tooltip","description":"Enables the set_tooltip command without any pre-configured scope.","commands":{"allow":["set_tooltip"],"deny":[]}},"allow-set-visible":{"identifier":"allow-set-visible","description":"Enables the set_visible command without any pre-configured scope.","commands":{"allow":["set_visible"],"deny":[]}},"deny-get-by-id":{"identifier":"deny-get-by-id","description":"Denies the get_by_id command without any pre-configured scope.","commands":{"allow":[],"deny":["get_by_id"]}},"deny-new":{"identifier":"deny-new","description":"Denies the new command without any pre-configured scope.","commands":{"allow":[],"deny":["new"]}},"deny-remove-by-id":{"identifier":"deny-remove-by-id","description":"Denies the remove_by_id command without any pre-configured scope.","commands":{"allow":[],"deny":["remove_by_id"]}},"deny-set-icon":{"identifier":"deny-set-icon","description":"Denies the set_icon command without any pre-configured scope.","commands":{"allow":[],"deny":["set_icon"]}},"deny-set-icon-as-template":{"identifier":"deny-set-icon-as-template","description":"Denies the set_icon_as_template command without any pre-configured scope.","commands":{"allow":[],"deny":["set_icon_as_template"]}},"deny-set-menu":{"identifier":"deny-set-menu","description":"Denies the set_menu command without any pre-configured scope.","commands":{"allow":[],"deny":["set_menu"]}},"deny-set-show-menu-on-left-click":{"identifier":"deny-set-show-menu-on-left-click","description":"Denies the set_show_menu_on_left_click command without any pre-configured scope.","commands":{"allow":[],"deny":["set_show_menu_on_left_click"]}},"deny-set-temp-dir-path":{"identifier":"deny-set-temp-dir-path","description":"Denies the set_temp_dir_path command without any pre-configured scope.","commands":{"allow":[],"deny":["set_temp_dir_path"]}},"deny-set-title":{"identifier":"deny-set-title","description":"Denies the set_title command without any pre-configured scope.","commands":{"allow":[],"deny":["set_title"]}},"deny-set-tooltip":{"identifier":"deny-set-tooltip","description":"Denies the set_tooltip command without any pre-configured scope.","commands":{"allow":[],"deny":["set_tooltip"]}},"deny-set-visible":{"identifier":"deny-set-visible","description":"Denies the set_visible command without any pre-configured scope.","commands":{"allow":[],"deny":["set_visible"]}}},"permission_sets":{},"global_scope_schema":null},"core:webview":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin.","permissions":["allow-get-all-webviews","allow-webview-position","allow-webview-size","allow-internal-toggle-devtools"]},"permissions":{"allow-clear-all-browsing-data":{"identifier":"allow-clear-all-browsing-data","description":"Enables the clear_all_browsing_data command without any pre-configured scope.","commands":{"allow":["clear_all_browsing_data"],"deny":[]}},"allow-create-webview":{"identifier":"allow-create-webview","description":"Enables the create_webview command without any pre-configured scope.","commands":{"allow":["create_webview"],"deny":[]}},"allow-create-webview-window":{"identifier":"allow-create-webview-window","description":"Enables the create_webview_window command without any pre-configured scope.","commands":{"allow":["create_webview_window"],"deny":[]}},"allow-get-all-webviews":{"identifier":"allow-get-all-webviews","description":"Enables the get_all_webviews command without any pre-configured scope.","commands":{"allow":["get_all_webviews"],"deny":[]}},"allow-internal-toggle-devtools":{"identifier":"allow-internal-toggle-devtools","description":"Enables the internal_toggle_devtools command without any pre-configured scope.","commands":{"allow":["internal_toggle_devtools"],"deny":[]}},"allow-print":{"identifier":"allow-print","description":"Enables the print command without any pre-configured scope.","commands":{"allow":["print"],"deny":[]}},"allow-reparent":{"identifier":"allow-reparent","description":"Enables the reparent command without any pre-configured scope.","commands":{"allow":["reparent"],"deny":[]}},"allow-set-webview-auto-resize":{"identifier":"allow-set-webview-auto-resize","description":"Enables the set_webview_auto_resize command without any pre-configured scope.","commands":{"allow":["set_webview_auto_resize"],"deny":[]}},"allow-set-webview-background-color":{"identifier":"allow-set-webview-background-color","description":"Enables the set_webview_background_color command without any pre-configured scope.","commands":{"allow":["set_webview_background_color"],"deny":[]}},"allow-set-webview-focus":{"identifier":"allow-set-webview-focus","description":"Enables the set_webview_focus command without any pre-configured scope.","commands":{"allow":["set_webview_focus"],"deny":[]}},"allow-set-webview-position":{"identifier":"allow-set-webview-position","description":"Enables the set_webview_position command without any pre-configured scope.","commands":{"allow":["set_webview_position"],"deny":[]}},"allow-set-webview-size":{"identifier":"allow-set-webview-size","description":"Enables the set_webview_size command without any pre-configured scope.","commands":{"allow":["set_webview_size"],"deny":[]}},"allow-set-webview-zoom":{"identifier":"allow-set-webview-zoom","description":"Enables the set_webview_zoom command without any pre-configured scope.","commands":{"allow":["set_webview_zoom"],"deny":[]}},"allow-webview-close":{"identifier":"allow-webview-close","description":"Enables the webview_close command without any pre-configured scope.","commands":{"allow":["webview_close"],"deny":[]}},"allow-webview-hide":{"identifier":"allow-webview-hide","description":"Enables the webview_hide command without any pre-configured scope.","commands":{"allow":["webview_hide"],"deny":[]}},"allow-webview-position":{"identifier":"allow-webview-position","description":"Enables the webview_position command without any pre-configured scope.","commands":{"allow":["webview_position"],"deny":[]}},"allow-webview-show":{"identifier":"allow-webview-show","description":"Enables the webview_show command without any pre-configured scope.","commands":{"allow":["webview_show"],"deny":[]}},"allow-webview-size":{"identifier":"allow-webview-size","description":"Enables the webview_size command without any pre-configured scope.","commands":{"allow":["webview_size"],"deny":[]}},"deny-clear-all-browsing-data":{"identifier":"deny-clear-all-browsing-data","description":"Denies the clear_all_browsing_data command without any pre-configured scope.","commands":{"allow":[],"deny":["clear_all_browsing_data"]}},"deny-create-webview":{"identifier":"deny-create-webview","description":"Denies the create_webview command without any pre-configured scope.","commands":{"allow":[],"deny":["create_webview"]}},"deny-create-webview-window":{"identifier":"deny-create-webview-window","description":"Denies the create_webview_window command without any pre-configured scope.","commands":{"allow":[],"deny":["create_webview_window"]}},"deny-get-all-webviews":{"identifier":"deny-get-all-webviews","description":"Denies the get_all_webviews command without any pre-configured scope.","commands":{"allow":[],"deny":["get_all_webviews"]}},"deny-internal-toggle-devtools":{"identifier":"deny-internal-toggle-devtools","description":"Denies the internal_toggle_devtools command without any pre-configured scope.","commands":{"allow":[],"deny":["internal_toggle_devtools"]}},"deny-print":{"identifier":"deny-print","description":"Denies the print command without any pre-configured scope.","commands":{"allow":[],"deny":["print"]}},"deny-reparent":{"identifier":"deny-reparent","description":"Denies the reparent command without any pre-configured scope.","commands":{"allow":[],"deny":["reparent"]}},"deny-set-webview-auto-resize":{"identifier":"deny-set-webview-auto-resize","description":"Denies the set_webview_auto_resize command without any pre-configured scope.","commands":{"allow":[],"deny":["set_webview_auto_resize"]}},"deny-set-webview-background-color":{"identifier":"deny-set-webview-background-color","description":"Denies the set_webview_background_color command without any pre-configured scope.","commands":{"allow":[],"deny":["set_webview_background_color"]}},"deny-set-webview-focus":{"identifier":"deny-set-webview-focus","description":"Denies the set_webview_focus command without any pre-configured scope.","commands":{"allow":[],"deny":["set_webview_focus"]}},"deny-set-webview-position":{"identifier":"deny-set-webview-position","description":"Denies the set_webview_position command without any pre-configured scope.","commands":{"allow":[],"deny":["set_webview_position"]}},"deny-set-webview-size":{"identifier":"deny-set-webview-size","description":"Denies the set_webview_size command without any pre-configured scope.","commands":{"allow":[],"deny":["set_webview_size"]}},"deny-set-webview-zoom":{"identifier":"deny-set-webview-zoom","description":"Denies the set_webview_zoom command without any pre-configured scope.","commands":{"allow":[],"deny":["set_webview_zoom"]}},"deny-webview-close":{"identifier":"deny-webview-close","description":"Denies the webview_close command without any pre-configured scope.","commands":{"allow":[],"deny":["webview_close"]}},"deny-webview-hide":{"identifier":"deny-webview-hide","description":"Denies the webview_hide command without any pre-configured scope.","commands":{"allow":[],"deny":["webview_hide"]}},"deny-webview-position":{"identifier":"deny-webview-position","description":"Denies the webview_position command without any pre-configured scope.","commands":{"allow":[],"deny":["webview_position"]}},"deny-webview-show":{"identifier":"deny-webview-show","description":"Denies the webview_show command without any pre-configured scope.","commands":{"allow":[],"deny":["webview_show"]}},"deny-webview-size":{"identifier":"deny-webview-size","description":"Denies the webview_size command without any pre-configured scope.","commands":{"allow":[],"deny":["webview_size"]}}},"permission_sets":{},"global_scope_schema":null},"core:window":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin.","permissions":["allow-get-all-windows","allow-scale-factor","allow-inner-position","allow-outer-position","allow-inner-size","allow-outer-size","allow-is-fullscreen","allow-is-minimized","allow-is-maximized","allow-is-focused","allow-is-decorated","allow-is-resizable","allow-is-maximizable","allow-is-minimizable","allow-is-closable","allow-is-visible","allow-is-enabled","allow-title","allow-current-monitor","allow-primary-monitor","allow-monitor-from-point","allow-available-monitors","allow-cursor-position","allow-theme","allow-is-always-on-top","allow-internal-toggle-maximize"]},"permissions":{"allow-available-monitors":{"identifier":"allow-available-monitors","description":"Enables the available_monitors command without any pre-configured scope.","commands":{"allow":["available_monitors"],"deny":[]}},"allow-center":{"identifier":"allow-center","description":"Enables the center command without any pre-configured scope.","commands":{"allow":["center"],"deny":[]}},"allow-close":{"identifier":"allow-close","description":"Enables the close command without any pre-configured scope.","commands":{"allow":["close"],"deny":[]}},"allow-create":{"identifier":"allow-create","description":"Enables the create command without any pre-configured scope.","commands":{"allow":["create"],"deny":[]}},"allow-current-monitor":{"identifier":"allow-current-monitor","description":"Enables the current_monitor command without any pre-configured scope.","commands":{"allow":["current_monitor"],"deny":[]}},"allow-cursor-position":{"identifier":"allow-cursor-position","description":"Enables the cursor_position command without any pre-configured scope.","commands":{"allow":["cursor_position"],"deny":[]}},"allow-destroy":{"identifier":"allow-destroy","description":"Enables the destroy command without any pre-configured scope.","commands":{"allow":["destroy"],"deny":[]}},"allow-get-all-windows":{"identifier":"allow-get-all-windows","description":"Enables the get_all_windows command without any pre-configured scope.","commands":{"allow":["get_all_windows"],"deny":[]}},"allow-hide":{"identifier":"allow-hide","description":"Enables the hide command without any pre-configured scope.","commands":{"allow":["hide"],"deny":[]}},"allow-inner-position":{"identifier":"allow-inner-position","description":"Enables the inner_position command without any pre-configured scope.","commands":{"allow":["inner_position"],"deny":[]}},"allow-inner-size":{"identifier":"allow-inner-size","description":"Enables the inner_size command without any pre-configured scope.","commands":{"allow":["inner_size"],"deny":[]}},"allow-internal-toggle-maximize":{"identifier":"allow-internal-toggle-maximize","description":"Enables the internal_toggle_maximize command without any pre-configured scope.","commands":{"allow":["internal_toggle_maximize"],"deny":[]}},"allow-is-always-on-top":{"identifier":"allow-is-always-on-top","description":"Enables the is_always_on_top command without any pre-configured scope.","commands":{"allow":["is_always_on_top"],"deny":[]}},"allow-is-closable":{"identifier":"allow-is-closable","description":"Enables the is_closable command without any pre-configured scope.","commands":{"allow":["is_closable"],"deny":[]}},"allow-is-decorated":{"identifier":"allow-is-decorated","description":"Enables the is_decorated command without any pre-configured scope.","commands":{"allow":["is_decorated"],"deny":[]}},"allow-is-enabled":{"identifier":"allow-is-enabled","description":"Enables the is_enabled command without any pre-configured scope.","commands":{"allow":["is_enabled"],"deny":[]}},"allow-is-focused":{"identifier":"allow-is-focused","description":"Enables the is_focused command without any pre-configured scope.","commands":{"allow":["is_focused"],"deny":[]}},"allow-is-fullscreen":{"identifier":"allow-is-fullscreen","description":"Enables the is_fullscreen command without any pre-configured scope.","commands":{"allow":["is_fullscreen"],"deny":[]}},"allow-is-maximizable":{"identifier":"allow-is-maximizable","description":"Enables the is_maximizable command without any pre-configured scope.","commands":{"allow":["is_maximizable"],"deny":[]}},"allow-is-maximized":{"identifier":"allow-is-maximized","description":"Enables the is_maximized command without any pre-configured scope.","commands":{"allow":["is_maximized"],"deny":[]}},"allow-is-minimizable":{"identifier":"allow-is-minimizable","description":"Enables the is_minimizable command without any pre-configured scope.","commands":{"allow":["is_minimizable"],"deny":[]}},"allow-is-minimized":{"identifier":"allow-is-minimized","description":"Enables the is_minimized command without any pre-configured scope.","commands":{"allow":["is_minimized"],"deny":[]}},"allow-is-resizable":{"identifier":"allow-is-resizable","description":"Enables the is_resizable command without any pre-configured scope.","commands":{"allow":["is_resizable"],"deny":[]}},"allow-is-visible":{"identifier":"allow-is-visible","description":"Enables the is_visible command without any pre-configured scope.","commands":{"allow":["is_visible"],"deny":[]}},"allow-maximize":{"identifier":"allow-maximize","description":"Enables the maximize command without any pre-configured scope.","commands":{"allow":["maximize"],"deny":[]}},"allow-minimize":{"identifier":"allow-minimize","description":"Enables the minimize command without any pre-configured scope.","commands":{"allow":["minimize"],"deny":[]}},"allow-monitor-from-point":{"identifier":"allow-monitor-from-point","description":"Enables the monitor_from_point command without any pre-configured scope.","commands":{"allow":["monitor_from_point"],"deny":[]}},"allow-outer-position":{"identifier":"allow-outer-position","description":"Enables the outer_position command without any pre-configured scope.","commands":{"allow":["outer_position"],"deny":[]}},"allow-outer-size":{"identifier":"allow-outer-size","description":"Enables the outer_size command without any pre-configured scope.","commands":{"allow":["outer_size"],"deny":[]}},"allow-primary-monitor":{"identifier":"allow-primary-monitor","description":"Enables the primary_monitor command without any pre-configured scope.","commands":{"allow":["primary_monitor"],"deny":[]}},"allow-request-user-attention":{"identifier":"allow-request-user-attention","description":"Enables the request_user_attention command without any pre-configured scope.","commands":{"allow":["request_user_attention"],"deny":[]}},"allow-scale-factor":{"identifier":"allow-scale-factor","description":"Enables the scale_factor command without any pre-configured scope.","commands":{"allow":["scale_factor"],"deny":[]}},"allow-set-always-on-bottom":{"identifier":"allow-set-always-on-bottom","description":"Enables the set_always_on_bottom command without any pre-configured scope.","commands":{"allow":["set_always_on_bottom"],"deny":[]}},"allow-set-always-on-top":{"identifier":"allow-set-always-on-top","description":"Enables the set_always_on_top command without any pre-configured scope.","commands":{"allow":["set_always_on_top"],"deny":[]}},"allow-set-background-color":{"identifier":"allow-set-background-color","description":"Enables the set_background_color command without any pre-configured scope.","commands":{"allow":["set_background_color"],"deny":[]}},"allow-set-badge-count":{"identifier":"allow-set-badge-count","description":"Enables the set_badge_count command without any pre-configured scope.","commands":{"allow":["set_badge_count"],"deny":[]}},"allow-set-badge-label":{"identifier":"allow-set-badge-label","description":"Enables the set_badge_label command without any pre-configured scope.","commands":{"allow":["set_badge_label"],"deny":[]}},"allow-set-closable":{"identifier":"allow-set-closable","description":"Enables the set_closable command without any pre-configured scope.","commands":{"allow":["set_closable"],"deny":[]}},"allow-set-content-protected":{"identifier":"allow-set-content-protected","description":"Enables the set_content_protected command without any pre-configured scope.","commands":{"allow":["set_content_protected"],"deny":[]}},"allow-set-cursor-grab":{"identifier":"allow-set-cursor-grab","description":"Enables the set_cursor_grab command without any pre-configured scope.","commands":{"allow":["set_cursor_grab"],"deny":[]}},"allow-set-cursor-icon":{"identifier":"allow-set-cursor-icon","description":"Enables the set_cursor_icon command without any pre-configured scope.","commands":{"allow":["set_cursor_icon"],"deny":[]}},"allow-set-cursor-position":{"identifier":"allow-set-cursor-position","description":"Enables the set_cursor_position command without any pre-configured scope.","commands":{"allow":["set_cursor_position"],"deny":[]}},"allow-set-cursor-visible":{"identifier":"allow-set-cursor-visible","description":"Enables the set_cursor_visible command without any pre-configured scope.","commands":{"allow":["set_cursor_visible"],"deny":[]}},"allow-set-decorations":{"identifier":"allow-set-decorations","description":"Enables the set_decorations command without any pre-configured scope.","commands":{"allow":["set_decorations"],"deny":[]}},"allow-set-effects":{"identifier":"allow-set-effects","description":"Enables the set_effects command without any pre-configured scope.","commands":{"allow":["set_effects"],"deny":[]}},"allow-set-enabled":{"identifier":"allow-set-enabled","description":"Enables the set_enabled command without any pre-configured scope.","commands":{"allow":["set_enabled"],"deny":[]}},"allow-set-focus":{"identifier":"allow-set-focus","description":"Enables the set_focus command without any pre-configured scope.","commands":{"allow":["set_focus"],"deny":[]}},"allow-set-focusable":{"identifier":"allow-set-focusable","description":"Enables the set_focusable command without any pre-configured scope.","commands":{"allow":["set_focusable"],"deny":[]}},"allow-set-fullscreen":{"identifier":"allow-set-fullscreen","description":"Enables the set_fullscreen command without any pre-configured scope.","commands":{"allow":["set_fullscreen"],"deny":[]}},"allow-set-icon":{"identifier":"allow-set-icon","description":"Enables the set_icon command without any pre-configured scope.","commands":{"allow":["set_icon"],"deny":[]}},"allow-set-ignore-cursor-events":{"identifier":"allow-set-ignore-cursor-events","description":"Enables the set_ignore_cursor_events command without any pre-configured scope.","commands":{"allow":["set_ignore_cursor_events"],"deny":[]}},"allow-set-max-size":{"identifier":"allow-set-max-size","description":"Enables the set_max_size command without any pre-configured scope.","commands":{"allow":["set_max_size"],"deny":[]}},"allow-set-maximizable":{"identifier":"allow-set-maximizable","description":"Enables the set_maximizable command without any pre-configured scope.","commands":{"allow":["set_maximizable"],"deny":[]}},"allow-set-min-size":{"identifier":"allow-set-min-size","description":"Enables the set_min_size command without any pre-configured scope.","commands":{"allow":["set_min_size"],"deny":[]}},"allow-set-minimizable":{"identifier":"allow-set-minimizable","description":"Enables the set_minimizable command without any pre-configured scope.","commands":{"allow":["set_minimizable"],"deny":[]}},"allow-set-overlay-icon":{"identifier":"allow-set-overlay-icon","description":"Enables the set_overlay_icon command without any pre-configured scope.","commands":{"allow":["set_overlay_icon"],"deny":[]}},"allow-set-position":{"identifier":"allow-set-position","description":"Enables the set_position command without any pre-configured scope.","commands":{"allow":["set_position"],"deny":[]}},"allow-set-progress-bar":{"identifier":"allow-set-progress-bar","description":"Enables the set_progress_bar command without any pre-configured scope.","commands":{"allow":["set_progress_bar"],"deny":[]}},"allow-set-resizable":{"identifier":"allow-set-resizable","description":"Enables the set_resizable command without any pre-configured scope.","commands":{"allow":["set_resizable"],"deny":[]}},"allow-set-shadow":{"identifier":"allow-set-shadow","description":"Enables the set_shadow command without any pre-configured scope.","commands":{"allow":["set_shadow"],"deny":[]}},"allow-set-simple-fullscreen":{"identifier":"allow-set-simple-fullscreen","description":"Enables the set_simple_fullscreen command without any pre-configured scope.","commands":{"allow":["set_simple_fullscreen"],"deny":[]}},"allow-set-size":{"identifier":"allow-set-size","description":"Enables the set_size command without any pre-configured scope.","commands":{"allow":["set_size"],"deny":[]}},"allow-set-size-constraints":{"identifier":"allow-set-size-constraints","description":"Enables the set_size_constraints command without any pre-configured scope.","commands":{"allow":["set_size_constraints"],"deny":[]}},"allow-set-skip-taskbar":{"identifier":"allow-set-skip-taskbar","description":"Enables the set_skip_taskbar command without any pre-configured scope.","commands":{"allow":["set_skip_taskbar"],"deny":[]}},"allow-set-theme":{"identifier":"allow-set-theme","description":"Enables the set_theme command without any pre-configured scope.","commands":{"allow":["set_theme"],"deny":[]}},"allow-set-title":{"identifier":"allow-set-title","description":"Enables the set_title command without any pre-configured scope.","commands":{"allow":["set_title"],"deny":[]}},"allow-set-title-bar-style":{"identifier":"allow-set-title-bar-style","description":"Enables the set_title_bar_style command without any pre-configured scope.","commands":{"allow":["set_title_bar_style"],"deny":[]}},"allow-set-visible-on-all-workspaces":{"identifier":"allow-set-visible-on-all-workspaces","description":"Enables the set_visible_on_all_workspaces command without any pre-configured scope.","commands":{"allow":["set_visible_on_all_workspaces"],"deny":[]}},"allow-show":{"identifier":"allow-show","description":"Enables the show command without any pre-configured scope.","commands":{"allow":["show"],"deny":[]}},"allow-start-dragging":{"identifier":"allow-start-dragging","description":"Enables the start_dragging command without any pre-configured scope.","commands":{"allow":["start_dragging"],"deny":[]}},"allow-start-resize-dragging":{"identifier":"allow-start-resize-dragging","description":"Enables the start_resize_dragging command without any pre-configured scope.","commands":{"allow":["start_resize_dragging"],"deny":[]}},"allow-theme":{"identifier":"allow-theme","description":"Enables the theme command without any pre-configured scope.","commands":{"allow":["theme"],"deny":[]}},"allow-title":{"identifier":"allow-title","description":"Enables the title command without any pre-configured scope.","commands":{"allow":["title"],"deny":[]}},"allow-toggle-maximize":{"identifier":"allow-toggle-maximize","description":"Enables the toggle_maximize command without any pre-configured scope.","commands":{"allow":["toggle_maximize"],"deny":[]}},"allow-unmaximize":{"identifier":"allow-unmaximize","description":"Enables the unmaximize command without any pre-configured scope.","commands":{"allow":["unmaximize"],"deny":[]}},"allow-unminimize":{"identifier":"allow-unminimize","description":"Enables the unminimize command without any pre-configured scope.","commands":{"allow":["unminimize"],"deny":[]}},"deny-available-monitors":{"identifier":"deny-available-monitors","description":"Denies the available_monitors command without any pre-configured scope.","commands":{"allow":[],"deny":["available_monitors"]}},"deny-center":{"identifier":"deny-center","description":"Denies the center command without any pre-configured scope.","commands":{"allow":[],"deny":["center"]}},"deny-close":{"identifier":"deny-close","description":"Denies the close command without any pre-configured scope.","commands":{"allow":[],"deny":["close"]}},"deny-create":{"identifier":"deny-create","description":"Denies the create command without any pre-configured scope.","commands":{"allow":[],"deny":["create"]}},"deny-current-monitor":{"identifier":"deny-current-monitor","description":"Denies the current_monitor command without any pre-configured scope.","commands":{"allow":[],"deny":["current_monitor"]}},"deny-cursor-position":{"identifier":"deny-cursor-position","description":"Denies the cursor_position command without any pre-configured scope.","commands":{"allow":[],"deny":["cursor_position"]}},"deny-destroy":{"identifier":"deny-destroy","description":"Denies the destroy command without any pre-configured scope.","commands":{"allow":[],"deny":["destroy"]}},"deny-get-all-windows":{"identifier":"deny-get-all-windows","description":"Denies the get_all_windows command without any pre-configured scope.","commands":{"allow":[],"deny":["get_all_windows"]}},"deny-hide":{"identifier":"deny-hide","description":"Denies the hide command without any pre-configured scope.","commands":{"allow":[],"deny":["hide"]}},"deny-inner-position":{"identifier":"deny-inner-position","description":"Denies the inner_position command without any pre-configured scope.","commands":{"allow":[],"deny":["inner_position"]}},"deny-inner-size":{"identifier":"deny-inner-size","description":"Denies the inner_size command without any pre-configured scope.","commands":{"allow":[],"deny":["inner_size"]}},"deny-internal-toggle-maximize":{"identifier":"deny-internal-toggle-maximize","description":"Denies the internal_toggle_maximize command without any pre-configured scope.","commands":{"allow":[],"deny":["internal_toggle_maximize"]}},"deny-is-always-on-top":{"identifier":"deny-is-always-on-top","description":"Denies the is_always_on_top command without any pre-configured scope.","commands":{"allow":[],"deny":["is_always_on_top"]}},"deny-is-closable":{"identifier":"deny-is-closable","description":"Denies the is_closable command without any pre-configured scope.","commands":{"allow":[],"deny":["is_closable"]}},"deny-is-decorated":{"identifier":"deny-is-decorated","description":"Denies the is_decorated command without any pre-configured scope.","commands":{"allow":[],"deny":["is_decorated"]}},"deny-is-enabled":{"identifier":"deny-is-enabled","description":"Denies the is_enabled command without any pre-configured scope.","commands":{"allow":[],"deny":["is_enabled"]}},"deny-is-focused":{"identifier":"deny-is-focused","description":"Denies the is_focused command without any pre-configured scope.","commands":{"allow":[],"deny":["is_focused"]}},"deny-is-fullscreen":{"identifier":"deny-is-fullscreen","description":"Denies the is_fullscreen command without any pre-configured scope.","commands":{"allow":[],"deny":["is_fullscreen"]}},"deny-is-maximizable":{"identifier":"deny-is-maximizable","description":"Denies the is_maximizable command without any pre-configured scope.","commands":{"allow":[],"deny":["is_maximizable"]}},"deny-is-maximized":{"identifier":"deny-is-maximized","description":"Denies the is_maximized command without any pre-configured scope.","commands":{"allow":[],"deny":["is_maximized"]}},"deny-is-minimizable":{"identifier":"deny-is-minimizable","description":"Denies the is_minimizable command without any pre-configured scope.","commands":{"allow":[],"deny":["is_minimizable"]}},"deny-is-minimized":{"identifier":"deny-is-minimized","description":"Denies the is_minimized command without any pre-configured scope.","commands":{"allow":[],"deny":["is_minimized"]}},"deny-is-resizable":{"identifier":"deny-is-resizable","description":"Denies the is_resizable command without any pre-configured scope.","commands":{"allow":[],"deny":["is_resizable"]}},"deny-is-visible":{"identifier":"deny-is-visible","description":"Denies the is_visible command without any pre-configured scope.","commands":{"allow":[],"deny":["is_visible"]}},"deny-maximize":{"identifier":"deny-maximize","description":"Denies the maximize command without any pre-configured scope.","commands":{"allow":[],"deny":["maximize"]}},"deny-minimize":{"identifier":"deny-minimize","description":"Denies the minimize command without any pre-configured scope.","commands":{"allow":[],"deny":["minimize"]}},"deny-monitor-from-point":{"identifier":"deny-monitor-from-point","description":"Denies the monitor_from_point command without any pre-configured scope.","commands":{"allow":[],"deny":["monitor_from_point"]}},"deny-outer-position":{"identifier":"deny-outer-position","description":"Denies the outer_position command without any pre-configured scope.","commands":{"allow":[],"deny":["outer_position"]}},"deny-outer-size":{"identifier":"deny-outer-size","description":"Denies the outer_size command without any pre-configured scope.","commands":{"allow":[],"deny":["outer_size"]}},"deny-primary-monitor":{"identifier":"deny-primary-monitor","description":"Denies the primary_monitor command without any pre-configured scope.","commands":{"allow":[],"deny":["primary_monitor"]}},"deny-request-user-attention":{"identifier":"deny-request-user-attention","description":"Denies the request_user_attention command without any pre-configured scope.","commands":{"allow":[],"deny":["request_user_attention"]}},"deny-scale-factor":{"identifier":"deny-scale-factor","description":"Denies the scale_factor command without any pre-configured scope.","commands":{"allow":[],"deny":["scale_factor"]}},"deny-set-always-on-bottom":{"identifier":"deny-set-always-on-bottom","description":"Denies the set_always_on_bottom command without any pre-configured scope.","commands":{"allow":[],"deny":["set_always_on_bottom"]}},"deny-set-always-on-top":{"identifier":"deny-set-always-on-top","description":"Denies the set_always_on_top command without any pre-configured scope.","commands":{"allow":[],"deny":["set_always_on_top"]}},"deny-set-background-color":{"identifier":"deny-set-background-color","description":"Denies the set_background_color command without any pre-configured scope.","commands":{"allow":[],"deny":["set_background_color"]}},"deny-set-badge-count":{"identifier":"deny-set-badge-count","description":"Denies the set_badge_count command without any pre-configured scope.","commands":{"allow":[],"deny":["set_badge_count"]}},"deny-set-badge-label":{"identifier":"deny-set-badge-label","description":"Denies the set_badge_label command without any pre-configured scope.","commands":{"allow":[],"deny":["set_badge_label"]}},"deny-set-closable":{"identifier":"deny-set-closable","description":"Denies the set_closable command without any pre-configured scope.","commands":{"allow":[],"deny":["set_closable"]}},"deny-set-content-protected":{"identifier":"deny-set-content-protected","description":"Denies the set_content_protected command without any pre-configured scope.","commands":{"allow":[],"deny":["set_content_protected"]}},"deny-set-cursor-grab":{"identifier":"deny-set-cursor-grab","description":"Denies the set_cursor_grab command without any pre-configured scope.","commands":{"allow":[],"deny":["set_cursor_grab"]}},"deny-set-cursor-icon":{"identifier":"deny-set-cursor-icon","description":"Denies the set_cursor_icon command without any pre-configured scope.","commands":{"allow":[],"deny":["set_cursor_icon"]}},"deny-set-cursor-position":{"identifier":"deny-set-cursor-position","description":"Denies the set_cursor_position command without any pre-configured scope.","commands":{"allow":[],"deny":["set_cursor_position"]}},"deny-set-cursor-visible":{"identifier":"deny-set-cursor-visible","description":"Denies the set_cursor_visible command without any pre-configured scope.","commands":{"allow":[],"deny":["set_cursor_visible"]}},"deny-set-decorations":{"identifier":"deny-set-decorations","description":"Denies the set_decorations command without any pre-configured scope.","commands":{"allow":[],"deny":["set_decorations"]}},"deny-set-effects":{"identifier":"deny-set-effects","description":"Denies the set_effects command without any pre-configured scope.","commands":{"allow":[],"deny":["set_effects"]}},"deny-set-enabled":{"identifier":"deny-set-enabled","description":"Denies the set_enabled command without any pre-configured scope.","commands":{"allow":[],"deny":["set_enabled"]}},"deny-set-focus":{"identifier":"deny-set-focus","description":"Denies the set_focus command without any pre-configured scope.","commands":{"allow":[],"deny":["set_focus"]}},"deny-set-focusable":{"identifier":"deny-set-focusable","description":"Denies the set_focusable command without any pre-configured scope.","commands":{"allow":[],"deny":["set_focusable"]}},"deny-set-fullscreen":{"identifier":"deny-set-fullscreen","description":"Denies the set_fullscreen command without any pre-configured scope.","commands":{"allow":[],"deny":["set_fullscreen"]}},"deny-set-icon":{"identifier":"deny-set-icon","description":"Denies the set_icon command without any pre-configured scope.","commands":{"allow":[],"deny":["set_icon"]}},"deny-set-ignore-cursor-events":{"identifier":"deny-set-ignore-cursor-events","description":"Denies the set_ignore_cursor_events command without any pre-configured scope.","commands":{"allow":[],"deny":["set_ignore_cursor_events"]}},"deny-set-max-size":{"identifier":"deny-set-max-size","description":"Denies the set_max_size command without any pre-configured scope.","commands":{"allow":[],"deny":["set_max_size"]}},"deny-set-maximizable":{"identifier":"deny-set-maximizable","description":"Denies the set_maximizable command without any pre-configured scope.","commands":{"allow":[],"deny":["set_maximizable"]}},"deny-set-min-size":{"identifier":"deny-set-min-size","description":"Denies the set_min_size command without any pre-configured scope.","commands":{"allow":[],"deny":["set_min_size"]}},"deny-set-minimizable":{"identifier":"deny-set-minimizable","description":"Denies the set_minimizable command without any pre-configured scope.","commands":{"allow":[],"deny":["set_minimizable"]}},"deny-set-overlay-icon":{"identifier":"deny-set-overlay-icon","description":"Denies the set_overlay_icon command without any pre-configured scope.","commands":{"allow":[],"deny":["set_overlay_icon"]}},"deny-set-position":{"identifier":"deny-set-position","description":"Denies the set_position command without any pre-configured scope.","commands":{"allow":[],"deny":["set_position"]}},"deny-set-progress-bar":{"identifier":"deny-set-progress-bar","description":"Denies the set_progress_bar command without any pre-configured scope.","commands":{"allow":[],"deny":["set_progress_bar"]}},"deny-set-resizable":{"identifier":"deny-set-resizable","description":"Denies the set_resizable command without any pre-configured scope.","commands":{"allow":[],"deny":["set_resizable"]}},"deny-set-shadow":{"identifier":"deny-set-shadow","description":"Denies the set_shadow command without any pre-configured scope.","commands":{"allow":[],"deny":["set_shadow"]}},"deny-set-simple-fullscreen":{"identifier":"deny-set-simple-fullscreen","description":"Denies the set_simple_fullscreen command without any pre-configured scope.","commands":{"allow":[],"deny":["set_simple_fullscreen"]}},"deny-set-size":{"identifier":"deny-set-size","description":"Denies the set_size command without any pre-configured scope.","commands":{"allow":[],"deny":["set_size"]}},"deny-set-size-constraints":{"identifier":"deny-set-size-constraints","description":"Denies the set_size_constraints command without any pre-configured scope.","commands":{"allow":[],"deny":["set_size_constraints"]}},"deny-set-skip-taskbar":{"identifier":"deny-set-skip-taskbar","description":"Denies the set_skip_taskbar command without any pre-configured scope.","commands":{"allow":[],"deny":["set_skip_taskbar"]}},"deny-set-theme":{"identifier":"deny-set-theme","description":"Denies the set_theme command without any pre-configured scope.","commands":{"allow":[],"deny":["set_theme"]}},"deny-set-title":{"identifier":"deny-set-title","description":"Denies the set_title command without any pre-configured scope.","commands":{"allow":[],"deny":["set_title"]}},"deny-set-title-bar-style":{"identifier":"deny-set-title-bar-style","description":"Denies the set_title_bar_style command without any pre-configured scope.","commands":{"allow":[],"deny":["set_title_bar_style"]}},"deny-set-visible-on-all-workspaces":{"identifier":"deny-set-visible-on-all-workspaces","description":"Denies the set_visible_on_all_workspaces command without any pre-configured scope.","commands":{"allow":[],"deny":["set_visible_on_all_workspaces"]}},"deny-show":{"identifier":"deny-show","description":"Denies the show command without any pre-configured scope.","commands":{"allow":[],"deny":["show"]}},"deny-start-dragging":{"identifier":"deny-start-dragging","description":"Denies the start_dragging command without any pre-configured scope.","commands":{"allow":[],"deny":["start_dragging"]}},"deny-start-resize-dragging":{"identifier":"deny-start-resize-dragging","description":"Denies the start_resize_dragging command without any pre-configured scope.","commands":{"allow":[],"deny":["start_resize_dragging"]}},"deny-theme":{"identifier":"deny-theme","description":"Denies the theme command without any pre-configured scope.","commands":{"allow":[],"deny":["theme"]}},"deny-title":{"identifier":"deny-title","description":"Denies the title command without any pre-configured scope.","commands":{"allow":[],"deny":["title"]}},"deny-toggle-maximize":{"identifier":"deny-toggle-maximize","description":"Denies the toggle_maximize command without any pre-configured scope.","commands":{"allow":[],"deny":["toggle_maximize"]}},"deny-unmaximize":{"identifier":"deny-unmaximize","description":"Denies the unmaximize command without any pre-configured scope.","commands":{"allow":[],"deny":["unmaximize"]}},"deny-unminimize":{"identifier":"deny-unminimize","description":"Denies the unminimize command without any pre-configured scope.","commands":{"allow":[],"deny":["unminimize"]}}},"permission_sets":{},"global_scope_schema":null},"dialog":{"default_permission":{"identifier":"default","description":"This permission set configures the types of dialogs\navailable from the dialog plugin.\n\n#### Granted Permissions\n\nAll dialog types are enabled.\n\n\n","permissions":["allow-ask","allow-confirm","allow-message","allow-save","allow-open"]},"permissions":{"allow-ask":{"identifier":"allow-ask","description":"Enables the ask command without any pre-configured scope.","commands":{"allow":["ask"],"deny":[]}},"allow-confirm":{"identifier":"allow-confirm","description":"Enables the confirm command without any pre-configured scope.","commands":{"allow":["confirm"],"deny":[]}},"allow-message":{"identifier":"allow-message","description":"Enables the message command without any pre-configured scope.","commands":{"allow":["message"],"deny":[]}},"allow-open":{"identifier":"allow-open","description":"Enables the open command without any pre-configured scope.","commands":{"allow":["open"],"deny":[]}},"allow-save":{"identifier":"allow-save","description":"Enables the save command without any pre-configured scope.","commands":{"allow":["save"],"deny":[]}},"deny-ask":{"identifier":"deny-ask","description":"Denies the ask command without any pre-configured scope.","commands":{"allow":[],"deny":["ask"]}},"deny-confirm":{"identifier":"deny-confirm","description":"Denies the confirm command without any pre-configured scope.","commands":{"allow":[],"deny":["confirm"]}},"deny-message":{"identifier":"deny-message","description":"Denies the message command without any pre-configured scope.","commands":{"allow":[],"deny":["message"]}},"deny-open":{"identifier":"deny-open","description":"Denies the open command without any pre-configured scope.","commands":{"allow":[],"deny":["open"]}},"deny-save":{"identifier":"deny-save","description":"Denies the save command without any pre-configured scope.","commands":{"allow":[],"deny":["save"]}}},"permission_sets":{},"global_scope_schema":null},"fs":{"default_permission":{"identifier":"default","description":"This set of permissions describes the what kind of\nfile system access the `fs` plugin has enabled or denied by default.\n\n#### Granted Permissions\n\nThis default permission set enables read access to the\napplication specific directories (AppConfig, AppData, AppLocalData, AppCache,\nAppLog) and all files and sub directories created in it.\nThe location of these directories depends on the operating system,\nwhere the application is run.\n\nIn general these directories need to be manually created\nby the application at runtime, before accessing files or folders\nin it is possible.\n\nTherefore, it is also allowed to create all of these folders via\nthe `mkdir` command.\n\n#### Denied Permissions\n\nThis default permission set prevents access to critical components\nof the Tauri application by default.\nOn Windows the webview data folder access is denied.\n","permissions":["create-app-specific-dirs","read-app-specific-dirs-recursive","deny-default"]},"permissions":{"allow-copy-file":{"identifier":"allow-copy-file","description":"Enables the copy_file command without any pre-configured scope.","commands":{"allow":["copy_file"],"deny":[]}},"allow-create":{"identifier":"allow-create","description":"Enables the create command without any pre-configured scope.","commands":{"allow":["create"],"deny":[]}},"allow-exists":{"identifier":"allow-exists","description":"Enables the exists command without any pre-configured scope.","commands":{"allow":["exists"],"deny":[]}},"allow-fstat":{"identifier":"allow-fstat","description":"Enables the fstat command without any pre-configured scope.","commands":{"allow":["fstat"],"deny":[]}},"allow-ftruncate":{"identifier":"allow-ftruncate","description":"Enables the ftruncate command without any pre-configured scope.","commands":{"allow":["ftruncate"],"deny":[]}},"allow-lstat":{"identifier":"allow-lstat","description":"Enables the lstat command without any pre-configured scope.","commands":{"allow":["lstat"],"deny":[]}},"allow-mkdir":{"identifier":"allow-mkdir","description":"Enables the mkdir command without any pre-configured scope.","commands":{"allow":["mkdir"],"deny":[]}},"allow-open":{"identifier":"allow-open","description":"Enables the open command without any pre-configured scope.","commands":{"allow":["open"],"deny":[]}},"allow-read":{"identifier":"allow-read","description":"Enables the read command without any pre-configured scope.","commands":{"allow":["read"],"deny":[]}},"allow-read-dir":{"identifier":"allow-read-dir","description":"Enables the read_dir command without any pre-configured scope.","commands":{"allow":["read_dir"],"deny":[]}},"allow-read-file":{"identifier":"allow-read-file","description":"Enables the read_file command without any pre-configured scope.","commands":{"allow":["read_file"],"deny":[]}},"allow-read-text-file":{"identifier":"allow-read-text-file","description":"Enables the read_text_file command without any pre-configured scope.","commands":{"allow":["read_text_file"],"deny":[]}},"allow-read-text-file-lines":{"identifier":"allow-read-text-file-lines","description":"Enables the read_text_file_lines command without any pre-configured scope.","commands":{"allow":["read_text_file_lines","read_text_file_lines_next"],"deny":[]}},"allow-read-text-file-lines-next":{"identifier":"allow-read-text-file-lines-next","description":"Enables the read_text_file_lines_next command without any pre-configured scope.","commands":{"allow":["read_text_file_lines_next"],"deny":[]}},"allow-remove":{"identifier":"allow-remove","description":"Enables the remove command without any pre-configured scope.","commands":{"allow":["remove"],"deny":[]}},"allow-rename":{"identifier":"allow-rename","description":"Enables the rename command without any pre-configured scope.","commands":{"allow":["rename"],"deny":[]}},"allow-seek":{"identifier":"allow-seek","description":"Enables the seek command without any pre-configured scope.","commands":{"allow":["seek"],"deny":[]}},"allow-size":{"identifier":"allow-size","description":"Enables the size command without any pre-configured scope.","commands":{"allow":["size"],"deny":[]}},"allow-stat":{"identifier":"allow-stat","description":"Enables the stat command without any pre-configured scope.","commands":{"allow":["stat"],"deny":[]}},"allow-truncate":{"identifier":"allow-truncate","description":"Enables the truncate command without any pre-configured scope.","commands":{"allow":["truncate"],"deny":[]}},"allow-unwatch":{"identifier":"allow-unwatch","description":"Enables the unwatch command without any pre-configured scope.","commands":{"allow":["unwatch"],"deny":[]}},"allow-watch":{"identifier":"allow-watch","description":"Enables the watch command without any pre-configured scope.","commands":{"allow":["watch"],"deny":[]}},"allow-write":{"identifier":"allow-write","description":"Enables the write command without any pre-configured scope.","commands":{"allow":["write"],"deny":[]}},"allow-write-file":{"identifier":"allow-write-file","description":"Enables the write_file command without any pre-configured scope.","commands":{"allow":["write_file","open","write"],"deny":[]}},"allow-write-text-file":{"identifier":"allow-write-text-file","description":"Enables the write_text_file command without any pre-configured scope.","commands":{"allow":["write_text_file"],"deny":[]}},"create-app-specific-dirs":{"identifier":"create-app-specific-dirs","description":"This permissions allows to create the application specific directories.\n","commands":{"allow":["mkdir","scope-app-index"],"deny":[]}},"deny-copy-file":{"identifier":"deny-copy-file","description":"Denies the copy_file command without any pre-configured scope.","commands":{"allow":[],"deny":["copy_file"]}},"deny-create":{"identifier":"deny-create","description":"Denies the create command without any pre-configured scope.","commands":{"allow":[],"deny":["create"]}},"deny-exists":{"identifier":"deny-exists","description":"Denies the exists command without any pre-configured scope.","commands":{"allow":[],"deny":["exists"]}},"deny-fstat":{"identifier":"deny-fstat","description":"Denies the fstat command without any pre-configured scope.","commands":{"allow":[],"deny":["fstat"]}},"deny-ftruncate":{"identifier":"deny-ftruncate","description":"Denies the ftruncate command without any pre-configured scope.","commands":{"allow":[],"deny":["ftruncate"]}},"deny-lstat":{"identifier":"deny-lstat","description":"Denies the lstat command without any pre-configured scope.","commands":{"allow":[],"deny":["lstat"]}},"deny-mkdir":{"identifier":"deny-mkdir","description":"Denies the mkdir command without any pre-configured scope.","commands":{"allow":[],"deny":["mkdir"]}},"deny-open":{"identifier":"deny-open","description":"Denies the open command without any pre-configured scope.","commands":{"allow":[],"deny":["open"]}},"deny-read":{"identifier":"deny-read","description":"Denies the read command without any pre-configured scope.","commands":{"allow":[],"deny":["read"]}},"deny-read-dir":{"identifier":"deny-read-dir","description":"Denies the read_dir command without any pre-configured scope.","commands":{"allow":[],"deny":["read_dir"]}},"deny-read-file":{"identifier":"deny-read-file","description":"Denies the read_file command without any pre-configured scope.","commands":{"allow":[],"deny":["read_file"]}},"deny-read-text-file":{"identifier":"deny-read-text-file","description":"Denies the read_text_file command without any pre-configured scope.","commands":{"allow":[],"deny":["read_text_file"]}},"deny-read-text-file-lines":{"identifier":"deny-read-text-file-lines","description":"Denies the read_text_file_lines command without any pre-configured scope.","commands":{"allow":[],"deny":["read_text_file_lines"]}},"deny-read-text-file-lines-next":{"identifier":"deny-read-text-file-lines-next","description":"Denies the read_text_file_lines_next command without any pre-configured scope.","commands":{"allow":[],"deny":["read_text_file_lines_next"]}},"deny-remove":{"identifier":"deny-remove","description":"Denies the remove command without any pre-configured scope.","commands":{"allow":[],"deny":["remove"]}},"deny-rename":{"identifier":"deny-rename","description":"Denies the rename command without any pre-configured scope.","commands":{"allow":[],"deny":["rename"]}},"deny-seek":{"identifier":"deny-seek","description":"Denies the seek command without any pre-configured scope.","commands":{"allow":[],"deny":["seek"]}},"deny-size":{"identifier":"deny-size","description":"Denies the size command without any pre-configured scope.","commands":{"allow":[],"deny":["size"]}},"deny-stat":{"identifier":"deny-stat","description":"Denies the stat command without any pre-configured scope.","commands":{"allow":[],"deny":["stat"]}},"deny-truncate":{"identifier":"deny-truncate","description":"Denies the truncate command without any pre-configured scope.","commands":{"allow":[],"deny":["truncate"]}},"deny-unwatch":{"identifier":"deny-unwatch","description":"Denies the unwatch command without any pre-configured scope.","commands":{"allow":[],"deny":["unwatch"]}},"deny-watch":{"identifier":"deny-watch","description":"Denies the watch command without any pre-configured scope.","commands":{"allow":[],"deny":["watch"]}},"deny-webview-data-linux":{"identifier":"deny-webview-data-linux","description":"This denies read access to the\n`$APPLOCALDATA` folder on linux as the webview data and configuration values are stored here.\nAllowing access can lead to sensitive information disclosure and should be well considered.","commands":{"allow":[],"deny":[]}},"deny-webview-data-windows":{"identifier":"deny-webview-data-windows","description":"This denies read access to the\n`$APPLOCALDATA/EBWebView` folder on windows as the webview data and configuration values are stored here.\nAllowing access can lead to sensitive information disclosure and should be well considered.","commands":{"allow":[],"deny":[]}},"deny-write":{"identifier":"deny-write","description":"Denies the write command without any pre-configured scope.","commands":{"allow":[],"deny":["write"]}},"deny-write-file":{"identifier":"deny-write-file","description":"Denies the write_file command without any pre-configured scope.","commands":{"allow":[],"deny":["write_file"]}},"deny-write-text-file":{"identifier":"deny-write-text-file","description":"Denies the write_text_file command without any pre-configured scope.","commands":{"allow":[],"deny":["write_text_file"]}},"read-all":{"identifier":"read-all","description":"This enables all read related commands without any pre-configured accessible paths.","commands":{"allow":["read_dir","read_file","read","open","read_text_file","read_text_file_lines","read_text_file_lines_next","seek","stat","lstat","fstat","exists","watch","unwatch"],"deny":[]}},"read-app-specific-dirs-recursive":{"identifier":"read-app-specific-dirs-recursive","description":"This permission allows recursive read functionality on the application\nspecific base directories. \n","commands":{"allow":["read_dir","read_file","read_text_file","read_text_file_lines","read_text_file_lines_next","exists","scope-app-recursive"],"deny":[]}},"read-dirs":{"identifier":"read-dirs","description":"This enables directory read and file metadata related commands without any pre-configured accessible paths.","commands":{"allow":["read_dir","stat","lstat","fstat","exists"],"deny":[]}},"read-files":{"identifier":"read-files","description":"This enables file read related commands without any pre-configured accessible paths.","commands":{"allow":["read_file","read","open","read_text_file","read_text_file_lines","read_text_file_lines_next","seek","stat","lstat","fstat","exists"],"deny":[]}},"read-meta":{"identifier":"read-meta","description":"This enables all index or metadata related commands without any pre-configured accessible paths.","commands":{"allow":["read_dir","stat","lstat","fstat","exists","size"],"deny":[]}},"scope":{"identifier":"scope","description":"An empty permission you can use to modify the global scope.\n\n## Example\n\n```json\n{\n \"identifier\": \"read-documents\",\n \"windows\": [\"main\"],\n \"permissions\": [\n \"fs:allow-read\",\n {\n \"identifier\": \"fs:scope\",\n \"allow\": [\n \"$APPDATA/documents/**/*\"\n ],\n \"deny\": [\n \"$APPDATA/documents/secret.txt\"\n ]\n }\n ]\n}\n```\n","commands":{"allow":[],"deny":[]}},"scope-app":{"identifier":"scope-app","description":"This scope permits access to all files and list content of top level directories in the application folders.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPCONFIG"},{"path":"$APPCONFIG/*"},{"path":"$APPDATA"},{"path":"$APPDATA/*"},{"path":"$APPLOCALDATA"},{"path":"$APPLOCALDATA/*"},{"path":"$APPCACHE"},{"path":"$APPCACHE/*"},{"path":"$APPLOG"},{"path":"$APPLOG/*"}]}},"scope-app-index":{"identifier":"scope-app-index","description":"This scope permits to list all files and folders in the application directories.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPCONFIG"},{"path":"$APPDATA"},{"path":"$APPLOCALDATA"},{"path":"$APPCACHE"},{"path":"$APPLOG"}]}},"scope-app-recursive":{"identifier":"scope-app-recursive","description":"This scope permits recursive access to the complete application folders, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPCONFIG"},{"path":"$APPCONFIG/**"},{"path":"$APPDATA"},{"path":"$APPDATA/**"},{"path":"$APPLOCALDATA"},{"path":"$APPLOCALDATA/**"},{"path":"$APPCACHE"},{"path":"$APPCACHE/**"},{"path":"$APPLOG"},{"path":"$APPLOG/**"}]}},"scope-appcache":{"identifier":"scope-appcache","description":"This scope permits access to all files and list content of top level directories in the `$APPCACHE` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPCACHE"},{"path":"$APPCACHE/*"}]}},"scope-appcache-index":{"identifier":"scope-appcache-index","description":"This scope permits to list all files and folders in the `$APPCACHE`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPCACHE"}]}},"scope-appcache-recursive":{"identifier":"scope-appcache-recursive","description":"This scope permits recursive access to the complete `$APPCACHE` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPCACHE"},{"path":"$APPCACHE/**"}]}},"scope-appconfig":{"identifier":"scope-appconfig","description":"This scope permits access to all files and list content of top level directories in the `$APPCONFIG` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPCONFIG"},{"path":"$APPCONFIG/*"}]}},"scope-appconfig-index":{"identifier":"scope-appconfig-index","description":"This scope permits to list all files and folders in the `$APPCONFIG`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPCONFIG"}]}},"scope-appconfig-recursive":{"identifier":"scope-appconfig-recursive","description":"This scope permits recursive access to the complete `$APPCONFIG` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPCONFIG"},{"path":"$APPCONFIG/**"}]}},"scope-appdata":{"identifier":"scope-appdata","description":"This scope permits access to all files and list content of top level directories in the `$APPDATA` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPDATA"},{"path":"$APPDATA/*"}]}},"scope-appdata-index":{"identifier":"scope-appdata-index","description":"This scope permits to list all files and folders in the `$APPDATA`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPDATA"}]}},"scope-appdata-recursive":{"identifier":"scope-appdata-recursive","description":"This scope permits recursive access to the complete `$APPDATA` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPDATA"},{"path":"$APPDATA/**"}]}},"scope-applocaldata":{"identifier":"scope-applocaldata","description":"This scope permits access to all files and list content of top level directories in the `$APPLOCALDATA` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPLOCALDATA"},{"path":"$APPLOCALDATA/*"}]}},"scope-applocaldata-index":{"identifier":"scope-applocaldata-index","description":"This scope permits to list all files and folders in the `$APPLOCALDATA`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPLOCALDATA"}]}},"scope-applocaldata-recursive":{"identifier":"scope-applocaldata-recursive","description":"This scope permits recursive access to the complete `$APPLOCALDATA` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPLOCALDATA"},{"path":"$APPLOCALDATA/**"}]}},"scope-applog":{"identifier":"scope-applog","description":"This scope permits access to all files and list content of top level directories in the `$APPLOG` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPLOG"},{"path":"$APPLOG/*"}]}},"scope-applog-index":{"identifier":"scope-applog-index","description":"This scope permits to list all files and folders in the `$APPLOG`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPLOG"}]}},"scope-applog-recursive":{"identifier":"scope-applog-recursive","description":"This scope permits recursive access to the complete `$APPLOG` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$APPLOG"},{"path":"$APPLOG/**"}]}},"scope-audio":{"identifier":"scope-audio","description":"This scope permits access to all files and list content of top level directories in the `$AUDIO` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$AUDIO"},{"path":"$AUDIO/*"}]}},"scope-audio-index":{"identifier":"scope-audio-index","description":"This scope permits to list all files and folders in the `$AUDIO`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$AUDIO"}]}},"scope-audio-recursive":{"identifier":"scope-audio-recursive","description":"This scope permits recursive access to the complete `$AUDIO` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$AUDIO"},{"path":"$AUDIO/**"}]}},"scope-cache":{"identifier":"scope-cache","description":"This scope permits access to all files and list content of top level directories in the `$CACHE` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$CACHE"},{"path":"$CACHE/*"}]}},"scope-cache-index":{"identifier":"scope-cache-index","description":"This scope permits to list all files and folders in the `$CACHE`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$CACHE"}]}},"scope-cache-recursive":{"identifier":"scope-cache-recursive","description":"This scope permits recursive access to the complete `$CACHE` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$CACHE"},{"path":"$CACHE/**"}]}},"scope-config":{"identifier":"scope-config","description":"This scope permits access to all files and list content of top level directories in the `$CONFIG` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$CONFIG"},{"path":"$CONFIG/*"}]}},"scope-config-index":{"identifier":"scope-config-index","description":"This scope permits to list all files and folders in the `$CONFIG`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$CONFIG"}]}},"scope-config-recursive":{"identifier":"scope-config-recursive","description":"This scope permits recursive access to the complete `$CONFIG` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$CONFIG"},{"path":"$CONFIG/**"}]}},"scope-data":{"identifier":"scope-data","description":"This scope permits access to all files and list content of top level directories in the `$DATA` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DATA"},{"path":"$DATA/*"}]}},"scope-data-index":{"identifier":"scope-data-index","description":"This scope permits to list all files and folders in the `$DATA`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DATA"}]}},"scope-data-recursive":{"identifier":"scope-data-recursive","description":"This scope permits recursive access to the complete `$DATA` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DATA"},{"path":"$DATA/**"}]}},"scope-desktop":{"identifier":"scope-desktop","description":"This scope permits access to all files and list content of top level directories in the `$DESKTOP` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DESKTOP"},{"path":"$DESKTOP/*"}]}},"scope-desktop-index":{"identifier":"scope-desktop-index","description":"This scope permits to list all files and folders in the `$DESKTOP`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DESKTOP"}]}},"scope-desktop-recursive":{"identifier":"scope-desktop-recursive","description":"This scope permits recursive access to the complete `$DESKTOP` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DESKTOP"},{"path":"$DESKTOP/**"}]}},"scope-document":{"identifier":"scope-document","description":"This scope permits access to all files and list content of top level directories in the `$DOCUMENT` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DOCUMENT"},{"path":"$DOCUMENT/*"}]}},"scope-document-index":{"identifier":"scope-document-index","description":"This scope permits to list all files and folders in the `$DOCUMENT`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DOCUMENT"}]}},"scope-document-recursive":{"identifier":"scope-document-recursive","description":"This scope permits recursive access to the complete `$DOCUMENT` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DOCUMENT"},{"path":"$DOCUMENT/**"}]}},"scope-download":{"identifier":"scope-download","description":"This scope permits access to all files and list content of top level directories in the `$DOWNLOAD` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DOWNLOAD"},{"path":"$DOWNLOAD/*"}]}},"scope-download-index":{"identifier":"scope-download-index","description":"This scope permits to list all files and folders in the `$DOWNLOAD`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DOWNLOAD"}]}},"scope-download-recursive":{"identifier":"scope-download-recursive","description":"This scope permits recursive access to the complete `$DOWNLOAD` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$DOWNLOAD"},{"path":"$DOWNLOAD/**"}]}},"scope-exe":{"identifier":"scope-exe","description":"This scope permits access to all files and list content of top level directories in the `$EXE` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$EXE"},{"path":"$EXE/*"}]}},"scope-exe-index":{"identifier":"scope-exe-index","description":"This scope permits to list all files and folders in the `$EXE`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$EXE"}]}},"scope-exe-recursive":{"identifier":"scope-exe-recursive","description":"This scope permits recursive access to the complete `$EXE` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$EXE"},{"path":"$EXE/**"}]}},"scope-font":{"identifier":"scope-font","description":"This scope permits access to all files and list content of top level directories in the `$FONT` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$FONT"},{"path":"$FONT/*"}]}},"scope-font-index":{"identifier":"scope-font-index","description":"This scope permits to list all files and folders in the `$FONT`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$FONT"}]}},"scope-font-recursive":{"identifier":"scope-font-recursive","description":"This scope permits recursive access to the complete `$FONT` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$FONT"},{"path":"$FONT/**"}]}},"scope-home":{"identifier":"scope-home","description":"This scope permits access to all files and list content of top level directories in the `$HOME` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$HOME"},{"path":"$HOME/*"}]}},"scope-home-index":{"identifier":"scope-home-index","description":"This scope permits to list all files and folders in the `$HOME`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$HOME"}]}},"scope-home-recursive":{"identifier":"scope-home-recursive","description":"This scope permits recursive access to the complete `$HOME` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$HOME"},{"path":"$HOME/**"}]}},"scope-localdata":{"identifier":"scope-localdata","description":"This scope permits access to all files and list content of top level directories in the `$LOCALDATA` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$LOCALDATA"},{"path":"$LOCALDATA/*"}]}},"scope-localdata-index":{"identifier":"scope-localdata-index","description":"This scope permits to list all files and folders in the `$LOCALDATA`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$LOCALDATA"}]}},"scope-localdata-recursive":{"identifier":"scope-localdata-recursive","description":"This scope permits recursive access to the complete `$LOCALDATA` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$LOCALDATA"},{"path":"$LOCALDATA/**"}]}},"scope-log":{"identifier":"scope-log","description":"This scope permits access to all files and list content of top level directories in the `$LOG` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$LOG"},{"path":"$LOG/*"}]}},"scope-log-index":{"identifier":"scope-log-index","description":"This scope permits to list all files and folders in the `$LOG`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$LOG"}]}},"scope-log-recursive":{"identifier":"scope-log-recursive","description":"This scope permits recursive access to the complete `$LOG` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$LOG"},{"path":"$LOG/**"}]}},"scope-picture":{"identifier":"scope-picture","description":"This scope permits access to all files and list content of top level directories in the `$PICTURE` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$PICTURE"},{"path":"$PICTURE/*"}]}},"scope-picture-index":{"identifier":"scope-picture-index","description":"This scope permits to list all files and folders in the `$PICTURE`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$PICTURE"}]}},"scope-picture-recursive":{"identifier":"scope-picture-recursive","description":"This scope permits recursive access to the complete `$PICTURE` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$PICTURE"},{"path":"$PICTURE/**"}]}},"scope-public":{"identifier":"scope-public","description":"This scope permits access to all files and list content of top level directories in the `$PUBLIC` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$PUBLIC"},{"path":"$PUBLIC/*"}]}},"scope-public-index":{"identifier":"scope-public-index","description":"This scope permits to list all files and folders in the `$PUBLIC`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$PUBLIC"}]}},"scope-public-recursive":{"identifier":"scope-public-recursive","description":"This scope permits recursive access to the complete `$PUBLIC` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$PUBLIC"},{"path":"$PUBLIC/**"}]}},"scope-resource":{"identifier":"scope-resource","description":"This scope permits access to all files and list content of top level directories in the `$RESOURCE` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$RESOURCE"},{"path":"$RESOURCE/*"}]}},"scope-resource-index":{"identifier":"scope-resource-index","description":"This scope permits to list all files and folders in the `$RESOURCE`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$RESOURCE"}]}},"scope-resource-recursive":{"identifier":"scope-resource-recursive","description":"This scope permits recursive access to the complete `$RESOURCE` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$RESOURCE"},{"path":"$RESOURCE/**"}]}},"scope-runtime":{"identifier":"scope-runtime","description":"This scope permits access to all files and list content of top level directories in the `$RUNTIME` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$RUNTIME"},{"path":"$RUNTIME/*"}]}},"scope-runtime-index":{"identifier":"scope-runtime-index","description":"This scope permits to list all files and folders in the `$RUNTIME`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$RUNTIME"}]}},"scope-runtime-recursive":{"identifier":"scope-runtime-recursive","description":"This scope permits recursive access to the complete `$RUNTIME` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$RUNTIME"},{"path":"$RUNTIME/**"}]}},"scope-temp":{"identifier":"scope-temp","description":"This scope permits access to all files and list content of top level directories in the `$TEMP` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$TEMP"},{"path":"$TEMP/*"}]}},"scope-temp-index":{"identifier":"scope-temp-index","description":"This scope permits to list all files and folders in the `$TEMP`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$TEMP"}]}},"scope-temp-recursive":{"identifier":"scope-temp-recursive","description":"This scope permits recursive access to the complete `$TEMP` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$TEMP"},{"path":"$TEMP/**"}]}},"scope-template":{"identifier":"scope-template","description":"This scope permits access to all files and list content of top level directories in the `$TEMPLATE` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$TEMPLATE"},{"path":"$TEMPLATE/*"}]}},"scope-template-index":{"identifier":"scope-template-index","description":"This scope permits to list all files and folders in the `$TEMPLATE`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$TEMPLATE"}]}},"scope-template-recursive":{"identifier":"scope-template-recursive","description":"This scope permits recursive access to the complete `$TEMPLATE` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$TEMPLATE"},{"path":"$TEMPLATE/**"}]}},"scope-video":{"identifier":"scope-video","description":"This scope permits access to all files and list content of top level directories in the `$VIDEO` folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$VIDEO"},{"path":"$VIDEO/*"}]}},"scope-video-index":{"identifier":"scope-video-index","description":"This scope permits to list all files and folders in the `$VIDEO`folder.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$VIDEO"}]}},"scope-video-recursive":{"identifier":"scope-video-recursive","description":"This scope permits recursive access to the complete `$VIDEO` folder, including sub directories and files.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"path":"$VIDEO"},{"path":"$VIDEO/**"}]}},"write-all":{"identifier":"write-all","description":"This enables all write related commands without any pre-configured accessible paths.","commands":{"allow":["mkdir","create","copy_file","remove","rename","truncate","ftruncate","write","write_file","write_text_file"],"deny":[]}},"write-files":{"identifier":"write-files","description":"This enables all file write related commands without any pre-configured accessible paths.","commands":{"allow":["create","copy_file","remove","rename","truncate","ftruncate","write","write_file","write_text_file"],"deny":[]}}},"permission_sets":{"allow-app-meta":{"identifier":"allow-app-meta","description":"This allows non-recursive read access to metadata of the application folders, including file listing and statistics.","permissions":["read-meta","scope-app-index"]},"allow-app-meta-recursive":{"identifier":"allow-app-meta-recursive","description":"This allows full recursive read access to metadata of the application folders, including file listing and statistics.","permissions":["read-meta","scope-app-recursive"]},"allow-app-read":{"identifier":"allow-app-read","description":"This allows non-recursive read access to the application folders.","permissions":["read-all","scope-app"]},"allow-app-read-recursive":{"identifier":"allow-app-read-recursive","description":"This allows full recursive read access to the complete application folders, files and subdirectories.","permissions":["read-all","scope-app-recursive"]},"allow-app-write":{"identifier":"allow-app-write","description":"This allows non-recursive write access to the application folders.","permissions":["write-all","scope-app"]},"allow-app-write-recursive":{"identifier":"allow-app-write-recursive","description":"This allows full recursive write access to the complete application folders, files and subdirectories.","permissions":["write-all","scope-app-recursive"]},"allow-appcache-meta":{"identifier":"allow-appcache-meta","description":"This allows non-recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.","permissions":["read-meta","scope-appcache-index"]},"allow-appcache-meta-recursive":{"identifier":"allow-appcache-meta-recursive","description":"This allows full recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.","permissions":["read-meta","scope-appcache-recursive"]},"allow-appcache-read":{"identifier":"allow-appcache-read","description":"This allows non-recursive read access to the `$APPCACHE` folder.","permissions":["read-all","scope-appcache"]},"allow-appcache-read-recursive":{"identifier":"allow-appcache-read-recursive","description":"This allows full recursive read access to the complete `$APPCACHE` folder, files and subdirectories.","permissions":["read-all","scope-appcache-recursive"]},"allow-appcache-write":{"identifier":"allow-appcache-write","description":"This allows non-recursive write access to the `$APPCACHE` folder.","permissions":["write-all","scope-appcache"]},"allow-appcache-write-recursive":{"identifier":"allow-appcache-write-recursive","description":"This allows full recursive write access to the complete `$APPCACHE` folder, files and subdirectories.","permissions":["write-all","scope-appcache-recursive"]},"allow-appconfig-meta":{"identifier":"allow-appconfig-meta","description":"This allows non-recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.","permissions":["read-meta","scope-appconfig-index"]},"allow-appconfig-meta-recursive":{"identifier":"allow-appconfig-meta-recursive","description":"This allows full recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.","permissions":["read-meta","scope-appconfig-recursive"]},"allow-appconfig-read":{"identifier":"allow-appconfig-read","description":"This allows non-recursive read access to the `$APPCONFIG` folder.","permissions":["read-all","scope-appconfig"]},"allow-appconfig-read-recursive":{"identifier":"allow-appconfig-read-recursive","description":"This allows full recursive read access to the complete `$APPCONFIG` folder, files and subdirectories.","permissions":["read-all","scope-appconfig-recursive"]},"allow-appconfig-write":{"identifier":"allow-appconfig-write","description":"This allows non-recursive write access to the `$APPCONFIG` folder.","permissions":["write-all","scope-appconfig"]},"allow-appconfig-write-recursive":{"identifier":"allow-appconfig-write-recursive","description":"This allows full recursive write access to the complete `$APPCONFIG` folder, files and subdirectories.","permissions":["write-all","scope-appconfig-recursive"]},"allow-appdata-meta":{"identifier":"allow-appdata-meta","description":"This allows non-recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.","permissions":["read-meta","scope-appdata-index"]},"allow-appdata-meta-recursive":{"identifier":"allow-appdata-meta-recursive","description":"This allows full recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.","permissions":["read-meta","scope-appdata-recursive"]},"allow-appdata-read":{"identifier":"allow-appdata-read","description":"This allows non-recursive read access to the `$APPDATA` folder.","permissions":["read-all","scope-appdata"]},"allow-appdata-read-recursive":{"identifier":"allow-appdata-read-recursive","description":"This allows full recursive read access to the complete `$APPDATA` folder, files and subdirectories.","permissions":["read-all","scope-appdata-recursive"]},"allow-appdata-write":{"identifier":"allow-appdata-write","description":"This allows non-recursive write access to the `$APPDATA` folder.","permissions":["write-all","scope-appdata"]},"allow-appdata-write-recursive":{"identifier":"allow-appdata-write-recursive","description":"This allows full recursive write access to the complete `$APPDATA` folder, files and subdirectories.","permissions":["write-all","scope-appdata-recursive"]},"allow-applocaldata-meta":{"identifier":"allow-applocaldata-meta","description":"This allows non-recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.","permissions":["read-meta","scope-applocaldata-index"]},"allow-applocaldata-meta-recursive":{"identifier":"allow-applocaldata-meta-recursive","description":"This allows full recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.","permissions":["read-meta","scope-applocaldata-recursive"]},"allow-applocaldata-read":{"identifier":"allow-applocaldata-read","description":"This allows non-recursive read access to the `$APPLOCALDATA` folder.","permissions":["read-all","scope-applocaldata"]},"allow-applocaldata-read-recursive":{"identifier":"allow-applocaldata-read-recursive","description":"This allows full recursive read access to the complete `$APPLOCALDATA` folder, files and subdirectories.","permissions":["read-all","scope-applocaldata-recursive"]},"allow-applocaldata-write":{"identifier":"allow-applocaldata-write","description":"This allows non-recursive write access to the `$APPLOCALDATA` folder.","permissions":["write-all","scope-applocaldata"]},"allow-applocaldata-write-recursive":{"identifier":"allow-applocaldata-write-recursive","description":"This allows full recursive write access to the complete `$APPLOCALDATA` folder, files and subdirectories.","permissions":["write-all","scope-applocaldata-recursive"]},"allow-applog-meta":{"identifier":"allow-applog-meta","description":"This allows non-recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.","permissions":["read-meta","scope-applog-index"]},"allow-applog-meta-recursive":{"identifier":"allow-applog-meta-recursive","description":"This allows full recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.","permissions":["read-meta","scope-applog-recursive"]},"allow-applog-read":{"identifier":"allow-applog-read","description":"This allows non-recursive read access to the `$APPLOG` folder.","permissions":["read-all","scope-applog"]},"allow-applog-read-recursive":{"identifier":"allow-applog-read-recursive","description":"This allows full recursive read access to the complete `$APPLOG` folder, files and subdirectories.","permissions":["read-all","scope-applog-recursive"]},"allow-applog-write":{"identifier":"allow-applog-write","description":"This allows non-recursive write access to the `$APPLOG` folder.","permissions":["write-all","scope-applog"]},"allow-applog-write-recursive":{"identifier":"allow-applog-write-recursive","description":"This allows full recursive write access to the complete `$APPLOG` folder, files and subdirectories.","permissions":["write-all","scope-applog-recursive"]},"allow-audio-meta":{"identifier":"allow-audio-meta","description":"This allows non-recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.","permissions":["read-meta","scope-audio-index"]},"allow-audio-meta-recursive":{"identifier":"allow-audio-meta-recursive","description":"This allows full recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.","permissions":["read-meta","scope-audio-recursive"]},"allow-audio-read":{"identifier":"allow-audio-read","description":"This allows non-recursive read access to the `$AUDIO` folder.","permissions":["read-all","scope-audio"]},"allow-audio-read-recursive":{"identifier":"allow-audio-read-recursive","description":"This allows full recursive read access to the complete `$AUDIO` folder, files and subdirectories.","permissions":["read-all","scope-audio-recursive"]},"allow-audio-write":{"identifier":"allow-audio-write","description":"This allows non-recursive write access to the `$AUDIO` folder.","permissions":["write-all","scope-audio"]},"allow-audio-write-recursive":{"identifier":"allow-audio-write-recursive","description":"This allows full recursive write access to the complete `$AUDIO` folder, files and subdirectories.","permissions":["write-all","scope-audio-recursive"]},"allow-cache-meta":{"identifier":"allow-cache-meta","description":"This allows non-recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.","permissions":["read-meta","scope-cache-index"]},"allow-cache-meta-recursive":{"identifier":"allow-cache-meta-recursive","description":"This allows full recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.","permissions":["read-meta","scope-cache-recursive"]},"allow-cache-read":{"identifier":"allow-cache-read","description":"This allows non-recursive read access to the `$CACHE` folder.","permissions":["read-all","scope-cache"]},"allow-cache-read-recursive":{"identifier":"allow-cache-read-recursive","description":"This allows full recursive read access to the complete `$CACHE` folder, files and subdirectories.","permissions":["read-all","scope-cache-recursive"]},"allow-cache-write":{"identifier":"allow-cache-write","description":"This allows non-recursive write access to the `$CACHE` folder.","permissions":["write-all","scope-cache"]},"allow-cache-write-recursive":{"identifier":"allow-cache-write-recursive","description":"This allows full recursive write access to the complete `$CACHE` folder, files and subdirectories.","permissions":["write-all","scope-cache-recursive"]},"allow-config-meta":{"identifier":"allow-config-meta","description":"This allows non-recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.","permissions":["read-meta","scope-config-index"]},"allow-config-meta-recursive":{"identifier":"allow-config-meta-recursive","description":"This allows full recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.","permissions":["read-meta","scope-config-recursive"]},"allow-config-read":{"identifier":"allow-config-read","description":"This allows non-recursive read access to the `$CONFIG` folder.","permissions":["read-all","scope-config"]},"allow-config-read-recursive":{"identifier":"allow-config-read-recursive","description":"This allows full recursive read access to the complete `$CONFIG` folder, files and subdirectories.","permissions":["read-all","scope-config-recursive"]},"allow-config-write":{"identifier":"allow-config-write","description":"This allows non-recursive write access to the `$CONFIG` folder.","permissions":["write-all","scope-config"]},"allow-config-write-recursive":{"identifier":"allow-config-write-recursive","description":"This allows full recursive write access to the complete `$CONFIG` folder, files and subdirectories.","permissions":["write-all","scope-config-recursive"]},"allow-data-meta":{"identifier":"allow-data-meta","description":"This allows non-recursive read access to metadata of the `$DATA` folder, including file listing and statistics.","permissions":["read-meta","scope-data-index"]},"allow-data-meta-recursive":{"identifier":"allow-data-meta-recursive","description":"This allows full recursive read access to metadata of the `$DATA` folder, including file listing and statistics.","permissions":["read-meta","scope-data-recursive"]},"allow-data-read":{"identifier":"allow-data-read","description":"This allows non-recursive read access to the `$DATA` folder.","permissions":["read-all","scope-data"]},"allow-data-read-recursive":{"identifier":"allow-data-read-recursive","description":"This allows full recursive read access to the complete `$DATA` folder, files and subdirectories.","permissions":["read-all","scope-data-recursive"]},"allow-data-write":{"identifier":"allow-data-write","description":"This allows non-recursive write access to the `$DATA` folder.","permissions":["write-all","scope-data"]},"allow-data-write-recursive":{"identifier":"allow-data-write-recursive","description":"This allows full recursive write access to the complete `$DATA` folder, files and subdirectories.","permissions":["write-all","scope-data-recursive"]},"allow-desktop-meta":{"identifier":"allow-desktop-meta","description":"This allows non-recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.","permissions":["read-meta","scope-desktop-index"]},"allow-desktop-meta-recursive":{"identifier":"allow-desktop-meta-recursive","description":"This allows full recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.","permissions":["read-meta","scope-desktop-recursive"]},"allow-desktop-read":{"identifier":"allow-desktop-read","description":"This allows non-recursive read access to the `$DESKTOP` folder.","permissions":["read-all","scope-desktop"]},"allow-desktop-read-recursive":{"identifier":"allow-desktop-read-recursive","description":"This allows full recursive read access to the complete `$DESKTOP` folder, files and subdirectories.","permissions":["read-all","scope-desktop-recursive"]},"allow-desktop-write":{"identifier":"allow-desktop-write","description":"This allows non-recursive write access to the `$DESKTOP` folder.","permissions":["write-all","scope-desktop"]},"allow-desktop-write-recursive":{"identifier":"allow-desktop-write-recursive","description":"This allows full recursive write access to the complete `$DESKTOP` folder, files and subdirectories.","permissions":["write-all","scope-desktop-recursive"]},"allow-document-meta":{"identifier":"allow-document-meta","description":"This allows non-recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.","permissions":["read-meta","scope-document-index"]},"allow-document-meta-recursive":{"identifier":"allow-document-meta-recursive","description":"This allows full recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.","permissions":["read-meta","scope-document-recursive"]},"allow-document-read":{"identifier":"allow-document-read","description":"This allows non-recursive read access to the `$DOCUMENT` folder.","permissions":["read-all","scope-document"]},"allow-document-read-recursive":{"identifier":"allow-document-read-recursive","description":"This allows full recursive read access to the complete `$DOCUMENT` folder, files and subdirectories.","permissions":["read-all","scope-document-recursive"]},"allow-document-write":{"identifier":"allow-document-write","description":"This allows non-recursive write access to the `$DOCUMENT` folder.","permissions":["write-all","scope-document"]},"allow-document-write-recursive":{"identifier":"allow-document-write-recursive","description":"This allows full recursive write access to the complete `$DOCUMENT` folder, files and subdirectories.","permissions":["write-all","scope-document-recursive"]},"allow-download-meta":{"identifier":"allow-download-meta","description":"This allows non-recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.","permissions":["read-meta","scope-download-index"]},"allow-download-meta-recursive":{"identifier":"allow-download-meta-recursive","description":"This allows full recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.","permissions":["read-meta","scope-download-recursive"]},"allow-download-read":{"identifier":"allow-download-read","description":"This allows non-recursive read access to the `$DOWNLOAD` folder.","permissions":["read-all","scope-download"]},"allow-download-read-recursive":{"identifier":"allow-download-read-recursive","description":"This allows full recursive read access to the complete `$DOWNLOAD` folder, files and subdirectories.","permissions":["read-all","scope-download-recursive"]},"allow-download-write":{"identifier":"allow-download-write","description":"This allows non-recursive write access to the `$DOWNLOAD` folder.","permissions":["write-all","scope-download"]},"allow-download-write-recursive":{"identifier":"allow-download-write-recursive","description":"This allows full recursive write access to the complete `$DOWNLOAD` folder, files and subdirectories.","permissions":["write-all","scope-download-recursive"]},"allow-exe-meta":{"identifier":"allow-exe-meta","description":"This allows non-recursive read access to metadata of the `$EXE` folder, including file listing and statistics.","permissions":["read-meta","scope-exe-index"]},"allow-exe-meta-recursive":{"identifier":"allow-exe-meta-recursive","description":"This allows full recursive read access to metadata of the `$EXE` folder, including file listing and statistics.","permissions":["read-meta","scope-exe-recursive"]},"allow-exe-read":{"identifier":"allow-exe-read","description":"This allows non-recursive read access to the `$EXE` folder.","permissions":["read-all","scope-exe"]},"allow-exe-read-recursive":{"identifier":"allow-exe-read-recursive","description":"This allows full recursive read access to the complete `$EXE` folder, files and subdirectories.","permissions":["read-all","scope-exe-recursive"]},"allow-exe-write":{"identifier":"allow-exe-write","description":"This allows non-recursive write access to the `$EXE` folder.","permissions":["write-all","scope-exe"]},"allow-exe-write-recursive":{"identifier":"allow-exe-write-recursive","description":"This allows full recursive write access to the complete `$EXE` folder, files and subdirectories.","permissions":["write-all","scope-exe-recursive"]},"allow-font-meta":{"identifier":"allow-font-meta","description":"This allows non-recursive read access to metadata of the `$FONT` folder, including file listing and statistics.","permissions":["read-meta","scope-font-index"]},"allow-font-meta-recursive":{"identifier":"allow-font-meta-recursive","description":"This allows full recursive read access to metadata of the `$FONT` folder, including file listing and statistics.","permissions":["read-meta","scope-font-recursive"]},"allow-font-read":{"identifier":"allow-font-read","description":"This allows non-recursive read access to the `$FONT` folder.","permissions":["read-all","scope-font"]},"allow-font-read-recursive":{"identifier":"allow-font-read-recursive","description":"This allows full recursive read access to the complete `$FONT` folder, files and subdirectories.","permissions":["read-all","scope-font-recursive"]},"allow-font-write":{"identifier":"allow-font-write","description":"This allows non-recursive write access to the `$FONT` folder.","permissions":["write-all","scope-font"]},"allow-font-write-recursive":{"identifier":"allow-font-write-recursive","description":"This allows full recursive write access to the complete `$FONT` folder, files and subdirectories.","permissions":["write-all","scope-font-recursive"]},"allow-home-meta":{"identifier":"allow-home-meta","description":"This allows non-recursive read access to metadata of the `$HOME` folder, including file listing and statistics.","permissions":["read-meta","scope-home-index"]},"allow-home-meta-recursive":{"identifier":"allow-home-meta-recursive","description":"This allows full recursive read access to metadata of the `$HOME` folder, including file listing and statistics.","permissions":["read-meta","scope-home-recursive"]},"allow-home-read":{"identifier":"allow-home-read","description":"This allows non-recursive read access to the `$HOME` folder.","permissions":["read-all","scope-home"]},"allow-home-read-recursive":{"identifier":"allow-home-read-recursive","description":"This allows full recursive read access to the complete `$HOME` folder, files and subdirectories.","permissions":["read-all","scope-home-recursive"]},"allow-home-write":{"identifier":"allow-home-write","description":"This allows non-recursive write access to the `$HOME` folder.","permissions":["write-all","scope-home"]},"allow-home-write-recursive":{"identifier":"allow-home-write-recursive","description":"This allows full recursive write access to the complete `$HOME` folder, files and subdirectories.","permissions":["write-all","scope-home-recursive"]},"allow-localdata-meta":{"identifier":"allow-localdata-meta","description":"This allows non-recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.","permissions":["read-meta","scope-localdata-index"]},"allow-localdata-meta-recursive":{"identifier":"allow-localdata-meta-recursive","description":"This allows full recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.","permissions":["read-meta","scope-localdata-recursive"]},"allow-localdata-read":{"identifier":"allow-localdata-read","description":"This allows non-recursive read access to the `$LOCALDATA` folder.","permissions":["read-all","scope-localdata"]},"allow-localdata-read-recursive":{"identifier":"allow-localdata-read-recursive","description":"This allows full recursive read access to the complete `$LOCALDATA` folder, files and subdirectories.","permissions":["read-all","scope-localdata-recursive"]},"allow-localdata-write":{"identifier":"allow-localdata-write","description":"This allows non-recursive write access to the `$LOCALDATA` folder.","permissions":["write-all","scope-localdata"]},"allow-localdata-write-recursive":{"identifier":"allow-localdata-write-recursive","description":"This allows full recursive write access to the complete `$LOCALDATA` folder, files and subdirectories.","permissions":["write-all","scope-localdata-recursive"]},"allow-log-meta":{"identifier":"allow-log-meta","description":"This allows non-recursive read access to metadata of the `$LOG` folder, including file listing and statistics.","permissions":["read-meta","scope-log-index"]},"allow-log-meta-recursive":{"identifier":"allow-log-meta-recursive","description":"This allows full recursive read access to metadata of the `$LOG` folder, including file listing and statistics.","permissions":["read-meta","scope-log-recursive"]},"allow-log-read":{"identifier":"allow-log-read","description":"This allows non-recursive read access to the `$LOG` folder.","permissions":["read-all","scope-log"]},"allow-log-read-recursive":{"identifier":"allow-log-read-recursive","description":"This allows full recursive read access to the complete `$LOG` folder, files and subdirectories.","permissions":["read-all","scope-log-recursive"]},"allow-log-write":{"identifier":"allow-log-write","description":"This allows non-recursive write access to the `$LOG` folder.","permissions":["write-all","scope-log"]},"allow-log-write-recursive":{"identifier":"allow-log-write-recursive","description":"This allows full recursive write access to the complete `$LOG` folder, files and subdirectories.","permissions":["write-all","scope-log-recursive"]},"allow-picture-meta":{"identifier":"allow-picture-meta","description":"This allows non-recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.","permissions":["read-meta","scope-picture-index"]},"allow-picture-meta-recursive":{"identifier":"allow-picture-meta-recursive","description":"This allows full recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.","permissions":["read-meta","scope-picture-recursive"]},"allow-picture-read":{"identifier":"allow-picture-read","description":"This allows non-recursive read access to the `$PICTURE` folder.","permissions":["read-all","scope-picture"]},"allow-picture-read-recursive":{"identifier":"allow-picture-read-recursive","description":"This allows full recursive read access to the complete `$PICTURE` folder, files and subdirectories.","permissions":["read-all","scope-picture-recursive"]},"allow-picture-write":{"identifier":"allow-picture-write","description":"This allows non-recursive write access to the `$PICTURE` folder.","permissions":["write-all","scope-picture"]},"allow-picture-write-recursive":{"identifier":"allow-picture-write-recursive","description":"This allows full recursive write access to the complete `$PICTURE` folder, files and subdirectories.","permissions":["write-all","scope-picture-recursive"]},"allow-public-meta":{"identifier":"allow-public-meta","description":"This allows non-recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.","permissions":["read-meta","scope-public-index"]},"allow-public-meta-recursive":{"identifier":"allow-public-meta-recursive","description":"This allows full recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.","permissions":["read-meta","scope-public-recursive"]},"allow-public-read":{"identifier":"allow-public-read","description":"This allows non-recursive read access to the `$PUBLIC` folder.","permissions":["read-all","scope-public"]},"allow-public-read-recursive":{"identifier":"allow-public-read-recursive","description":"This allows full recursive read access to the complete `$PUBLIC` folder, files and subdirectories.","permissions":["read-all","scope-public-recursive"]},"allow-public-write":{"identifier":"allow-public-write","description":"This allows non-recursive write access to the `$PUBLIC` folder.","permissions":["write-all","scope-public"]},"allow-public-write-recursive":{"identifier":"allow-public-write-recursive","description":"This allows full recursive write access to the complete `$PUBLIC` folder, files and subdirectories.","permissions":["write-all","scope-public-recursive"]},"allow-resource-meta":{"identifier":"allow-resource-meta","description":"This allows non-recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.","permissions":["read-meta","scope-resource-index"]},"allow-resource-meta-recursive":{"identifier":"allow-resource-meta-recursive","description":"This allows full recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.","permissions":["read-meta","scope-resource-recursive"]},"allow-resource-read":{"identifier":"allow-resource-read","description":"This allows non-recursive read access to the `$RESOURCE` folder.","permissions":["read-all","scope-resource"]},"allow-resource-read-recursive":{"identifier":"allow-resource-read-recursive","description":"This allows full recursive read access to the complete `$RESOURCE` folder, files and subdirectories.","permissions":["read-all","scope-resource-recursive"]},"allow-resource-write":{"identifier":"allow-resource-write","description":"This allows non-recursive write access to the `$RESOURCE` folder.","permissions":["write-all","scope-resource"]},"allow-resource-write-recursive":{"identifier":"allow-resource-write-recursive","description":"This allows full recursive write access to the complete `$RESOURCE` folder, files and subdirectories.","permissions":["write-all","scope-resource-recursive"]},"allow-runtime-meta":{"identifier":"allow-runtime-meta","description":"This allows non-recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.","permissions":["read-meta","scope-runtime-index"]},"allow-runtime-meta-recursive":{"identifier":"allow-runtime-meta-recursive","description":"This allows full recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.","permissions":["read-meta","scope-runtime-recursive"]},"allow-runtime-read":{"identifier":"allow-runtime-read","description":"This allows non-recursive read access to the `$RUNTIME` folder.","permissions":["read-all","scope-runtime"]},"allow-runtime-read-recursive":{"identifier":"allow-runtime-read-recursive","description":"This allows full recursive read access to the complete `$RUNTIME` folder, files and subdirectories.","permissions":["read-all","scope-runtime-recursive"]},"allow-runtime-write":{"identifier":"allow-runtime-write","description":"This allows non-recursive write access to the `$RUNTIME` folder.","permissions":["write-all","scope-runtime"]},"allow-runtime-write-recursive":{"identifier":"allow-runtime-write-recursive","description":"This allows full recursive write access to the complete `$RUNTIME` folder, files and subdirectories.","permissions":["write-all","scope-runtime-recursive"]},"allow-temp-meta":{"identifier":"allow-temp-meta","description":"This allows non-recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.","permissions":["read-meta","scope-temp-index"]},"allow-temp-meta-recursive":{"identifier":"allow-temp-meta-recursive","description":"This allows full recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.","permissions":["read-meta","scope-temp-recursive"]},"allow-temp-read":{"identifier":"allow-temp-read","description":"This allows non-recursive read access to the `$TEMP` folder.","permissions":["read-all","scope-temp"]},"allow-temp-read-recursive":{"identifier":"allow-temp-read-recursive","description":"This allows full recursive read access to the complete `$TEMP` folder, files and subdirectories.","permissions":["read-all","scope-temp-recursive"]},"allow-temp-write":{"identifier":"allow-temp-write","description":"This allows non-recursive write access to the `$TEMP` folder.","permissions":["write-all","scope-temp"]},"allow-temp-write-recursive":{"identifier":"allow-temp-write-recursive","description":"This allows full recursive write access to the complete `$TEMP` folder, files and subdirectories.","permissions":["write-all","scope-temp-recursive"]},"allow-template-meta":{"identifier":"allow-template-meta","description":"This allows non-recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.","permissions":["read-meta","scope-template-index"]},"allow-template-meta-recursive":{"identifier":"allow-template-meta-recursive","description":"This allows full recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.","permissions":["read-meta","scope-template-recursive"]},"allow-template-read":{"identifier":"allow-template-read","description":"This allows non-recursive read access to the `$TEMPLATE` folder.","permissions":["read-all","scope-template"]},"allow-template-read-recursive":{"identifier":"allow-template-read-recursive","description":"This allows full recursive read access to the complete `$TEMPLATE` folder, files and subdirectories.","permissions":["read-all","scope-template-recursive"]},"allow-template-write":{"identifier":"allow-template-write","description":"This allows non-recursive write access to the `$TEMPLATE` folder.","permissions":["write-all","scope-template"]},"allow-template-write-recursive":{"identifier":"allow-template-write-recursive","description":"This allows full recursive write access to the complete `$TEMPLATE` folder, files and subdirectories.","permissions":["write-all","scope-template-recursive"]},"allow-video-meta":{"identifier":"allow-video-meta","description":"This allows non-recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.","permissions":["read-meta","scope-video-index"]},"allow-video-meta-recursive":{"identifier":"allow-video-meta-recursive","description":"This allows full recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.","permissions":["read-meta","scope-video-recursive"]},"allow-video-read":{"identifier":"allow-video-read","description":"This allows non-recursive read access to the `$VIDEO` folder.","permissions":["read-all","scope-video"]},"allow-video-read-recursive":{"identifier":"allow-video-read-recursive","description":"This allows full recursive read access to the complete `$VIDEO` folder, files and subdirectories.","permissions":["read-all","scope-video-recursive"]},"allow-video-write":{"identifier":"allow-video-write","description":"This allows non-recursive write access to the `$VIDEO` folder.","permissions":["write-all","scope-video"]},"allow-video-write-recursive":{"identifier":"allow-video-write-recursive","description":"This allows full recursive write access to the complete `$VIDEO` folder, files and subdirectories.","permissions":["write-all","scope-video-recursive"]},"deny-default":{"identifier":"deny-default","description":"This denies access to dangerous Tauri relevant files and folders by default.","permissions":["deny-webview-data-linux","deny-webview-data-windows"]}},"global_scope_schema":{"$schema":"http://json-schema.org/draft-07/schema#","anyOf":[{"description":"A path that can be accessed by the webview when using the fs APIs. FS scope path pattern.\n\nThe pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.","type":"string"},{"properties":{"path":{"description":"A path that can be accessed by the webview when using the fs APIs.\n\nThe pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.","type":"string"}},"required":["path"],"type":"object"}],"description":"FS scope entry.","title":"FsScopeEntry"}},"http":{"default_permission":{"identifier":"default","description":"This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n","permissions":["allow-fetch","allow-fetch-cancel","allow-fetch-send","allow-fetch-read-body","allow-fetch-cancel-body"]},"permissions":{"allow-fetch":{"identifier":"allow-fetch","description":"Enables the fetch command without any pre-configured scope.","commands":{"allow":["fetch"],"deny":[]}},"allow-fetch-cancel":{"identifier":"allow-fetch-cancel","description":"Enables the fetch_cancel command without any pre-configured scope.","commands":{"allow":["fetch_cancel"],"deny":[]}},"allow-fetch-cancel-body":{"identifier":"allow-fetch-cancel-body","description":"Enables the fetch_cancel_body command without any pre-configured scope.","commands":{"allow":["fetch_cancel_body"],"deny":[]}},"allow-fetch-read-body":{"identifier":"allow-fetch-read-body","description":"Enables the fetch_read_body command without any pre-configured scope.","commands":{"allow":["fetch_read_body"],"deny":[]}},"allow-fetch-send":{"identifier":"allow-fetch-send","description":"Enables the fetch_send command without any pre-configured scope.","commands":{"allow":["fetch_send"],"deny":[]}},"deny-fetch":{"identifier":"deny-fetch","description":"Denies the fetch command without any pre-configured scope.","commands":{"allow":[],"deny":["fetch"]}},"deny-fetch-cancel":{"identifier":"deny-fetch-cancel","description":"Denies the fetch_cancel command without any pre-configured scope.","commands":{"allow":[],"deny":["fetch_cancel"]}},"deny-fetch-cancel-body":{"identifier":"deny-fetch-cancel-body","description":"Denies the fetch_cancel_body command without any pre-configured scope.","commands":{"allow":[],"deny":["fetch_cancel_body"]}},"deny-fetch-read-body":{"identifier":"deny-fetch-read-body","description":"Denies the fetch_read_body command without any pre-configured scope.","commands":{"allow":[],"deny":["fetch_read_body"]}},"deny-fetch-send":{"identifier":"deny-fetch-send","description":"Denies the fetch_send command without any pre-configured scope.","commands":{"allow":[],"deny":["fetch_send"]}}},"permission_sets":{},"global_scope_schema":{"$schema":"http://json-schema.org/draft-07/schema#","anyOf":[{"description":"A URL that can be accessed by the webview when using the HTTP APIs. Wildcards can be used following the URL pattern standard.\n\nSee [the URL Pattern spec](https://urlpattern.spec.whatwg.org/) for more information.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin on port 443\n\n- \"https://*:*\" : allows all HTTPS origin on any port\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"","type":"string"},{"properties":{"url":{"description":"A URL that can be accessed by the webview when using the HTTP APIs. Wildcards can be used following the URL pattern standard.\n\nSee [the URL Pattern spec](https://urlpattern.spec.whatwg.org/) for more information.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin on port 443\n\n- \"https://*:*\" : allows all HTTPS origin on any port\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"","type":"string"}},"required":["url"],"type":"object"}],"description":"HTTP scope entry.","title":"HttpScopeEntry"}},"opener":{"default_permission":{"identifier":"default","description":"This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer","permissions":["allow-open-url","allow-reveal-item-in-dir","allow-default-urls"]},"permissions":{"allow-default-urls":{"identifier":"allow-default-urls","description":"This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"url":"mailto:*"},{"url":"tel:*"},{"url":"http://*"},{"url":"https://*"}]}},"allow-open-path":{"identifier":"allow-open-path","description":"Enables the open_path command without any pre-configured scope.","commands":{"allow":["open_path"],"deny":[]}},"allow-open-url":{"identifier":"allow-open-url","description":"Enables the open_url command without any pre-configured scope.","commands":{"allow":["open_url"],"deny":[]}},"allow-reveal-item-in-dir":{"identifier":"allow-reveal-item-in-dir","description":"Enables the reveal_item_in_dir command without any pre-configured scope.","commands":{"allow":["reveal_item_in_dir"],"deny":[]}},"deny-open-path":{"identifier":"deny-open-path","description":"Denies the open_path command without any pre-configured scope.","commands":{"allow":[],"deny":["open_path"]}},"deny-open-url":{"identifier":"deny-open-url","description":"Denies the open_url command without any pre-configured scope.","commands":{"allow":[],"deny":["open_url"]}},"deny-reveal-item-in-dir":{"identifier":"deny-reveal-item-in-dir","description":"Denies the reveal_item_in_dir command without any pre-configured scope.","commands":{"allow":[],"deny":["reveal_item_in_dir"]}}},"permission_sets":{},"global_scope_schema":{"$schema":"http://json-schema.org/draft-07/schema#","anyOf":[{"properties":{"app":{"allOf":[{"$ref":"#/definitions/Application"}],"description":"An application to open this url with, for example: firefox."},"url":{"description":"A URL that can be opened by the webview when using the Opener APIs.\n\nWildcards can be used following the UNIX glob pattern.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"","type":"string"}},"required":["url"],"type":"object"},{"properties":{"app":{"allOf":[{"$ref":"#/definitions/Application"}],"description":"An application to open this path with, for example: xdg-open."},"path":{"description":"A path that can be opened by the webview when using the Opener APIs.\n\nThe pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.","type":"string"}},"required":["path"],"type":"object"}],"definitions":{"Application":{"anyOf":[{"description":"Open in default application.","type":"null"},{"description":"If true, allow open with any application.","type":"boolean"},{"description":"Allow specific application to open with.","type":"string"}],"description":"Opener scope application."}},"description":"Opener scope entry.","title":"OpenerScopeEntry"}},"process":{"default_permission":{"identifier":"default","description":"This permission set configures which\nprocess features are by default exposed.\n\n#### Granted Permissions\n\nThis enables to quit via `allow-exit` and restart via `allow-restart`\nthe application.\n","permissions":["allow-exit","allow-restart"]},"permissions":{"allow-exit":{"identifier":"allow-exit","description":"Enables the exit command without any pre-configured scope.","commands":{"allow":["exit"],"deny":[]}},"allow-restart":{"identifier":"allow-restart","description":"Enables the restart command without any pre-configured scope.","commands":{"allow":["restart"],"deny":[]}},"deny-exit":{"identifier":"deny-exit","description":"Denies the exit command without any pre-configured scope.","commands":{"allow":[],"deny":["exit"]}},"deny-restart":{"identifier":"deny-restart","description":"Denies the restart command without any pre-configured scope.","commands":{"allow":[],"deny":["restart"]}}},"permission_sets":{},"global_scope_schema":null},"shell":{"default_permission":{"identifier":"default","description":"This permission set configures which\nshell functionality is exposed by default.\n\n#### Granted Permissions\n\nIt allows to use the `open` functionality with a reasonable\nscope pre-configured. It will allow opening `http(s)://`,\n`tel:` and `mailto:` links.\n","permissions":["allow-open"]},"permissions":{"allow-execute":{"identifier":"allow-execute","description":"Enables the execute command without any pre-configured scope.","commands":{"allow":["execute"],"deny":[]}},"allow-kill":{"identifier":"allow-kill","description":"Enables the kill command without any pre-configured scope.","commands":{"allow":["kill"],"deny":[]}},"allow-open":{"identifier":"allow-open","description":"Enables the open command without any pre-configured scope.","commands":{"allow":["open"],"deny":[]}},"allow-spawn":{"identifier":"allow-spawn","description":"Enables the spawn command without any pre-configured scope.","commands":{"allow":["spawn"],"deny":[]}},"allow-stdin-write":{"identifier":"allow-stdin-write","description":"Enables the stdin_write command without any pre-configured scope.","commands":{"allow":["stdin_write"],"deny":[]}},"deny-execute":{"identifier":"deny-execute","description":"Denies the execute command without any pre-configured scope.","commands":{"allow":[],"deny":["execute"]}},"deny-kill":{"identifier":"deny-kill","description":"Denies the kill command without any pre-configured scope.","commands":{"allow":[],"deny":["kill"]}},"deny-open":{"identifier":"deny-open","description":"Denies the open command without any pre-configured scope.","commands":{"allow":[],"deny":["open"]}},"deny-spawn":{"identifier":"deny-spawn","description":"Denies the spawn command without any pre-configured scope.","commands":{"allow":[],"deny":["spawn"]}},"deny-stdin-write":{"identifier":"deny-stdin-write","description":"Denies the stdin_write command without any pre-configured scope.","commands":{"allow":[],"deny":["stdin_write"]}}},"permission_sets":{},"global_scope_schema":{"$schema":"http://json-schema.org/draft-07/schema#","anyOf":[{"additionalProperties":false,"properties":{"args":{"allOf":[{"$ref":"#/definitions/ShellScopeEntryAllowedArgs"}],"description":"The allowed arguments for the command execution."},"cmd":{"description":"The command name. It can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.","type":"string"},"name":{"description":"The name for this allowed shell command configuration.\n\nThis name will be used inside of the webview API to call this command along with any specified arguments.","type":"string"}},"required":["cmd","name"],"type":"object"},{"additionalProperties":false,"properties":{"args":{"allOf":[{"$ref":"#/definitions/ShellScopeEntryAllowedArgs"}],"description":"The allowed arguments for the command execution."},"name":{"description":"The name for this allowed shell command configuration.\n\nThis name will be used inside of the webview API to call this command along with any specified arguments.","type":"string"},"sidecar":{"description":"If this command is a sidecar command.","type":"boolean"}},"required":["name","sidecar"],"type":"object"}],"definitions":{"ShellScopeEntryAllowedArg":{"anyOf":[{"description":"A non-configurable argument that is passed to the command in the order it was specified.","type":"string"},{"additionalProperties":false,"description":"A variable that is set while calling the command from the webview API.","properties":{"raw":{"default":false,"description":"Marks the validator as a raw regex, meaning the plugin should not make any modification at runtime.\n\nThis means the regex will not match on the entire string by default, which might be exploited if your regex allow unexpected input to be considered valid. When using this option, make sure your regex is correct.","type":"boolean"},"validator":{"description":"[regex] validator to require passed values to conform to an expected input.\n\nThis will require the argument value passed to this variable to match the `validator` regex before it will be executed.\n\nThe regex string is by default surrounded by `^...$` to match the full string. For example the `https?://\\w+` regex would be registered as `^https?://\\w+$`.\n\n[regex]: ","type":"string"}},"required":["validator"],"type":"object"}],"description":"A command argument allowed to be executed by the webview API."},"ShellScopeEntryAllowedArgs":{"anyOf":[{"description":"Use a simple boolean to allow all or disable all arguments to this command configuration.","type":"boolean"},{"description":"A specific set of [`ShellScopeEntryAllowedArg`] that are valid to call for the command configuration.","items":{"$ref":"#/definitions/ShellScopeEntryAllowedArg"},"type":"array"}],"description":"A set of command arguments allowed to be executed by the webview API.\n\nA value of `true` will allow any arguments to be passed to the command. `false` will disable all arguments. A list of [`ShellScopeEntryAllowedArg`] will set those arguments as the only valid arguments to be passed to the attached command configuration."}},"description":"Shell scope entry.","title":"ShellScopeEntry"}},"updater":{"default_permission":{"identifier":"default","description":"This permission set configures which kind of\nupdater functions are exposed to the frontend.\n\n#### Granted Permissions\n\nThe full workflow from checking for updates to installing them\nis enabled.\n\n","permissions":["allow-check","allow-download","allow-install","allow-download-and-install"]},"permissions":{"allow-check":{"identifier":"allow-check","description":"Enables the check command without any pre-configured scope.","commands":{"allow":["check"],"deny":[]}},"allow-download":{"identifier":"allow-download","description":"Enables the download command without any pre-configured scope.","commands":{"allow":["download"],"deny":[]}},"allow-download-and-install":{"identifier":"allow-download-and-install","description":"Enables the download_and_install command without any pre-configured scope.","commands":{"allow":["download_and_install"],"deny":[]}},"allow-install":{"identifier":"allow-install","description":"Enables the install command without any pre-configured scope.","commands":{"allow":["install"],"deny":[]}},"deny-check":{"identifier":"deny-check","description":"Denies the check command without any pre-configured scope.","commands":{"allow":[],"deny":["check"]}},"deny-download":{"identifier":"deny-download","description":"Denies the download command without any pre-configured scope.","commands":{"allow":[],"deny":["download"]}},"deny-download-and-install":{"identifier":"deny-download-and-install","description":"Denies the download_and_install command without any pre-configured scope.","commands":{"allow":[],"deny":["download_and_install"]}},"deny-install":{"identifier":"deny-install","description":"Denies the install command without any pre-configured scope.","commands":{"allow":[],"deny":["install"]}}},"permission_sets":{},"global_scope_schema":null}} \ No newline at end of file diff --git a/src-tauri/gen/schemas/capabilities.json b/src-tauri/gen/schemas/capabilities.json index e771226..35c272b 100644 --- a/src-tauri/gen/schemas/capabilities.json +++ b/src-tauri/gen/schemas/capabilities.json @@ -1 +1 @@ -{"core-capability":{"identifier":"core-capability","description":"Core capabilities","local":true,"windows":["main"],"permissions":["core:default","core:webview:default","core:webview:allow-internal-toggle-devtools"]},"dialog-capability":{"identifier":"dialog-capability","description":"Dialog capabilities","local":true,"windows":["main"],"permissions":["dialog:default","dialog:allow-ask","dialog:allow-message"]},"fs-capability":{"identifier":"fs-capability","description":"File system capabilities","local":true,"windows":["main"],"permissions":["fs:default","fs:allow-read-file","fs:allow-write-file"]},"http-capability":{"identifier":"http-capability","description":"HTTP capabilities for API requests","local":true,"windows":["main"],"permissions":["http:default","http:allow-fetch"]},"opener-capability":{"identifier":"opener-capability","description":"Capability for opening external URLs","local":true,"windows":["main"],"permissions":["opener:default","opener:allow-open-url"]},"process-capability":{"identifier":"process-capability","description":"Process capabilities","local":true,"windows":["main"],"permissions":["process:allow-restart"]},"updater-capability":{"identifier":"updater-capability","description":"Auto-updater capabilities","local":true,"windows":["main"],"permissions":["updater:default","updater:allow-check","updater:allow-download-and-install"]}} \ No newline at end of file +{"core-capability":{"identifier":"core-capability","description":"Core capabilities","local":true,"windows":["main"],"permissions":["core:default","core:webview:default","core:webview:allow-internal-toggle-devtools"]},"dialog-capability":{"identifier":"dialog-capability","description":"Dialog capabilities","local":true,"windows":["main"],"permissions":["dialog:default","dialog:allow-ask","dialog:allow-message"]},"fs-capability":{"identifier":"fs-capability","description":"File system capabilities","local":true,"windows":["main"],"permissions":["fs:default","fs:allow-read-file","fs:allow-write-file"]},"http-capability":{"identifier":"http-capability","description":"HTTP capabilities for API requests","local":true,"windows":["main"],"permissions":["http:default","http:allow-fetch"]},"opener-capability":{"identifier":"opener-capability","description":"Capability for opening external URLs","local":true,"windows":["main"],"permissions":["opener:default","opener:allow-open-url"]},"process-capability":{"identifier":"process-capability","description":"Process capabilities","local":true,"windows":["main"],"permissions":["process:allow-restart"]},"shell-capability":{"identifier":"shell-capability","description":"Shell capabilities for sidecar binaries","local":true,"windows":["main"],"permissions":[{"identifier":"shell:allow-execute","allow":[{"args":true,"name":"binaries/typst","sidecar":true}]}]},"updater-capability":{"identifier":"updater-capability","description":"Auto-updater capabilities","local":true,"windows":["main"],"permissions":["updater:default","updater:allow-check","updater:allow-download-and-install"]}} \ No newline at end of file diff --git a/src-tauri/gen/schemas/desktop-schema.json b/src-tauri/gen/schemas/desktop-schema.json index 58b844d..4499c56 100644 --- a/src-tauri/gen/schemas/desktop-schema.json +++ b/src-tauri/gen/schemas/desktop-schema.json @@ -2240,6 +2240,216 @@ } } }, + { + "if": { + "properties": { + "identifier": { + "anyOf": [ + { + "description": "This permission set configures which\nshell functionality is exposed by default.\n\n#### Granted Permissions\n\nIt allows to use the `open` functionality with a reasonable\nscope pre-configured. It will allow opening `http(s)://`,\n`tel:` and `mailto:` links.\n\n#### This default permission set includes:\n\n- `allow-open`", + "type": "string", + "const": "shell:default", + "markdownDescription": "This permission set configures which\nshell functionality is exposed by default.\n\n#### Granted Permissions\n\nIt allows to use the `open` functionality with a reasonable\nscope pre-configured. It will allow opening `http(s)://`,\n`tel:` and `mailto:` links.\n\n#### This default permission set includes:\n\n- `allow-open`" + }, + { + "description": "Enables the execute command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-execute", + "markdownDescription": "Enables the execute command without any pre-configured scope." + }, + { + "description": "Enables the kill command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-kill", + "markdownDescription": "Enables the kill command without any pre-configured scope." + }, + { + "description": "Enables the open command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-open", + "markdownDescription": "Enables the open command without any pre-configured scope." + }, + { + "description": "Enables the spawn command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-spawn", + "markdownDescription": "Enables the spawn command without any pre-configured scope." + }, + { + "description": "Enables the stdin_write command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-stdin-write", + "markdownDescription": "Enables the stdin_write command without any pre-configured scope." + }, + { + "description": "Denies the execute command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-execute", + "markdownDescription": "Denies the execute command without any pre-configured scope." + }, + { + "description": "Denies the kill command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-kill", + "markdownDescription": "Denies the kill command without any pre-configured scope." + }, + { + "description": "Denies the open command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-open", + "markdownDescription": "Denies the open command without any pre-configured scope." + }, + { + "description": "Denies the spawn command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-spawn", + "markdownDescription": "Denies the spawn command without any pre-configured scope." + }, + { + "description": "Denies the stdin_write command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-stdin-write", + "markdownDescription": "Denies the stdin_write command without any pre-configured scope." + } + ] + } + } + }, + "then": { + "properties": { + "allow": { + "items": { + "title": "ShellScopeEntry", + "description": "Shell scope entry.", + "anyOf": [ + { + "type": "object", + "required": [ + "cmd", + "name" + ], + "properties": { + "args": { + "description": "The allowed arguments for the command execution.", + "allOf": [ + { + "$ref": "#/definitions/ShellScopeEntryAllowedArgs" + } + ] + }, + "cmd": { + "description": "The command name. It can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.", + "type": "string" + }, + "name": { + "description": "The name for this allowed shell command configuration.\n\nThis name will be used inside of the webview API to call this command along with any specified arguments.", + "type": "string" + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "name", + "sidecar" + ], + "properties": { + "args": { + "description": "The allowed arguments for the command execution.", + "allOf": [ + { + "$ref": "#/definitions/ShellScopeEntryAllowedArgs" + } + ] + }, + "name": { + "description": "The name for this allowed shell command configuration.\n\nThis name will be used inside of the webview API to call this command along with any specified arguments.", + "type": "string" + }, + "sidecar": { + "description": "If this command is a sidecar command.", + "type": "boolean" + } + }, + "additionalProperties": false + } + ] + } + }, + "deny": { + "items": { + "title": "ShellScopeEntry", + "description": "Shell scope entry.", + "anyOf": [ + { + "type": "object", + "required": [ + "cmd", + "name" + ], + "properties": { + "args": { + "description": "The allowed arguments for the command execution.", + "allOf": [ + { + "$ref": "#/definitions/ShellScopeEntryAllowedArgs" + } + ] + }, + "cmd": { + "description": "The command name. It can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.", + "type": "string" + }, + "name": { + "description": "The name for this allowed shell command configuration.\n\nThis name will be used inside of the webview API to call this command along with any specified arguments.", + "type": "string" + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "name", + "sidecar" + ], + "properties": { + "args": { + "description": "The allowed arguments for the command execution.", + "allOf": [ + { + "$ref": "#/definitions/ShellScopeEntryAllowedArgs" + } + ] + }, + "name": { + "description": "The name for this allowed shell command configuration.\n\nThis name will be used inside of the webview API to call this command along with any specified arguments.", + "type": "string" + }, + "sidecar": { + "description": "If this command is a sidecar command.", + "type": "boolean" + } + }, + "additionalProperties": false + } + ] + } + } + } + }, + "properties": { + "identifier": { + "description": "Identifier of the permission or permission set.", + "allOf": [ + { + "$ref": "#/definitions/Identifier" + } + ] + } + } + }, { "properties": { "identifier": { @@ -6188,6 +6398,72 @@ "const": "process:deny-restart", "markdownDescription": "Denies the restart command without any pre-configured scope." }, + { + "description": "This permission set configures which\nshell functionality is exposed by default.\n\n#### Granted Permissions\n\nIt allows to use the `open` functionality with a reasonable\nscope pre-configured. It will allow opening `http(s)://`,\n`tel:` and `mailto:` links.\n\n#### This default permission set includes:\n\n- `allow-open`", + "type": "string", + "const": "shell:default", + "markdownDescription": "This permission set configures which\nshell functionality is exposed by default.\n\n#### Granted Permissions\n\nIt allows to use the `open` functionality with a reasonable\nscope pre-configured. It will allow opening `http(s)://`,\n`tel:` and `mailto:` links.\n\n#### This default permission set includes:\n\n- `allow-open`" + }, + { + "description": "Enables the execute command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-execute", + "markdownDescription": "Enables the execute command without any pre-configured scope." + }, + { + "description": "Enables the kill command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-kill", + "markdownDescription": "Enables the kill command without any pre-configured scope." + }, + { + "description": "Enables the open command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-open", + "markdownDescription": "Enables the open command without any pre-configured scope." + }, + { + "description": "Enables the spawn command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-spawn", + "markdownDescription": "Enables the spawn command without any pre-configured scope." + }, + { + "description": "Enables the stdin_write command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-stdin-write", + "markdownDescription": "Enables the stdin_write command without any pre-configured scope." + }, + { + "description": "Denies the execute command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-execute", + "markdownDescription": "Denies the execute command without any pre-configured scope." + }, + { + "description": "Denies the kill command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-kill", + "markdownDescription": "Denies the kill command without any pre-configured scope." + }, + { + "description": "Denies the open command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-open", + "markdownDescription": "Denies the open command without any pre-configured scope." + }, + { + "description": "Denies the spawn command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-spawn", + "markdownDescription": "Denies the spawn command without any pre-configured scope." + }, + { + "description": "Denies the stdin_write command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-stdin-write", + "markdownDescription": "Denies the stdin_write command without any pre-configured scope." + }, { "description": "This permission set configures which kind of\nupdater functions are exposed to the frontend.\n\n#### Granted Permissions\n\nThe full workflow from checking for updates to installing them\nis enabled.\n\n\n#### This default permission set includes:\n\n- `allow-check`\n- `allow-download`\n- `allow-install`\n- `allow-download-and-install`", "type": "string", @@ -6354,6 +6630,50 @@ "type": "string" } ] + }, + "ShellScopeEntryAllowedArg": { + "description": "A command argument allowed to be executed by the webview API.", + "anyOf": [ + { + "description": "A non-configurable argument that is passed to the command in the order it was specified.", + "type": "string" + }, + { + "description": "A variable that is set while calling the command from the webview API.", + "type": "object", + "required": [ + "validator" + ], + "properties": { + "raw": { + "description": "Marks the validator as a raw regex, meaning the plugin should not make any modification at runtime.\n\nThis means the regex will not match on the entire string by default, which might be exploited if your regex allow unexpected input to be considered valid. When using this option, make sure your regex is correct.", + "default": false, + "type": "boolean" + }, + "validator": { + "description": "[regex] validator to require passed values to conform to an expected input.\n\nThis will require the argument value passed to this variable to match the `validator` regex before it will be executed.\n\nThe regex string is by default surrounded by `^...$` to match the full string. For example the `https?://\\w+` regex would be registered as `^https?://\\w+$`.\n\n[regex]: ", + "type": "string" + } + }, + "additionalProperties": false + } + ] + }, + "ShellScopeEntryAllowedArgs": { + "description": "A set of command arguments allowed to be executed by the webview API.\n\nA value of `true` will allow any arguments to be passed to the command. `false` will disable all arguments. A list of [`ShellScopeEntryAllowedArg`] will set those arguments as the only valid arguments to be passed to the attached command configuration.", + "anyOf": [ + { + "description": "Use a simple boolean to allow all or disable all arguments to this command configuration.", + "type": "boolean" + }, + { + "description": "A specific set of [`ShellScopeEntryAllowedArg`] that are valid to call for the command configuration.", + "type": "array", + "items": { + "$ref": "#/definitions/ShellScopeEntryAllowedArg" + } + } + ] } } } \ No newline at end of file diff --git a/src-tauri/gen/schemas/macOS-schema.json b/src-tauri/gen/schemas/macOS-schema.json index 58b844d..4499c56 100644 --- a/src-tauri/gen/schemas/macOS-schema.json +++ b/src-tauri/gen/schemas/macOS-schema.json @@ -2240,6 +2240,216 @@ } } }, + { + "if": { + "properties": { + "identifier": { + "anyOf": [ + { + "description": "This permission set configures which\nshell functionality is exposed by default.\n\n#### Granted Permissions\n\nIt allows to use the `open` functionality with a reasonable\nscope pre-configured. It will allow opening `http(s)://`,\n`tel:` and `mailto:` links.\n\n#### This default permission set includes:\n\n- `allow-open`", + "type": "string", + "const": "shell:default", + "markdownDescription": "This permission set configures which\nshell functionality is exposed by default.\n\n#### Granted Permissions\n\nIt allows to use the `open` functionality with a reasonable\nscope pre-configured. It will allow opening `http(s)://`,\n`tel:` and `mailto:` links.\n\n#### This default permission set includes:\n\n- `allow-open`" + }, + { + "description": "Enables the execute command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-execute", + "markdownDescription": "Enables the execute command without any pre-configured scope." + }, + { + "description": "Enables the kill command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-kill", + "markdownDescription": "Enables the kill command without any pre-configured scope." + }, + { + "description": "Enables the open command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-open", + "markdownDescription": "Enables the open command without any pre-configured scope." + }, + { + "description": "Enables the spawn command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-spawn", + "markdownDescription": "Enables the spawn command without any pre-configured scope." + }, + { + "description": "Enables the stdin_write command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-stdin-write", + "markdownDescription": "Enables the stdin_write command without any pre-configured scope." + }, + { + "description": "Denies the execute command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-execute", + "markdownDescription": "Denies the execute command without any pre-configured scope." + }, + { + "description": "Denies the kill command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-kill", + "markdownDescription": "Denies the kill command without any pre-configured scope." + }, + { + "description": "Denies the open command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-open", + "markdownDescription": "Denies the open command without any pre-configured scope." + }, + { + "description": "Denies the spawn command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-spawn", + "markdownDescription": "Denies the spawn command without any pre-configured scope." + }, + { + "description": "Denies the stdin_write command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-stdin-write", + "markdownDescription": "Denies the stdin_write command without any pre-configured scope." + } + ] + } + } + }, + "then": { + "properties": { + "allow": { + "items": { + "title": "ShellScopeEntry", + "description": "Shell scope entry.", + "anyOf": [ + { + "type": "object", + "required": [ + "cmd", + "name" + ], + "properties": { + "args": { + "description": "The allowed arguments for the command execution.", + "allOf": [ + { + "$ref": "#/definitions/ShellScopeEntryAllowedArgs" + } + ] + }, + "cmd": { + "description": "The command name. It can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.", + "type": "string" + }, + "name": { + "description": "The name for this allowed shell command configuration.\n\nThis name will be used inside of the webview API to call this command along with any specified arguments.", + "type": "string" + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "name", + "sidecar" + ], + "properties": { + "args": { + "description": "The allowed arguments for the command execution.", + "allOf": [ + { + "$ref": "#/definitions/ShellScopeEntryAllowedArgs" + } + ] + }, + "name": { + "description": "The name for this allowed shell command configuration.\n\nThis name will be used inside of the webview API to call this command along with any specified arguments.", + "type": "string" + }, + "sidecar": { + "description": "If this command is a sidecar command.", + "type": "boolean" + } + }, + "additionalProperties": false + } + ] + } + }, + "deny": { + "items": { + "title": "ShellScopeEntry", + "description": "Shell scope entry.", + "anyOf": [ + { + "type": "object", + "required": [ + "cmd", + "name" + ], + "properties": { + "args": { + "description": "The allowed arguments for the command execution.", + "allOf": [ + { + "$ref": "#/definitions/ShellScopeEntryAllowedArgs" + } + ] + }, + "cmd": { + "description": "The command name. It can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.", + "type": "string" + }, + "name": { + "description": "The name for this allowed shell command configuration.\n\nThis name will be used inside of the webview API to call this command along with any specified arguments.", + "type": "string" + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "name", + "sidecar" + ], + "properties": { + "args": { + "description": "The allowed arguments for the command execution.", + "allOf": [ + { + "$ref": "#/definitions/ShellScopeEntryAllowedArgs" + } + ] + }, + "name": { + "description": "The name for this allowed shell command configuration.\n\nThis name will be used inside of the webview API to call this command along with any specified arguments.", + "type": "string" + }, + "sidecar": { + "description": "If this command is a sidecar command.", + "type": "boolean" + } + }, + "additionalProperties": false + } + ] + } + } + } + }, + "properties": { + "identifier": { + "description": "Identifier of the permission or permission set.", + "allOf": [ + { + "$ref": "#/definitions/Identifier" + } + ] + } + } + }, { "properties": { "identifier": { @@ -6188,6 +6398,72 @@ "const": "process:deny-restart", "markdownDescription": "Denies the restart command without any pre-configured scope." }, + { + "description": "This permission set configures which\nshell functionality is exposed by default.\n\n#### Granted Permissions\n\nIt allows to use the `open` functionality with a reasonable\nscope pre-configured. It will allow opening `http(s)://`,\n`tel:` and `mailto:` links.\n\n#### This default permission set includes:\n\n- `allow-open`", + "type": "string", + "const": "shell:default", + "markdownDescription": "This permission set configures which\nshell functionality is exposed by default.\n\n#### Granted Permissions\n\nIt allows to use the `open` functionality with a reasonable\nscope pre-configured. It will allow opening `http(s)://`,\n`tel:` and `mailto:` links.\n\n#### This default permission set includes:\n\n- `allow-open`" + }, + { + "description": "Enables the execute command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-execute", + "markdownDescription": "Enables the execute command without any pre-configured scope." + }, + { + "description": "Enables the kill command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-kill", + "markdownDescription": "Enables the kill command without any pre-configured scope." + }, + { + "description": "Enables the open command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-open", + "markdownDescription": "Enables the open command without any pre-configured scope." + }, + { + "description": "Enables the spawn command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-spawn", + "markdownDescription": "Enables the spawn command without any pre-configured scope." + }, + { + "description": "Enables the stdin_write command without any pre-configured scope.", + "type": "string", + "const": "shell:allow-stdin-write", + "markdownDescription": "Enables the stdin_write command without any pre-configured scope." + }, + { + "description": "Denies the execute command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-execute", + "markdownDescription": "Denies the execute command without any pre-configured scope." + }, + { + "description": "Denies the kill command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-kill", + "markdownDescription": "Denies the kill command without any pre-configured scope." + }, + { + "description": "Denies the open command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-open", + "markdownDescription": "Denies the open command without any pre-configured scope." + }, + { + "description": "Denies the spawn command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-spawn", + "markdownDescription": "Denies the spawn command without any pre-configured scope." + }, + { + "description": "Denies the stdin_write command without any pre-configured scope.", + "type": "string", + "const": "shell:deny-stdin-write", + "markdownDescription": "Denies the stdin_write command without any pre-configured scope." + }, { "description": "This permission set configures which kind of\nupdater functions are exposed to the frontend.\n\n#### Granted Permissions\n\nThe full workflow from checking for updates to installing them\nis enabled.\n\n\n#### This default permission set includes:\n\n- `allow-check`\n- `allow-download`\n- `allow-install`\n- `allow-download-and-install`", "type": "string", @@ -6354,6 +6630,50 @@ "type": "string" } ] + }, + "ShellScopeEntryAllowedArg": { + "description": "A command argument allowed to be executed by the webview API.", + "anyOf": [ + { + "description": "A non-configurable argument that is passed to the command in the order it was specified.", + "type": "string" + }, + { + "description": "A variable that is set while calling the command from the webview API.", + "type": "object", + "required": [ + "validator" + ], + "properties": { + "raw": { + "description": "Marks the validator as a raw regex, meaning the plugin should not make any modification at runtime.\n\nThis means the regex will not match on the entire string by default, which might be exploited if your regex allow unexpected input to be considered valid. When using this option, make sure your regex is correct.", + "default": false, + "type": "boolean" + }, + "validator": { + "description": "[regex] validator to require passed values to conform to an expected input.\n\nThis will require the argument value passed to this variable to match the `validator` regex before it will be executed.\n\nThe regex string is by default surrounded by `^...$` to match the full string. For example the `https?://\\w+` regex would be registered as `^https?://\\w+$`.\n\n[regex]: ", + "type": "string" + } + }, + "additionalProperties": false + } + ] + }, + "ShellScopeEntryAllowedArgs": { + "description": "A set of command arguments allowed to be executed by the webview API.\n\nA value of `true` will allow any arguments to be passed to the command. `false` will disable all arguments. A list of [`ShellScopeEntryAllowedArg`] will set those arguments as the only valid arguments to be passed to the attached command configuration.", + "anyOf": [ + { + "description": "Use a simple boolean to allow all or disable all arguments to this command configuration.", + "type": "boolean" + }, + { + "description": "A specific set of [`ShellScopeEntryAllowedArg`] that are valid to call for the command configuration.", + "type": "array", + "items": { + "$ref": "#/definitions/ShellScopeEntryAllowedArg" + } + } + ] } } } \ No newline at end of file diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index 28c8306..82506f6 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -15,6 +15,7 @@ pub fn run() { .plugin(tauri_plugin_fs::init()) .plugin(tauri_plugin_opener::init()) .plugin(tauri_plugin_http::init()) + .plugin(tauri_plugin_shell::init()) .setup(|app| { // Get the app data directory for the database with fallback options let app_dir = app.path().app_data_dir() @@ -86,6 +87,7 @@ pub fn run() { commands::get_project, commands::create_project, commands::update_project, + commands::generate_time_report_pdf, ]) .run(tauri::generate_context!()) .map_err(|e| { diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 5ccbbd1..b840a79 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -29,7 +29,8 @@ "updater-capability", "process-capability", "opener-capability", - "http-capability" + "http-capability", + "shell-capability" ] } }, @@ -41,9 +42,9 @@ "category": "DeveloperTool", "shortDescription": "", "longDescription": "", - "resources": [], + "resources": ["resources/**/*"], "copyright": "", - "externalBin": [], + "externalBin": ["binaries/typst"], "linux": { "deb": { "depends": [] From 6be0a7dcef0cd3f217b781e61f8de5785e564f0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Madis=20V=C3=A4in?= Date: Mon, 9 Feb 2026 17:37:59 +0200 Subject: [PATCH 2/4] =?UTF-8?q?=E2=9C=A8=20feat:=20add=20Typst=20time=20re?= =?UTF-8?q?port=20template=20and=20Montserrat=20fonts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Typst template renders a time report PDF with date range, optional client name, and a table of grouped time entries. Bundles Montserrat font files as Tauri resources. Co-Authored-By: Claude Opus 4.6 --- .../resources/fonts/Montserrat-Medium.ttf | Bin 0 -> 197756 bytes .../resources/fonts/Montserrat-Regular.ttf | Bin 0 -> 197624 bytes .../resources/fonts/Montserrat-SemiBold.ttf | Bin 0 -> 197964 bytes src-tauri/resources/templates/time-report.typ | 36 ++++++++++++++++++ 4 files changed, 36 insertions(+) create mode 100644 src-tauri/resources/fonts/Montserrat-Medium.ttf create mode 100644 src-tauri/resources/fonts/Montserrat-Regular.ttf create mode 100644 src-tauri/resources/fonts/Montserrat-SemiBold.ttf create mode 100644 src-tauri/resources/templates/time-report.typ diff --git a/src-tauri/resources/fonts/Montserrat-Medium.ttf b/src-tauri/resources/fonts/Montserrat-Medium.ttf new file mode 100644 index 0000000000000000000000000000000000000000..4012225c0b220d0e1d67001daa7e01bba3df6953 GIT binary patch literal 197756 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 Cv%^3D literal 0 HcmV?d00001 diff --git a/src-tauri/resources/fonts/Montserrat-Regular.ttf b/src-tauri/resources/fonts/Montserrat-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..f4a266dd37d5066da46c9a6b8898073ae2930a64 GIT binary patch literal 197624 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%0A+&hMl60&72-OVAV9J+!ire=9wu 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 z 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�%J{uNr9m_Z7R955|3q9tl!Z?e2`#e*1!0y*B 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 UP;f(A&l2^9w(w1<*Se+c|8C*CH2?qr literal 0 HcmV?d00001 diff --git a/src-tauri/resources/templates/time-report.typ b/src-tauri/resources/templates/time-report.typ new file mode 100644 index 0000000..b18a1ea --- /dev/null +++ b/src-tauri/resources/templates/time-report.typ @@ -0,0 +1,36 @@ +#set page(margin: 50pt) +#set text(font: "Montserrat", size: 10pt) + +#let data = json(sys.inputs.at("data")) + +#text(size: 24pt, weight: "semibold")[Time Report] +#linebreak() +#v(4pt) +#text(size: 10pt)[#data.dateRange] +#if data.client != none { + linebreak() + text(size: 10pt)[#data.client] +} + +#v(24pt) + +#table( + columns: (1fr, auto, auto), + align: (left, center, right), + stroke: none, + inset: 8pt, + table.header( + text(weight: "medium")[Name], + text(weight: "medium")[Entries], + text(weight: "medium")[Total Time], + ), + table.hline(stroke: 2pt + black), + ..for row in data.rows { + ( + row.name, + str(row.entries), + row.formattedDuration, + ) + }, + table.hline(stroke: 0.5pt + luma(134)), +) From 8df878d2f4666be05d1f6036795a2ca83a2756a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Madis=20V=C3=A4in?= Date: Mon, 9 Feb 2026 17:38:07 +0200 Subject: [PATCH 3/4] =?UTF-8?q?=E2=9C=A8=20feat:=20add=20generate=5Ftime?= =?UTF-8?q?=5Freport=5Fpdf=20Tauri=20command?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backend command that serializes report data to a temp JSON file, invokes the Typst sidecar to compile the template into a PDF, and cleans up. Co-Authored-By: Claude Opus 4.6 --- src-tauri/src/commands.rs | 93 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) diff --git a/src-tauri/src/commands.rs b/src-tauri/src/commands.rs index b169b28..ab9f289 100644 --- a/src-tauri/src/commands.rs +++ b/src-tauri/src/commands.rs @@ -8,6 +8,7 @@ use crate::db::{ Project, CreateProjectRequest, UpdateProjectRequest }; use tauri::{AppHandle, Manager, State}; +use tauri_plugin_shell::ShellExt; use chrono::{DateTime, Utc}; use std::fs; @@ -457,4 +458,96 @@ pub async fn update_project( db.update_project(&project_id, updates) .await .map_err(|e| handle_db_error(e, "update_project")) +} + +// PDF Generation Commands + +#[derive(serde::Deserialize)] +pub struct TimeReportRow { + pub name: String, + pub entries: u32, + #[serde(rename = "formattedDuration")] + pub formatted_duration: String, +} + +#[derive(serde::Deserialize)] +pub struct TimeReportData { + #[serde(rename = "dateRange")] + pub date_range: String, + pub client: Option, + pub rows: Vec, +} + +#[derive(serde::Serialize)] +struct TimeReportJson { + #[serde(rename = "dateRange")] + date_range: String, + client: Option, + rows: Vec, +} + +#[derive(serde::Serialize)] +struct TimeReportRowJson { + name: String, + entries: u32, + #[serde(rename = "formattedDuration")] + formatted_duration: String, +} + +#[tauri::command] +pub async fn generate_time_report_pdf( + app: AppHandle, + data: TimeReportData, + output_path: String, +) -> Result<(), String> { + let resource_dir = app.path().resource_dir() + .map_err(|e| format!("Failed to get resource directory: {}", e))?; + + let template_path = resource_dir.join("resources").join("templates").join("time-report.typ"); + let fonts_path = resource_dir.join("resources").join("fonts"); + + // Write data as JSON to a temp file + let json_data = TimeReportJson { + date_range: data.date_range, + client: data.client, + rows: data.rows.into_iter().map(|r| TimeReportRowJson { + name: r.name, + entries: r.entries, + formatted_duration: r.formatted_duration, + }).collect(), + }; + + let temp_dir = std::env::temp_dir(); + let json_path = temp_dir.join(format!("upcount-report-{}.json", nanoid::nanoid!())); + fs::write(&json_path, serde_json::to_string(&json_data) + .map_err(|e| format!("Failed to serialize report data: {}", e))?) + .map_err(|e| format!("Failed to write temp data file: {}", e))?; + + let output = app.shell() + .sidecar("typst") + .map_err(|e| format!("Failed to create typst sidecar: {}", e))? + .args([ + "compile", + "--root", + "/", + "--font-path", + &fonts_path.to_string_lossy(), + "--input", + &format!("data={}", json_path.to_string_lossy()), + &template_path.to_string_lossy(), + &output_path, + ]) + .output() + .await + .map_err(|e| format!("Failed to run typst: {}", e))?; + + // Clean up temp file + let _ = fs::remove_file(&json_path); + + if output.status.success() { + Ok(()) + } else { + let stderr = String::from_utf8_lossy(&output.stderr); + Err(format!("Typst compilation failed: {}", stderr)) + } } \ No newline at end of file From c89060d8f0e655c0bed4cc751c6cb9d15d442c2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Madis=20V=C3=A4in?= Date: Mon, 9 Feb 2026 17:38:22 +0200 Subject: [PATCH 4/4] =?UTF-8?q?=E2=9C=A8=20feat:=20use=20Typst=20backend?= =?UTF-8?q?=20for=20time=20report=20PDF=20export?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace the disabled Export button with a working handler that invokes the generate_time_report_pdf Tauri command via the Typst sidecar. Co-Authored-By: Claude Opus 4.6 --- src/routes/time-tracking/reports.tsx | 31 +++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/src/routes/time-tracking/reports.tsx b/src/routes/time-tracking/reports.tsx index df9fd7b..97a9ee6 100644 --- a/src/routes/time-tracking/reports.tsx +++ b/src/routes/time-tracking/reports.tsx @@ -23,6 +23,8 @@ import groupBy from "lodash/groupBy"; import sumBy from "lodash/sumBy"; import sortBy from "lodash/sortBy"; import filter from "lodash/filter"; +import { save } from "@tauri-apps/plugin-dialog"; +import { invoke } from "@tauri-apps/api/core"; import { timeEntriesAtom } from "src/atoms/time-tracking"; import { clientsAtom } from "src/atoms/client"; @@ -171,7 +173,34 @@ export default function TimeTrackingReports() { -