@setoelkahfi / svara / commits / 3f4cd68

wip

Seto Elkahfi committed Apr 7, 2025 at 21:48 UTC 3f4cd680ff90c68f41d4e72465cb4f8a072fbcfe
15 files changed +7349 -125
src-tauri/Cargo.lock
+241 -73
@@ -2,12 +2,27 @@
2 # It is not intended for manual editing.
3 version = 4
4
5 +[[package]]
6 +name = "addr2line"
7 +version = "0.24.2"
8 +source = "registry+https://github.com/rust-lang/crates.io-index"
9 +checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10 +dependencies = [
11 + "gimli",
12 +]
13 +
14 [[package]]
15 name = "adler"
16 version = "1.0.2"
17 source = "registry+https://github.com/rust-lang/crates.io-index"
18 checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
19
20 +[[package]]
21 +name = "adler2"
22 +version = "2.0.0"
23 +source = "registry+https://github.com/rust-lang/crates.io-index"
24 +checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
25 +
26 [[package]]
27 name = "ahash"
28 version = "0.7.8"
@@ -116,6 +131,21 @@ version = "1.1.0"
131 source = "registry+https://github.com/rust-lang/crates.io-index"
132 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
133
134 +[[package]]
135 +name = "backtrace"
136 +version = "0.3.74"
137 +source = "registry+https://github.com/rust-lang/crates.io-index"
138 +checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
139 +dependencies = [
140 + "addr2line",
141 + "cfg-if",
142 + "libc",
143 + "miniz_oxide 0.8.7",
144 + "object",
145 + "rustc-demangle",
146 + "windows-targets 0.52.6",
147 +]
148 +
149 [[package]]
150 name = "base64"
151 version = "0.21.0"
@@ -136,9 +166,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
166
167 [[package]]
168 name = "bitflags"
139 -version = "2.5.0"
169 +version = "2.9.0"
170 source = "registry+https://github.com/rust-lang/crates.io-index"
141 -checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
171 +checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
172 dependencies = [
173 "serde",
174 ]
@@ -314,7 +344,7 @@ version = "0.18.5"
344 source = "registry+https://github.com/rust-lang/crates.io-index"
345 checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2"
346 dependencies = [
317 - "bitflags 2.5.0",
347 + "bitflags 2.9.0",
348 "cairo-sys-rs",
349 "glib",
350 "libc",
@@ -492,7 +522,7 @@ version = "0.24.0"
522 source = "registry+https://github.com/rust-lang/crates.io-index"
523 checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1"
524 dependencies = [
495 - "bitflags 2.5.0",
525 + "bitflags 2.9.0",
526 "core-foundation",
527 "core-graphics-types",
528 "foreign-types",
@@ -505,7 +535,7 @@ version = "0.2.0"
535 source = "registry+https://github.com/rust-lang/crates.io-index"
536 checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb"
537 dependencies = [
508 - "bitflags 2.5.0",
538 + "bitflags 2.9.0",
539 "core-foundation",
540 "libc",
541 ]
@@ -848,6 +878,15 @@ dependencies = [
878 "rustc_version",
879 ]
880
881 +[[package]]
882 +name = "file-id"
883 +version = "0.2.2"
884 +source = "registry+https://github.com/rust-lang/crates.io-index"
885 +checksum = "6bc904b9bbefcadbd8e3a9fb0d464a9b979de6324c03b3c663e8994f46a5be36"
886 +dependencies = [
887 + "windows-sys 0.52.0",
888 +]
889 +
890 [[package]]
891 name = "filedescriptor"
892 version = "0.8.3"
@@ -859,6 +898,18 @@ dependencies = [
898 "winapi",
899 ]
900
901 +[[package]]
902 +name = "filetime"
903 +version = "0.2.25"
904 +source = "registry+https://github.com/rust-lang/crates.io-index"
905 +checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
906 +dependencies = [
907 + "cfg-if",
908 + "libc",
909 + "libredox",
910 + "windows-sys 0.59.0",
911 +]
912 +
913 [[package]]
914 name = "flate2"
915 version = "1.0.25"
@@ -911,6 +962,15 @@ dependencies = [
962 "percent-encoding",
963 ]
964
965 +[[package]]
966 +name = "fsevent-sys"
967 +version = "4.1.0"
968 +source = "registry+https://github.com/rust-lang/crates.io-index"
969 +checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
970 +dependencies = [
971 + "libc",
972 +]
973 +
974 [[package]]
975 name = "funty"
976 version = "2.0.0"
@@ -1139,6 +1199,12 @@ dependencies = [
1199 "wasi 0.11.0+wasi-snapshot-preview1",
1200 ]
1201
1202 +[[package]]
1203 +name = "gimli"
1204 +version = "0.31.1"
1205 +source = "registry+https://github.com/rust-lang/crates.io-index"
1206 +checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
1207 +
1208 [[package]]
1209 name = "gio"
1210 version = "0.18.4"
@@ -1177,7 +1243,7 @@ version = "0.18.5"
1243 source = "registry+https://github.com/rust-lang/crates.io-index"
1244 checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5"
1245 dependencies = [
1180 - "bitflags 2.5.0",
1246 + "bitflags 2.9.0",
1247 "futures-channel",
1248 "futures-core",
1249 "futures-executor",
@@ -1314,15 +1380,6 @@ version = "0.5.0"
1380 source = "registry+https://github.com/rust-lang/crates.io-index"
1381 checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1382
1317 -[[package]]
1318 -name = "hermit-abi"
1319 -version = "0.2.6"
1320 -source = "registry+https://github.com/rust-lang/crates.io-index"
1321 -checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
1322 -dependencies = [
1323 - "libc",
1324 -]
1325 -
1383 [[package]]
1384 name = "hex"
1385 version = "0.4.3"
@@ -1415,7 +1472,7 @@ dependencies = [
1472 "http-body",
1473 "hyper",
1474 "pin-project-lite",
1418 - "socket2 0.5.8",
1475 + "socket2",
1476 "tokio",
1477 "tower",
1478 "tower-service",
@@ -1637,6 +1694,26 @@ dependencies = [
1694 "cfb",
1695 ]
1696
1697 +[[package]]
1698 +name = "inotify"
1699 +version = "0.11.0"
1700 +source = "registry+https://github.com/rust-lang/crates.io-index"
1701 +checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
1702 +dependencies = [
1703 + "bitflags 2.9.0",
1704 + "inotify-sys",
1705 + "libc",
1706 +]
1707 +
1708 +[[package]]
1709 +name = "inotify-sys"
1710 +version = "0.1.5"
1711 +source = "registry+https://github.com/rust-lang/crates.io-index"
1712 +checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
1713 +dependencies = [
1714 + "libc",
1715 +]
1716 +
1717 [[package]]
1718 name = "ipnet"
1719 version = "2.11.0"
@@ -1738,11 +1815,31 @@ version = "0.7.0"
1815 source = "registry+https://github.com/rust-lang/crates.io-index"
1816 checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a"
1817 dependencies = [
1741 - "bitflags 2.5.0",
1818 + "bitflags 2.9.0",
1819 "serde",
1820 "unicode-segmentation",
1821 ]
1822
1823 +[[package]]
1824 +name = "kqueue"
1825 +version = "1.0.8"
1826 +source = "registry+https://github.com/rust-lang/crates.io-index"
1827 +checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c"
1828 +dependencies = [
1829 + "kqueue-sys",
1830 + "libc",
1831 +]
1832 +
1833 +[[package]]
1834 +name = "kqueue-sys"
1835 +version = "1.0.4"
1836 +source = "registry+https://github.com/rust-lang/crates.io-index"
1837 +checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
1838 +dependencies = [
1839 + "bitflags 1.3.2",
1840 + "libc",
1841 +]
1842 +
1843 [[package]]
1844 name = "kuchikiki"
1845 version = "0.8.2"
@@ -1788,9 +1885,9 @@ dependencies = [
1885
1886 [[package]]
1887 name = "libc"
1791 -version = "0.2.155"
1888 +version = "0.2.171"
1889 source = "registry+https://github.com/rust-lang/crates.io-index"
1793 -checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
1890 +checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
1891
1892 [[package]]
1893 name = "libloading"
@@ -1808,8 +1905,9 @@ version = "0.1.3"
1905 source = "registry+https://github.com/rust-lang/crates.io-index"
1906 checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1907 dependencies = [
1811 - "bitflags 2.5.0",
1908 + "bitflags 2.9.0",
1909 "libc",
1910 + "redox_syscall 0.5.11",
1911 ]
1912
1913 [[package]]
@@ -1921,16 +2019,25 @@ dependencies = [
2019 "simd-adler32",
2020 ]
2021
2022 +[[package]]
2023 +name = "miniz_oxide"
2024 +version = "0.8.7"
2025 +source = "registry+https://github.com/rust-lang/crates.io-index"
2026 +checksum = "ff70ce3e48ae43fa075863cef62e8b43b71a4f2382229920e0df362592919430"
2027 +dependencies = [
2028 + "adler2",
2029 +]
2030 +
2031 [[package]]
2032 name = "mio"
1926 -version = "0.8.11"
2033 +version = "1.0.3"
2034 source = "registry+https://github.com/rust-lang/crates.io-index"
1928 -checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
2035 +checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
2036 dependencies = [
2037 "libc",
2038 "log",
2039 "wasi 0.11.0+wasi-snapshot-preview1",
1933 - "windows-sys 0.48.0",
2040 + "windows-sys 0.52.0",
2041 ]
2042
2043 [[package]]
@@ -1960,7 +2067,7 @@ version = "0.9.0"
2067 source = "registry+https://github.com/rust-lang/crates.io-index"
2068 checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
2069 dependencies = [
1963 - "bitflags 2.5.0",
2070 + "bitflags 2.9.0",
2071 "jni-sys",
2072 "log",
2073 "ndk-sys",
@@ -1996,7 +2103,7 @@ version = "0.28.0"
2103 source = "registry+https://github.com/rust-lang/crates.io-index"
2104 checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4"
2105 dependencies = [
1999 - "bitflags 2.5.0",
2106 + "bitflags 2.9.0",
2107 "cfg-if",
2108 "cfg_aliases 0.1.1",
2109 "libc",
@@ -2008,6 +2115,47 @@ version = "0.1.14"
2115 source = "registry+https://github.com/rust-lang/crates.io-index"
2116 checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
2117
2118 +[[package]]
2119 +name = "notify"
2120 +version = "8.0.0"
2121 +source = "registry+https://github.com/rust-lang/crates.io-index"
2122 +checksum = "2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943"
2123 +dependencies = [
2124 + "bitflags 2.9.0",
2125 + "filetime",
2126 + "fsevent-sys",
2127 + "inotify",
2128 + "kqueue",
2129 + "libc",
2130 + "log",
2131 + "mio",
2132 + "notify-types",
2133 + "walkdir",
2134 + "windows-sys 0.59.0",
2135 +]
2136 +
2137 +[[package]]
2138 +name = "notify-debouncer-full"
2139 +version = "0.5.0"
2140 +source = "registry+https://github.com/rust-lang/crates.io-index"
2141 +checksum = "d2d88b1a7538054351c8258338df7c931a590513fb3745e8c15eb9ff4199b8d1"
2142 +dependencies = [
2143 + "file-id",
2144 + "log",
2145 + "notify",
2146 + "notify-types",
2147 + "walkdir",
2148 +]
2149 +
2150 +[[package]]
2151 +name = "notify-types"
2152 +version = "2.0.0"
2153 +source = "registry+https://github.com/rust-lang/crates.io-index"
2154 +checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d"
2155 +dependencies = [
2156 + "serde",
2157 +]
2158 +
2159 [[package]]
2160 name = "num-conv"
2161 version = "0.1.0"
@@ -2023,16 +2171,6 @@ dependencies = [
2171 "autocfg",
2172 ]
2173
2026 -[[package]]
2027 -name = "num_cpus"
2028 -version = "1.15.0"
2029 -source = "registry+https://github.com/rust-lang/crates.io-index"
2030 -checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
2031 -dependencies = [
2032 - "hermit-abi",
2033 - "libc",
2034 -]
2035 -
2174 [[package]]
2175 name = "num_enum"
2176 version = "0.7.3"
@@ -2048,7 +2186,7 @@ version = "0.7.3"
2186 source = "registry+https://github.com/rust-lang/crates.io-index"
2187 checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56"
2188 dependencies = [
2051 - "proc-macro-crate 1.3.1",
2189 + "proc-macro-crate 2.0.0",
2190 "proc-macro2",
2191 "quote",
2192 "syn 2.0.100",
@@ -2104,7 +2242,7 @@ version = "0.3.0"
2242 source = "registry+https://github.com/rust-lang/crates.io-index"
2243 checksum = "5906f93257178e2f7ae069efb89fbd6ee94f0592740b5f8a1512ca498814d0fb"
2244 dependencies = [
2107 - "bitflags 2.5.0",
2245 + "bitflags 2.9.0",
2246 "block2 0.6.0",
2247 "libc",
2248 "objc2 0.6.0",
@@ -2123,7 +2261,7 @@ version = "0.3.0"
2261 source = "registry+https://github.com/rust-lang/crates.io-index"
2262 checksum = "6c1948a9be5f469deadbd6bcb86ad7ff9e47b4f632380139722f7d9840c0d42c"
2263 dependencies = [
2126 - "bitflags 2.5.0",
2264 + "bitflags 2.9.0",
2265 "objc2 0.6.0",
2266 "objc2-foundation 0.3.0",
2267 ]
@@ -2134,7 +2272,7 @@ version = "0.3.0"
2272 source = "registry+https://github.com/rust-lang/crates.io-index"
2273 checksum = "1f860f8e841f6d32f754836f51e6bc7777cd7e7053cf18528233f6811d3eceb4"
2274 dependencies = [
2137 - "bitflags 2.5.0",
2275 + "bitflags 2.9.0",
2276 "objc2 0.6.0",
2277 "objc2-foundation 0.3.0",
2278 ]
@@ -2145,7 +2283,7 @@ version = "0.3.0"
2283 source = "registry+https://github.com/rust-lang/crates.io-index"
2284 checksum = "daeaf60f25471d26948a1c2f840e3f7d86f4109e3af4e8e4b5cd70c39690d925"
2285 dependencies = [
2148 - "bitflags 2.5.0",
2286 + "bitflags 2.9.0",
2287 "objc2 0.6.0",
2288 ]
2289
@@ -2155,7 +2293,7 @@ version = "0.3.0"
2293 source = "registry+https://github.com/rust-lang/crates.io-index"
2294 checksum = "f8dca602628b65356b6513290a21a6405b4d4027b8b250f0b98dddbb28b7de02"
2295 dependencies = [
2158 - "bitflags 2.5.0",
2296 + "bitflags 2.9.0",
2297 "objc2 0.6.0",
2298 "objc2-core-foundation",
2299 "objc2-io-surface",
@@ -2192,7 +2330,7 @@ version = "0.2.2"
2330 source = "registry+https://github.com/rust-lang/crates.io-index"
2331 checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8"
2332 dependencies = [
2195 - "bitflags 2.5.0",
2333 + "bitflags 2.9.0",
2334 "block2 0.5.1",
2335 "libc",
2336 "objc2 0.5.2",
@@ -2204,7 +2342,7 @@ version = "0.3.0"
2342 source = "registry+https://github.com/rust-lang/crates.io-index"
2343 checksum = "3a21c6c9014b82c39515db5b396f91645182611c97d24637cf56ac01e5f8d998"
2344 dependencies = [
2207 - "bitflags 2.5.0",
2345 + "bitflags 2.9.0",
2346 "block2 0.6.0",
2347 "libc",
2348 "objc2 0.6.0",
@@ -2217,7 +2355,7 @@ version = "0.3.0"
2355 source = "registry+https://github.com/rust-lang/crates.io-index"
2356 checksum = "161a8b87e32610086e1a7a9e9ec39f84459db7b3a0881c1f16ca5a2605581c19"
2357 dependencies = [
2220 - "bitflags 2.5.0",
2358 + "bitflags 2.9.0",
2359 "objc2 0.6.0",
2360 "objc2-core-foundation",
2361 ]
@@ -2228,7 +2366,7 @@ version = "0.2.2"
2366 source = "registry+https://github.com/rust-lang/crates.io-index"
2367 checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6"
2368 dependencies = [
2231 - "bitflags 2.5.0",
2369 + "bitflags 2.9.0",
2370 "block2 0.5.1",
2371 "objc2 0.5.2",
2372 "objc2-foundation 0.2.2",
@@ -2240,7 +2378,7 @@ version = "0.2.2"
2378 source = "registry+https://github.com/rust-lang/crates.io-index"
2379 checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a"
2380 dependencies = [
2243 - "bitflags 2.5.0",
2381 + "bitflags 2.9.0",
2382 "block2 0.5.1",
2383 "objc2 0.5.2",
2384 "objc2-foundation 0.2.2",
@@ -2253,7 +2391,7 @@ version = "0.3.0"
2391 source = "registry+https://github.com/rust-lang/crates.io-index"
2392 checksum = "6fb3794501bb1bee12f08dcad8c61f2a5875791ad1c6f47faa71a0f033f20071"
2393 dependencies = [
2256 - "bitflags 2.5.0",
2394 + "bitflags 2.9.0",
2395 "objc2 0.6.0",
2396 "objc2-foundation 0.3.0",
2397 ]
@@ -2264,7 +2402,7 @@ version = "0.3.0"
2402 source = "registry+https://github.com/rust-lang/crates.io-index"
2403 checksum = "777a571be14a42a3990d4ebedaeb8b54cd17377ec21b92e8200ac03797b3bee1"
2404 dependencies = [
2267 - "bitflags 2.5.0",
2405 + "bitflags 2.9.0",
2406 "objc2 0.6.0",
2407 "objc2-core-foundation",
2408 "objc2-foundation 0.3.0",
@@ -2276,7 +2414,7 @@ version = "0.3.0"
2414 source = "registry+https://github.com/rust-lang/crates.io-index"
2415 checksum = "b717127e4014b0f9f3e8bba3d3f2acec81f1bde01f656823036e823ed2c94dce"
2416 dependencies = [
2279 - "bitflags 2.5.0",
2417 + "bitflags 2.9.0",
2418 "block2 0.6.0",
2419 "objc2 0.6.0",
2420 "objc2-app-kit",
@@ -2284,6 +2422,15 @@ dependencies = [
2422 "objc2-foundation 0.3.0",
2423 ]
2424
2425 +[[package]]
2426 +name = "object"
2427 +version = "0.36.7"
2428 +source = "registry+https://github.com/rust-lang/crates.io-index"
2429 +checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
2430 +dependencies = [
2431 + "memchr",
2432 +]
2433 +
2434 [[package]]
2435 name = "once_cell"
2436 version = "1.21.3"
@@ -2506,9 +2653,9 @@ dependencies = [
2653
2654 [[package]]
2655 name = "pin-project-lite"
2509 -version = "0.2.9"
2656 +version = "0.2.16"
2657 source = "registry+https://github.com/rust-lang/crates.io-index"
2511 -checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
2658 +checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2659
2660 [[package]]
2661 name = "pin-utils"
@@ -2803,7 +2950,7 @@ version = "0.5.11"
2950 source = "registry+https://github.com/rust-lang/crates.io-index"
2951 checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
2952 dependencies = [
2806 - "bitflags 2.5.0",
2953 + "bitflags 2.9.0",
2954 ]
2955
2956 [[package]]
@@ -2937,6 +3084,12 @@ dependencies = [
3084 "serde_json",
3085 ]
3086
3087 +[[package]]
3088 +name = "rustc-demangle"
3089 +version = "0.1.24"
3090 +source = "registry+https://github.com/rust-lang/crates.io-index"
3091 +checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
3092 +
3093 [[package]]
3094 name = "rustc_version"
3095 version = "0.4.0"
@@ -3266,16 +3419,6 @@ version = "1.15.0"
3419 source = "registry+https://github.com/rust-lang/crates.io-index"
3420 checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
3421
3269 -[[package]]
3270 -name = "socket2"
3271 -version = "0.4.10"
3272 -source = "registry+https://github.com/rust-lang/crates.io-index"
3273 -checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
3274 -dependencies = [
3275 - "libc",
3276 - "winapi",
3277 -]
3278 -
3422 [[package]]
3423 name = "socket2"
3424 version = "0.5.8"
@@ -3383,6 +3526,7 @@ dependencies = [
3526 "serde_json",
3527 "tauri",
3528 "tauri-build",
3529 + "tauri-plugin-fs",
3530 "tauri-plugin-log",
3531 "tauri-plugin-process",
3532 "tauri-plugin-pty",
@@ -3461,7 +3605,7 @@ version = "0.32.8"
3605 source = "registry+https://github.com/rust-lang/crates.io-index"
3606 checksum = "63c8b1020610b9138dd7b1e06cf259ae91aa05c30f3bd0d6b42a03997b92dec1"
3607 dependencies = [
3464 - "bitflags 2.5.0",
3608 + "bitflags 2.9.0",
3609 "core-foundation",
3610 "core-graphics",
3611 "crossbeam-channel",
@@ -3641,6 +3785,31 @@ dependencies = [
3785 "walkdir",
3786 ]
3787
3788 +[[package]]
3789 +name = "tauri-plugin-fs"
3790 +version = "2.2.1"
3791 +source = "registry+https://github.com/rust-lang/crates.io-index"
3792 +checksum = "88371e340ad2f07409a3b68294abe73f20bc9c1bc1b631a31dc37a3d0161f682"
3793 +dependencies = [
3794 + "anyhow",
3795 + "dunce",
3796 + "glob",
3797 + "notify",
3798 + "notify-debouncer-full",
3799 + "percent-encoding",
3800 + "schemars",
3801 + "serde",
3802 + "serde_json",
3803 + "serde_repr",
3804 + "tauri",
3805 + "tauri-plugin",
3806 + "tauri-utils",
3807 + "thiserror 2.0.12",
3808 + "toml 0.8.20",
3809 + "url",
3810 + "uuid",
3811 +]
3812 +
3813 [[package]]
3814 name = "tauri-plugin-log"
3815 version = "2.3.1"
@@ -3925,26 +4094,25 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
4094
4095 [[package]]
4096 name = "tokio"
3928 -version = "1.27.0"
4097 +version = "1.44.2"
4098 source = "registry+https://github.com/rust-lang/crates.io-index"
3930 -checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001"
4099 +checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
4100 dependencies = [
3932 - "autocfg",
4101 + "backtrace",
4102 "bytes",
4103 "libc",
4104 "mio",
3936 - "num_cpus",
4105 "pin-project-lite",
3938 - "socket2 0.4.10",
4106 + "socket2",
4107 "tokio-macros",
3940 - "windows-sys 0.45.0",
4108 + "windows-sys 0.52.0",
4109 ]
4110
4111 [[package]]
4112 name = "tokio-macros"
3945 -version = "2.0.0"
4113 +version = "2.5.0"
4114 source = "registry+https://github.com/rust-lang/crates.io-index"
3947 -checksum = "61a573bdc87985e9d6ddeed1b3d864e8a302c847e40d647746df2f1de209d1ce"
4115 +checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
4116 dependencies = [
4117 "proc-macro2",
4118 "quote",
@@ -4310,9 +4478,9 @@ dependencies = [
4478
4479 [[package]]
4480 name = "walkdir"
4313 -version = "2.3.3"
4481 +version = "2.5.0"
4482 source = "registry+https://github.com/rust-lang/crates.io-index"
4315 -checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
4483 +checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
4484 dependencies = [
4485 "same-file",
4486 "winapi-util",
src-tauri/Cargo.toml
+2 -2
@@ -4,7 +4,7 @@ version = "0.4.0"
4 description = "Svara is a simple and lightweight code editor for Linux, Windows, and MacOS."
5 authors = ["mellobacon", "setoelkahfi"]
6 license = "GPL-3.0"
7 -repository = ""
7 +repository = "https://github.com/setoelkahfi/svara"
8 edition = "2021"
9
10 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -24,9 +24,9 @@ infer = "0.3"
24 tokio = { version = "1", features = ["time"] }
25 tauri-plugin-pty = "0.1.0"
26 tauri-plugin-process = "2"
27 -#tauri-plugin-fs-watch = { version = "1" }
27 tauri-plugin-store = { version = "2" }
28 tauri-plugin-log = { version = "2" }
29 +tauri-plugin-fs = { version = "2", features = ["watch"] }
30
31 [features]
32 # by default Tauri runs in production mode
src-tauri/capabilities/migrated.json
+2 -1
@@ -6,6 +6,7 @@
6 "main"
7 ],
8 "permissions": [
9 - "core:default"
9 + "core:default",
10 + "fs:default"
11 ]
12 }
\ No newline at end of file
src-tauri/gen/schemas/acl-manifests.json
+1 -1
@@ -1 +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"]},"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-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-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-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-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-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-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-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-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-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-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-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-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-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-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},"log":{"default_permission":{"identifier":"default","description":"Allows the log command","permissions":["allow-log"]},"permissions":{"allow-log":{"identifier":"allow-log","description":"Enables the log command without any pre-configured scope.","commands":{"allow":["log"],"deny":[]}},"deny-log":{"identifier":"deny-log","description":"Denies the log command without any pre-configured scope.","commands":{"allow":[],"deny":["log"]}}},"permission_sets":{},"global_scope_schema":null},"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},"pty":{"default_permission":{"identifier":"default","description":"Allows the spawn command","permissions":["allow-spawn","allow-read","allow-write","allow-resize","allow-kill","allow-exitstatus"]},"permissions":{"allow-exitstatus":{"identifier":"allow-exitstatus","description":"Enables the exitstatus command without any pre-configured scope.","commands":{"allow":["exitstatus"],"deny":[]}},"allow-kill":{"identifier":"allow-kill","description":"Enables the kill command without any pre-configured scope.","commands":{"allow":["kill"],"deny":[]}},"allow-read":{"identifier":"allow-read","description":"Enables the read command without any pre-configured scope.","commands":{"allow":["read"],"deny":[]}},"allow-resize":{"identifier":"allow-resize","description":"Enables the resize command without any pre-configured scope.","commands":{"allow":["resize"],"deny":[]}},"allow-spawn":{"identifier":"allow-spawn","description":"Enables the spawn command without any pre-configured scope.","commands":{"allow":["spawn"],"deny":[]}},"allow-spawn, write, read, resize, kill, exitstatus":{"identifier":"allow-spawn, write, read, resize, kill, exitstatus","description":"Enables the spawn, write, read, resize, kill, exitstatus command without any pre-configured scope.","commands":{"allow":["spawn, write, read, resize, kill, exitstatus"],"deny":[]}},"allow-write":{"identifier":"allow-write","description":"Enables the write command without any pre-configured scope.","commands":{"allow":["write"],"deny":[]}},"deny-exitstatus":{"identifier":"deny-exitstatus","description":"Denies the exitstatus command without any pre-configured scope.","commands":{"allow":[],"deny":["exitstatus"]}},"deny-kill":{"identifier":"deny-kill","description":"Denies the kill command without any pre-configured scope.","commands":{"allow":[],"deny":["kill"]}},"deny-read":{"identifier":"deny-read","description":"Denies the read command without any pre-configured scope.","commands":{"allow":[],"deny":["read"]}},"deny-resize":{"identifier":"deny-resize","description":"Denies the resize command without any pre-configured scope.","commands":{"allow":[],"deny":["resize"]}},"deny-spawn":{"identifier":"deny-spawn","description":"Denies the spawn command without any pre-configured scope.","commands":{"allow":[],"deny":["spawn"]}},"deny-spawn, write, read, resize, kill, exitstatus":{"identifier":"deny-spawn, write, read, resize, kill, exitstatus","description":"Denies the spawn, write, read, resize, kill, exitstatus command without any pre-configured scope.","commands":{"allow":[],"deny":["spawn, write, read, resize, kill, exitstatus"]}},"deny-write":{"identifier":"deny-write","description":"Denies the write command without any pre-configured scope.","commands":{"allow":[],"deny":["write"]}}},"permission_sets":{},"global_scope_schema":null},"store":{"default_permission":{"identifier":"default","description":"This permission set configures what kind of\noperations are available from the store plugin.\n\n#### Granted Permissions\n\nAll operations are enabled by default.\n\n","permissions":["allow-load","allow-get-store","allow-set","allow-get","allow-has","allow-delete","allow-clear","allow-reset","allow-keys","allow-values","allow-entries","allow-length","allow-reload","allow-save"]},"permissions":{"allow-clear":{"identifier":"allow-clear","description":"Enables the clear command without any pre-configured scope.","commands":{"allow":["clear"],"deny":[]}},"allow-delete":{"identifier":"allow-delete","description":"Enables the delete command without any pre-configured scope.","commands":{"allow":["delete"],"deny":[]}},"allow-entries":{"identifier":"allow-entries","description":"Enables the entries command without any pre-configured scope.","commands":{"allow":["entries"],"deny":[]}},"allow-get":{"identifier":"allow-get","description":"Enables the get command without any pre-configured scope.","commands":{"allow":["get"],"deny":[]}},"allow-get-store":{"identifier":"allow-get-store","description":"Enables the get_store command without any pre-configured scope.","commands":{"allow":["get_store"],"deny":[]}},"allow-has":{"identifier":"allow-has","description":"Enables the has command without any pre-configured scope.","commands":{"allow":["has"],"deny":[]}},"allow-keys":{"identifier":"allow-keys","description":"Enables the keys command without any pre-configured scope.","commands":{"allow":["keys"],"deny":[]}},"allow-length":{"identifier":"allow-length","description":"Enables the length command without any pre-configured scope.","commands":{"allow":["length"],"deny":[]}},"allow-load":{"identifier":"allow-load","description":"Enables the load command without any pre-configured scope.","commands":{"allow":["load"],"deny":[]}},"allow-reload":{"identifier":"allow-reload","description":"Enables the reload command without any pre-configured scope.","commands":{"allow":["reload"],"deny":[]}},"allow-reset":{"identifier":"allow-reset","description":"Enables the reset command without any pre-configured scope.","commands":{"allow":["reset"],"deny":[]}},"allow-save":{"identifier":"allow-save","description":"Enables the save command without any pre-configured scope.","commands":{"allow":["save"],"deny":[]}},"allow-set":{"identifier":"allow-set","description":"Enables the set command without any pre-configured scope.","commands":{"allow":["set"],"deny":[]}},"allow-values":{"identifier":"allow-values","description":"Enables the values command without any pre-configured scope.","commands":{"allow":["values"],"deny":[]}},"deny-clear":{"identifier":"deny-clear","description":"Denies the clear command without any pre-configured scope.","commands":{"allow":[],"deny":["clear"]}},"deny-delete":{"identifier":"deny-delete","description":"Denies the delete command without any pre-configured scope.","commands":{"allow":[],"deny":["delete"]}},"deny-entries":{"identifier":"deny-entries","description":"Denies the entries command without any pre-configured scope.","commands":{"allow":[],"deny":["entries"]}},"deny-get":{"identifier":"deny-get","description":"Denies the get command without any pre-configured scope.","commands":{"allow":[],"deny":["get"]}},"deny-get-store":{"identifier":"deny-get-store","description":"Denies the get_store command without any pre-configured scope.","commands":{"allow":[],"deny":["get_store"]}},"deny-has":{"identifier":"deny-has","description":"Denies the has command without any pre-configured scope.","commands":{"allow":[],"deny":["has"]}},"deny-keys":{"identifier":"deny-keys","description":"Denies the keys command without any pre-configured scope.","commands":{"allow":[],"deny":["keys"]}},"deny-length":{"identifier":"deny-length","description":"Denies the length command without any pre-configured scope.","commands":{"allow":[],"deny":["length"]}},"deny-load":{"identifier":"deny-load","description":"Denies the load command without any pre-configured scope.","commands":{"allow":[],"deny":["load"]}},"deny-reload":{"identifier":"deny-reload","description":"Denies the reload command without any pre-configured scope.","commands":{"allow":[],"deny":["reload"]}},"deny-reset":{"identifier":"deny-reset","description":"Denies the reset command without any pre-configured scope.","commands":{"allow":[],"deny":["reset"]}},"deny-save":{"identifier":"deny-save","description":"Denies the save command without any pre-configured scope.","commands":{"allow":[],"deny":["save"]}},"deny-set":{"identifier":"deny-set","description":"Denies the set command without any pre-configured scope.","commands":{"allow":[],"deny":["set"]}},"deny-values":{"identifier":"deny-values","description":"Denies the values command without any pre-configured scope.","commands":{"allow":[],"deny":["values"]}}},"permission_sets":{},"global_scope_schema":null}}
\ No newline at end of file
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"]},"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-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-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-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-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-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-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-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-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-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-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-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-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-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-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},"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.","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"}},"log":{"default_permission":{"identifier":"default","description":"Allows the log command","permissions":["allow-log"]},"permissions":{"allow-log":{"identifier":"allow-log","description":"Enables the log command without any pre-configured scope.","commands":{"allow":["log"],"deny":[]}},"deny-log":{"identifier":"deny-log","description":"Denies the log command without any pre-configured scope.","commands":{"allow":[],"deny":["log"]}}},"permission_sets":{},"global_scope_schema":null},"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},"pty":{"default_permission":{"identifier":"default","description":"Allows the spawn command","permissions":["allow-spawn","allow-read","allow-write","allow-resize","allow-kill","allow-exitstatus"]},"permissions":{"allow-exitstatus":{"identifier":"allow-exitstatus","description":"Enables the exitstatus command without any pre-configured scope.","commands":{"allow":["exitstatus"],"deny":[]}},"allow-kill":{"identifier":"allow-kill","description":"Enables the kill command without any pre-configured scope.","commands":{"allow":["kill"],"deny":[]}},"allow-read":{"identifier":"allow-read","description":"Enables the read command without any pre-configured scope.","commands":{"allow":["read"],"deny":[]}},"allow-resize":{"identifier":"allow-resize","description":"Enables the resize command without any pre-configured scope.","commands":{"allow":["resize"],"deny":[]}},"allow-spawn":{"identifier":"allow-spawn","description":"Enables the spawn command without any pre-configured scope.","commands":{"allow":["spawn"],"deny":[]}},"allow-spawn, write, read, resize, kill, exitstatus":{"identifier":"allow-spawn, write, read, resize, kill, exitstatus","description":"Enables the spawn, write, read, resize, kill, exitstatus command without any pre-configured scope.","commands":{"allow":["spawn, write, read, resize, kill, exitstatus"],"deny":[]}},"allow-write":{"identifier":"allow-write","description":"Enables the write command without any pre-configured scope.","commands":{"allow":["write"],"deny":[]}},"deny-exitstatus":{"identifier":"deny-exitstatus","description":"Denies the exitstatus command without any pre-configured scope.","commands":{"allow":[],"deny":["exitstatus"]}},"deny-kill":{"identifier":"deny-kill","description":"Denies the kill command without any pre-configured scope.","commands":{"allow":[],"deny":["kill"]}},"deny-read":{"identifier":"deny-read","description":"Denies the read command without any pre-configured scope.","commands":{"allow":[],"deny":["read"]}},"deny-resize":{"identifier":"deny-resize","description":"Denies the resize command without any pre-configured scope.","commands":{"allow":[],"deny":["resize"]}},"deny-spawn":{"identifier":"deny-spawn","description":"Denies the spawn command without any pre-configured scope.","commands":{"allow":[],"deny":["spawn"]}},"deny-spawn, write, read, resize, kill, exitstatus":{"identifier":"deny-spawn, write, read, resize, kill, exitstatus","description":"Denies the spawn, write, read, resize, kill, exitstatus command without any pre-configured scope.","commands":{"allow":[],"deny":["spawn, write, read, resize, kill, exitstatus"]}},"deny-write":{"identifier":"deny-write","description":"Denies the write command without any pre-configured scope.","commands":{"allow":[],"deny":["write"]}}},"permission_sets":{},"global_scope_schema":null},"store":{"default_permission":{"identifier":"default","description":"This permission set configures what kind of\noperations are available from the store plugin.\n\n#### Granted Permissions\n\nAll operations are enabled by default.\n\n","permissions":["allow-load","allow-get-store","allow-set","allow-get","allow-has","allow-delete","allow-clear","allow-reset","allow-keys","allow-values","allow-entries","allow-length","allow-reload","allow-save"]},"permissions":{"allow-clear":{"identifier":"allow-clear","description":"Enables the clear command without any pre-configured scope.","commands":{"allow":["clear"],"deny":[]}},"allow-delete":{"identifier":"allow-delete","description":"Enables the delete command without any pre-configured scope.","commands":{"allow":["delete"],"deny":[]}},"allow-entries":{"identifier":"allow-entries","description":"Enables the entries command without any pre-configured scope.","commands":{"allow":["entries"],"deny":[]}},"allow-get":{"identifier":"allow-get","description":"Enables the get command without any pre-configured scope.","commands":{"allow":["get"],"deny":[]}},"allow-get-store":{"identifier":"allow-get-store","description":"Enables the get_store command without any pre-configured scope.","commands":{"allow":["get_store"],"deny":[]}},"allow-has":{"identifier":"allow-has","description":"Enables the has command without any pre-configured scope.","commands":{"allow":["has"],"deny":[]}},"allow-keys":{"identifier":"allow-keys","description":"Enables the keys command without any pre-configured scope.","commands":{"allow":["keys"],"deny":[]}},"allow-length":{"identifier":"allow-length","description":"Enables the length command without any pre-configured scope.","commands":{"allow":["length"],"deny":[]}},"allow-load":{"identifier":"allow-load","description":"Enables the load command without any pre-configured scope.","commands":{"allow":["load"],"deny":[]}},"allow-reload":{"identifier":"allow-reload","description":"Enables the reload command without any pre-configured scope.","commands":{"allow":["reload"],"deny":[]}},"allow-reset":{"identifier":"allow-reset","description":"Enables the reset command without any pre-configured scope.","commands":{"allow":["reset"],"deny":[]}},"allow-save":{"identifier":"allow-save","description":"Enables the save command without any pre-configured scope.","commands":{"allow":["save"],"deny":[]}},"allow-set":{"identifier":"allow-set","description":"Enables the set command without any pre-configured scope.","commands":{"allow":["set"],"deny":[]}},"allow-values":{"identifier":"allow-values","description":"Enables the values command without any pre-configured scope.","commands":{"allow":["values"],"deny":[]}},"deny-clear":{"identifier":"deny-clear","description":"Denies the clear command without any pre-configured scope.","commands":{"allow":[],"deny":["clear"]}},"deny-delete":{"identifier":"deny-delete","description":"Denies the delete command without any pre-configured scope.","commands":{"allow":[],"deny":["delete"]}},"deny-entries":{"identifier":"deny-entries","description":"Denies the entries command without any pre-configured scope.","commands":{"allow":[],"deny":["entries"]}},"deny-get":{"identifier":"deny-get","description":"Denies the get command without any pre-configured scope.","commands":{"allow":[],"deny":["get"]}},"deny-get-store":{"identifier":"deny-get-store","description":"Denies the get_store command without any pre-configured scope.","commands":{"allow":[],"deny":["get_store"]}},"deny-has":{"identifier":"deny-has","description":"Denies the has command without any pre-configured scope.","commands":{"allow":[],"deny":["has"]}},"deny-keys":{"identifier":"deny-keys","description":"Denies the keys command without any pre-configured scope.","commands":{"allow":[],"deny":["keys"]}},"deny-length":{"identifier":"deny-length","description":"Denies the length command without any pre-configured scope.","commands":{"allow":[],"deny":["length"]}},"deny-load":{"identifier":"deny-load","description":"Denies the load command without any pre-configured scope.","commands":{"allow":[],"deny":["load"]}},"deny-reload":{"identifier":"deny-reload","description":"Denies the reload command without any pre-configured scope.","commands":{"allow":[],"deny":["reload"]}},"deny-reset":{"identifier":"deny-reset","description":"Denies the reset command without any pre-configured scope.","commands":{"allow":[],"deny":["reset"]}},"deny-save":{"identifier":"deny-save","description":"Denies the save command without any pre-configured scope.","commands":{"allow":[],"deny":["save"]}},"deny-set":{"identifier":"deny-set","description":"Denies the set command without any pre-configured scope.","commands":{"allow":[],"deny":["set"]}},"deny-values":{"identifier":"deny-values","description":"Denies the values command without any pre-configured scope.","commands":{"allow":[],"deny":["values"]}}},"permission_sets":{},"global_scope_schema":null}}
\ No newline at end of file
src-tauri/gen/schemas/capabilities.json
+1 -1
@@ -1 +1 @@
1 -{"migrated":{"identifier":"migrated","description":"permissions that were migrated from v1","local":true,"windows":["main"],"permissions":["core:default"]}}
\ No newline at end of file
1 +{"migrated":{"identifier":"migrated","description":"permissions that were migrated from v1","local":true,"windows":["main"],"permissions":["core:default","fs:default"]}}
\ No newline at end of file
src-tauri/gen/schemas/desktop-schema.json
+3528
@@ -134,6 +134,1806 @@
134 "description": "Reference a permission or permission set by identifier and extends its scope.",
135 "type": "object",
136 "allOf": [
137 + {
138 + "if": {
139 + "properties": {
140 + "identifier": {
141 + "anyOf": [
142 + {
143 + "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\n#### This default permission set includes:\n\n- `create-app-specific-dirs`\n- `read-app-specific-dirs-recursive`\n- `deny-default`",
144 + "type": "string",
145 + "const": "fs:default",
146 + "markdownDescription": "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\n#### This default permission set includes:\n\n- `create-app-specific-dirs`\n- `read-app-specific-dirs-recursive`\n- `deny-default`"
147 + },
148 + {
149 + "description": "This allows non-recursive read access to metadata of the application folders, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-app-index`",
150 + "type": "string",
151 + "const": "fs:allow-app-meta",
152 + "markdownDescription": "This allows non-recursive read access to metadata of the application folders, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-app-index`"
153 + },
154 + {
155 + "description": "This allows full recursive read access to metadata of the application folders, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-app-recursive`",
156 + "type": "string",
157 + "const": "fs:allow-app-meta-recursive",
158 + "markdownDescription": "This allows full recursive read access to metadata of the application folders, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-app-recursive`"
159 + },
160 + {
161 + "description": "This allows non-recursive read access to the application folders.\n#### This permission set includes:\n\n- `read-all`\n- `scope-app`",
162 + "type": "string",
163 + "const": "fs:allow-app-read",
164 + "markdownDescription": "This allows non-recursive read access to the application folders.\n#### This permission set includes:\n\n- `read-all`\n- `scope-app`"
165 + },
166 + {
167 + "description": "This allows full recursive read access to the complete application folders, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-app-recursive`",
168 + "type": "string",
169 + "const": "fs:allow-app-read-recursive",
170 + "markdownDescription": "This allows full recursive read access to the complete application folders, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-app-recursive`"
171 + },
172 + {
173 + "description": "This allows non-recursive write access to the application folders.\n#### This permission set includes:\n\n- `write-all`\n- `scope-app`",
174 + "type": "string",
175 + "const": "fs:allow-app-write",
176 + "markdownDescription": "This allows non-recursive write access to the application folders.\n#### This permission set includes:\n\n- `write-all`\n- `scope-app`"
177 + },
178 + {
179 + "description": "This allows full recursive write access to the complete application folders, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-app-recursive`",
180 + "type": "string",
181 + "const": "fs:allow-app-write-recursive",
182 + "markdownDescription": "This allows full recursive write access to the complete application folders, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-app-recursive`"
183 + },
184 + {
185 + "description": "This allows non-recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appcache-index`",
186 + "type": "string",
187 + "const": "fs:allow-appcache-meta",
188 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appcache-index`"
189 + },
190 + {
191 + "description": "This allows full recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appcache-recursive`",
192 + "type": "string",
193 + "const": "fs:allow-appcache-meta-recursive",
194 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appcache-recursive`"
195 + },
196 + {
197 + "description": "This allows non-recursive read access to the `$APPCACHE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appcache`",
198 + "type": "string",
199 + "const": "fs:allow-appcache-read",
200 + "markdownDescription": "This allows non-recursive read access to the `$APPCACHE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appcache`"
201 + },
202 + {
203 + "description": "This allows full recursive read access to the complete `$APPCACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appcache-recursive`",
204 + "type": "string",
205 + "const": "fs:allow-appcache-read-recursive",
206 + "markdownDescription": "This allows full recursive read access to the complete `$APPCACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appcache-recursive`"
207 + },
208 + {
209 + "description": "This allows non-recursive write access to the `$APPCACHE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appcache`",
210 + "type": "string",
211 + "const": "fs:allow-appcache-write",
212 + "markdownDescription": "This allows non-recursive write access to the `$APPCACHE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appcache`"
213 + },
214 + {
215 + "description": "This allows full recursive write access to the complete `$APPCACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appcache-recursive`",
216 + "type": "string",
217 + "const": "fs:allow-appcache-write-recursive",
218 + "markdownDescription": "This allows full recursive write access to the complete `$APPCACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appcache-recursive`"
219 + },
220 + {
221 + "description": "This allows non-recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appconfig-index`",
222 + "type": "string",
223 + "const": "fs:allow-appconfig-meta",
224 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appconfig-index`"
225 + },
226 + {
227 + "description": "This allows full recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appconfig-recursive`",
228 + "type": "string",
229 + "const": "fs:allow-appconfig-meta-recursive",
230 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appconfig-recursive`"
231 + },
232 + {
233 + "description": "This allows non-recursive read access to the `$APPCONFIG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appconfig`",
234 + "type": "string",
235 + "const": "fs:allow-appconfig-read",
236 + "markdownDescription": "This allows non-recursive read access to the `$APPCONFIG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appconfig`"
237 + },
238 + {
239 + "description": "This allows full recursive read access to the complete `$APPCONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appconfig-recursive`",
240 + "type": "string",
241 + "const": "fs:allow-appconfig-read-recursive",
242 + "markdownDescription": "This allows full recursive read access to the complete `$APPCONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appconfig-recursive`"
243 + },
244 + {
245 + "description": "This allows non-recursive write access to the `$APPCONFIG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appconfig`",
246 + "type": "string",
247 + "const": "fs:allow-appconfig-write",
248 + "markdownDescription": "This allows non-recursive write access to the `$APPCONFIG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appconfig`"
249 + },
250 + {
251 + "description": "This allows full recursive write access to the complete `$APPCONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appconfig-recursive`",
252 + "type": "string",
253 + "const": "fs:allow-appconfig-write-recursive",
254 + "markdownDescription": "This allows full recursive write access to the complete `$APPCONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appconfig-recursive`"
255 + },
256 + {
257 + "description": "This allows non-recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appdata-index`",
258 + "type": "string",
259 + "const": "fs:allow-appdata-meta",
260 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appdata-index`"
261 + },
262 + {
263 + "description": "This allows full recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appdata-recursive`",
264 + "type": "string",
265 + "const": "fs:allow-appdata-meta-recursive",
266 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appdata-recursive`"
267 + },
268 + {
269 + "description": "This allows non-recursive read access to the `$APPDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appdata`",
270 + "type": "string",
271 + "const": "fs:allow-appdata-read",
272 + "markdownDescription": "This allows non-recursive read access to the `$APPDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appdata`"
273 + },
274 + {
275 + "description": "This allows full recursive read access to the complete `$APPDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appdata-recursive`",
276 + "type": "string",
277 + "const": "fs:allow-appdata-read-recursive",
278 + "markdownDescription": "This allows full recursive read access to the complete `$APPDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appdata-recursive`"
279 + },
280 + {
281 + "description": "This allows non-recursive write access to the `$APPDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appdata`",
282 + "type": "string",
283 + "const": "fs:allow-appdata-write",
284 + "markdownDescription": "This allows non-recursive write access to the `$APPDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appdata`"
285 + },
286 + {
287 + "description": "This allows full recursive write access to the complete `$APPDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appdata-recursive`",
288 + "type": "string",
289 + "const": "fs:allow-appdata-write-recursive",
290 + "markdownDescription": "This allows full recursive write access to the complete `$APPDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appdata-recursive`"
291 + },
292 + {
293 + "description": "This allows non-recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applocaldata-index`",
294 + "type": "string",
295 + "const": "fs:allow-applocaldata-meta",
296 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applocaldata-index`"
297 + },
298 + {
299 + "description": "This allows full recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applocaldata-recursive`",
300 + "type": "string",
301 + "const": "fs:allow-applocaldata-meta-recursive",
302 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applocaldata-recursive`"
303 + },
304 + {
305 + "description": "This allows non-recursive read access to the `$APPLOCALDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applocaldata`",
306 + "type": "string",
307 + "const": "fs:allow-applocaldata-read",
308 + "markdownDescription": "This allows non-recursive read access to the `$APPLOCALDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applocaldata`"
309 + },
310 + {
311 + "description": "This allows full recursive read access to the complete `$APPLOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applocaldata-recursive`",
312 + "type": "string",
313 + "const": "fs:allow-applocaldata-read-recursive",
314 + "markdownDescription": "This allows full recursive read access to the complete `$APPLOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applocaldata-recursive`"
315 + },
316 + {
317 + "description": "This allows non-recursive write access to the `$APPLOCALDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applocaldata`",
318 + "type": "string",
319 + "const": "fs:allow-applocaldata-write",
320 + "markdownDescription": "This allows non-recursive write access to the `$APPLOCALDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applocaldata`"
321 + },
322 + {
323 + "description": "This allows full recursive write access to the complete `$APPLOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applocaldata-recursive`",
324 + "type": "string",
325 + "const": "fs:allow-applocaldata-write-recursive",
326 + "markdownDescription": "This allows full recursive write access to the complete `$APPLOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applocaldata-recursive`"
327 + },
328 + {
329 + "description": "This allows non-recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applog-index`",
330 + "type": "string",
331 + "const": "fs:allow-applog-meta",
332 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applog-index`"
333 + },
334 + {
335 + "description": "This allows full recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applog-recursive`",
336 + "type": "string",
337 + "const": "fs:allow-applog-meta-recursive",
338 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applog-recursive`"
339 + },
340 + {
341 + "description": "This allows non-recursive read access to the `$APPLOG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applog`",
342 + "type": "string",
343 + "const": "fs:allow-applog-read",
344 + "markdownDescription": "This allows non-recursive read access to the `$APPLOG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applog`"
345 + },
346 + {
347 + "description": "This allows full recursive read access to the complete `$APPLOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applog-recursive`",
348 + "type": "string",
349 + "const": "fs:allow-applog-read-recursive",
350 + "markdownDescription": "This allows full recursive read access to the complete `$APPLOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applog-recursive`"
351 + },
352 + {
353 + "description": "This allows non-recursive write access to the `$APPLOG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applog`",
354 + "type": "string",
355 + "const": "fs:allow-applog-write",
356 + "markdownDescription": "This allows non-recursive write access to the `$APPLOG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applog`"
357 + },
358 + {
359 + "description": "This allows full recursive write access to the complete `$APPLOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applog-recursive`",
360 + "type": "string",
361 + "const": "fs:allow-applog-write-recursive",
362 + "markdownDescription": "This allows full recursive write access to the complete `$APPLOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applog-recursive`"
363 + },
364 + {
365 + "description": "This allows non-recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-audio-index`",
366 + "type": "string",
367 + "const": "fs:allow-audio-meta",
368 + "markdownDescription": "This allows non-recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-audio-index`"
369 + },
370 + {
371 + "description": "This allows full recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-audio-recursive`",
372 + "type": "string",
373 + "const": "fs:allow-audio-meta-recursive",
374 + "markdownDescription": "This allows full recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-audio-recursive`"
375 + },
376 + {
377 + "description": "This allows non-recursive read access to the `$AUDIO` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-audio`",
378 + "type": "string",
379 + "const": "fs:allow-audio-read",
380 + "markdownDescription": "This allows non-recursive read access to the `$AUDIO` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-audio`"
381 + },
382 + {
383 + "description": "This allows full recursive read access to the complete `$AUDIO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-audio-recursive`",
384 + "type": "string",
385 + "const": "fs:allow-audio-read-recursive",
386 + "markdownDescription": "This allows full recursive read access to the complete `$AUDIO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-audio-recursive`"
387 + },
388 + {
389 + "description": "This allows non-recursive write access to the `$AUDIO` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-audio`",
390 + "type": "string",
391 + "const": "fs:allow-audio-write",
392 + "markdownDescription": "This allows non-recursive write access to the `$AUDIO` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-audio`"
393 + },
394 + {
395 + "description": "This allows full recursive write access to the complete `$AUDIO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-audio-recursive`",
396 + "type": "string",
397 + "const": "fs:allow-audio-write-recursive",
398 + "markdownDescription": "This allows full recursive write access to the complete `$AUDIO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-audio-recursive`"
399 + },
400 + {
401 + "description": "This allows non-recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-cache-index`",
402 + "type": "string",
403 + "const": "fs:allow-cache-meta",
404 + "markdownDescription": "This allows non-recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-cache-index`"
405 + },
406 + {
407 + "description": "This allows full recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-cache-recursive`",
408 + "type": "string",
409 + "const": "fs:allow-cache-meta-recursive",
410 + "markdownDescription": "This allows full recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-cache-recursive`"
411 + },
412 + {
413 + "description": "This allows non-recursive read access to the `$CACHE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-cache`",
414 + "type": "string",
415 + "const": "fs:allow-cache-read",
416 + "markdownDescription": "This allows non-recursive read access to the `$CACHE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-cache`"
417 + },
418 + {
419 + "description": "This allows full recursive read access to the complete `$CACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-cache-recursive`",
420 + "type": "string",
421 + "const": "fs:allow-cache-read-recursive",
422 + "markdownDescription": "This allows full recursive read access to the complete `$CACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-cache-recursive`"
423 + },
424 + {
425 + "description": "This allows non-recursive write access to the `$CACHE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-cache`",
426 + "type": "string",
427 + "const": "fs:allow-cache-write",
428 + "markdownDescription": "This allows non-recursive write access to the `$CACHE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-cache`"
429 + },
430 + {
431 + "description": "This allows full recursive write access to the complete `$CACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-cache-recursive`",
432 + "type": "string",
433 + "const": "fs:allow-cache-write-recursive",
434 + "markdownDescription": "This allows full recursive write access to the complete `$CACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-cache-recursive`"
435 + },
436 + {
437 + "description": "This allows non-recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-config-index`",
438 + "type": "string",
439 + "const": "fs:allow-config-meta",
440 + "markdownDescription": "This allows non-recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-config-index`"
441 + },
442 + {
443 + "description": "This allows full recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-config-recursive`",
444 + "type": "string",
445 + "const": "fs:allow-config-meta-recursive",
446 + "markdownDescription": "This allows full recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-config-recursive`"
447 + },
448 + {
449 + "description": "This allows non-recursive read access to the `$CONFIG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-config`",
450 + "type": "string",
451 + "const": "fs:allow-config-read",
452 + "markdownDescription": "This allows non-recursive read access to the `$CONFIG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-config`"
453 + },
454 + {
455 + "description": "This allows full recursive read access to the complete `$CONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-config-recursive`",
456 + "type": "string",
457 + "const": "fs:allow-config-read-recursive",
458 + "markdownDescription": "This allows full recursive read access to the complete `$CONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-config-recursive`"
459 + },
460 + {
461 + "description": "This allows non-recursive write access to the `$CONFIG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-config`",
462 + "type": "string",
463 + "const": "fs:allow-config-write",
464 + "markdownDescription": "This allows non-recursive write access to the `$CONFIG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-config`"
465 + },
466 + {
467 + "description": "This allows full recursive write access to the complete `$CONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-config-recursive`",
468 + "type": "string",
469 + "const": "fs:allow-config-write-recursive",
470 + "markdownDescription": "This allows full recursive write access to the complete `$CONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-config-recursive`"
471 + },
472 + {
473 + "description": "This allows non-recursive read access to metadata of the `$DATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-data-index`",
474 + "type": "string",
475 + "const": "fs:allow-data-meta",
476 + "markdownDescription": "This allows non-recursive read access to metadata of the `$DATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-data-index`"
477 + },
478 + {
479 + "description": "This allows full recursive read access to metadata of the `$DATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-data-recursive`",
480 + "type": "string",
481 + "const": "fs:allow-data-meta-recursive",
482 + "markdownDescription": "This allows full recursive read access to metadata of the `$DATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-data-recursive`"
483 + },
484 + {
485 + "description": "This allows non-recursive read access to the `$DATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-data`",
486 + "type": "string",
487 + "const": "fs:allow-data-read",
488 + "markdownDescription": "This allows non-recursive read access to the `$DATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-data`"
489 + },
490 + {
491 + "description": "This allows full recursive read access to the complete `$DATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-data-recursive`",
492 + "type": "string",
493 + "const": "fs:allow-data-read-recursive",
494 + "markdownDescription": "This allows full recursive read access to the complete `$DATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-data-recursive`"
495 + },
496 + {
497 + "description": "This allows non-recursive write access to the `$DATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-data`",
498 + "type": "string",
499 + "const": "fs:allow-data-write",
500 + "markdownDescription": "This allows non-recursive write access to the `$DATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-data`"
501 + },
502 + {
503 + "description": "This allows full recursive write access to the complete `$DATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-data-recursive`",
504 + "type": "string",
505 + "const": "fs:allow-data-write-recursive",
506 + "markdownDescription": "This allows full recursive write access to the complete `$DATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-data-recursive`"
507 + },
508 + {
509 + "description": "This allows non-recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-desktop-index`",
510 + "type": "string",
511 + "const": "fs:allow-desktop-meta",
512 + "markdownDescription": "This allows non-recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-desktop-index`"
513 + },
514 + {
515 + "description": "This allows full recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-desktop-recursive`",
516 + "type": "string",
517 + "const": "fs:allow-desktop-meta-recursive",
518 + "markdownDescription": "This allows full recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-desktop-recursive`"
519 + },
520 + {
521 + "description": "This allows non-recursive read access to the `$DESKTOP` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-desktop`",
522 + "type": "string",
523 + "const": "fs:allow-desktop-read",
524 + "markdownDescription": "This allows non-recursive read access to the `$DESKTOP` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-desktop`"
525 + },
526 + {
527 + "description": "This allows full recursive read access to the complete `$DESKTOP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-desktop-recursive`",
528 + "type": "string",
529 + "const": "fs:allow-desktop-read-recursive",
530 + "markdownDescription": "This allows full recursive read access to the complete `$DESKTOP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-desktop-recursive`"
531 + },
532 + {
533 + "description": "This allows non-recursive write access to the `$DESKTOP` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-desktop`",
534 + "type": "string",
535 + "const": "fs:allow-desktop-write",
536 + "markdownDescription": "This allows non-recursive write access to the `$DESKTOP` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-desktop`"
537 + },
538 + {
539 + "description": "This allows full recursive write access to the complete `$DESKTOP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-desktop-recursive`",
540 + "type": "string",
541 + "const": "fs:allow-desktop-write-recursive",
542 + "markdownDescription": "This allows full recursive write access to the complete `$DESKTOP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-desktop-recursive`"
543 + },
544 + {
545 + "description": "This allows non-recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-document-index`",
546 + "type": "string",
547 + "const": "fs:allow-document-meta",
548 + "markdownDescription": "This allows non-recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-document-index`"
549 + },
550 + {
551 + "description": "This allows full recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-document-recursive`",
552 + "type": "string",
553 + "const": "fs:allow-document-meta-recursive",
554 + "markdownDescription": "This allows full recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-document-recursive`"
555 + },
556 + {
557 + "description": "This allows non-recursive read access to the `$DOCUMENT` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-document`",
558 + "type": "string",
559 + "const": "fs:allow-document-read",
560 + "markdownDescription": "This allows non-recursive read access to the `$DOCUMENT` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-document`"
561 + },
562 + {
563 + "description": "This allows full recursive read access to the complete `$DOCUMENT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-document-recursive`",
564 + "type": "string",
565 + "const": "fs:allow-document-read-recursive",
566 + "markdownDescription": "This allows full recursive read access to the complete `$DOCUMENT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-document-recursive`"
567 + },
568 + {
569 + "description": "This allows non-recursive write access to the `$DOCUMENT` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-document`",
570 + "type": "string",
571 + "const": "fs:allow-document-write",
572 + "markdownDescription": "This allows non-recursive write access to the `$DOCUMENT` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-document`"
573 + },
574 + {
575 + "description": "This allows full recursive write access to the complete `$DOCUMENT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-document-recursive`",
576 + "type": "string",
577 + "const": "fs:allow-document-write-recursive",
578 + "markdownDescription": "This allows full recursive write access to the complete `$DOCUMENT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-document-recursive`"
579 + },
580 + {
581 + "description": "This allows non-recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-download-index`",
582 + "type": "string",
583 + "const": "fs:allow-download-meta",
584 + "markdownDescription": "This allows non-recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-download-index`"
585 + },
586 + {
587 + "description": "This allows full recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-download-recursive`",
588 + "type": "string",
589 + "const": "fs:allow-download-meta-recursive",
590 + "markdownDescription": "This allows full recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-download-recursive`"
591 + },
592 + {
593 + "description": "This allows non-recursive read access to the `$DOWNLOAD` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-download`",
594 + "type": "string",
595 + "const": "fs:allow-download-read",
596 + "markdownDescription": "This allows non-recursive read access to the `$DOWNLOAD` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-download`"
597 + },
598 + {
599 + "description": "This allows full recursive read access to the complete `$DOWNLOAD` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-download-recursive`",
600 + "type": "string",
601 + "const": "fs:allow-download-read-recursive",
602 + "markdownDescription": "This allows full recursive read access to the complete `$DOWNLOAD` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-download-recursive`"
603 + },
604 + {
605 + "description": "This allows non-recursive write access to the `$DOWNLOAD` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-download`",
606 + "type": "string",
607 + "const": "fs:allow-download-write",
608 + "markdownDescription": "This allows non-recursive write access to the `$DOWNLOAD` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-download`"
609 + },
610 + {
611 + "description": "This allows full recursive write access to the complete `$DOWNLOAD` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-download-recursive`",
612 + "type": "string",
613 + "const": "fs:allow-download-write-recursive",
614 + "markdownDescription": "This allows full recursive write access to the complete `$DOWNLOAD` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-download-recursive`"
615 + },
616 + {
617 + "description": "This allows non-recursive read access to metadata of the `$EXE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-exe-index`",
618 + "type": "string",
619 + "const": "fs:allow-exe-meta",
620 + "markdownDescription": "This allows non-recursive read access to metadata of the `$EXE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-exe-index`"
621 + },
622 + {
623 + "description": "This allows full recursive read access to metadata of the `$EXE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-exe-recursive`",
624 + "type": "string",
625 + "const": "fs:allow-exe-meta-recursive",
626 + "markdownDescription": "This allows full recursive read access to metadata of the `$EXE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-exe-recursive`"
627 + },
628 + {
629 + "description": "This allows non-recursive read access to the `$EXE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-exe`",
630 + "type": "string",
631 + "const": "fs:allow-exe-read",
632 + "markdownDescription": "This allows non-recursive read access to the `$EXE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-exe`"
633 + },
634 + {
635 + "description": "This allows full recursive read access to the complete `$EXE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-exe-recursive`",
636 + "type": "string",
637 + "const": "fs:allow-exe-read-recursive",
638 + "markdownDescription": "This allows full recursive read access to the complete `$EXE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-exe-recursive`"
639 + },
640 + {
641 + "description": "This allows non-recursive write access to the `$EXE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-exe`",
642 + "type": "string",
643 + "const": "fs:allow-exe-write",
644 + "markdownDescription": "This allows non-recursive write access to the `$EXE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-exe`"
645 + },
646 + {
647 + "description": "This allows full recursive write access to the complete `$EXE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-exe-recursive`",
648 + "type": "string",
649 + "const": "fs:allow-exe-write-recursive",
650 + "markdownDescription": "This allows full recursive write access to the complete `$EXE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-exe-recursive`"
651 + },
652 + {
653 + "description": "This allows non-recursive read access to metadata of the `$FONT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-font-index`",
654 + "type": "string",
655 + "const": "fs:allow-font-meta",
656 + "markdownDescription": "This allows non-recursive read access to metadata of the `$FONT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-font-index`"
657 + },
658 + {
659 + "description": "This allows full recursive read access to metadata of the `$FONT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-font-recursive`",
660 + "type": "string",
661 + "const": "fs:allow-font-meta-recursive",
662 + "markdownDescription": "This allows full recursive read access to metadata of the `$FONT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-font-recursive`"
663 + },
664 + {
665 + "description": "This allows non-recursive read access to the `$FONT` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-font`",
666 + "type": "string",
667 + "const": "fs:allow-font-read",
668 + "markdownDescription": "This allows non-recursive read access to the `$FONT` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-font`"
669 + },
670 + {
671 + "description": "This allows full recursive read access to the complete `$FONT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-font-recursive`",
672 + "type": "string",
673 + "const": "fs:allow-font-read-recursive",
674 + "markdownDescription": "This allows full recursive read access to the complete `$FONT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-font-recursive`"
675 + },
676 + {
677 + "description": "This allows non-recursive write access to the `$FONT` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-font`",
678 + "type": "string",
679 + "const": "fs:allow-font-write",
680 + "markdownDescription": "This allows non-recursive write access to the `$FONT` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-font`"
681 + },
682 + {
683 + "description": "This allows full recursive write access to the complete `$FONT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-font-recursive`",
684 + "type": "string",
685 + "const": "fs:allow-font-write-recursive",
686 + "markdownDescription": "This allows full recursive write access to the complete `$FONT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-font-recursive`"
687 + },
688 + {
689 + "description": "This allows non-recursive read access to metadata of the `$HOME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-home-index`",
690 + "type": "string",
691 + "const": "fs:allow-home-meta",
692 + "markdownDescription": "This allows non-recursive read access to metadata of the `$HOME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-home-index`"
693 + },
694 + {
695 + "description": "This allows full recursive read access to metadata of the `$HOME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-home-recursive`",
696 + "type": "string",
697 + "const": "fs:allow-home-meta-recursive",
698 + "markdownDescription": "This allows full recursive read access to metadata of the `$HOME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-home-recursive`"
699 + },
700 + {
701 + "description": "This allows non-recursive read access to the `$HOME` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-home`",
702 + "type": "string",
703 + "const": "fs:allow-home-read",
704 + "markdownDescription": "This allows non-recursive read access to the `$HOME` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-home`"
705 + },
706 + {
707 + "description": "This allows full recursive read access to the complete `$HOME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-home-recursive`",
708 + "type": "string",
709 + "const": "fs:allow-home-read-recursive",
710 + "markdownDescription": "This allows full recursive read access to the complete `$HOME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-home-recursive`"
711 + },
712 + {
713 + "description": "This allows non-recursive write access to the `$HOME` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-home`",
714 + "type": "string",
715 + "const": "fs:allow-home-write",
716 + "markdownDescription": "This allows non-recursive write access to the `$HOME` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-home`"
717 + },
718 + {
719 + "description": "This allows full recursive write access to the complete `$HOME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-home-recursive`",
720 + "type": "string",
721 + "const": "fs:allow-home-write-recursive",
722 + "markdownDescription": "This allows full recursive write access to the complete `$HOME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-home-recursive`"
723 + },
724 + {
725 + "description": "This allows non-recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-localdata-index`",
726 + "type": "string",
727 + "const": "fs:allow-localdata-meta",
728 + "markdownDescription": "This allows non-recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-localdata-index`"
729 + },
730 + {
731 + "description": "This allows full recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-localdata-recursive`",
732 + "type": "string",
733 + "const": "fs:allow-localdata-meta-recursive",
734 + "markdownDescription": "This allows full recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-localdata-recursive`"
735 + },
736 + {
737 + "description": "This allows non-recursive read access to the `$LOCALDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-localdata`",
738 + "type": "string",
739 + "const": "fs:allow-localdata-read",
740 + "markdownDescription": "This allows non-recursive read access to the `$LOCALDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-localdata`"
741 + },
742 + {
743 + "description": "This allows full recursive read access to the complete `$LOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-localdata-recursive`",
744 + "type": "string",
745 + "const": "fs:allow-localdata-read-recursive",
746 + "markdownDescription": "This allows full recursive read access to the complete `$LOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-localdata-recursive`"
747 + },
748 + {
749 + "description": "This allows non-recursive write access to the `$LOCALDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-localdata`",
750 + "type": "string",
751 + "const": "fs:allow-localdata-write",
752 + "markdownDescription": "This allows non-recursive write access to the `$LOCALDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-localdata`"
753 + },
754 + {
755 + "description": "This allows full recursive write access to the complete `$LOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-localdata-recursive`",
756 + "type": "string",
757 + "const": "fs:allow-localdata-write-recursive",
758 + "markdownDescription": "This allows full recursive write access to the complete `$LOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-localdata-recursive`"
759 + },
760 + {
761 + "description": "This allows non-recursive read access to metadata of the `$LOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-log-index`",
762 + "type": "string",
763 + "const": "fs:allow-log-meta",
764 + "markdownDescription": "This allows non-recursive read access to metadata of the `$LOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-log-index`"
765 + },
766 + {
767 + "description": "This allows full recursive read access to metadata of the `$LOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-log-recursive`",
768 + "type": "string",
769 + "const": "fs:allow-log-meta-recursive",
770 + "markdownDescription": "This allows full recursive read access to metadata of the `$LOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-log-recursive`"
771 + },
772 + {
773 + "description": "This allows non-recursive read access to the `$LOG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-log`",
774 + "type": "string",
775 + "const": "fs:allow-log-read",
776 + "markdownDescription": "This allows non-recursive read access to the `$LOG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-log`"
777 + },
778 + {
779 + "description": "This allows full recursive read access to the complete `$LOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-log-recursive`",
780 + "type": "string",
781 + "const": "fs:allow-log-read-recursive",
782 + "markdownDescription": "This allows full recursive read access to the complete `$LOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-log-recursive`"
783 + },
784 + {
785 + "description": "This allows non-recursive write access to the `$LOG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-log`",
786 + "type": "string",
787 + "const": "fs:allow-log-write",
788 + "markdownDescription": "This allows non-recursive write access to the `$LOG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-log`"
789 + },
790 + {
791 + "description": "This allows full recursive write access to the complete `$LOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-log-recursive`",
792 + "type": "string",
793 + "const": "fs:allow-log-write-recursive",
794 + "markdownDescription": "This allows full recursive write access to the complete `$LOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-log-recursive`"
795 + },
796 + {
797 + "description": "This allows non-recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-picture-index`",
798 + "type": "string",
799 + "const": "fs:allow-picture-meta",
800 + "markdownDescription": "This allows non-recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-picture-index`"
801 + },
802 + {
803 + "description": "This allows full recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-picture-recursive`",
804 + "type": "string",
805 + "const": "fs:allow-picture-meta-recursive",
806 + "markdownDescription": "This allows full recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-picture-recursive`"
807 + },
808 + {
809 + "description": "This allows non-recursive read access to the `$PICTURE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-picture`",
810 + "type": "string",
811 + "const": "fs:allow-picture-read",
812 + "markdownDescription": "This allows non-recursive read access to the `$PICTURE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-picture`"
813 + },
814 + {
815 + "description": "This allows full recursive read access to the complete `$PICTURE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-picture-recursive`",
816 + "type": "string",
817 + "const": "fs:allow-picture-read-recursive",
818 + "markdownDescription": "This allows full recursive read access to the complete `$PICTURE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-picture-recursive`"
819 + },
820 + {
821 + "description": "This allows non-recursive write access to the `$PICTURE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-picture`",
822 + "type": "string",
823 + "const": "fs:allow-picture-write",
824 + "markdownDescription": "This allows non-recursive write access to the `$PICTURE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-picture`"
825 + },
826 + {
827 + "description": "This allows full recursive write access to the complete `$PICTURE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-picture-recursive`",
828 + "type": "string",
829 + "const": "fs:allow-picture-write-recursive",
830 + "markdownDescription": "This allows full recursive write access to the complete `$PICTURE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-picture-recursive`"
831 + },
832 + {
833 + "description": "This allows non-recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-public-index`",
834 + "type": "string",
835 + "const": "fs:allow-public-meta",
836 + "markdownDescription": "This allows non-recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-public-index`"
837 + },
838 + {
839 + "description": "This allows full recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-public-recursive`",
840 + "type": "string",
841 + "const": "fs:allow-public-meta-recursive",
842 + "markdownDescription": "This allows full recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-public-recursive`"
843 + },
844 + {
845 + "description": "This allows non-recursive read access to the `$PUBLIC` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-public`",
846 + "type": "string",
847 + "const": "fs:allow-public-read",
848 + "markdownDescription": "This allows non-recursive read access to the `$PUBLIC` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-public`"
849 + },
850 + {
851 + "description": "This allows full recursive read access to the complete `$PUBLIC` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-public-recursive`",
852 + "type": "string",
853 + "const": "fs:allow-public-read-recursive",
854 + "markdownDescription": "This allows full recursive read access to the complete `$PUBLIC` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-public-recursive`"
855 + },
856 + {
857 + "description": "This allows non-recursive write access to the `$PUBLIC` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-public`",
858 + "type": "string",
859 + "const": "fs:allow-public-write",
860 + "markdownDescription": "This allows non-recursive write access to the `$PUBLIC` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-public`"
861 + },
862 + {
863 + "description": "This allows full recursive write access to the complete `$PUBLIC` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-public-recursive`",
864 + "type": "string",
865 + "const": "fs:allow-public-write-recursive",
866 + "markdownDescription": "This allows full recursive write access to the complete `$PUBLIC` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-public-recursive`"
867 + },
868 + {
869 + "description": "This allows non-recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-resource-index`",
870 + "type": "string",
871 + "const": "fs:allow-resource-meta",
872 + "markdownDescription": "This allows non-recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-resource-index`"
873 + },
874 + {
875 + "description": "This allows full recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-resource-recursive`",
876 + "type": "string",
877 + "const": "fs:allow-resource-meta-recursive",
878 + "markdownDescription": "This allows full recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-resource-recursive`"
879 + },
880 + {
881 + "description": "This allows non-recursive read access to the `$RESOURCE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-resource`",
882 + "type": "string",
883 + "const": "fs:allow-resource-read",
884 + "markdownDescription": "This allows non-recursive read access to the `$RESOURCE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-resource`"
885 + },
886 + {
887 + "description": "This allows full recursive read access to the complete `$RESOURCE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-resource-recursive`",
888 + "type": "string",
889 + "const": "fs:allow-resource-read-recursive",
890 + "markdownDescription": "This allows full recursive read access to the complete `$RESOURCE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-resource-recursive`"
891 + },
892 + {
893 + "description": "This allows non-recursive write access to the `$RESOURCE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-resource`",
894 + "type": "string",
895 + "const": "fs:allow-resource-write",
896 + "markdownDescription": "This allows non-recursive write access to the `$RESOURCE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-resource`"
897 + },
898 + {
899 + "description": "This allows full recursive write access to the complete `$RESOURCE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-resource-recursive`",
900 + "type": "string",
901 + "const": "fs:allow-resource-write-recursive",
902 + "markdownDescription": "This allows full recursive write access to the complete `$RESOURCE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-resource-recursive`"
903 + },
904 + {
905 + "description": "This allows non-recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-runtime-index`",
906 + "type": "string",
907 + "const": "fs:allow-runtime-meta",
908 + "markdownDescription": "This allows non-recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-runtime-index`"
909 + },
910 + {
911 + "description": "This allows full recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-runtime-recursive`",
912 + "type": "string",
913 + "const": "fs:allow-runtime-meta-recursive",
914 + "markdownDescription": "This allows full recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-runtime-recursive`"
915 + },
916 + {
917 + "description": "This allows non-recursive read access to the `$RUNTIME` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-runtime`",
918 + "type": "string",
919 + "const": "fs:allow-runtime-read",
920 + "markdownDescription": "This allows non-recursive read access to the `$RUNTIME` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-runtime`"
921 + },
922 + {
923 + "description": "This allows full recursive read access to the complete `$RUNTIME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-runtime-recursive`",
924 + "type": "string",
925 + "const": "fs:allow-runtime-read-recursive",
926 + "markdownDescription": "This allows full recursive read access to the complete `$RUNTIME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-runtime-recursive`"
927 + },
928 + {
929 + "description": "This allows non-recursive write access to the `$RUNTIME` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-runtime`",
930 + "type": "string",
931 + "const": "fs:allow-runtime-write",
932 + "markdownDescription": "This allows non-recursive write access to the `$RUNTIME` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-runtime`"
933 + },
934 + {
935 + "description": "This allows full recursive write access to the complete `$RUNTIME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-runtime-recursive`",
936 + "type": "string",
937 + "const": "fs:allow-runtime-write-recursive",
938 + "markdownDescription": "This allows full recursive write access to the complete `$RUNTIME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-runtime-recursive`"
939 + },
940 + {
941 + "description": "This allows non-recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-temp-index`",
942 + "type": "string",
943 + "const": "fs:allow-temp-meta",
944 + "markdownDescription": "This allows non-recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-temp-index`"
945 + },
946 + {
947 + "description": "This allows full recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-temp-recursive`",
948 + "type": "string",
949 + "const": "fs:allow-temp-meta-recursive",
950 + "markdownDescription": "This allows full recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-temp-recursive`"
951 + },
952 + {
953 + "description": "This allows non-recursive read access to the `$TEMP` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-temp`",
954 + "type": "string",
955 + "const": "fs:allow-temp-read",
956 + "markdownDescription": "This allows non-recursive read access to the `$TEMP` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-temp`"
957 + },
958 + {
959 + "description": "This allows full recursive read access to the complete `$TEMP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-temp-recursive`",
960 + "type": "string",
961 + "const": "fs:allow-temp-read-recursive",
962 + "markdownDescription": "This allows full recursive read access to the complete `$TEMP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-temp-recursive`"
963 + },
964 + {
965 + "description": "This allows non-recursive write access to the `$TEMP` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-temp`",
966 + "type": "string",
967 + "const": "fs:allow-temp-write",
968 + "markdownDescription": "This allows non-recursive write access to the `$TEMP` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-temp`"
969 + },
970 + {
971 + "description": "This allows full recursive write access to the complete `$TEMP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-temp-recursive`",
972 + "type": "string",
973 + "const": "fs:allow-temp-write-recursive",
974 + "markdownDescription": "This allows full recursive write access to the complete `$TEMP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-temp-recursive`"
975 + },
976 + {
977 + "description": "This allows non-recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-template-index`",
978 + "type": "string",
979 + "const": "fs:allow-template-meta",
980 + "markdownDescription": "This allows non-recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-template-index`"
981 + },
982 + {
983 + "description": "This allows full recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-template-recursive`",
984 + "type": "string",
985 + "const": "fs:allow-template-meta-recursive",
986 + "markdownDescription": "This allows full recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-template-recursive`"
987 + },
988 + {
989 + "description": "This allows non-recursive read access to the `$TEMPLATE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-template`",
990 + "type": "string",
991 + "const": "fs:allow-template-read",
992 + "markdownDescription": "This allows non-recursive read access to the `$TEMPLATE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-template`"
993 + },
994 + {
995 + "description": "This allows full recursive read access to the complete `$TEMPLATE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-template-recursive`",
996 + "type": "string",
997 + "const": "fs:allow-template-read-recursive",
998 + "markdownDescription": "This allows full recursive read access to the complete `$TEMPLATE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-template-recursive`"
999 + },
1000 + {
1001 + "description": "This allows non-recursive write access to the `$TEMPLATE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-template`",
1002 + "type": "string",
1003 + "const": "fs:allow-template-write",
1004 + "markdownDescription": "This allows non-recursive write access to the `$TEMPLATE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-template`"
1005 + },
1006 + {
1007 + "description": "This allows full recursive write access to the complete `$TEMPLATE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-template-recursive`",
1008 + "type": "string",
1009 + "const": "fs:allow-template-write-recursive",
1010 + "markdownDescription": "This allows full recursive write access to the complete `$TEMPLATE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-template-recursive`"
1011 + },
1012 + {
1013 + "description": "This allows non-recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-video-index`",
1014 + "type": "string",
1015 + "const": "fs:allow-video-meta",
1016 + "markdownDescription": "This allows non-recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-video-index`"
1017 + },
1018 + {
1019 + "description": "This allows full recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-video-recursive`",
1020 + "type": "string",
1021 + "const": "fs:allow-video-meta-recursive",
1022 + "markdownDescription": "This allows full recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-video-recursive`"
1023 + },
1024 + {
1025 + "description": "This allows non-recursive read access to the `$VIDEO` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-video`",
1026 + "type": "string",
1027 + "const": "fs:allow-video-read",
1028 + "markdownDescription": "This allows non-recursive read access to the `$VIDEO` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-video`"
1029 + },
1030 + {
1031 + "description": "This allows full recursive read access to the complete `$VIDEO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-video-recursive`",
1032 + "type": "string",
1033 + "const": "fs:allow-video-read-recursive",
1034 + "markdownDescription": "This allows full recursive read access to the complete `$VIDEO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-video-recursive`"
1035 + },
1036 + {
1037 + "description": "This allows non-recursive write access to the `$VIDEO` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-video`",
1038 + "type": "string",
1039 + "const": "fs:allow-video-write",
1040 + "markdownDescription": "This allows non-recursive write access to the `$VIDEO` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-video`"
1041 + },
1042 + {
1043 + "description": "This allows full recursive write access to the complete `$VIDEO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-video-recursive`",
1044 + "type": "string",
1045 + "const": "fs:allow-video-write-recursive",
1046 + "markdownDescription": "This allows full recursive write access to the complete `$VIDEO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-video-recursive`"
1047 + },
1048 + {
1049 + "description": "This denies access to dangerous Tauri relevant files and folders by default.\n#### This permission set includes:\n\n- `deny-webview-data-linux`\n- `deny-webview-data-windows`",
1050 + "type": "string",
1051 + "const": "fs:deny-default",
1052 + "markdownDescription": "This denies access to dangerous Tauri relevant files and folders by default.\n#### This permission set includes:\n\n- `deny-webview-data-linux`\n- `deny-webview-data-windows`"
1053 + },
1054 + {
1055 + "description": "Enables the copy_file command without any pre-configured scope.",
1056 + "type": "string",
1057 + "const": "fs:allow-copy-file",
1058 + "markdownDescription": "Enables the copy_file command without any pre-configured scope."
1059 + },
1060 + {
1061 + "description": "Enables the create command without any pre-configured scope.",
1062 + "type": "string",
1063 + "const": "fs:allow-create",
1064 + "markdownDescription": "Enables the create command without any pre-configured scope."
1065 + },
1066 + {
1067 + "description": "Enables the exists command without any pre-configured scope.",
1068 + "type": "string",
1069 + "const": "fs:allow-exists",
1070 + "markdownDescription": "Enables the exists command without any pre-configured scope."
1071 + },
1072 + {
1073 + "description": "Enables the fstat command without any pre-configured scope.",
1074 + "type": "string",
1075 + "const": "fs:allow-fstat",
1076 + "markdownDescription": "Enables the fstat command without any pre-configured scope."
1077 + },
1078 + {
1079 + "description": "Enables the ftruncate command without any pre-configured scope.",
1080 + "type": "string",
1081 + "const": "fs:allow-ftruncate",
1082 + "markdownDescription": "Enables the ftruncate command without any pre-configured scope."
1083 + },
1084 + {
1085 + "description": "Enables the lstat command without any pre-configured scope.",
1086 + "type": "string",
1087 + "const": "fs:allow-lstat",
1088 + "markdownDescription": "Enables the lstat command without any pre-configured scope."
1089 + },
1090 + {
1091 + "description": "Enables the mkdir command without any pre-configured scope.",
1092 + "type": "string",
1093 + "const": "fs:allow-mkdir",
1094 + "markdownDescription": "Enables the mkdir command without any pre-configured scope."
1095 + },
1096 + {
1097 + "description": "Enables the open command without any pre-configured scope.",
1098 + "type": "string",
1099 + "const": "fs:allow-open",
1100 + "markdownDescription": "Enables the open command without any pre-configured scope."
1101 + },
1102 + {
1103 + "description": "Enables the read command without any pre-configured scope.",
1104 + "type": "string",
1105 + "const": "fs:allow-read",
1106 + "markdownDescription": "Enables the read command without any pre-configured scope."
1107 + },
1108 + {
1109 + "description": "Enables the read_dir command without any pre-configured scope.",
1110 + "type": "string",
1111 + "const": "fs:allow-read-dir",
1112 + "markdownDescription": "Enables the read_dir command without any pre-configured scope."
1113 + },
1114 + {
1115 + "description": "Enables the read_file command without any pre-configured scope.",
1116 + "type": "string",
1117 + "const": "fs:allow-read-file",
1118 + "markdownDescription": "Enables the read_file command without any pre-configured scope."
1119 + },
1120 + {
1121 + "description": "Enables the read_text_file command without any pre-configured scope.",
1122 + "type": "string",
1123 + "const": "fs:allow-read-text-file",
1124 + "markdownDescription": "Enables the read_text_file command without any pre-configured scope."
1125 + },
1126 + {
1127 + "description": "Enables the read_text_file_lines command without any pre-configured scope.",
1128 + "type": "string",
1129 + "const": "fs:allow-read-text-file-lines",
1130 + "markdownDescription": "Enables the read_text_file_lines command without any pre-configured scope."
1131 + },
1132 + {
1133 + "description": "Enables the read_text_file_lines_next command without any pre-configured scope.",
1134 + "type": "string",
1135 + "const": "fs:allow-read-text-file-lines-next",
1136 + "markdownDescription": "Enables the read_text_file_lines_next command without any pre-configured scope."
1137 + },
1138 + {
1139 + "description": "Enables the remove command without any pre-configured scope.",
1140 + "type": "string",
1141 + "const": "fs:allow-remove",
1142 + "markdownDescription": "Enables the remove command without any pre-configured scope."
1143 + },
1144 + {
1145 + "description": "Enables the rename command without any pre-configured scope.",
1146 + "type": "string",
1147 + "const": "fs:allow-rename",
1148 + "markdownDescription": "Enables the rename command without any pre-configured scope."
1149 + },
1150 + {
1151 + "description": "Enables the seek command without any pre-configured scope.",
1152 + "type": "string",
1153 + "const": "fs:allow-seek",
1154 + "markdownDescription": "Enables the seek command without any pre-configured scope."
1155 + },
1156 + {
1157 + "description": "Enables the size command without any pre-configured scope.",
1158 + "type": "string",
1159 + "const": "fs:allow-size",
1160 + "markdownDescription": "Enables the size command without any pre-configured scope."
1161 + },
1162 + {
1163 + "description": "Enables the stat command without any pre-configured scope.",
1164 + "type": "string",
1165 + "const": "fs:allow-stat",
1166 + "markdownDescription": "Enables the stat command without any pre-configured scope."
1167 + },
1168 + {
1169 + "description": "Enables the truncate command without any pre-configured scope.",
1170 + "type": "string",
1171 + "const": "fs:allow-truncate",
1172 + "markdownDescription": "Enables the truncate command without any pre-configured scope."
1173 + },
1174 + {
1175 + "description": "Enables the unwatch command without any pre-configured scope.",
1176 + "type": "string",
1177 + "const": "fs:allow-unwatch",
1178 + "markdownDescription": "Enables the unwatch command without any pre-configured scope."
1179 + },
1180 + {
1181 + "description": "Enables the watch command without any pre-configured scope.",
1182 + "type": "string",
1183 + "const": "fs:allow-watch",
1184 + "markdownDescription": "Enables the watch command without any pre-configured scope."
1185 + },
1186 + {
1187 + "description": "Enables the write command without any pre-configured scope.",
1188 + "type": "string",
1189 + "const": "fs:allow-write",
1190 + "markdownDescription": "Enables the write command without any pre-configured scope."
1191 + },
1192 + {
1193 + "description": "Enables the write_file command without any pre-configured scope.",
1194 + "type": "string",
1195 + "const": "fs:allow-write-file",
1196 + "markdownDescription": "Enables the write_file command without any pre-configured scope."
1197 + },
1198 + {
1199 + "description": "Enables the write_text_file command without any pre-configured scope.",
1200 + "type": "string",
1201 + "const": "fs:allow-write-text-file",
1202 + "markdownDescription": "Enables the write_text_file command without any pre-configured scope."
1203 + },
1204 + {
1205 + "description": "This permissions allows to create the application specific directories.\n",
1206 + "type": "string",
1207 + "const": "fs:create-app-specific-dirs",
1208 + "markdownDescription": "This permissions allows to create the application specific directories.\n"
1209 + },
1210 + {
1211 + "description": "Denies the copy_file command without any pre-configured scope.",
1212 + "type": "string",
1213 + "const": "fs:deny-copy-file",
1214 + "markdownDescription": "Denies the copy_file command without any pre-configured scope."
1215 + },
1216 + {
1217 + "description": "Denies the create command without any pre-configured scope.",
1218 + "type": "string",
1219 + "const": "fs:deny-create",
1220 + "markdownDescription": "Denies the create command without any pre-configured scope."
1221 + },
1222 + {
1223 + "description": "Denies the exists command without any pre-configured scope.",
1224 + "type": "string",
1225 + "const": "fs:deny-exists",
1226 + "markdownDescription": "Denies the exists command without any pre-configured scope."
1227 + },
1228 + {
1229 + "description": "Denies the fstat command without any pre-configured scope.",
1230 + "type": "string",
1231 + "const": "fs:deny-fstat",
1232 + "markdownDescription": "Denies the fstat command without any pre-configured scope."
1233 + },
1234 + {
1235 + "description": "Denies the ftruncate command without any pre-configured scope.",
1236 + "type": "string",
1237 + "const": "fs:deny-ftruncate",
1238 + "markdownDescription": "Denies the ftruncate command without any pre-configured scope."
1239 + },
1240 + {
1241 + "description": "Denies the lstat command without any pre-configured scope.",
1242 + "type": "string",
1243 + "const": "fs:deny-lstat",
1244 + "markdownDescription": "Denies the lstat command without any pre-configured scope."
1245 + },
1246 + {
1247 + "description": "Denies the mkdir command without any pre-configured scope.",
1248 + "type": "string",
1249 + "const": "fs:deny-mkdir",
1250 + "markdownDescription": "Denies the mkdir command without any pre-configured scope."
1251 + },
1252 + {
1253 + "description": "Denies the open command without any pre-configured scope.",
1254 + "type": "string",
1255 + "const": "fs:deny-open",
1256 + "markdownDescription": "Denies the open command without any pre-configured scope."
1257 + },
1258 + {
1259 + "description": "Denies the read command without any pre-configured scope.",
1260 + "type": "string",
1261 + "const": "fs:deny-read",
1262 + "markdownDescription": "Denies the read command without any pre-configured scope."
1263 + },
1264 + {
1265 + "description": "Denies the read_dir command without any pre-configured scope.",
1266 + "type": "string",
1267 + "const": "fs:deny-read-dir",
1268 + "markdownDescription": "Denies the read_dir command without any pre-configured scope."
1269 + },
1270 + {
1271 + "description": "Denies the read_file command without any pre-configured scope.",
1272 + "type": "string",
1273 + "const": "fs:deny-read-file",
1274 + "markdownDescription": "Denies the read_file command without any pre-configured scope."
1275 + },
1276 + {
1277 + "description": "Denies the read_text_file command without any pre-configured scope.",
1278 + "type": "string",
1279 + "const": "fs:deny-read-text-file",
1280 + "markdownDescription": "Denies the read_text_file command without any pre-configured scope."
1281 + },
1282 + {
1283 + "description": "Denies the read_text_file_lines command without any pre-configured scope.",
1284 + "type": "string",
1285 + "const": "fs:deny-read-text-file-lines",
1286 + "markdownDescription": "Denies the read_text_file_lines command without any pre-configured scope."
1287 + },
1288 + {
1289 + "description": "Denies the read_text_file_lines_next command without any pre-configured scope.",
1290 + "type": "string",
1291 + "const": "fs:deny-read-text-file-lines-next",
1292 + "markdownDescription": "Denies the read_text_file_lines_next command without any pre-configured scope."
1293 + },
1294 + {
1295 + "description": "Denies the remove command without any pre-configured scope.",
1296 + "type": "string",
1297 + "const": "fs:deny-remove",
1298 + "markdownDescription": "Denies the remove command without any pre-configured scope."
1299 + },
1300 + {
1301 + "description": "Denies the rename command without any pre-configured scope.",
1302 + "type": "string",
1303 + "const": "fs:deny-rename",
1304 + "markdownDescription": "Denies the rename command without any pre-configured scope."
1305 + },
1306 + {
1307 + "description": "Denies the seek command without any pre-configured scope.",
1308 + "type": "string",
1309 + "const": "fs:deny-seek",
1310 + "markdownDescription": "Denies the seek command without any pre-configured scope."
1311 + },
1312 + {
1313 + "description": "Denies the size command without any pre-configured scope.",
1314 + "type": "string",
1315 + "const": "fs:deny-size",
1316 + "markdownDescription": "Denies the size command without any pre-configured scope."
1317 + },
1318 + {
1319 + "description": "Denies the stat command without any pre-configured scope.",
1320 + "type": "string",
1321 + "const": "fs:deny-stat",
1322 + "markdownDescription": "Denies the stat command without any pre-configured scope."
1323 + },
1324 + {
1325 + "description": "Denies the truncate command without any pre-configured scope.",
1326 + "type": "string",
1327 + "const": "fs:deny-truncate",
1328 + "markdownDescription": "Denies the truncate command without any pre-configured scope."
1329 + },
1330 + {
1331 + "description": "Denies the unwatch command without any pre-configured scope.",
1332 + "type": "string",
1333 + "const": "fs:deny-unwatch",
1334 + "markdownDescription": "Denies the unwatch command without any pre-configured scope."
1335 + },
1336 + {
1337 + "description": "Denies the watch command without any pre-configured scope.",
1338 + "type": "string",
1339 + "const": "fs:deny-watch",
1340 + "markdownDescription": "Denies the watch command without any pre-configured scope."
1341 + },
1342 + {
1343 + "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.",
1344 + "type": "string",
1345 + "const": "fs:deny-webview-data-linux",
1346 + "markdownDescription": "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."
1347 + },
1348 + {
1349 + "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.",
1350 + "type": "string",
1351 + "const": "fs:deny-webview-data-windows",
1352 + "markdownDescription": "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."
1353 + },
1354 + {
1355 + "description": "Denies the write command without any pre-configured scope.",
1356 + "type": "string",
1357 + "const": "fs:deny-write",
1358 + "markdownDescription": "Denies the write command without any pre-configured scope."
1359 + },
1360 + {
1361 + "description": "Denies the write_file command without any pre-configured scope.",
1362 + "type": "string",
1363 + "const": "fs:deny-write-file",
1364 + "markdownDescription": "Denies the write_file command without any pre-configured scope."
1365 + },
1366 + {
1367 + "description": "Denies the write_text_file command without any pre-configured scope.",
1368 + "type": "string",
1369 + "const": "fs:deny-write-text-file",
1370 + "markdownDescription": "Denies the write_text_file command without any pre-configured scope."
1371 + },
1372 + {
1373 + "description": "This enables all read related commands without any pre-configured accessible paths.",
1374 + "type": "string",
1375 + "const": "fs:read-all",
1376 + "markdownDescription": "This enables all read related commands without any pre-configured accessible paths."
1377 + },
1378 + {
1379 + "description": "This permission allows recursive read functionality on the application\nspecific base directories. \n",
1380 + "type": "string",
1381 + "const": "fs:read-app-specific-dirs-recursive",
1382 + "markdownDescription": "This permission allows recursive read functionality on the application\nspecific base directories. \n"
1383 + },
1384 + {
1385 + "description": "This enables directory read and file metadata related commands without any pre-configured accessible paths.",
1386 + "type": "string",
1387 + "const": "fs:read-dirs",
1388 + "markdownDescription": "This enables directory read and file metadata related commands without any pre-configured accessible paths."
1389 + },
1390 + {
1391 + "description": "This enables file read related commands without any pre-configured accessible paths.",
1392 + "type": "string",
1393 + "const": "fs:read-files",
1394 + "markdownDescription": "This enables file read related commands without any pre-configured accessible paths."
1395 + },
1396 + {
1397 + "description": "This enables all index or metadata related commands without any pre-configured accessible paths.",
1398 + "type": "string",
1399 + "const": "fs:read-meta",
1400 + "markdownDescription": "This enables all index or metadata related commands without any pre-configured accessible paths."
1401 + },
1402 + {
1403 + "description": "An empty permission you can use to modify the global scope.",
1404 + "type": "string",
1405 + "const": "fs:scope",
1406 + "markdownDescription": "An empty permission you can use to modify the global scope."
1407 + },
1408 + {
1409 + "description": "This scope permits access to all files and list content of top level directories in the application folders.",
1410 + "type": "string",
1411 + "const": "fs:scope-app",
1412 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the application folders."
1413 + },
1414 + {
1415 + "description": "This scope permits to list all files and folders in the application directories.",
1416 + "type": "string",
1417 + "const": "fs:scope-app-index",
1418 + "markdownDescription": "This scope permits to list all files and folders in the application directories."
1419 + },
1420 + {
1421 + "description": "This scope permits recursive access to the complete application folders, including sub directories and files.",
1422 + "type": "string",
1423 + "const": "fs:scope-app-recursive",
1424 + "markdownDescription": "This scope permits recursive access to the complete application folders, including sub directories and files."
1425 + },
1426 + {
1427 + "description": "This scope permits access to all files and list content of top level directories in the `$APPCACHE` folder.",
1428 + "type": "string",
1429 + "const": "fs:scope-appcache",
1430 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPCACHE` folder."
1431 + },
1432 + {
1433 + "description": "This scope permits to list all files and folders in the `$APPCACHE`folder.",
1434 + "type": "string",
1435 + "const": "fs:scope-appcache-index",
1436 + "markdownDescription": "This scope permits to list all files and folders in the `$APPCACHE`folder."
1437 + },
1438 + {
1439 + "description": "This scope permits recursive access to the complete `$APPCACHE` folder, including sub directories and files.",
1440 + "type": "string",
1441 + "const": "fs:scope-appcache-recursive",
1442 + "markdownDescription": "This scope permits recursive access to the complete `$APPCACHE` folder, including sub directories and files."
1443 + },
1444 + {
1445 + "description": "This scope permits access to all files and list content of top level directories in the `$APPCONFIG` folder.",
1446 + "type": "string",
1447 + "const": "fs:scope-appconfig",
1448 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPCONFIG` folder."
1449 + },
1450 + {
1451 + "description": "This scope permits to list all files and folders in the `$APPCONFIG`folder.",
1452 + "type": "string",
1453 + "const": "fs:scope-appconfig-index",
1454 + "markdownDescription": "This scope permits to list all files and folders in the `$APPCONFIG`folder."
1455 + },
1456 + {
1457 + "description": "This scope permits recursive access to the complete `$APPCONFIG` folder, including sub directories and files.",
1458 + "type": "string",
1459 + "const": "fs:scope-appconfig-recursive",
1460 + "markdownDescription": "This scope permits recursive access to the complete `$APPCONFIG` folder, including sub directories and files."
1461 + },
1462 + {
1463 + "description": "This scope permits access to all files and list content of top level directories in the `$APPDATA` folder.",
1464 + "type": "string",
1465 + "const": "fs:scope-appdata",
1466 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPDATA` folder."
1467 + },
1468 + {
1469 + "description": "This scope permits to list all files and folders in the `$APPDATA`folder.",
1470 + "type": "string",
1471 + "const": "fs:scope-appdata-index",
1472 + "markdownDescription": "This scope permits to list all files and folders in the `$APPDATA`folder."
1473 + },
1474 + {
1475 + "description": "This scope permits recursive access to the complete `$APPDATA` folder, including sub directories and files.",
1476 + "type": "string",
1477 + "const": "fs:scope-appdata-recursive",
1478 + "markdownDescription": "This scope permits recursive access to the complete `$APPDATA` folder, including sub directories and files."
1479 + },
1480 + {
1481 + "description": "This scope permits access to all files and list content of top level directories in the `$APPLOCALDATA` folder.",
1482 + "type": "string",
1483 + "const": "fs:scope-applocaldata",
1484 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPLOCALDATA` folder."
1485 + },
1486 + {
1487 + "description": "This scope permits to list all files and folders in the `$APPLOCALDATA`folder.",
1488 + "type": "string",
1489 + "const": "fs:scope-applocaldata-index",
1490 + "markdownDescription": "This scope permits to list all files and folders in the `$APPLOCALDATA`folder."
1491 + },
1492 + {
1493 + "description": "This scope permits recursive access to the complete `$APPLOCALDATA` folder, including sub directories and files.",
1494 + "type": "string",
1495 + "const": "fs:scope-applocaldata-recursive",
1496 + "markdownDescription": "This scope permits recursive access to the complete `$APPLOCALDATA` folder, including sub directories and files."
1497 + },
1498 + {
1499 + "description": "This scope permits access to all files and list content of top level directories in the `$APPLOG` folder.",
1500 + "type": "string",
1501 + "const": "fs:scope-applog",
1502 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPLOG` folder."
1503 + },
1504 + {
1505 + "description": "This scope permits to list all files and folders in the `$APPLOG`folder.",
1506 + "type": "string",
1507 + "const": "fs:scope-applog-index",
1508 + "markdownDescription": "This scope permits to list all files and folders in the `$APPLOG`folder."
1509 + },
1510 + {
1511 + "description": "This scope permits recursive access to the complete `$APPLOG` folder, including sub directories and files.",
1512 + "type": "string",
1513 + "const": "fs:scope-applog-recursive",
1514 + "markdownDescription": "This scope permits recursive access to the complete `$APPLOG` folder, including sub directories and files."
1515 + },
1516 + {
1517 + "description": "This scope permits access to all files and list content of top level directories in the `$AUDIO` folder.",
1518 + "type": "string",
1519 + "const": "fs:scope-audio",
1520 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$AUDIO` folder."
1521 + },
1522 + {
1523 + "description": "This scope permits to list all files and folders in the `$AUDIO`folder.",
1524 + "type": "string",
1525 + "const": "fs:scope-audio-index",
1526 + "markdownDescription": "This scope permits to list all files and folders in the `$AUDIO`folder."
1527 + },
1528 + {
1529 + "description": "This scope permits recursive access to the complete `$AUDIO` folder, including sub directories and files.",
1530 + "type": "string",
1531 + "const": "fs:scope-audio-recursive",
1532 + "markdownDescription": "This scope permits recursive access to the complete `$AUDIO` folder, including sub directories and files."
1533 + },
1534 + {
1535 + "description": "This scope permits access to all files and list content of top level directories in the `$CACHE` folder.",
1536 + "type": "string",
1537 + "const": "fs:scope-cache",
1538 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$CACHE` folder."
1539 + },
1540 + {
1541 + "description": "This scope permits to list all files and folders in the `$CACHE`folder.",
1542 + "type": "string",
1543 + "const": "fs:scope-cache-index",
1544 + "markdownDescription": "This scope permits to list all files and folders in the `$CACHE`folder."
1545 + },
1546 + {
1547 + "description": "This scope permits recursive access to the complete `$CACHE` folder, including sub directories and files.",
1548 + "type": "string",
1549 + "const": "fs:scope-cache-recursive",
1550 + "markdownDescription": "This scope permits recursive access to the complete `$CACHE` folder, including sub directories and files."
1551 + },
1552 + {
1553 + "description": "This scope permits access to all files and list content of top level directories in the `$CONFIG` folder.",
1554 + "type": "string",
1555 + "const": "fs:scope-config",
1556 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$CONFIG` folder."
1557 + },
1558 + {
1559 + "description": "This scope permits to list all files and folders in the `$CONFIG`folder.",
1560 + "type": "string",
1561 + "const": "fs:scope-config-index",
1562 + "markdownDescription": "This scope permits to list all files and folders in the `$CONFIG`folder."
1563 + },
1564 + {
1565 + "description": "This scope permits recursive access to the complete `$CONFIG` folder, including sub directories and files.",
1566 + "type": "string",
1567 + "const": "fs:scope-config-recursive",
1568 + "markdownDescription": "This scope permits recursive access to the complete `$CONFIG` folder, including sub directories and files."
1569 + },
1570 + {
1571 + "description": "This scope permits access to all files and list content of top level directories in the `$DATA` folder.",
1572 + "type": "string",
1573 + "const": "fs:scope-data",
1574 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$DATA` folder."
1575 + },
1576 + {
1577 + "description": "This scope permits to list all files and folders in the `$DATA`folder.",
1578 + "type": "string",
1579 + "const": "fs:scope-data-index",
1580 + "markdownDescription": "This scope permits to list all files and folders in the `$DATA`folder."
1581 + },
1582 + {
1583 + "description": "This scope permits recursive access to the complete `$DATA` folder, including sub directories and files.",
1584 + "type": "string",
1585 + "const": "fs:scope-data-recursive",
1586 + "markdownDescription": "This scope permits recursive access to the complete `$DATA` folder, including sub directories and files."
1587 + },
1588 + {
1589 + "description": "This scope permits access to all files and list content of top level directories in the `$DESKTOP` folder.",
1590 + "type": "string",
1591 + "const": "fs:scope-desktop",
1592 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$DESKTOP` folder."
1593 + },
1594 + {
1595 + "description": "This scope permits to list all files and folders in the `$DESKTOP`folder.",
1596 + "type": "string",
1597 + "const": "fs:scope-desktop-index",
1598 + "markdownDescription": "This scope permits to list all files and folders in the `$DESKTOP`folder."
1599 + },
1600 + {
1601 + "description": "This scope permits recursive access to the complete `$DESKTOP` folder, including sub directories and files.",
1602 + "type": "string",
1603 + "const": "fs:scope-desktop-recursive",
1604 + "markdownDescription": "This scope permits recursive access to the complete `$DESKTOP` folder, including sub directories and files."
1605 + },
1606 + {
1607 + "description": "This scope permits access to all files and list content of top level directories in the `$DOCUMENT` folder.",
1608 + "type": "string",
1609 + "const": "fs:scope-document",
1610 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$DOCUMENT` folder."
1611 + },
1612 + {
1613 + "description": "This scope permits to list all files and folders in the `$DOCUMENT`folder.",
1614 + "type": "string",
1615 + "const": "fs:scope-document-index",
1616 + "markdownDescription": "This scope permits to list all files and folders in the `$DOCUMENT`folder."
1617 + },
1618 + {
1619 + "description": "This scope permits recursive access to the complete `$DOCUMENT` folder, including sub directories and files.",
1620 + "type": "string",
1621 + "const": "fs:scope-document-recursive",
1622 + "markdownDescription": "This scope permits recursive access to the complete `$DOCUMENT` folder, including sub directories and files."
1623 + },
1624 + {
1625 + "description": "This scope permits access to all files and list content of top level directories in the `$DOWNLOAD` folder.",
1626 + "type": "string",
1627 + "const": "fs:scope-download",
1628 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$DOWNLOAD` folder."
1629 + },
1630 + {
1631 + "description": "This scope permits to list all files and folders in the `$DOWNLOAD`folder.",
1632 + "type": "string",
1633 + "const": "fs:scope-download-index",
1634 + "markdownDescription": "This scope permits to list all files and folders in the `$DOWNLOAD`folder."
1635 + },
1636 + {
1637 + "description": "This scope permits recursive access to the complete `$DOWNLOAD` folder, including sub directories and files.",
1638 + "type": "string",
1639 + "const": "fs:scope-download-recursive",
1640 + "markdownDescription": "This scope permits recursive access to the complete `$DOWNLOAD` folder, including sub directories and files."
1641 + },
1642 + {
1643 + "description": "This scope permits access to all files and list content of top level directories in the `$EXE` folder.",
1644 + "type": "string",
1645 + "const": "fs:scope-exe",
1646 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$EXE` folder."
1647 + },
1648 + {
1649 + "description": "This scope permits to list all files and folders in the `$EXE`folder.",
1650 + "type": "string",
1651 + "const": "fs:scope-exe-index",
1652 + "markdownDescription": "This scope permits to list all files and folders in the `$EXE`folder."
1653 + },
1654 + {
1655 + "description": "This scope permits recursive access to the complete `$EXE` folder, including sub directories and files.",
1656 + "type": "string",
1657 + "const": "fs:scope-exe-recursive",
1658 + "markdownDescription": "This scope permits recursive access to the complete `$EXE` folder, including sub directories and files."
1659 + },
1660 + {
1661 + "description": "This scope permits access to all files and list content of top level directories in the `$FONT` folder.",
1662 + "type": "string",
1663 + "const": "fs:scope-font",
1664 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$FONT` folder."
1665 + },
1666 + {
1667 + "description": "This scope permits to list all files and folders in the `$FONT`folder.",
1668 + "type": "string",
1669 + "const": "fs:scope-font-index",
1670 + "markdownDescription": "This scope permits to list all files and folders in the `$FONT`folder."
1671 + },
1672 + {
1673 + "description": "This scope permits recursive access to the complete `$FONT` folder, including sub directories and files.",
1674 + "type": "string",
1675 + "const": "fs:scope-font-recursive",
1676 + "markdownDescription": "This scope permits recursive access to the complete `$FONT` folder, including sub directories and files."
1677 + },
1678 + {
1679 + "description": "This scope permits access to all files and list content of top level directories in the `$HOME` folder.",
1680 + "type": "string",
1681 + "const": "fs:scope-home",
1682 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$HOME` folder."
1683 + },
1684 + {
1685 + "description": "This scope permits to list all files and folders in the `$HOME`folder.",
1686 + "type": "string",
1687 + "const": "fs:scope-home-index",
1688 + "markdownDescription": "This scope permits to list all files and folders in the `$HOME`folder."
1689 + },
1690 + {
1691 + "description": "This scope permits recursive access to the complete `$HOME` folder, including sub directories and files.",
1692 + "type": "string",
1693 + "const": "fs:scope-home-recursive",
1694 + "markdownDescription": "This scope permits recursive access to the complete `$HOME` folder, including sub directories and files."
1695 + },
1696 + {
1697 + "description": "This scope permits access to all files and list content of top level directories in the `$LOCALDATA` folder.",
1698 + "type": "string",
1699 + "const": "fs:scope-localdata",
1700 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$LOCALDATA` folder."
1701 + },
1702 + {
1703 + "description": "This scope permits to list all files and folders in the `$LOCALDATA`folder.",
1704 + "type": "string",
1705 + "const": "fs:scope-localdata-index",
1706 + "markdownDescription": "This scope permits to list all files and folders in the `$LOCALDATA`folder."
1707 + },
1708 + {
1709 + "description": "This scope permits recursive access to the complete `$LOCALDATA` folder, including sub directories and files.",
1710 + "type": "string",
1711 + "const": "fs:scope-localdata-recursive",
1712 + "markdownDescription": "This scope permits recursive access to the complete `$LOCALDATA` folder, including sub directories and files."
1713 + },
1714 + {
1715 + "description": "This scope permits access to all files and list content of top level directories in the `$LOG` folder.",
1716 + "type": "string",
1717 + "const": "fs:scope-log",
1718 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$LOG` folder."
1719 + },
1720 + {
1721 + "description": "This scope permits to list all files and folders in the `$LOG`folder.",
1722 + "type": "string",
1723 + "const": "fs:scope-log-index",
1724 + "markdownDescription": "This scope permits to list all files and folders in the `$LOG`folder."
1725 + },
1726 + {
1727 + "description": "This scope permits recursive access to the complete `$LOG` folder, including sub directories and files.",
1728 + "type": "string",
1729 + "const": "fs:scope-log-recursive",
1730 + "markdownDescription": "This scope permits recursive access to the complete `$LOG` folder, including sub directories and files."
1731 + },
1732 + {
1733 + "description": "This scope permits access to all files and list content of top level directories in the `$PICTURE` folder.",
1734 + "type": "string",
1735 + "const": "fs:scope-picture",
1736 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$PICTURE` folder."
1737 + },
1738 + {
1739 + "description": "This scope permits to list all files and folders in the `$PICTURE`folder.",
1740 + "type": "string",
1741 + "const": "fs:scope-picture-index",
1742 + "markdownDescription": "This scope permits to list all files and folders in the `$PICTURE`folder."
1743 + },
1744 + {
1745 + "description": "This scope permits recursive access to the complete `$PICTURE` folder, including sub directories and files.",
1746 + "type": "string",
1747 + "const": "fs:scope-picture-recursive",
1748 + "markdownDescription": "This scope permits recursive access to the complete `$PICTURE` folder, including sub directories and files."
1749 + },
1750 + {
1751 + "description": "This scope permits access to all files and list content of top level directories in the `$PUBLIC` folder.",
1752 + "type": "string",
1753 + "const": "fs:scope-public",
1754 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$PUBLIC` folder."
1755 + },
1756 + {
1757 + "description": "This scope permits to list all files and folders in the `$PUBLIC`folder.",
1758 + "type": "string",
1759 + "const": "fs:scope-public-index",
1760 + "markdownDescription": "This scope permits to list all files and folders in the `$PUBLIC`folder."
1761 + },
1762 + {
1763 + "description": "This scope permits recursive access to the complete `$PUBLIC` folder, including sub directories and files.",
1764 + "type": "string",
1765 + "const": "fs:scope-public-recursive",
1766 + "markdownDescription": "This scope permits recursive access to the complete `$PUBLIC` folder, including sub directories and files."
1767 + },
1768 + {
1769 + "description": "This scope permits access to all files and list content of top level directories in the `$RESOURCE` folder.",
1770 + "type": "string",
1771 + "const": "fs:scope-resource",
1772 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$RESOURCE` folder."
1773 + },
1774 + {
1775 + "description": "This scope permits to list all files and folders in the `$RESOURCE`folder.",
1776 + "type": "string",
1777 + "const": "fs:scope-resource-index",
1778 + "markdownDescription": "This scope permits to list all files and folders in the `$RESOURCE`folder."
1779 + },
1780 + {
1781 + "description": "This scope permits recursive access to the complete `$RESOURCE` folder, including sub directories and files.",
1782 + "type": "string",
1783 + "const": "fs:scope-resource-recursive",
1784 + "markdownDescription": "This scope permits recursive access to the complete `$RESOURCE` folder, including sub directories and files."
1785 + },
1786 + {
1787 + "description": "This scope permits access to all files and list content of top level directories in the `$RUNTIME` folder.",
1788 + "type": "string",
1789 + "const": "fs:scope-runtime",
1790 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$RUNTIME` folder."
1791 + },
1792 + {
1793 + "description": "This scope permits to list all files and folders in the `$RUNTIME`folder.",
1794 + "type": "string",
1795 + "const": "fs:scope-runtime-index",
1796 + "markdownDescription": "This scope permits to list all files and folders in the `$RUNTIME`folder."
1797 + },
1798 + {
1799 + "description": "This scope permits recursive access to the complete `$RUNTIME` folder, including sub directories and files.",
1800 + "type": "string",
1801 + "const": "fs:scope-runtime-recursive",
1802 + "markdownDescription": "This scope permits recursive access to the complete `$RUNTIME` folder, including sub directories and files."
1803 + },
1804 + {
1805 + "description": "This scope permits access to all files and list content of top level directories in the `$TEMP` folder.",
1806 + "type": "string",
1807 + "const": "fs:scope-temp",
1808 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$TEMP` folder."
1809 + },
1810 + {
1811 + "description": "This scope permits to list all files and folders in the `$TEMP`folder.",
1812 + "type": "string",
1813 + "const": "fs:scope-temp-index",
1814 + "markdownDescription": "This scope permits to list all files and folders in the `$TEMP`folder."
1815 + },
1816 + {
1817 + "description": "This scope permits recursive access to the complete `$TEMP` folder, including sub directories and files.",
1818 + "type": "string",
1819 + "const": "fs:scope-temp-recursive",
1820 + "markdownDescription": "This scope permits recursive access to the complete `$TEMP` folder, including sub directories and files."
1821 + },
1822 + {
1823 + "description": "This scope permits access to all files and list content of top level directories in the `$TEMPLATE` folder.",
1824 + "type": "string",
1825 + "const": "fs:scope-template",
1826 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$TEMPLATE` folder."
1827 + },
1828 + {
1829 + "description": "This scope permits to list all files and folders in the `$TEMPLATE`folder.",
1830 + "type": "string",
1831 + "const": "fs:scope-template-index",
1832 + "markdownDescription": "This scope permits to list all files and folders in the `$TEMPLATE`folder."
1833 + },
1834 + {
1835 + "description": "This scope permits recursive access to the complete `$TEMPLATE` folder, including sub directories and files.",
1836 + "type": "string",
1837 + "const": "fs:scope-template-recursive",
1838 + "markdownDescription": "This scope permits recursive access to the complete `$TEMPLATE` folder, including sub directories and files."
1839 + },
1840 + {
1841 + "description": "This scope permits access to all files and list content of top level directories in the `$VIDEO` folder.",
1842 + "type": "string",
1843 + "const": "fs:scope-video",
1844 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$VIDEO` folder."
1845 + },
1846 + {
1847 + "description": "This scope permits to list all files and folders in the `$VIDEO`folder.",
1848 + "type": "string",
1849 + "const": "fs:scope-video-index",
1850 + "markdownDescription": "This scope permits to list all files and folders in the `$VIDEO`folder."
1851 + },
1852 + {
1853 + "description": "This scope permits recursive access to the complete `$VIDEO` folder, including sub directories and files.",
1854 + "type": "string",
1855 + "const": "fs:scope-video-recursive",
1856 + "markdownDescription": "This scope permits recursive access to the complete `$VIDEO` folder, including sub directories and files."
1857 + },
1858 + {
1859 + "description": "This enables all write related commands without any pre-configured accessible paths.",
1860 + "type": "string",
1861 + "const": "fs:write-all",
1862 + "markdownDescription": "This enables all write related commands without any pre-configured accessible paths."
1863 + },
1864 + {
1865 + "description": "This enables all file write related commands without any pre-configured accessible paths.",
1866 + "type": "string",
1867 + "const": "fs:write-files",
1868 + "markdownDescription": "This enables all file write related commands without any pre-configured accessible paths."
1869 + }
1870 + ]
1871 + }
1872 + }
1873 + },
1874 + "then": {
1875 + "properties": {
1876 + "allow": {
1877 + "items": {
1878 + "title": "FsScopeEntry",
1879 + "description": "FS scope entry.",
1880 + "anyOf": [
1881 + {
1882 + "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`.",
1883 + "type": "string"
1884 + },
1885 + {
1886 + "type": "object",
1887 + "required": [
1888 + "path"
1889 + ],
1890 + "properties": {
1891 + "path": {
1892 + "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`.",
1893 + "type": "string"
1894 + }
1895 + }
1896 + }
1897 + ]
1898 + }
1899 + },
1900 + "deny": {
1901 + "items": {
1902 + "title": "FsScopeEntry",
1903 + "description": "FS scope entry.",
1904 + "anyOf": [
1905 + {
1906 + "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`.",
1907 + "type": "string"
1908 + },
1909 + {
1910 + "type": "object",
1911 + "required": [
1912 + "path"
1913 + ],
1914 + "properties": {
1915 + "path": {
1916 + "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`.",
1917 + "type": "string"
1918 + }
1919 + }
1920 + }
1921 + ]
1922 + }
1923 + }
1924 + }
1925 + },
1926 + "properties": {
1927 + "identifier": {
1928 + "description": "Identifier of the permission or permission set.",
1929 + "allOf": [
1930 + {
1931 + "$ref": "#/definitions/Identifier"
1932 + }
1933 + ]
1934 + }
1935 + }
1936 + },
1937 {
1938 "properties": {
1939 "identifier": {
@@ -2060,6 +3860,1734 @@
3860 "const": "core:window:deny-unminimize",
3861 "markdownDescription": "Denies the unminimize command without any pre-configured scope."
3862 },
3863 + {
3864 + "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\n#### This default permission set includes:\n\n- `create-app-specific-dirs`\n- `read-app-specific-dirs-recursive`\n- `deny-default`",
3865 + "type": "string",
3866 + "const": "fs:default",
3867 + "markdownDescription": "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\n#### This default permission set includes:\n\n- `create-app-specific-dirs`\n- `read-app-specific-dirs-recursive`\n- `deny-default`"
3868 + },
3869 + {
3870 + "description": "This allows non-recursive read access to metadata of the application folders, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-app-index`",
3871 + "type": "string",
3872 + "const": "fs:allow-app-meta",
3873 + "markdownDescription": "This allows non-recursive read access to metadata of the application folders, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-app-index`"
3874 + },
3875 + {
3876 + "description": "This allows full recursive read access to metadata of the application folders, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-app-recursive`",
3877 + "type": "string",
3878 + "const": "fs:allow-app-meta-recursive",
3879 + "markdownDescription": "This allows full recursive read access to metadata of the application folders, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-app-recursive`"
3880 + },
3881 + {
3882 + "description": "This allows non-recursive read access to the application folders.\n#### This permission set includes:\n\n- `read-all`\n- `scope-app`",
3883 + "type": "string",
3884 + "const": "fs:allow-app-read",
3885 + "markdownDescription": "This allows non-recursive read access to the application folders.\n#### This permission set includes:\n\n- `read-all`\n- `scope-app`"
3886 + },
3887 + {
3888 + "description": "This allows full recursive read access to the complete application folders, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-app-recursive`",
3889 + "type": "string",
3890 + "const": "fs:allow-app-read-recursive",
3891 + "markdownDescription": "This allows full recursive read access to the complete application folders, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-app-recursive`"
3892 + },
3893 + {
3894 + "description": "This allows non-recursive write access to the application folders.\n#### This permission set includes:\n\n- `write-all`\n- `scope-app`",
3895 + "type": "string",
3896 + "const": "fs:allow-app-write",
3897 + "markdownDescription": "This allows non-recursive write access to the application folders.\n#### This permission set includes:\n\n- `write-all`\n- `scope-app`"
3898 + },
3899 + {
3900 + "description": "This allows full recursive write access to the complete application folders, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-app-recursive`",
3901 + "type": "string",
3902 + "const": "fs:allow-app-write-recursive",
3903 + "markdownDescription": "This allows full recursive write access to the complete application folders, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-app-recursive`"
3904 + },
3905 + {
3906 + "description": "This allows non-recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appcache-index`",
3907 + "type": "string",
3908 + "const": "fs:allow-appcache-meta",
3909 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appcache-index`"
3910 + },
3911 + {
3912 + "description": "This allows full recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appcache-recursive`",
3913 + "type": "string",
3914 + "const": "fs:allow-appcache-meta-recursive",
3915 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appcache-recursive`"
3916 + },
3917 + {
3918 + "description": "This allows non-recursive read access to the `$APPCACHE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appcache`",
3919 + "type": "string",
3920 + "const": "fs:allow-appcache-read",
3921 + "markdownDescription": "This allows non-recursive read access to the `$APPCACHE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appcache`"
3922 + },
3923 + {
3924 + "description": "This allows full recursive read access to the complete `$APPCACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appcache-recursive`",
3925 + "type": "string",
3926 + "const": "fs:allow-appcache-read-recursive",
3927 + "markdownDescription": "This allows full recursive read access to the complete `$APPCACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appcache-recursive`"
3928 + },
3929 + {
3930 + "description": "This allows non-recursive write access to the `$APPCACHE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appcache`",
3931 + "type": "string",
3932 + "const": "fs:allow-appcache-write",
3933 + "markdownDescription": "This allows non-recursive write access to the `$APPCACHE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appcache`"
3934 + },
3935 + {
3936 + "description": "This allows full recursive write access to the complete `$APPCACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appcache-recursive`",
3937 + "type": "string",
3938 + "const": "fs:allow-appcache-write-recursive",
3939 + "markdownDescription": "This allows full recursive write access to the complete `$APPCACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appcache-recursive`"
3940 + },
3941 + {
3942 + "description": "This allows non-recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appconfig-index`",
3943 + "type": "string",
3944 + "const": "fs:allow-appconfig-meta",
3945 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appconfig-index`"
3946 + },
3947 + {
3948 + "description": "This allows full recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appconfig-recursive`",
3949 + "type": "string",
3950 + "const": "fs:allow-appconfig-meta-recursive",
3951 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appconfig-recursive`"
3952 + },
3953 + {
3954 + "description": "This allows non-recursive read access to the `$APPCONFIG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appconfig`",
3955 + "type": "string",
3956 + "const": "fs:allow-appconfig-read",
3957 + "markdownDescription": "This allows non-recursive read access to the `$APPCONFIG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appconfig`"
3958 + },
3959 + {
3960 + "description": "This allows full recursive read access to the complete `$APPCONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appconfig-recursive`",
3961 + "type": "string",
3962 + "const": "fs:allow-appconfig-read-recursive",
3963 + "markdownDescription": "This allows full recursive read access to the complete `$APPCONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appconfig-recursive`"
3964 + },
3965 + {
3966 + "description": "This allows non-recursive write access to the `$APPCONFIG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appconfig`",
3967 + "type": "string",
3968 + "const": "fs:allow-appconfig-write",
3969 + "markdownDescription": "This allows non-recursive write access to the `$APPCONFIG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appconfig`"
3970 + },
3971 + {
3972 + "description": "This allows full recursive write access to the complete `$APPCONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appconfig-recursive`",
3973 + "type": "string",
3974 + "const": "fs:allow-appconfig-write-recursive",
3975 + "markdownDescription": "This allows full recursive write access to the complete `$APPCONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appconfig-recursive`"
3976 + },
3977 + {
3978 + "description": "This allows non-recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appdata-index`",
3979 + "type": "string",
3980 + "const": "fs:allow-appdata-meta",
3981 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appdata-index`"
3982 + },
3983 + {
3984 + "description": "This allows full recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appdata-recursive`",
3985 + "type": "string",
3986 + "const": "fs:allow-appdata-meta-recursive",
3987 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appdata-recursive`"
3988 + },
3989 + {
3990 + "description": "This allows non-recursive read access to the `$APPDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appdata`",
3991 + "type": "string",
3992 + "const": "fs:allow-appdata-read",
3993 + "markdownDescription": "This allows non-recursive read access to the `$APPDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appdata`"
3994 + },
3995 + {
3996 + "description": "This allows full recursive read access to the complete `$APPDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appdata-recursive`",
3997 + "type": "string",
3998 + "const": "fs:allow-appdata-read-recursive",
3999 + "markdownDescription": "This allows full recursive read access to the complete `$APPDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appdata-recursive`"
4000 + },
4001 + {
4002 + "description": "This allows non-recursive write access to the `$APPDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appdata`",
4003 + "type": "string",
4004 + "const": "fs:allow-appdata-write",
4005 + "markdownDescription": "This allows non-recursive write access to the `$APPDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appdata`"
4006 + },
4007 + {
4008 + "description": "This allows full recursive write access to the complete `$APPDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appdata-recursive`",
4009 + "type": "string",
4010 + "const": "fs:allow-appdata-write-recursive",
4011 + "markdownDescription": "This allows full recursive write access to the complete `$APPDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appdata-recursive`"
4012 + },
4013 + {
4014 + "description": "This allows non-recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applocaldata-index`",
4015 + "type": "string",
4016 + "const": "fs:allow-applocaldata-meta",
4017 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applocaldata-index`"
4018 + },
4019 + {
4020 + "description": "This allows full recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applocaldata-recursive`",
4021 + "type": "string",
4022 + "const": "fs:allow-applocaldata-meta-recursive",
4023 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applocaldata-recursive`"
4024 + },
4025 + {
4026 + "description": "This allows non-recursive read access to the `$APPLOCALDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applocaldata`",
4027 + "type": "string",
4028 + "const": "fs:allow-applocaldata-read",
4029 + "markdownDescription": "This allows non-recursive read access to the `$APPLOCALDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applocaldata`"
4030 + },
4031 + {
4032 + "description": "This allows full recursive read access to the complete `$APPLOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applocaldata-recursive`",
4033 + "type": "string",
4034 + "const": "fs:allow-applocaldata-read-recursive",
4035 + "markdownDescription": "This allows full recursive read access to the complete `$APPLOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applocaldata-recursive`"
4036 + },
4037 + {
4038 + "description": "This allows non-recursive write access to the `$APPLOCALDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applocaldata`",
4039 + "type": "string",
4040 + "const": "fs:allow-applocaldata-write",
4041 + "markdownDescription": "This allows non-recursive write access to the `$APPLOCALDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applocaldata`"
4042 + },
4043 + {
4044 + "description": "This allows full recursive write access to the complete `$APPLOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applocaldata-recursive`",
4045 + "type": "string",
4046 + "const": "fs:allow-applocaldata-write-recursive",
4047 + "markdownDescription": "This allows full recursive write access to the complete `$APPLOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applocaldata-recursive`"
4048 + },
4049 + {
4050 + "description": "This allows non-recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applog-index`",
4051 + "type": "string",
4052 + "const": "fs:allow-applog-meta",
4053 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applog-index`"
4054 + },
4055 + {
4056 + "description": "This allows full recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applog-recursive`",
4057 + "type": "string",
4058 + "const": "fs:allow-applog-meta-recursive",
4059 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applog-recursive`"
4060 + },
4061 + {
4062 + "description": "This allows non-recursive read access to the `$APPLOG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applog`",
4063 + "type": "string",
4064 + "const": "fs:allow-applog-read",
4065 + "markdownDescription": "This allows non-recursive read access to the `$APPLOG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applog`"
4066 + },
4067 + {
4068 + "description": "This allows full recursive read access to the complete `$APPLOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applog-recursive`",
4069 + "type": "string",
4070 + "const": "fs:allow-applog-read-recursive",
4071 + "markdownDescription": "This allows full recursive read access to the complete `$APPLOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applog-recursive`"
4072 + },
4073 + {
4074 + "description": "This allows non-recursive write access to the `$APPLOG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applog`",
4075 + "type": "string",
4076 + "const": "fs:allow-applog-write",
4077 + "markdownDescription": "This allows non-recursive write access to the `$APPLOG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applog`"
4078 + },
4079 + {
4080 + "description": "This allows full recursive write access to the complete `$APPLOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applog-recursive`",
4081 + "type": "string",
4082 + "const": "fs:allow-applog-write-recursive",
4083 + "markdownDescription": "This allows full recursive write access to the complete `$APPLOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applog-recursive`"
4084 + },
4085 + {
4086 + "description": "This allows non-recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-audio-index`",
4087 + "type": "string",
4088 + "const": "fs:allow-audio-meta",
4089 + "markdownDescription": "This allows non-recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-audio-index`"
4090 + },
4091 + {
4092 + "description": "This allows full recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-audio-recursive`",
4093 + "type": "string",
4094 + "const": "fs:allow-audio-meta-recursive",
4095 + "markdownDescription": "This allows full recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-audio-recursive`"
4096 + },
4097 + {
4098 + "description": "This allows non-recursive read access to the `$AUDIO` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-audio`",
4099 + "type": "string",
4100 + "const": "fs:allow-audio-read",
4101 + "markdownDescription": "This allows non-recursive read access to the `$AUDIO` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-audio`"
4102 + },
4103 + {
4104 + "description": "This allows full recursive read access to the complete `$AUDIO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-audio-recursive`",
4105 + "type": "string",
4106 + "const": "fs:allow-audio-read-recursive",
4107 + "markdownDescription": "This allows full recursive read access to the complete `$AUDIO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-audio-recursive`"
4108 + },
4109 + {
4110 + "description": "This allows non-recursive write access to the `$AUDIO` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-audio`",
4111 + "type": "string",
4112 + "const": "fs:allow-audio-write",
4113 + "markdownDescription": "This allows non-recursive write access to the `$AUDIO` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-audio`"
4114 + },
4115 + {
4116 + "description": "This allows full recursive write access to the complete `$AUDIO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-audio-recursive`",
4117 + "type": "string",
4118 + "const": "fs:allow-audio-write-recursive",
4119 + "markdownDescription": "This allows full recursive write access to the complete `$AUDIO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-audio-recursive`"
4120 + },
4121 + {
4122 + "description": "This allows non-recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-cache-index`",
4123 + "type": "string",
4124 + "const": "fs:allow-cache-meta",
4125 + "markdownDescription": "This allows non-recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-cache-index`"
4126 + },
4127 + {
4128 + "description": "This allows full recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-cache-recursive`",
4129 + "type": "string",
4130 + "const": "fs:allow-cache-meta-recursive",
4131 + "markdownDescription": "This allows full recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-cache-recursive`"
4132 + },
4133 + {
4134 + "description": "This allows non-recursive read access to the `$CACHE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-cache`",
4135 + "type": "string",
4136 + "const": "fs:allow-cache-read",
4137 + "markdownDescription": "This allows non-recursive read access to the `$CACHE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-cache`"
4138 + },
4139 + {
4140 + "description": "This allows full recursive read access to the complete `$CACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-cache-recursive`",
4141 + "type": "string",
4142 + "const": "fs:allow-cache-read-recursive",
4143 + "markdownDescription": "This allows full recursive read access to the complete `$CACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-cache-recursive`"
4144 + },
4145 + {
4146 + "description": "This allows non-recursive write access to the `$CACHE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-cache`",
4147 + "type": "string",
4148 + "const": "fs:allow-cache-write",
4149 + "markdownDescription": "This allows non-recursive write access to the `$CACHE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-cache`"
4150 + },
4151 + {
4152 + "description": "This allows full recursive write access to the complete `$CACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-cache-recursive`",
4153 + "type": "string",
4154 + "const": "fs:allow-cache-write-recursive",
4155 + "markdownDescription": "This allows full recursive write access to the complete `$CACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-cache-recursive`"
4156 + },
4157 + {
4158 + "description": "This allows non-recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-config-index`",
4159 + "type": "string",
4160 + "const": "fs:allow-config-meta",
4161 + "markdownDescription": "This allows non-recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-config-index`"
4162 + },
4163 + {
4164 + "description": "This allows full recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-config-recursive`",
4165 + "type": "string",
4166 + "const": "fs:allow-config-meta-recursive",
4167 + "markdownDescription": "This allows full recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-config-recursive`"
4168 + },
4169 + {
4170 + "description": "This allows non-recursive read access to the `$CONFIG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-config`",
4171 + "type": "string",
4172 + "const": "fs:allow-config-read",
4173 + "markdownDescription": "This allows non-recursive read access to the `$CONFIG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-config`"
4174 + },
4175 + {
4176 + "description": "This allows full recursive read access to the complete `$CONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-config-recursive`",
4177 + "type": "string",
4178 + "const": "fs:allow-config-read-recursive",
4179 + "markdownDescription": "This allows full recursive read access to the complete `$CONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-config-recursive`"
4180 + },
4181 + {
4182 + "description": "This allows non-recursive write access to the `$CONFIG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-config`",
4183 + "type": "string",
4184 + "const": "fs:allow-config-write",
4185 + "markdownDescription": "This allows non-recursive write access to the `$CONFIG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-config`"
4186 + },
4187 + {
4188 + "description": "This allows full recursive write access to the complete `$CONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-config-recursive`",
4189 + "type": "string",
4190 + "const": "fs:allow-config-write-recursive",
4191 + "markdownDescription": "This allows full recursive write access to the complete `$CONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-config-recursive`"
4192 + },
4193 + {
4194 + "description": "This allows non-recursive read access to metadata of the `$DATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-data-index`",
4195 + "type": "string",
4196 + "const": "fs:allow-data-meta",
4197 + "markdownDescription": "This allows non-recursive read access to metadata of the `$DATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-data-index`"
4198 + },
4199 + {
4200 + "description": "This allows full recursive read access to metadata of the `$DATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-data-recursive`",
4201 + "type": "string",
4202 + "const": "fs:allow-data-meta-recursive",
4203 + "markdownDescription": "This allows full recursive read access to metadata of the `$DATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-data-recursive`"
4204 + },
4205 + {
4206 + "description": "This allows non-recursive read access to the `$DATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-data`",
4207 + "type": "string",
4208 + "const": "fs:allow-data-read",
4209 + "markdownDescription": "This allows non-recursive read access to the `$DATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-data`"
4210 + },
4211 + {
4212 + "description": "This allows full recursive read access to the complete `$DATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-data-recursive`",
4213 + "type": "string",
4214 + "const": "fs:allow-data-read-recursive",
4215 + "markdownDescription": "This allows full recursive read access to the complete `$DATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-data-recursive`"
4216 + },
4217 + {
4218 + "description": "This allows non-recursive write access to the `$DATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-data`",
4219 + "type": "string",
4220 + "const": "fs:allow-data-write",
4221 + "markdownDescription": "This allows non-recursive write access to the `$DATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-data`"
4222 + },
4223 + {
4224 + "description": "This allows full recursive write access to the complete `$DATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-data-recursive`",
4225 + "type": "string",
4226 + "const": "fs:allow-data-write-recursive",
4227 + "markdownDescription": "This allows full recursive write access to the complete `$DATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-data-recursive`"
4228 + },
4229 + {
4230 + "description": "This allows non-recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-desktop-index`",
4231 + "type": "string",
4232 + "const": "fs:allow-desktop-meta",
4233 + "markdownDescription": "This allows non-recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-desktop-index`"
4234 + },
4235 + {
4236 + "description": "This allows full recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-desktop-recursive`",
4237 + "type": "string",
4238 + "const": "fs:allow-desktop-meta-recursive",
4239 + "markdownDescription": "This allows full recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-desktop-recursive`"
4240 + },
4241 + {
4242 + "description": "This allows non-recursive read access to the `$DESKTOP` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-desktop`",
4243 + "type": "string",
4244 + "const": "fs:allow-desktop-read",
4245 + "markdownDescription": "This allows non-recursive read access to the `$DESKTOP` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-desktop`"
4246 + },
4247 + {
4248 + "description": "This allows full recursive read access to the complete `$DESKTOP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-desktop-recursive`",
4249 + "type": "string",
4250 + "const": "fs:allow-desktop-read-recursive",
4251 + "markdownDescription": "This allows full recursive read access to the complete `$DESKTOP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-desktop-recursive`"
4252 + },
4253 + {
4254 + "description": "This allows non-recursive write access to the `$DESKTOP` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-desktop`",
4255 + "type": "string",
4256 + "const": "fs:allow-desktop-write",
4257 + "markdownDescription": "This allows non-recursive write access to the `$DESKTOP` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-desktop`"
4258 + },
4259 + {
4260 + "description": "This allows full recursive write access to the complete `$DESKTOP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-desktop-recursive`",
4261 + "type": "string",
4262 + "const": "fs:allow-desktop-write-recursive",
4263 + "markdownDescription": "This allows full recursive write access to the complete `$DESKTOP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-desktop-recursive`"
4264 + },
4265 + {
4266 + "description": "This allows non-recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-document-index`",
4267 + "type": "string",
4268 + "const": "fs:allow-document-meta",
4269 + "markdownDescription": "This allows non-recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-document-index`"
4270 + },
4271 + {
4272 + "description": "This allows full recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-document-recursive`",
4273 + "type": "string",
4274 + "const": "fs:allow-document-meta-recursive",
4275 + "markdownDescription": "This allows full recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-document-recursive`"
4276 + },
4277 + {
4278 + "description": "This allows non-recursive read access to the `$DOCUMENT` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-document`",
4279 + "type": "string",
4280 + "const": "fs:allow-document-read",
4281 + "markdownDescription": "This allows non-recursive read access to the `$DOCUMENT` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-document`"
4282 + },
4283 + {
4284 + "description": "This allows full recursive read access to the complete `$DOCUMENT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-document-recursive`",
4285 + "type": "string",
4286 + "const": "fs:allow-document-read-recursive",
4287 + "markdownDescription": "This allows full recursive read access to the complete `$DOCUMENT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-document-recursive`"
4288 + },
4289 + {
4290 + "description": "This allows non-recursive write access to the `$DOCUMENT` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-document`",
4291 + "type": "string",
4292 + "const": "fs:allow-document-write",
4293 + "markdownDescription": "This allows non-recursive write access to the `$DOCUMENT` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-document`"
4294 + },
4295 + {
4296 + "description": "This allows full recursive write access to the complete `$DOCUMENT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-document-recursive`",
4297 + "type": "string",
4298 + "const": "fs:allow-document-write-recursive",
4299 + "markdownDescription": "This allows full recursive write access to the complete `$DOCUMENT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-document-recursive`"
4300 + },
4301 + {
4302 + "description": "This allows non-recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-download-index`",
4303 + "type": "string",
4304 + "const": "fs:allow-download-meta",
4305 + "markdownDescription": "This allows non-recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-download-index`"
4306 + },
4307 + {
4308 + "description": "This allows full recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-download-recursive`",
4309 + "type": "string",
4310 + "const": "fs:allow-download-meta-recursive",
4311 + "markdownDescription": "This allows full recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-download-recursive`"
4312 + },
4313 + {
4314 + "description": "This allows non-recursive read access to the `$DOWNLOAD` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-download`",
4315 + "type": "string",
4316 + "const": "fs:allow-download-read",
4317 + "markdownDescription": "This allows non-recursive read access to the `$DOWNLOAD` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-download`"
4318 + },
4319 + {
4320 + "description": "This allows full recursive read access to the complete `$DOWNLOAD` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-download-recursive`",
4321 + "type": "string",
4322 + "const": "fs:allow-download-read-recursive",
4323 + "markdownDescription": "This allows full recursive read access to the complete `$DOWNLOAD` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-download-recursive`"
4324 + },
4325 + {
4326 + "description": "This allows non-recursive write access to the `$DOWNLOAD` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-download`",
4327 + "type": "string",
4328 + "const": "fs:allow-download-write",
4329 + "markdownDescription": "This allows non-recursive write access to the `$DOWNLOAD` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-download`"
4330 + },
4331 + {
4332 + "description": "This allows full recursive write access to the complete `$DOWNLOAD` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-download-recursive`",
4333 + "type": "string",
4334 + "const": "fs:allow-download-write-recursive",
4335 + "markdownDescription": "This allows full recursive write access to the complete `$DOWNLOAD` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-download-recursive`"
4336 + },
4337 + {
4338 + "description": "This allows non-recursive read access to metadata of the `$EXE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-exe-index`",
4339 + "type": "string",
4340 + "const": "fs:allow-exe-meta",
4341 + "markdownDescription": "This allows non-recursive read access to metadata of the `$EXE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-exe-index`"
4342 + },
4343 + {
4344 + "description": "This allows full recursive read access to metadata of the `$EXE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-exe-recursive`",
4345 + "type": "string",
4346 + "const": "fs:allow-exe-meta-recursive",
4347 + "markdownDescription": "This allows full recursive read access to metadata of the `$EXE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-exe-recursive`"
4348 + },
4349 + {
4350 + "description": "This allows non-recursive read access to the `$EXE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-exe`",
4351 + "type": "string",
4352 + "const": "fs:allow-exe-read",
4353 + "markdownDescription": "This allows non-recursive read access to the `$EXE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-exe`"
4354 + },
4355 + {
4356 + "description": "This allows full recursive read access to the complete `$EXE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-exe-recursive`",
4357 + "type": "string",
4358 + "const": "fs:allow-exe-read-recursive",
4359 + "markdownDescription": "This allows full recursive read access to the complete `$EXE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-exe-recursive`"
4360 + },
4361 + {
4362 + "description": "This allows non-recursive write access to the `$EXE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-exe`",
4363 + "type": "string",
4364 + "const": "fs:allow-exe-write",
4365 + "markdownDescription": "This allows non-recursive write access to the `$EXE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-exe`"
4366 + },
4367 + {
4368 + "description": "This allows full recursive write access to the complete `$EXE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-exe-recursive`",
4369 + "type": "string",
4370 + "const": "fs:allow-exe-write-recursive",
4371 + "markdownDescription": "This allows full recursive write access to the complete `$EXE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-exe-recursive`"
4372 + },
4373 + {
4374 + "description": "This allows non-recursive read access to metadata of the `$FONT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-font-index`",
4375 + "type": "string",
4376 + "const": "fs:allow-font-meta",
4377 + "markdownDescription": "This allows non-recursive read access to metadata of the `$FONT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-font-index`"
4378 + },
4379 + {
4380 + "description": "This allows full recursive read access to metadata of the `$FONT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-font-recursive`",
4381 + "type": "string",
4382 + "const": "fs:allow-font-meta-recursive",
4383 + "markdownDescription": "This allows full recursive read access to metadata of the `$FONT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-font-recursive`"
4384 + },
4385 + {
4386 + "description": "This allows non-recursive read access to the `$FONT` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-font`",
4387 + "type": "string",
4388 + "const": "fs:allow-font-read",
4389 + "markdownDescription": "This allows non-recursive read access to the `$FONT` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-font`"
4390 + },
4391 + {
4392 + "description": "This allows full recursive read access to the complete `$FONT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-font-recursive`",
4393 + "type": "string",
4394 + "const": "fs:allow-font-read-recursive",
4395 + "markdownDescription": "This allows full recursive read access to the complete `$FONT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-font-recursive`"
4396 + },
4397 + {
4398 + "description": "This allows non-recursive write access to the `$FONT` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-font`",
4399 + "type": "string",
4400 + "const": "fs:allow-font-write",
4401 + "markdownDescription": "This allows non-recursive write access to the `$FONT` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-font`"
4402 + },
4403 + {
4404 + "description": "This allows full recursive write access to the complete `$FONT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-font-recursive`",
4405 + "type": "string",
4406 + "const": "fs:allow-font-write-recursive",
4407 + "markdownDescription": "This allows full recursive write access to the complete `$FONT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-font-recursive`"
4408 + },
4409 + {
4410 + "description": "This allows non-recursive read access to metadata of the `$HOME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-home-index`",
4411 + "type": "string",
4412 + "const": "fs:allow-home-meta",
4413 + "markdownDescription": "This allows non-recursive read access to metadata of the `$HOME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-home-index`"
4414 + },
4415 + {
4416 + "description": "This allows full recursive read access to metadata of the `$HOME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-home-recursive`",
4417 + "type": "string",
4418 + "const": "fs:allow-home-meta-recursive",
4419 + "markdownDescription": "This allows full recursive read access to metadata of the `$HOME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-home-recursive`"
4420 + },
4421 + {
4422 + "description": "This allows non-recursive read access to the `$HOME` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-home`",
4423 + "type": "string",
4424 + "const": "fs:allow-home-read",
4425 + "markdownDescription": "This allows non-recursive read access to the `$HOME` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-home`"
4426 + },
4427 + {
4428 + "description": "This allows full recursive read access to the complete `$HOME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-home-recursive`",
4429 + "type": "string",
4430 + "const": "fs:allow-home-read-recursive",
4431 + "markdownDescription": "This allows full recursive read access to the complete `$HOME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-home-recursive`"
4432 + },
4433 + {
4434 + "description": "This allows non-recursive write access to the `$HOME` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-home`",
4435 + "type": "string",
4436 + "const": "fs:allow-home-write",
4437 + "markdownDescription": "This allows non-recursive write access to the `$HOME` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-home`"
4438 + },
4439 + {
4440 + "description": "This allows full recursive write access to the complete `$HOME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-home-recursive`",
4441 + "type": "string",
4442 + "const": "fs:allow-home-write-recursive",
4443 + "markdownDescription": "This allows full recursive write access to the complete `$HOME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-home-recursive`"
4444 + },
4445 + {
4446 + "description": "This allows non-recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-localdata-index`",
4447 + "type": "string",
4448 + "const": "fs:allow-localdata-meta",
4449 + "markdownDescription": "This allows non-recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-localdata-index`"
4450 + },
4451 + {
4452 + "description": "This allows full recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-localdata-recursive`",
4453 + "type": "string",
4454 + "const": "fs:allow-localdata-meta-recursive",
4455 + "markdownDescription": "This allows full recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-localdata-recursive`"
4456 + },
4457 + {
4458 + "description": "This allows non-recursive read access to the `$LOCALDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-localdata`",
4459 + "type": "string",
4460 + "const": "fs:allow-localdata-read",
4461 + "markdownDescription": "This allows non-recursive read access to the `$LOCALDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-localdata`"
4462 + },
4463 + {
4464 + "description": "This allows full recursive read access to the complete `$LOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-localdata-recursive`",
4465 + "type": "string",
4466 + "const": "fs:allow-localdata-read-recursive",
4467 + "markdownDescription": "This allows full recursive read access to the complete `$LOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-localdata-recursive`"
4468 + },
4469 + {
4470 + "description": "This allows non-recursive write access to the `$LOCALDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-localdata`",
4471 + "type": "string",
4472 + "const": "fs:allow-localdata-write",
4473 + "markdownDescription": "This allows non-recursive write access to the `$LOCALDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-localdata`"
4474 + },
4475 + {
4476 + "description": "This allows full recursive write access to the complete `$LOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-localdata-recursive`",
4477 + "type": "string",
4478 + "const": "fs:allow-localdata-write-recursive",
4479 + "markdownDescription": "This allows full recursive write access to the complete `$LOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-localdata-recursive`"
4480 + },
4481 + {
4482 + "description": "This allows non-recursive read access to metadata of the `$LOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-log-index`",
4483 + "type": "string",
4484 + "const": "fs:allow-log-meta",
4485 + "markdownDescription": "This allows non-recursive read access to metadata of the `$LOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-log-index`"
4486 + },
4487 + {
4488 + "description": "This allows full recursive read access to metadata of the `$LOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-log-recursive`",
4489 + "type": "string",
4490 + "const": "fs:allow-log-meta-recursive",
4491 + "markdownDescription": "This allows full recursive read access to metadata of the `$LOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-log-recursive`"
4492 + },
4493 + {
4494 + "description": "This allows non-recursive read access to the `$LOG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-log`",
4495 + "type": "string",
4496 + "const": "fs:allow-log-read",
4497 + "markdownDescription": "This allows non-recursive read access to the `$LOG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-log`"
4498 + },
4499 + {
4500 + "description": "This allows full recursive read access to the complete `$LOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-log-recursive`",
4501 + "type": "string",
4502 + "const": "fs:allow-log-read-recursive",
4503 + "markdownDescription": "This allows full recursive read access to the complete `$LOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-log-recursive`"
4504 + },
4505 + {
4506 + "description": "This allows non-recursive write access to the `$LOG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-log`",
4507 + "type": "string",
4508 + "const": "fs:allow-log-write",
4509 + "markdownDescription": "This allows non-recursive write access to the `$LOG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-log`"
4510 + },
4511 + {
4512 + "description": "This allows full recursive write access to the complete `$LOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-log-recursive`",
4513 + "type": "string",
4514 + "const": "fs:allow-log-write-recursive",
4515 + "markdownDescription": "This allows full recursive write access to the complete `$LOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-log-recursive`"
4516 + },
4517 + {
4518 + "description": "This allows non-recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-picture-index`",
4519 + "type": "string",
4520 + "const": "fs:allow-picture-meta",
4521 + "markdownDescription": "This allows non-recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-picture-index`"
4522 + },
4523 + {
4524 + "description": "This allows full recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-picture-recursive`",
4525 + "type": "string",
4526 + "const": "fs:allow-picture-meta-recursive",
4527 + "markdownDescription": "This allows full recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-picture-recursive`"
4528 + },
4529 + {
4530 + "description": "This allows non-recursive read access to the `$PICTURE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-picture`",
4531 + "type": "string",
4532 + "const": "fs:allow-picture-read",
4533 + "markdownDescription": "This allows non-recursive read access to the `$PICTURE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-picture`"
4534 + },
4535 + {
4536 + "description": "This allows full recursive read access to the complete `$PICTURE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-picture-recursive`",
4537 + "type": "string",
4538 + "const": "fs:allow-picture-read-recursive",
4539 + "markdownDescription": "This allows full recursive read access to the complete `$PICTURE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-picture-recursive`"
4540 + },
4541 + {
4542 + "description": "This allows non-recursive write access to the `$PICTURE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-picture`",
4543 + "type": "string",
4544 + "const": "fs:allow-picture-write",
4545 + "markdownDescription": "This allows non-recursive write access to the `$PICTURE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-picture`"
4546 + },
4547 + {
4548 + "description": "This allows full recursive write access to the complete `$PICTURE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-picture-recursive`",
4549 + "type": "string",
4550 + "const": "fs:allow-picture-write-recursive",
4551 + "markdownDescription": "This allows full recursive write access to the complete `$PICTURE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-picture-recursive`"
4552 + },
4553 + {
4554 + "description": "This allows non-recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-public-index`",
4555 + "type": "string",
4556 + "const": "fs:allow-public-meta",
4557 + "markdownDescription": "This allows non-recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-public-index`"
4558 + },
4559 + {
4560 + "description": "This allows full recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-public-recursive`",
4561 + "type": "string",
4562 + "const": "fs:allow-public-meta-recursive",
4563 + "markdownDescription": "This allows full recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-public-recursive`"
4564 + },
4565 + {
4566 + "description": "This allows non-recursive read access to the `$PUBLIC` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-public`",
4567 + "type": "string",
4568 + "const": "fs:allow-public-read",
4569 + "markdownDescription": "This allows non-recursive read access to the `$PUBLIC` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-public`"
4570 + },
4571 + {
4572 + "description": "This allows full recursive read access to the complete `$PUBLIC` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-public-recursive`",
4573 + "type": "string",
4574 + "const": "fs:allow-public-read-recursive",
4575 + "markdownDescription": "This allows full recursive read access to the complete `$PUBLIC` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-public-recursive`"
4576 + },
4577 + {
4578 + "description": "This allows non-recursive write access to the `$PUBLIC` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-public`",
4579 + "type": "string",
4580 + "const": "fs:allow-public-write",
4581 + "markdownDescription": "This allows non-recursive write access to the `$PUBLIC` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-public`"
4582 + },
4583 + {
4584 + "description": "This allows full recursive write access to the complete `$PUBLIC` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-public-recursive`",
4585 + "type": "string",
4586 + "const": "fs:allow-public-write-recursive",
4587 + "markdownDescription": "This allows full recursive write access to the complete `$PUBLIC` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-public-recursive`"
4588 + },
4589 + {
4590 + "description": "This allows non-recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-resource-index`",
4591 + "type": "string",
4592 + "const": "fs:allow-resource-meta",
4593 + "markdownDescription": "This allows non-recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-resource-index`"
4594 + },
4595 + {
4596 + "description": "This allows full recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-resource-recursive`",
4597 + "type": "string",
4598 + "const": "fs:allow-resource-meta-recursive",
4599 + "markdownDescription": "This allows full recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-resource-recursive`"
4600 + },
4601 + {
4602 + "description": "This allows non-recursive read access to the `$RESOURCE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-resource`",
4603 + "type": "string",
4604 + "const": "fs:allow-resource-read",
4605 + "markdownDescription": "This allows non-recursive read access to the `$RESOURCE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-resource`"
4606 + },
4607 + {
4608 + "description": "This allows full recursive read access to the complete `$RESOURCE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-resource-recursive`",
4609 + "type": "string",
4610 + "const": "fs:allow-resource-read-recursive",
4611 + "markdownDescription": "This allows full recursive read access to the complete `$RESOURCE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-resource-recursive`"
4612 + },
4613 + {
4614 + "description": "This allows non-recursive write access to the `$RESOURCE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-resource`",
4615 + "type": "string",
4616 + "const": "fs:allow-resource-write",
4617 + "markdownDescription": "This allows non-recursive write access to the `$RESOURCE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-resource`"
4618 + },
4619 + {
4620 + "description": "This allows full recursive write access to the complete `$RESOURCE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-resource-recursive`",
4621 + "type": "string",
4622 + "const": "fs:allow-resource-write-recursive",
4623 + "markdownDescription": "This allows full recursive write access to the complete `$RESOURCE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-resource-recursive`"
4624 + },
4625 + {
4626 + "description": "This allows non-recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-runtime-index`",
4627 + "type": "string",
4628 + "const": "fs:allow-runtime-meta",
4629 + "markdownDescription": "This allows non-recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-runtime-index`"
4630 + },
4631 + {
4632 + "description": "This allows full recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-runtime-recursive`",
4633 + "type": "string",
4634 + "const": "fs:allow-runtime-meta-recursive",
4635 + "markdownDescription": "This allows full recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-runtime-recursive`"
4636 + },
4637 + {
4638 + "description": "This allows non-recursive read access to the `$RUNTIME` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-runtime`",
4639 + "type": "string",
4640 + "const": "fs:allow-runtime-read",
4641 + "markdownDescription": "This allows non-recursive read access to the `$RUNTIME` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-runtime`"
4642 + },
4643 + {
4644 + "description": "This allows full recursive read access to the complete `$RUNTIME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-runtime-recursive`",
4645 + "type": "string",
4646 + "const": "fs:allow-runtime-read-recursive",
4647 + "markdownDescription": "This allows full recursive read access to the complete `$RUNTIME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-runtime-recursive`"
4648 + },
4649 + {
4650 + "description": "This allows non-recursive write access to the `$RUNTIME` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-runtime`",
4651 + "type": "string",
4652 + "const": "fs:allow-runtime-write",
4653 + "markdownDescription": "This allows non-recursive write access to the `$RUNTIME` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-runtime`"
4654 + },
4655 + {
4656 + "description": "This allows full recursive write access to the complete `$RUNTIME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-runtime-recursive`",
4657 + "type": "string",
4658 + "const": "fs:allow-runtime-write-recursive",
4659 + "markdownDescription": "This allows full recursive write access to the complete `$RUNTIME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-runtime-recursive`"
4660 + },
4661 + {
4662 + "description": "This allows non-recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-temp-index`",
4663 + "type": "string",
4664 + "const": "fs:allow-temp-meta",
4665 + "markdownDescription": "This allows non-recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-temp-index`"
4666 + },
4667 + {
4668 + "description": "This allows full recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-temp-recursive`",
4669 + "type": "string",
4670 + "const": "fs:allow-temp-meta-recursive",
4671 + "markdownDescription": "This allows full recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-temp-recursive`"
4672 + },
4673 + {
4674 + "description": "This allows non-recursive read access to the `$TEMP` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-temp`",
4675 + "type": "string",
4676 + "const": "fs:allow-temp-read",
4677 + "markdownDescription": "This allows non-recursive read access to the `$TEMP` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-temp`"
4678 + },
4679 + {
4680 + "description": "This allows full recursive read access to the complete `$TEMP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-temp-recursive`",
4681 + "type": "string",
4682 + "const": "fs:allow-temp-read-recursive",
4683 + "markdownDescription": "This allows full recursive read access to the complete `$TEMP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-temp-recursive`"
4684 + },
4685 + {
4686 + "description": "This allows non-recursive write access to the `$TEMP` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-temp`",
4687 + "type": "string",
4688 + "const": "fs:allow-temp-write",
4689 + "markdownDescription": "This allows non-recursive write access to the `$TEMP` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-temp`"
4690 + },
4691 + {
4692 + "description": "This allows full recursive write access to the complete `$TEMP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-temp-recursive`",
4693 + "type": "string",
4694 + "const": "fs:allow-temp-write-recursive",
4695 + "markdownDescription": "This allows full recursive write access to the complete `$TEMP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-temp-recursive`"
4696 + },
4697 + {
4698 + "description": "This allows non-recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-template-index`",
4699 + "type": "string",
4700 + "const": "fs:allow-template-meta",
4701 + "markdownDescription": "This allows non-recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-template-index`"
4702 + },
4703 + {
4704 + "description": "This allows full recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-template-recursive`",
4705 + "type": "string",
4706 + "const": "fs:allow-template-meta-recursive",
4707 + "markdownDescription": "This allows full recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-template-recursive`"
4708 + },
4709 + {
4710 + "description": "This allows non-recursive read access to the `$TEMPLATE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-template`",
4711 + "type": "string",
4712 + "const": "fs:allow-template-read",
4713 + "markdownDescription": "This allows non-recursive read access to the `$TEMPLATE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-template`"
4714 + },
4715 + {
4716 + "description": "This allows full recursive read access to the complete `$TEMPLATE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-template-recursive`",
4717 + "type": "string",
4718 + "const": "fs:allow-template-read-recursive",
4719 + "markdownDescription": "This allows full recursive read access to the complete `$TEMPLATE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-template-recursive`"
4720 + },
4721 + {
4722 + "description": "This allows non-recursive write access to the `$TEMPLATE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-template`",
4723 + "type": "string",
4724 + "const": "fs:allow-template-write",
4725 + "markdownDescription": "This allows non-recursive write access to the `$TEMPLATE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-template`"
4726 + },
4727 + {
4728 + "description": "This allows full recursive write access to the complete `$TEMPLATE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-template-recursive`",
4729 + "type": "string",
4730 + "const": "fs:allow-template-write-recursive",
4731 + "markdownDescription": "This allows full recursive write access to the complete `$TEMPLATE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-template-recursive`"
4732 + },
4733 + {
4734 + "description": "This allows non-recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-video-index`",
4735 + "type": "string",
4736 + "const": "fs:allow-video-meta",
4737 + "markdownDescription": "This allows non-recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-video-index`"
4738 + },
4739 + {
4740 + "description": "This allows full recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-video-recursive`",
4741 + "type": "string",
4742 + "const": "fs:allow-video-meta-recursive",
4743 + "markdownDescription": "This allows full recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-video-recursive`"
4744 + },
4745 + {
4746 + "description": "This allows non-recursive read access to the `$VIDEO` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-video`",
4747 + "type": "string",
4748 + "const": "fs:allow-video-read",
4749 + "markdownDescription": "This allows non-recursive read access to the `$VIDEO` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-video`"
4750 + },
4751 + {
4752 + "description": "This allows full recursive read access to the complete `$VIDEO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-video-recursive`",
4753 + "type": "string",
4754 + "const": "fs:allow-video-read-recursive",
4755 + "markdownDescription": "This allows full recursive read access to the complete `$VIDEO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-video-recursive`"
4756 + },
4757 + {
4758 + "description": "This allows non-recursive write access to the `$VIDEO` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-video`",
4759 + "type": "string",
4760 + "const": "fs:allow-video-write",
4761 + "markdownDescription": "This allows non-recursive write access to the `$VIDEO` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-video`"
4762 + },
4763 + {
4764 + "description": "This allows full recursive write access to the complete `$VIDEO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-video-recursive`",
4765 + "type": "string",
4766 + "const": "fs:allow-video-write-recursive",
4767 + "markdownDescription": "This allows full recursive write access to the complete `$VIDEO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-video-recursive`"
4768 + },
4769 + {
4770 + "description": "This denies access to dangerous Tauri relevant files and folders by default.\n#### This permission set includes:\n\n- `deny-webview-data-linux`\n- `deny-webview-data-windows`",
4771 + "type": "string",
4772 + "const": "fs:deny-default",
4773 + "markdownDescription": "This denies access to dangerous Tauri relevant files and folders by default.\n#### This permission set includes:\n\n- `deny-webview-data-linux`\n- `deny-webview-data-windows`"
4774 + },
4775 + {
4776 + "description": "Enables the copy_file command without any pre-configured scope.",
4777 + "type": "string",
4778 + "const": "fs:allow-copy-file",
4779 + "markdownDescription": "Enables the copy_file command without any pre-configured scope."
4780 + },
4781 + {
4782 + "description": "Enables the create command without any pre-configured scope.",
4783 + "type": "string",
4784 + "const": "fs:allow-create",
4785 + "markdownDescription": "Enables the create command without any pre-configured scope."
4786 + },
4787 + {
4788 + "description": "Enables the exists command without any pre-configured scope.",
4789 + "type": "string",
4790 + "const": "fs:allow-exists",
4791 + "markdownDescription": "Enables the exists command without any pre-configured scope."
4792 + },
4793 + {
4794 + "description": "Enables the fstat command without any pre-configured scope.",
4795 + "type": "string",
4796 + "const": "fs:allow-fstat",
4797 + "markdownDescription": "Enables the fstat command without any pre-configured scope."
4798 + },
4799 + {
4800 + "description": "Enables the ftruncate command without any pre-configured scope.",
4801 + "type": "string",
4802 + "const": "fs:allow-ftruncate",
4803 + "markdownDescription": "Enables the ftruncate command without any pre-configured scope."
4804 + },
4805 + {
4806 + "description": "Enables the lstat command without any pre-configured scope.",
4807 + "type": "string",
4808 + "const": "fs:allow-lstat",
4809 + "markdownDescription": "Enables the lstat command without any pre-configured scope."
4810 + },
4811 + {
4812 + "description": "Enables the mkdir command without any pre-configured scope.",
4813 + "type": "string",
4814 + "const": "fs:allow-mkdir",
4815 + "markdownDescription": "Enables the mkdir command without any pre-configured scope."
4816 + },
4817 + {
4818 + "description": "Enables the open command without any pre-configured scope.",
4819 + "type": "string",
4820 + "const": "fs:allow-open",
4821 + "markdownDescription": "Enables the open command without any pre-configured scope."
4822 + },
4823 + {
4824 + "description": "Enables the read command without any pre-configured scope.",
4825 + "type": "string",
4826 + "const": "fs:allow-read",
4827 + "markdownDescription": "Enables the read command without any pre-configured scope."
4828 + },
4829 + {
4830 + "description": "Enables the read_dir command without any pre-configured scope.",
4831 + "type": "string",
4832 + "const": "fs:allow-read-dir",
4833 + "markdownDescription": "Enables the read_dir command without any pre-configured scope."
4834 + },
4835 + {
4836 + "description": "Enables the read_file command without any pre-configured scope.",
4837 + "type": "string",
4838 + "const": "fs:allow-read-file",
4839 + "markdownDescription": "Enables the read_file command without any pre-configured scope."
4840 + },
4841 + {
4842 + "description": "Enables the read_text_file command without any pre-configured scope.",
4843 + "type": "string",
4844 + "const": "fs:allow-read-text-file",
4845 + "markdownDescription": "Enables the read_text_file command without any pre-configured scope."
4846 + },
4847 + {
4848 + "description": "Enables the read_text_file_lines command without any pre-configured scope.",
4849 + "type": "string",
4850 + "const": "fs:allow-read-text-file-lines",
4851 + "markdownDescription": "Enables the read_text_file_lines command without any pre-configured scope."
4852 + },
4853 + {
4854 + "description": "Enables the read_text_file_lines_next command without any pre-configured scope.",
4855 + "type": "string",
4856 + "const": "fs:allow-read-text-file-lines-next",
4857 + "markdownDescription": "Enables the read_text_file_lines_next command without any pre-configured scope."
4858 + },
4859 + {
4860 + "description": "Enables the remove command without any pre-configured scope.",
4861 + "type": "string",
4862 + "const": "fs:allow-remove",
4863 + "markdownDescription": "Enables the remove command without any pre-configured scope."
4864 + },
4865 + {
4866 + "description": "Enables the rename command without any pre-configured scope.",
4867 + "type": "string",
4868 + "const": "fs:allow-rename",
4869 + "markdownDescription": "Enables the rename command without any pre-configured scope."
4870 + },
4871 + {
4872 + "description": "Enables the seek command without any pre-configured scope.",
4873 + "type": "string",
4874 + "const": "fs:allow-seek",
4875 + "markdownDescription": "Enables the seek command without any pre-configured scope."
4876 + },
4877 + {
4878 + "description": "Enables the size command without any pre-configured scope.",
4879 + "type": "string",
4880 + "const": "fs:allow-size",
4881 + "markdownDescription": "Enables the size command without any pre-configured scope."
4882 + },
4883 + {
4884 + "description": "Enables the stat command without any pre-configured scope.",
4885 + "type": "string",
4886 + "const": "fs:allow-stat",
4887 + "markdownDescription": "Enables the stat command without any pre-configured scope."
4888 + },
4889 + {
4890 + "description": "Enables the truncate command without any pre-configured scope.",
4891 + "type": "string",
4892 + "const": "fs:allow-truncate",
4893 + "markdownDescription": "Enables the truncate command without any pre-configured scope."
4894 + },
4895 + {
4896 + "description": "Enables the unwatch command without any pre-configured scope.",
4897 + "type": "string",
4898 + "const": "fs:allow-unwatch",
4899 + "markdownDescription": "Enables the unwatch command without any pre-configured scope."
4900 + },
4901 + {
4902 + "description": "Enables the watch command without any pre-configured scope.",
4903 + "type": "string",
4904 + "const": "fs:allow-watch",
4905 + "markdownDescription": "Enables the watch command without any pre-configured scope."
4906 + },
4907 + {
4908 + "description": "Enables the write command without any pre-configured scope.",
4909 + "type": "string",
4910 + "const": "fs:allow-write",
4911 + "markdownDescription": "Enables the write command without any pre-configured scope."
4912 + },
4913 + {
4914 + "description": "Enables the write_file command without any pre-configured scope.",
4915 + "type": "string",
4916 + "const": "fs:allow-write-file",
4917 + "markdownDescription": "Enables the write_file command without any pre-configured scope."
4918 + },
4919 + {
4920 + "description": "Enables the write_text_file command without any pre-configured scope.",
4921 + "type": "string",
4922 + "const": "fs:allow-write-text-file",
4923 + "markdownDescription": "Enables the write_text_file command without any pre-configured scope."
4924 + },
4925 + {
4926 + "description": "This permissions allows to create the application specific directories.\n",
4927 + "type": "string",
4928 + "const": "fs:create-app-specific-dirs",
4929 + "markdownDescription": "This permissions allows to create the application specific directories.\n"
4930 + },
4931 + {
4932 + "description": "Denies the copy_file command without any pre-configured scope.",
4933 + "type": "string",
4934 + "const": "fs:deny-copy-file",
4935 + "markdownDescription": "Denies the copy_file command without any pre-configured scope."
4936 + },
4937 + {
4938 + "description": "Denies the create command without any pre-configured scope.",
4939 + "type": "string",
4940 + "const": "fs:deny-create",
4941 + "markdownDescription": "Denies the create command without any pre-configured scope."
4942 + },
4943 + {
4944 + "description": "Denies the exists command without any pre-configured scope.",
4945 + "type": "string",
4946 + "const": "fs:deny-exists",
4947 + "markdownDescription": "Denies the exists command without any pre-configured scope."
4948 + },
4949 + {
4950 + "description": "Denies the fstat command without any pre-configured scope.",
4951 + "type": "string",
4952 + "const": "fs:deny-fstat",
4953 + "markdownDescription": "Denies the fstat command without any pre-configured scope."
4954 + },
4955 + {
4956 + "description": "Denies the ftruncate command without any pre-configured scope.",
4957 + "type": "string",
4958 + "const": "fs:deny-ftruncate",
4959 + "markdownDescription": "Denies the ftruncate command without any pre-configured scope."
4960 + },
4961 + {
4962 + "description": "Denies the lstat command without any pre-configured scope.",
4963 + "type": "string",
4964 + "const": "fs:deny-lstat",
4965 + "markdownDescription": "Denies the lstat command without any pre-configured scope."
4966 + },
4967 + {
4968 + "description": "Denies the mkdir command without any pre-configured scope.",
4969 + "type": "string",
4970 + "const": "fs:deny-mkdir",
4971 + "markdownDescription": "Denies the mkdir command without any pre-configured scope."
4972 + },
4973 + {
4974 + "description": "Denies the open command without any pre-configured scope.",
4975 + "type": "string",
4976 + "const": "fs:deny-open",
4977 + "markdownDescription": "Denies the open command without any pre-configured scope."
4978 + },
4979 + {
4980 + "description": "Denies the read command without any pre-configured scope.",
4981 + "type": "string",
4982 + "const": "fs:deny-read",
4983 + "markdownDescription": "Denies the read command without any pre-configured scope."
4984 + },
4985 + {
4986 + "description": "Denies the read_dir command without any pre-configured scope.",
4987 + "type": "string",
4988 + "const": "fs:deny-read-dir",
4989 + "markdownDescription": "Denies the read_dir command without any pre-configured scope."
4990 + },
4991 + {
4992 + "description": "Denies the read_file command without any pre-configured scope.",
4993 + "type": "string",
4994 + "const": "fs:deny-read-file",
4995 + "markdownDescription": "Denies the read_file command without any pre-configured scope."
4996 + },
4997 + {
4998 + "description": "Denies the read_text_file command without any pre-configured scope.",
4999 + "type": "string",
5000 + "const": "fs:deny-read-text-file",
5001 + "markdownDescription": "Denies the read_text_file command without any pre-configured scope."
5002 + },
5003 + {
5004 + "description": "Denies the read_text_file_lines command without any pre-configured scope.",
5005 + "type": "string",
5006 + "const": "fs:deny-read-text-file-lines",
5007 + "markdownDescription": "Denies the read_text_file_lines command without any pre-configured scope."
5008 + },
5009 + {
5010 + "description": "Denies the read_text_file_lines_next command without any pre-configured scope.",
5011 + "type": "string",
5012 + "const": "fs:deny-read-text-file-lines-next",
5013 + "markdownDescription": "Denies the read_text_file_lines_next command without any pre-configured scope."
5014 + },
5015 + {
5016 + "description": "Denies the remove command without any pre-configured scope.",
5017 + "type": "string",
5018 + "const": "fs:deny-remove",
5019 + "markdownDescription": "Denies the remove command without any pre-configured scope."
5020 + },
5021 + {
5022 + "description": "Denies the rename command without any pre-configured scope.",
5023 + "type": "string",
5024 + "const": "fs:deny-rename",
5025 + "markdownDescription": "Denies the rename command without any pre-configured scope."
5026 + },
5027 + {
5028 + "description": "Denies the seek command without any pre-configured scope.",
5029 + "type": "string",
5030 + "const": "fs:deny-seek",
5031 + "markdownDescription": "Denies the seek command without any pre-configured scope."
5032 + },
5033 + {
5034 + "description": "Denies the size command without any pre-configured scope.",
5035 + "type": "string",
5036 + "const": "fs:deny-size",
5037 + "markdownDescription": "Denies the size command without any pre-configured scope."
5038 + },
5039 + {
5040 + "description": "Denies the stat command without any pre-configured scope.",
5041 + "type": "string",
5042 + "const": "fs:deny-stat",
5043 + "markdownDescription": "Denies the stat command without any pre-configured scope."
5044 + },
5045 + {
5046 + "description": "Denies the truncate command without any pre-configured scope.",
5047 + "type": "string",
5048 + "const": "fs:deny-truncate",
5049 + "markdownDescription": "Denies the truncate command without any pre-configured scope."
5050 + },
5051 + {
5052 + "description": "Denies the unwatch command without any pre-configured scope.",
5053 + "type": "string",
5054 + "const": "fs:deny-unwatch",
5055 + "markdownDescription": "Denies the unwatch command without any pre-configured scope."
5056 + },
5057 + {
5058 + "description": "Denies the watch command without any pre-configured scope.",
5059 + "type": "string",
5060 + "const": "fs:deny-watch",
5061 + "markdownDescription": "Denies the watch command without any pre-configured scope."
5062 + },
5063 + {
5064 + "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.",
5065 + "type": "string",
5066 + "const": "fs:deny-webview-data-linux",
5067 + "markdownDescription": "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."
5068 + },
5069 + {
5070 + "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.",
5071 + "type": "string",
5072 + "const": "fs:deny-webview-data-windows",
5073 + "markdownDescription": "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."
5074 + },
5075 + {
5076 + "description": "Denies the write command without any pre-configured scope.",
5077 + "type": "string",
5078 + "const": "fs:deny-write",
5079 + "markdownDescription": "Denies the write command without any pre-configured scope."
5080 + },
5081 + {
5082 + "description": "Denies the write_file command without any pre-configured scope.",
5083 + "type": "string",
5084 + "const": "fs:deny-write-file",
5085 + "markdownDescription": "Denies the write_file command without any pre-configured scope."
5086 + },
5087 + {
5088 + "description": "Denies the write_text_file command without any pre-configured scope.",
5089 + "type": "string",
5090 + "const": "fs:deny-write-text-file",
5091 + "markdownDescription": "Denies the write_text_file command without any pre-configured scope."
5092 + },
5093 + {
5094 + "description": "This enables all read related commands without any pre-configured accessible paths.",
5095 + "type": "string",
5096 + "const": "fs:read-all",
5097 + "markdownDescription": "This enables all read related commands without any pre-configured accessible paths."
5098 + },
5099 + {
5100 + "description": "This permission allows recursive read functionality on the application\nspecific base directories. \n",
5101 + "type": "string",
5102 + "const": "fs:read-app-specific-dirs-recursive",
5103 + "markdownDescription": "This permission allows recursive read functionality on the application\nspecific base directories. \n"
5104 + },
5105 + {
5106 + "description": "This enables directory read and file metadata related commands without any pre-configured accessible paths.",
5107 + "type": "string",
5108 + "const": "fs:read-dirs",
5109 + "markdownDescription": "This enables directory read and file metadata related commands without any pre-configured accessible paths."
5110 + },
5111 + {
5112 + "description": "This enables file read related commands without any pre-configured accessible paths.",
5113 + "type": "string",
5114 + "const": "fs:read-files",
5115 + "markdownDescription": "This enables file read related commands without any pre-configured accessible paths."
5116 + },
5117 + {
5118 + "description": "This enables all index or metadata related commands without any pre-configured accessible paths.",
5119 + "type": "string",
5120 + "const": "fs:read-meta",
5121 + "markdownDescription": "This enables all index or metadata related commands without any pre-configured accessible paths."
5122 + },
5123 + {
5124 + "description": "An empty permission you can use to modify the global scope.",
5125 + "type": "string",
5126 + "const": "fs:scope",
5127 + "markdownDescription": "An empty permission you can use to modify the global scope."
5128 + },
5129 + {
5130 + "description": "This scope permits access to all files and list content of top level directories in the application folders.",
5131 + "type": "string",
5132 + "const": "fs:scope-app",
5133 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the application folders."
5134 + },
5135 + {
5136 + "description": "This scope permits to list all files and folders in the application directories.",
5137 + "type": "string",
5138 + "const": "fs:scope-app-index",
5139 + "markdownDescription": "This scope permits to list all files and folders in the application directories."
5140 + },
5141 + {
5142 + "description": "This scope permits recursive access to the complete application folders, including sub directories and files.",
5143 + "type": "string",
5144 + "const": "fs:scope-app-recursive",
5145 + "markdownDescription": "This scope permits recursive access to the complete application folders, including sub directories and files."
5146 + },
5147 + {
5148 + "description": "This scope permits access to all files and list content of top level directories in the `$APPCACHE` folder.",
5149 + "type": "string",
5150 + "const": "fs:scope-appcache",
5151 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPCACHE` folder."
5152 + },
5153 + {
5154 + "description": "This scope permits to list all files and folders in the `$APPCACHE`folder.",
5155 + "type": "string",
5156 + "const": "fs:scope-appcache-index",
5157 + "markdownDescription": "This scope permits to list all files and folders in the `$APPCACHE`folder."
5158 + },
5159 + {
5160 + "description": "This scope permits recursive access to the complete `$APPCACHE` folder, including sub directories and files.",
5161 + "type": "string",
5162 + "const": "fs:scope-appcache-recursive",
5163 + "markdownDescription": "This scope permits recursive access to the complete `$APPCACHE` folder, including sub directories and files."
5164 + },
5165 + {
5166 + "description": "This scope permits access to all files and list content of top level directories in the `$APPCONFIG` folder.",
5167 + "type": "string",
5168 + "const": "fs:scope-appconfig",
5169 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPCONFIG` folder."
5170 + },
5171 + {
5172 + "description": "This scope permits to list all files and folders in the `$APPCONFIG`folder.",
5173 + "type": "string",
5174 + "const": "fs:scope-appconfig-index",
5175 + "markdownDescription": "This scope permits to list all files and folders in the `$APPCONFIG`folder."
5176 + },
5177 + {
5178 + "description": "This scope permits recursive access to the complete `$APPCONFIG` folder, including sub directories and files.",
5179 + "type": "string",
5180 + "const": "fs:scope-appconfig-recursive",
5181 + "markdownDescription": "This scope permits recursive access to the complete `$APPCONFIG` folder, including sub directories and files."
5182 + },
5183 + {
5184 + "description": "This scope permits access to all files and list content of top level directories in the `$APPDATA` folder.",
5185 + "type": "string",
5186 + "const": "fs:scope-appdata",
5187 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPDATA` folder."
5188 + },
5189 + {
5190 + "description": "This scope permits to list all files and folders in the `$APPDATA`folder.",
5191 + "type": "string",
5192 + "const": "fs:scope-appdata-index",
5193 + "markdownDescription": "This scope permits to list all files and folders in the `$APPDATA`folder."
5194 + },
5195 + {
5196 + "description": "This scope permits recursive access to the complete `$APPDATA` folder, including sub directories and files.",
5197 + "type": "string",
5198 + "const": "fs:scope-appdata-recursive",
5199 + "markdownDescription": "This scope permits recursive access to the complete `$APPDATA` folder, including sub directories and files."
5200 + },
5201 + {
5202 + "description": "This scope permits access to all files and list content of top level directories in the `$APPLOCALDATA` folder.",
5203 + "type": "string",
5204 + "const": "fs:scope-applocaldata",
5205 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPLOCALDATA` folder."
5206 + },
5207 + {
5208 + "description": "This scope permits to list all files and folders in the `$APPLOCALDATA`folder.",
5209 + "type": "string",
5210 + "const": "fs:scope-applocaldata-index",
5211 + "markdownDescription": "This scope permits to list all files and folders in the `$APPLOCALDATA`folder."
5212 + },
5213 + {
5214 + "description": "This scope permits recursive access to the complete `$APPLOCALDATA` folder, including sub directories and files.",
5215 + "type": "string",
5216 + "const": "fs:scope-applocaldata-recursive",
5217 + "markdownDescription": "This scope permits recursive access to the complete `$APPLOCALDATA` folder, including sub directories and files."
5218 + },
5219 + {
5220 + "description": "This scope permits access to all files and list content of top level directories in the `$APPLOG` folder.",
5221 + "type": "string",
5222 + "const": "fs:scope-applog",
5223 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPLOG` folder."
5224 + },
5225 + {
5226 + "description": "This scope permits to list all files and folders in the `$APPLOG`folder.",
5227 + "type": "string",
5228 + "const": "fs:scope-applog-index",
5229 + "markdownDescription": "This scope permits to list all files and folders in the `$APPLOG`folder."
5230 + },
5231 + {
5232 + "description": "This scope permits recursive access to the complete `$APPLOG` folder, including sub directories and files.",
5233 + "type": "string",
5234 + "const": "fs:scope-applog-recursive",
5235 + "markdownDescription": "This scope permits recursive access to the complete `$APPLOG` folder, including sub directories and files."
5236 + },
5237 + {
5238 + "description": "This scope permits access to all files and list content of top level directories in the `$AUDIO` folder.",
5239 + "type": "string",
5240 + "const": "fs:scope-audio",
5241 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$AUDIO` folder."
5242 + },
5243 + {
5244 + "description": "This scope permits to list all files and folders in the `$AUDIO`folder.",
5245 + "type": "string",
5246 + "const": "fs:scope-audio-index",
5247 + "markdownDescription": "This scope permits to list all files and folders in the `$AUDIO`folder."
5248 + },
5249 + {
5250 + "description": "This scope permits recursive access to the complete `$AUDIO` folder, including sub directories and files.",
5251 + "type": "string",
5252 + "const": "fs:scope-audio-recursive",
5253 + "markdownDescription": "This scope permits recursive access to the complete `$AUDIO` folder, including sub directories and files."
5254 + },
5255 + {
5256 + "description": "This scope permits access to all files and list content of top level directories in the `$CACHE` folder.",
5257 + "type": "string",
5258 + "const": "fs:scope-cache",
5259 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$CACHE` folder."
5260 + },
5261 + {
5262 + "description": "This scope permits to list all files and folders in the `$CACHE`folder.",
5263 + "type": "string",
5264 + "const": "fs:scope-cache-index",
5265 + "markdownDescription": "This scope permits to list all files and folders in the `$CACHE`folder."
5266 + },
5267 + {
5268 + "description": "This scope permits recursive access to the complete `$CACHE` folder, including sub directories and files.",
5269 + "type": "string",
5270 + "const": "fs:scope-cache-recursive",
5271 + "markdownDescription": "This scope permits recursive access to the complete `$CACHE` folder, including sub directories and files."
5272 + },
5273 + {
5274 + "description": "This scope permits access to all files and list content of top level directories in the `$CONFIG` folder.",
5275 + "type": "string",
5276 + "const": "fs:scope-config",
5277 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$CONFIG` folder."
5278 + },
5279 + {
5280 + "description": "This scope permits to list all files and folders in the `$CONFIG`folder.",
5281 + "type": "string",
5282 + "const": "fs:scope-config-index",
5283 + "markdownDescription": "This scope permits to list all files and folders in the `$CONFIG`folder."
5284 + },
5285 + {
5286 + "description": "This scope permits recursive access to the complete `$CONFIG` folder, including sub directories and files.",
5287 + "type": "string",
5288 + "const": "fs:scope-config-recursive",
5289 + "markdownDescription": "This scope permits recursive access to the complete `$CONFIG` folder, including sub directories and files."
5290 + },
5291 + {
5292 + "description": "This scope permits access to all files and list content of top level directories in the `$DATA` folder.",
5293 + "type": "string",
5294 + "const": "fs:scope-data",
5295 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$DATA` folder."
5296 + },
5297 + {
5298 + "description": "This scope permits to list all files and folders in the `$DATA`folder.",
5299 + "type": "string",
5300 + "const": "fs:scope-data-index",
5301 + "markdownDescription": "This scope permits to list all files and folders in the `$DATA`folder."
5302 + },
5303 + {
5304 + "description": "This scope permits recursive access to the complete `$DATA` folder, including sub directories and files.",
5305 + "type": "string",
5306 + "const": "fs:scope-data-recursive",
5307 + "markdownDescription": "This scope permits recursive access to the complete `$DATA` folder, including sub directories and files."
5308 + },
5309 + {
5310 + "description": "This scope permits access to all files and list content of top level directories in the `$DESKTOP` folder.",
5311 + "type": "string",
5312 + "const": "fs:scope-desktop",
5313 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$DESKTOP` folder."
5314 + },
5315 + {
5316 + "description": "This scope permits to list all files and folders in the `$DESKTOP`folder.",
5317 + "type": "string",
5318 + "const": "fs:scope-desktop-index",
5319 + "markdownDescription": "This scope permits to list all files and folders in the `$DESKTOP`folder."
5320 + },
5321 + {
5322 + "description": "This scope permits recursive access to the complete `$DESKTOP` folder, including sub directories and files.",
5323 + "type": "string",
5324 + "const": "fs:scope-desktop-recursive",
5325 + "markdownDescription": "This scope permits recursive access to the complete `$DESKTOP` folder, including sub directories and files."
5326 + },
5327 + {
5328 + "description": "This scope permits access to all files and list content of top level directories in the `$DOCUMENT` folder.",
5329 + "type": "string",
5330 + "const": "fs:scope-document",
5331 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$DOCUMENT` folder."
5332 + },
5333 + {
5334 + "description": "This scope permits to list all files and folders in the `$DOCUMENT`folder.",
5335 + "type": "string",
5336 + "const": "fs:scope-document-index",
5337 + "markdownDescription": "This scope permits to list all files and folders in the `$DOCUMENT`folder."
5338 + },
5339 + {
5340 + "description": "This scope permits recursive access to the complete `$DOCUMENT` folder, including sub directories and files.",
5341 + "type": "string",
5342 + "const": "fs:scope-document-recursive",
5343 + "markdownDescription": "This scope permits recursive access to the complete `$DOCUMENT` folder, including sub directories and files."
5344 + },
5345 + {
5346 + "description": "This scope permits access to all files and list content of top level directories in the `$DOWNLOAD` folder.",
5347 + "type": "string",
5348 + "const": "fs:scope-download",
5349 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$DOWNLOAD` folder."
5350 + },
5351 + {
5352 + "description": "This scope permits to list all files and folders in the `$DOWNLOAD`folder.",
5353 + "type": "string",
5354 + "const": "fs:scope-download-index",
5355 + "markdownDescription": "This scope permits to list all files and folders in the `$DOWNLOAD`folder."
5356 + },
5357 + {
5358 + "description": "This scope permits recursive access to the complete `$DOWNLOAD` folder, including sub directories and files.",
5359 + "type": "string",
5360 + "const": "fs:scope-download-recursive",
5361 + "markdownDescription": "This scope permits recursive access to the complete `$DOWNLOAD` folder, including sub directories and files."
5362 + },
5363 + {
5364 + "description": "This scope permits access to all files and list content of top level directories in the `$EXE` folder.",
5365 + "type": "string",
5366 + "const": "fs:scope-exe",
5367 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$EXE` folder."
5368 + },
5369 + {
5370 + "description": "This scope permits to list all files and folders in the `$EXE`folder.",
5371 + "type": "string",
5372 + "const": "fs:scope-exe-index",
5373 + "markdownDescription": "This scope permits to list all files and folders in the `$EXE`folder."
5374 + },
5375 + {
5376 + "description": "This scope permits recursive access to the complete `$EXE` folder, including sub directories and files.",
5377 + "type": "string",
5378 + "const": "fs:scope-exe-recursive",
5379 + "markdownDescription": "This scope permits recursive access to the complete `$EXE` folder, including sub directories and files."
5380 + },
5381 + {
5382 + "description": "This scope permits access to all files and list content of top level directories in the `$FONT` folder.",
5383 + "type": "string",
5384 + "const": "fs:scope-font",
5385 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$FONT` folder."
5386 + },
5387 + {
5388 + "description": "This scope permits to list all files and folders in the `$FONT`folder.",
5389 + "type": "string",
5390 + "const": "fs:scope-font-index",
5391 + "markdownDescription": "This scope permits to list all files and folders in the `$FONT`folder."
5392 + },
5393 + {
5394 + "description": "This scope permits recursive access to the complete `$FONT` folder, including sub directories and files.",
5395 + "type": "string",
5396 + "const": "fs:scope-font-recursive",
5397 + "markdownDescription": "This scope permits recursive access to the complete `$FONT` folder, including sub directories and files."
5398 + },
5399 + {
5400 + "description": "This scope permits access to all files and list content of top level directories in the `$HOME` folder.",
5401 + "type": "string",
5402 + "const": "fs:scope-home",
5403 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$HOME` folder."
5404 + },
5405 + {
5406 + "description": "This scope permits to list all files and folders in the `$HOME`folder.",
5407 + "type": "string",
5408 + "const": "fs:scope-home-index",
5409 + "markdownDescription": "This scope permits to list all files and folders in the `$HOME`folder."
5410 + },
5411 + {
5412 + "description": "This scope permits recursive access to the complete `$HOME` folder, including sub directories and files.",
5413 + "type": "string",
5414 + "const": "fs:scope-home-recursive",
5415 + "markdownDescription": "This scope permits recursive access to the complete `$HOME` folder, including sub directories and files."
5416 + },
5417 + {
5418 + "description": "This scope permits access to all files and list content of top level directories in the `$LOCALDATA` folder.",
5419 + "type": "string",
5420 + "const": "fs:scope-localdata",
5421 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$LOCALDATA` folder."
5422 + },
5423 + {
5424 + "description": "This scope permits to list all files and folders in the `$LOCALDATA`folder.",
5425 + "type": "string",
5426 + "const": "fs:scope-localdata-index",
5427 + "markdownDescription": "This scope permits to list all files and folders in the `$LOCALDATA`folder."
5428 + },
5429 + {
5430 + "description": "This scope permits recursive access to the complete `$LOCALDATA` folder, including sub directories and files.",
5431 + "type": "string",
5432 + "const": "fs:scope-localdata-recursive",
5433 + "markdownDescription": "This scope permits recursive access to the complete `$LOCALDATA` folder, including sub directories and files."
5434 + },
5435 + {
5436 + "description": "This scope permits access to all files and list content of top level directories in the `$LOG` folder.",
5437 + "type": "string",
5438 + "const": "fs:scope-log",
5439 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$LOG` folder."
5440 + },
5441 + {
5442 + "description": "This scope permits to list all files and folders in the `$LOG`folder.",
5443 + "type": "string",
5444 + "const": "fs:scope-log-index",
5445 + "markdownDescription": "This scope permits to list all files and folders in the `$LOG`folder."
5446 + },
5447 + {
5448 + "description": "This scope permits recursive access to the complete `$LOG` folder, including sub directories and files.",
5449 + "type": "string",
5450 + "const": "fs:scope-log-recursive",
5451 + "markdownDescription": "This scope permits recursive access to the complete `$LOG` folder, including sub directories and files."
5452 + },
5453 + {
5454 + "description": "This scope permits access to all files and list content of top level directories in the `$PICTURE` folder.",
5455 + "type": "string",
5456 + "const": "fs:scope-picture",
5457 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$PICTURE` folder."
5458 + },
5459 + {
5460 + "description": "This scope permits to list all files and folders in the `$PICTURE`folder.",
5461 + "type": "string",
5462 + "const": "fs:scope-picture-index",
5463 + "markdownDescription": "This scope permits to list all files and folders in the `$PICTURE`folder."
5464 + },
5465 + {
5466 + "description": "This scope permits recursive access to the complete `$PICTURE` folder, including sub directories and files.",
5467 + "type": "string",
5468 + "const": "fs:scope-picture-recursive",
5469 + "markdownDescription": "This scope permits recursive access to the complete `$PICTURE` folder, including sub directories and files."
5470 + },
5471 + {
5472 + "description": "This scope permits access to all files and list content of top level directories in the `$PUBLIC` folder.",
5473 + "type": "string",
5474 + "const": "fs:scope-public",
5475 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$PUBLIC` folder."
5476 + },
5477 + {
5478 + "description": "This scope permits to list all files and folders in the `$PUBLIC`folder.",
5479 + "type": "string",
5480 + "const": "fs:scope-public-index",
5481 + "markdownDescription": "This scope permits to list all files and folders in the `$PUBLIC`folder."
5482 + },
5483 + {
5484 + "description": "This scope permits recursive access to the complete `$PUBLIC` folder, including sub directories and files.",
5485 + "type": "string",
5486 + "const": "fs:scope-public-recursive",
5487 + "markdownDescription": "This scope permits recursive access to the complete `$PUBLIC` folder, including sub directories and files."
5488 + },
5489 + {
5490 + "description": "This scope permits access to all files and list content of top level directories in the `$RESOURCE` folder.",
5491 + "type": "string",
5492 + "const": "fs:scope-resource",
5493 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$RESOURCE` folder."
5494 + },
5495 + {
5496 + "description": "This scope permits to list all files and folders in the `$RESOURCE`folder.",
5497 + "type": "string",
5498 + "const": "fs:scope-resource-index",
5499 + "markdownDescription": "This scope permits to list all files and folders in the `$RESOURCE`folder."
5500 + },
5501 + {
5502 + "description": "This scope permits recursive access to the complete `$RESOURCE` folder, including sub directories and files.",
5503 + "type": "string",
5504 + "const": "fs:scope-resource-recursive",
5505 + "markdownDescription": "This scope permits recursive access to the complete `$RESOURCE` folder, including sub directories and files."
5506 + },
5507 + {
5508 + "description": "This scope permits access to all files and list content of top level directories in the `$RUNTIME` folder.",
5509 + "type": "string",
5510 + "const": "fs:scope-runtime",
5511 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$RUNTIME` folder."
5512 + },
5513 + {
5514 + "description": "This scope permits to list all files and folders in the `$RUNTIME`folder.",
5515 + "type": "string",
5516 + "const": "fs:scope-runtime-index",
5517 + "markdownDescription": "This scope permits to list all files and folders in the `$RUNTIME`folder."
5518 + },
5519 + {
5520 + "description": "This scope permits recursive access to the complete `$RUNTIME` folder, including sub directories and files.",
5521 + "type": "string",
5522 + "const": "fs:scope-runtime-recursive",
5523 + "markdownDescription": "This scope permits recursive access to the complete `$RUNTIME` folder, including sub directories and files."
5524 + },
5525 + {
5526 + "description": "This scope permits access to all files and list content of top level directories in the `$TEMP` folder.",
5527 + "type": "string",
5528 + "const": "fs:scope-temp",
5529 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$TEMP` folder."
5530 + },
5531 + {
5532 + "description": "This scope permits to list all files and folders in the `$TEMP`folder.",
5533 + "type": "string",
5534 + "const": "fs:scope-temp-index",
5535 + "markdownDescription": "This scope permits to list all files and folders in the `$TEMP`folder."
5536 + },
5537 + {
5538 + "description": "This scope permits recursive access to the complete `$TEMP` folder, including sub directories and files.",
5539 + "type": "string",
5540 + "const": "fs:scope-temp-recursive",
5541 + "markdownDescription": "This scope permits recursive access to the complete `$TEMP` folder, including sub directories and files."
5542 + },
5543 + {
5544 + "description": "This scope permits access to all files and list content of top level directories in the `$TEMPLATE` folder.",
5545 + "type": "string",
5546 + "const": "fs:scope-template",
5547 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$TEMPLATE` folder."
5548 + },
5549 + {
5550 + "description": "This scope permits to list all files and folders in the `$TEMPLATE`folder.",
5551 + "type": "string",
5552 + "const": "fs:scope-template-index",
5553 + "markdownDescription": "This scope permits to list all files and folders in the `$TEMPLATE`folder."
5554 + },
5555 + {
5556 + "description": "This scope permits recursive access to the complete `$TEMPLATE` folder, including sub directories and files.",
5557 + "type": "string",
5558 + "const": "fs:scope-template-recursive",
5559 + "markdownDescription": "This scope permits recursive access to the complete `$TEMPLATE` folder, including sub directories and files."
5560 + },
5561 + {
5562 + "description": "This scope permits access to all files and list content of top level directories in the `$VIDEO` folder.",
5563 + "type": "string",
5564 + "const": "fs:scope-video",
5565 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$VIDEO` folder."
5566 + },
5567 + {
5568 + "description": "This scope permits to list all files and folders in the `$VIDEO`folder.",
5569 + "type": "string",
5570 + "const": "fs:scope-video-index",
5571 + "markdownDescription": "This scope permits to list all files and folders in the `$VIDEO`folder."
5572 + },
5573 + {
5574 + "description": "This scope permits recursive access to the complete `$VIDEO` folder, including sub directories and files.",
5575 + "type": "string",
5576 + "const": "fs:scope-video-recursive",
5577 + "markdownDescription": "This scope permits recursive access to the complete `$VIDEO` folder, including sub directories and files."
5578 + },
5579 + {
5580 + "description": "This enables all write related commands without any pre-configured accessible paths.",
5581 + "type": "string",
5582 + "const": "fs:write-all",
5583 + "markdownDescription": "This enables all write related commands without any pre-configured accessible paths."
5584 + },
5585 + {
5586 + "description": "This enables all file write related commands without any pre-configured accessible paths.",
5587 + "type": "string",
5588 + "const": "fs:write-files",
5589 + "markdownDescription": "This enables all file write related commands without any pre-configured accessible paths."
5590 + },
5591 {
5592 "description": "Allows the log command\n#### This default permission set includes:\n\n- `allow-log`",
5593 "type": "string",
src-tauri/gen/schemas/macOS-schema.json
+3528
@@ -134,6 +134,1806 @@
134 "description": "Reference a permission or permission set by identifier and extends its scope.",
135 "type": "object",
136 "allOf": [
137 + {
138 + "if": {
139 + "properties": {
140 + "identifier": {
141 + "anyOf": [
142 + {
143 + "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\n#### This default permission set includes:\n\n- `create-app-specific-dirs`\n- `read-app-specific-dirs-recursive`\n- `deny-default`",
144 + "type": "string",
145 + "const": "fs:default",
146 + "markdownDescription": "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\n#### This default permission set includes:\n\n- `create-app-specific-dirs`\n- `read-app-specific-dirs-recursive`\n- `deny-default`"
147 + },
148 + {
149 + "description": "This allows non-recursive read access to metadata of the application folders, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-app-index`",
150 + "type": "string",
151 + "const": "fs:allow-app-meta",
152 + "markdownDescription": "This allows non-recursive read access to metadata of the application folders, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-app-index`"
153 + },
154 + {
155 + "description": "This allows full recursive read access to metadata of the application folders, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-app-recursive`",
156 + "type": "string",
157 + "const": "fs:allow-app-meta-recursive",
158 + "markdownDescription": "This allows full recursive read access to metadata of the application folders, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-app-recursive`"
159 + },
160 + {
161 + "description": "This allows non-recursive read access to the application folders.\n#### This permission set includes:\n\n- `read-all`\n- `scope-app`",
162 + "type": "string",
163 + "const": "fs:allow-app-read",
164 + "markdownDescription": "This allows non-recursive read access to the application folders.\n#### This permission set includes:\n\n- `read-all`\n- `scope-app`"
165 + },
166 + {
167 + "description": "This allows full recursive read access to the complete application folders, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-app-recursive`",
168 + "type": "string",
169 + "const": "fs:allow-app-read-recursive",
170 + "markdownDescription": "This allows full recursive read access to the complete application folders, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-app-recursive`"
171 + },
172 + {
173 + "description": "This allows non-recursive write access to the application folders.\n#### This permission set includes:\n\n- `write-all`\n- `scope-app`",
174 + "type": "string",
175 + "const": "fs:allow-app-write",
176 + "markdownDescription": "This allows non-recursive write access to the application folders.\n#### This permission set includes:\n\n- `write-all`\n- `scope-app`"
177 + },
178 + {
179 + "description": "This allows full recursive write access to the complete application folders, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-app-recursive`",
180 + "type": "string",
181 + "const": "fs:allow-app-write-recursive",
182 + "markdownDescription": "This allows full recursive write access to the complete application folders, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-app-recursive`"
183 + },
184 + {
185 + "description": "This allows non-recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appcache-index`",
186 + "type": "string",
187 + "const": "fs:allow-appcache-meta",
188 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appcache-index`"
189 + },
190 + {
191 + "description": "This allows full recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appcache-recursive`",
192 + "type": "string",
193 + "const": "fs:allow-appcache-meta-recursive",
194 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appcache-recursive`"
195 + },
196 + {
197 + "description": "This allows non-recursive read access to the `$APPCACHE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appcache`",
198 + "type": "string",
199 + "const": "fs:allow-appcache-read",
200 + "markdownDescription": "This allows non-recursive read access to the `$APPCACHE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appcache`"
201 + },
202 + {
203 + "description": "This allows full recursive read access to the complete `$APPCACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appcache-recursive`",
204 + "type": "string",
205 + "const": "fs:allow-appcache-read-recursive",
206 + "markdownDescription": "This allows full recursive read access to the complete `$APPCACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appcache-recursive`"
207 + },
208 + {
209 + "description": "This allows non-recursive write access to the `$APPCACHE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appcache`",
210 + "type": "string",
211 + "const": "fs:allow-appcache-write",
212 + "markdownDescription": "This allows non-recursive write access to the `$APPCACHE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appcache`"
213 + },
214 + {
215 + "description": "This allows full recursive write access to the complete `$APPCACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appcache-recursive`",
216 + "type": "string",
217 + "const": "fs:allow-appcache-write-recursive",
218 + "markdownDescription": "This allows full recursive write access to the complete `$APPCACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appcache-recursive`"
219 + },
220 + {
221 + "description": "This allows non-recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appconfig-index`",
222 + "type": "string",
223 + "const": "fs:allow-appconfig-meta",
224 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appconfig-index`"
225 + },
226 + {
227 + "description": "This allows full recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appconfig-recursive`",
228 + "type": "string",
229 + "const": "fs:allow-appconfig-meta-recursive",
230 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appconfig-recursive`"
231 + },
232 + {
233 + "description": "This allows non-recursive read access to the `$APPCONFIG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appconfig`",
234 + "type": "string",
235 + "const": "fs:allow-appconfig-read",
236 + "markdownDescription": "This allows non-recursive read access to the `$APPCONFIG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appconfig`"
237 + },
238 + {
239 + "description": "This allows full recursive read access to the complete `$APPCONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appconfig-recursive`",
240 + "type": "string",
241 + "const": "fs:allow-appconfig-read-recursive",
242 + "markdownDescription": "This allows full recursive read access to the complete `$APPCONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appconfig-recursive`"
243 + },
244 + {
245 + "description": "This allows non-recursive write access to the `$APPCONFIG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appconfig`",
246 + "type": "string",
247 + "const": "fs:allow-appconfig-write",
248 + "markdownDescription": "This allows non-recursive write access to the `$APPCONFIG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appconfig`"
249 + },
250 + {
251 + "description": "This allows full recursive write access to the complete `$APPCONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appconfig-recursive`",
252 + "type": "string",
253 + "const": "fs:allow-appconfig-write-recursive",
254 + "markdownDescription": "This allows full recursive write access to the complete `$APPCONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appconfig-recursive`"
255 + },
256 + {
257 + "description": "This allows non-recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appdata-index`",
258 + "type": "string",
259 + "const": "fs:allow-appdata-meta",
260 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appdata-index`"
261 + },
262 + {
263 + "description": "This allows full recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appdata-recursive`",
264 + "type": "string",
265 + "const": "fs:allow-appdata-meta-recursive",
266 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appdata-recursive`"
267 + },
268 + {
269 + "description": "This allows non-recursive read access to the `$APPDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appdata`",
270 + "type": "string",
271 + "const": "fs:allow-appdata-read",
272 + "markdownDescription": "This allows non-recursive read access to the `$APPDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appdata`"
273 + },
274 + {
275 + "description": "This allows full recursive read access to the complete `$APPDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appdata-recursive`",
276 + "type": "string",
277 + "const": "fs:allow-appdata-read-recursive",
278 + "markdownDescription": "This allows full recursive read access to the complete `$APPDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appdata-recursive`"
279 + },
280 + {
281 + "description": "This allows non-recursive write access to the `$APPDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appdata`",
282 + "type": "string",
283 + "const": "fs:allow-appdata-write",
284 + "markdownDescription": "This allows non-recursive write access to the `$APPDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appdata`"
285 + },
286 + {
287 + "description": "This allows full recursive write access to the complete `$APPDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appdata-recursive`",
288 + "type": "string",
289 + "const": "fs:allow-appdata-write-recursive",
290 + "markdownDescription": "This allows full recursive write access to the complete `$APPDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appdata-recursive`"
291 + },
292 + {
293 + "description": "This allows non-recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applocaldata-index`",
294 + "type": "string",
295 + "const": "fs:allow-applocaldata-meta",
296 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applocaldata-index`"
297 + },
298 + {
299 + "description": "This allows full recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applocaldata-recursive`",
300 + "type": "string",
301 + "const": "fs:allow-applocaldata-meta-recursive",
302 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applocaldata-recursive`"
303 + },
304 + {
305 + "description": "This allows non-recursive read access to the `$APPLOCALDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applocaldata`",
306 + "type": "string",
307 + "const": "fs:allow-applocaldata-read",
308 + "markdownDescription": "This allows non-recursive read access to the `$APPLOCALDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applocaldata`"
309 + },
310 + {
311 + "description": "This allows full recursive read access to the complete `$APPLOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applocaldata-recursive`",
312 + "type": "string",
313 + "const": "fs:allow-applocaldata-read-recursive",
314 + "markdownDescription": "This allows full recursive read access to the complete `$APPLOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applocaldata-recursive`"
315 + },
316 + {
317 + "description": "This allows non-recursive write access to the `$APPLOCALDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applocaldata`",
318 + "type": "string",
319 + "const": "fs:allow-applocaldata-write",
320 + "markdownDescription": "This allows non-recursive write access to the `$APPLOCALDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applocaldata`"
321 + },
322 + {
323 + "description": "This allows full recursive write access to the complete `$APPLOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applocaldata-recursive`",
324 + "type": "string",
325 + "const": "fs:allow-applocaldata-write-recursive",
326 + "markdownDescription": "This allows full recursive write access to the complete `$APPLOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applocaldata-recursive`"
327 + },
328 + {
329 + "description": "This allows non-recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applog-index`",
330 + "type": "string",
331 + "const": "fs:allow-applog-meta",
332 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applog-index`"
333 + },
334 + {
335 + "description": "This allows full recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applog-recursive`",
336 + "type": "string",
337 + "const": "fs:allow-applog-meta-recursive",
338 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applog-recursive`"
339 + },
340 + {
341 + "description": "This allows non-recursive read access to the `$APPLOG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applog`",
342 + "type": "string",
343 + "const": "fs:allow-applog-read",
344 + "markdownDescription": "This allows non-recursive read access to the `$APPLOG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applog`"
345 + },
346 + {
347 + "description": "This allows full recursive read access to the complete `$APPLOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applog-recursive`",
348 + "type": "string",
349 + "const": "fs:allow-applog-read-recursive",
350 + "markdownDescription": "This allows full recursive read access to the complete `$APPLOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applog-recursive`"
351 + },
352 + {
353 + "description": "This allows non-recursive write access to the `$APPLOG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applog`",
354 + "type": "string",
355 + "const": "fs:allow-applog-write",
356 + "markdownDescription": "This allows non-recursive write access to the `$APPLOG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applog`"
357 + },
358 + {
359 + "description": "This allows full recursive write access to the complete `$APPLOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applog-recursive`",
360 + "type": "string",
361 + "const": "fs:allow-applog-write-recursive",
362 + "markdownDescription": "This allows full recursive write access to the complete `$APPLOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applog-recursive`"
363 + },
364 + {
365 + "description": "This allows non-recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-audio-index`",
366 + "type": "string",
367 + "const": "fs:allow-audio-meta",
368 + "markdownDescription": "This allows non-recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-audio-index`"
369 + },
370 + {
371 + "description": "This allows full recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-audio-recursive`",
372 + "type": "string",
373 + "const": "fs:allow-audio-meta-recursive",
374 + "markdownDescription": "This allows full recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-audio-recursive`"
375 + },
376 + {
377 + "description": "This allows non-recursive read access to the `$AUDIO` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-audio`",
378 + "type": "string",
379 + "const": "fs:allow-audio-read",
380 + "markdownDescription": "This allows non-recursive read access to the `$AUDIO` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-audio`"
381 + },
382 + {
383 + "description": "This allows full recursive read access to the complete `$AUDIO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-audio-recursive`",
384 + "type": "string",
385 + "const": "fs:allow-audio-read-recursive",
386 + "markdownDescription": "This allows full recursive read access to the complete `$AUDIO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-audio-recursive`"
387 + },
388 + {
389 + "description": "This allows non-recursive write access to the `$AUDIO` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-audio`",
390 + "type": "string",
391 + "const": "fs:allow-audio-write",
392 + "markdownDescription": "This allows non-recursive write access to the `$AUDIO` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-audio`"
393 + },
394 + {
395 + "description": "This allows full recursive write access to the complete `$AUDIO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-audio-recursive`",
396 + "type": "string",
397 + "const": "fs:allow-audio-write-recursive",
398 + "markdownDescription": "This allows full recursive write access to the complete `$AUDIO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-audio-recursive`"
399 + },
400 + {
401 + "description": "This allows non-recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-cache-index`",
402 + "type": "string",
403 + "const": "fs:allow-cache-meta",
404 + "markdownDescription": "This allows non-recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-cache-index`"
405 + },
406 + {
407 + "description": "This allows full recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-cache-recursive`",
408 + "type": "string",
409 + "const": "fs:allow-cache-meta-recursive",
410 + "markdownDescription": "This allows full recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-cache-recursive`"
411 + },
412 + {
413 + "description": "This allows non-recursive read access to the `$CACHE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-cache`",
414 + "type": "string",
415 + "const": "fs:allow-cache-read",
416 + "markdownDescription": "This allows non-recursive read access to the `$CACHE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-cache`"
417 + },
418 + {
419 + "description": "This allows full recursive read access to the complete `$CACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-cache-recursive`",
420 + "type": "string",
421 + "const": "fs:allow-cache-read-recursive",
422 + "markdownDescription": "This allows full recursive read access to the complete `$CACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-cache-recursive`"
423 + },
424 + {
425 + "description": "This allows non-recursive write access to the `$CACHE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-cache`",
426 + "type": "string",
427 + "const": "fs:allow-cache-write",
428 + "markdownDescription": "This allows non-recursive write access to the `$CACHE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-cache`"
429 + },
430 + {
431 + "description": "This allows full recursive write access to the complete `$CACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-cache-recursive`",
432 + "type": "string",
433 + "const": "fs:allow-cache-write-recursive",
434 + "markdownDescription": "This allows full recursive write access to the complete `$CACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-cache-recursive`"
435 + },
436 + {
437 + "description": "This allows non-recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-config-index`",
438 + "type": "string",
439 + "const": "fs:allow-config-meta",
440 + "markdownDescription": "This allows non-recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-config-index`"
441 + },
442 + {
443 + "description": "This allows full recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-config-recursive`",
444 + "type": "string",
445 + "const": "fs:allow-config-meta-recursive",
446 + "markdownDescription": "This allows full recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-config-recursive`"
447 + },
448 + {
449 + "description": "This allows non-recursive read access to the `$CONFIG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-config`",
450 + "type": "string",
451 + "const": "fs:allow-config-read",
452 + "markdownDescription": "This allows non-recursive read access to the `$CONFIG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-config`"
453 + },
454 + {
455 + "description": "This allows full recursive read access to the complete `$CONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-config-recursive`",
456 + "type": "string",
457 + "const": "fs:allow-config-read-recursive",
458 + "markdownDescription": "This allows full recursive read access to the complete `$CONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-config-recursive`"
459 + },
460 + {
461 + "description": "This allows non-recursive write access to the `$CONFIG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-config`",
462 + "type": "string",
463 + "const": "fs:allow-config-write",
464 + "markdownDescription": "This allows non-recursive write access to the `$CONFIG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-config`"
465 + },
466 + {
467 + "description": "This allows full recursive write access to the complete `$CONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-config-recursive`",
468 + "type": "string",
469 + "const": "fs:allow-config-write-recursive",
470 + "markdownDescription": "This allows full recursive write access to the complete `$CONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-config-recursive`"
471 + },
472 + {
473 + "description": "This allows non-recursive read access to metadata of the `$DATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-data-index`",
474 + "type": "string",
475 + "const": "fs:allow-data-meta",
476 + "markdownDescription": "This allows non-recursive read access to metadata of the `$DATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-data-index`"
477 + },
478 + {
479 + "description": "This allows full recursive read access to metadata of the `$DATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-data-recursive`",
480 + "type": "string",
481 + "const": "fs:allow-data-meta-recursive",
482 + "markdownDescription": "This allows full recursive read access to metadata of the `$DATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-data-recursive`"
483 + },
484 + {
485 + "description": "This allows non-recursive read access to the `$DATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-data`",
486 + "type": "string",
487 + "const": "fs:allow-data-read",
488 + "markdownDescription": "This allows non-recursive read access to the `$DATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-data`"
489 + },
490 + {
491 + "description": "This allows full recursive read access to the complete `$DATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-data-recursive`",
492 + "type": "string",
493 + "const": "fs:allow-data-read-recursive",
494 + "markdownDescription": "This allows full recursive read access to the complete `$DATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-data-recursive`"
495 + },
496 + {
497 + "description": "This allows non-recursive write access to the `$DATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-data`",
498 + "type": "string",
499 + "const": "fs:allow-data-write",
500 + "markdownDescription": "This allows non-recursive write access to the `$DATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-data`"
501 + },
502 + {
503 + "description": "This allows full recursive write access to the complete `$DATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-data-recursive`",
504 + "type": "string",
505 + "const": "fs:allow-data-write-recursive",
506 + "markdownDescription": "This allows full recursive write access to the complete `$DATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-data-recursive`"
507 + },
508 + {
509 + "description": "This allows non-recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-desktop-index`",
510 + "type": "string",
511 + "const": "fs:allow-desktop-meta",
512 + "markdownDescription": "This allows non-recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-desktop-index`"
513 + },
514 + {
515 + "description": "This allows full recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-desktop-recursive`",
516 + "type": "string",
517 + "const": "fs:allow-desktop-meta-recursive",
518 + "markdownDescription": "This allows full recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-desktop-recursive`"
519 + },
520 + {
521 + "description": "This allows non-recursive read access to the `$DESKTOP` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-desktop`",
522 + "type": "string",
523 + "const": "fs:allow-desktop-read",
524 + "markdownDescription": "This allows non-recursive read access to the `$DESKTOP` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-desktop`"
525 + },
526 + {
527 + "description": "This allows full recursive read access to the complete `$DESKTOP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-desktop-recursive`",
528 + "type": "string",
529 + "const": "fs:allow-desktop-read-recursive",
530 + "markdownDescription": "This allows full recursive read access to the complete `$DESKTOP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-desktop-recursive`"
531 + },
532 + {
533 + "description": "This allows non-recursive write access to the `$DESKTOP` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-desktop`",
534 + "type": "string",
535 + "const": "fs:allow-desktop-write",
536 + "markdownDescription": "This allows non-recursive write access to the `$DESKTOP` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-desktop`"
537 + },
538 + {
539 + "description": "This allows full recursive write access to the complete `$DESKTOP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-desktop-recursive`",
540 + "type": "string",
541 + "const": "fs:allow-desktop-write-recursive",
542 + "markdownDescription": "This allows full recursive write access to the complete `$DESKTOP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-desktop-recursive`"
543 + },
544 + {
545 + "description": "This allows non-recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-document-index`",
546 + "type": "string",
547 + "const": "fs:allow-document-meta",
548 + "markdownDescription": "This allows non-recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-document-index`"
549 + },
550 + {
551 + "description": "This allows full recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-document-recursive`",
552 + "type": "string",
553 + "const": "fs:allow-document-meta-recursive",
554 + "markdownDescription": "This allows full recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-document-recursive`"
555 + },
556 + {
557 + "description": "This allows non-recursive read access to the `$DOCUMENT` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-document`",
558 + "type": "string",
559 + "const": "fs:allow-document-read",
560 + "markdownDescription": "This allows non-recursive read access to the `$DOCUMENT` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-document`"
561 + },
562 + {
563 + "description": "This allows full recursive read access to the complete `$DOCUMENT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-document-recursive`",
564 + "type": "string",
565 + "const": "fs:allow-document-read-recursive",
566 + "markdownDescription": "This allows full recursive read access to the complete `$DOCUMENT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-document-recursive`"
567 + },
568 + {
569 + "description": "This allows non-recursive write access to the `$DOCUMENT` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-document`",
570 + "type": "string",
571 + "const": "fs:allow-document-write",
572 + "markdownDescription": "This allows non-recursive write access to the `$DOCUMENT` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-document`"
573 + },
574 + {
575 + "description": "This allows full recursive write access to the complete `$DOCUMENT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-document-recursive`",
576 + "type": "string",
577 + "const": "fs:allow-document-write-recursive",
578 + "markdownDescription": "This allows full recursive write access to the complete `$DOCUMENT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-document-recursive`"
579 + },
580 + {
581 + "description": "This allows non-recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-download-index`",
582 + "type": "string",
583 + "const": "fs:allow-download-meta",
584 + "markdownDescription": "This allows non-recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-download-index`"
585 + },
586 + {
587 + "description": "This allows full recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-download-recursive`",
588 + "type": "string",
589 + "const": "fs:allow-download-meta-recursive",
590 + "markdownDescription": "This allows full recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-download-recursive`"
591 + },
592 + {
593 + "description": "This allows non-recursive read access to the `$DOWNLOAD` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-download`",
594 + "type": "string",
595 + "const": "fs:allow-download-read",
596 + "markdownDescription": "This allows non-recursive read access to the `$DOWNLOAD` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-download`"
597 + },
598 + {
599 + "description": "This allows full recursive read access to the complete `$DOWNLOAD` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-download-recursive`",
600 + "type": "string",
601 + "const": "fs:allow-download-read-recursive",
602 + "markdownDescription": "This allows full recursive read access to the complete `$DOWNLOAD` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-download-recursive`"
603 + },
604 + {
605 + "description": "This allows non-recursive write access to the `$DOWNLOAD` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-download`",
606 + "type": "string",
607 + "const": "fs:allow-download-write",
608 + "markdownDescription": "This allows non-recursive write access to the `$DOWNLOAD` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-download`"
609 + },
610 + {
611 + "description": "This allows full recursive write access to the complete `$DOWNLOAD` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-download-recursive`",
612 + "type": "string",
613 + "const": "fs:allow-download-write-recursive",
614 + "markdownDescription": "This allows full recursive write access to the complete `$DOWNLOAD` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-download-recursive`"
615 + },
616 + {
617 + "description": "This allows non-recursive read access to metadata of the `$EXE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-exe-index`",
618 + "type": "string",
619 + "const": "fs:allow-exe-meta",
620 + "markdownDescription": "This allows non-recursive read access to metadata of the `$EXE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-exe-index`"
621 + },
622 + {
623 + "description": "This allows full recursive read access to metadata of the `$EXE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-exe-recursive`",
624 + "type": "string",
625 + "const": "fs:allow-exe-meta-recursive",
626 + "markdownDescription": "This allows full recursive read access to metadata of the `$EXE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-exe-recursive`"
627 + },
628 + {
629 + "description": "This allows non-recursive read access to the `$EXE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-exe`",
630 + "type": "string",
631 + "const": "fs:allow-exe-read",
632 + "markdownDescription": "This allows non-recursive read access to the `$EXE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-exe`"
633 + },
634 + {
635 + "description": "This allows full recursive read access to the complete `$EXE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-exe-recursive`",
636 + "type": "string",
637 + "const": "fs:allow-exe-read-recursive",
638 + "markdownDescription": "This allows full recursive read access to the complete `$EXE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-exe-recursive`"
639 + },
640 + {
641 + "description": "This allows non-recursive write access to the `$EXE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-exe`",
642 + "type": "string",
643 + "const": "fs:allow-exe-write",
644 + "markdownDescription": "This allows non-recursive write access to the `$EXE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-exe`"
645 + },
646 + {
647 + "description": "This allows full recursive write access to the complete `$EXE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-exe-recursive`",
648 + "type": "string",
649 + "const": "fs:allow-exe-write-recursive",
650 + "markdownDescription": "This allows full recursive write access to the complete `$EXE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-exe-recursive`"
651 + },
652 + {
653 + "description": "This allows non-recursive read access to metadata of the `$FONT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-font-index`",
654 + "type": "string",
655 + "const": "fs:allow-font-meta",
656 + "markdownDescription": "This allows non-recursive read access to metadata of the `$FONT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-font-index`"
657 + },
658 + {
659 + "description": "This allows full recursive read access to metadata of the `$FONT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-font-recursive`",
660 + "type": "string",
661 + "const": "fs:allow-font-meta-recursive",
662 + "markdownDescription": "This allows full recursive read access to metadata of the `$FONT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-font-recursive`"
663 + },
664 + {
665 + "description": "This allows non-recursive read access to the `$FONT` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-font`",
666 + "type": "string",
667 + "const": "fs:allow-font-read",
668 + "markdownDescription": "This allows non-recursive read access to the `$FONT` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-font`"
669 + },
670 + {
671 + "description": "This allows full recursive read access to the complete `$FONT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-font-recursive`",
672 + "type": "string",
673 + "const": "fs:allow-font-read-recursive",
674 + "markdownDescription": "This allows full recursive read access to the complete `$FONT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-font-recursive`"
675 + },
676 + {
677 + "description": "This allows non-recursive write access to the `$FONT` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-font`",
678 + "type": "string",
679 + "const": "fs:allow-font-write",
680 + "markdownDescription": "This allows non-recursive write access to the `$FONT` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-font`"
681 + },
682 + {
683 + "description": "This allows full recursive write access to the complete `$FONT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-font-recursive`",
684 + "type": "string",
685 + "const": "fs:allow-font-write-recursive",
686 + "markdownDescription": "This allows full recursive write access to the complete `$FONT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-font-recursive`"
687 + },
688 + {
689 + "description": "This allows non-recursive read access to metadata of the `$HOME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-home-index`",
690 + "type": "string",
691 + "const": "fs:allow-home-meta",
692 + "markdownDescription": "This allows non-recursive read access to metadata of the `$HOME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-home-index`"
693 + },
694 + {
695 + "description": "This allows full recursive read access to metadata of the `$HOME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-home-recursive`",
696 + "type": "string",
697 + "const": "fs:allow-home-meta-recursive",
698 + "markdownDescription": "This allows full recursive read access to metadata of the `$HOME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-home-recursive`"
699 + },
700 + {
701 + "description": "This allows non-recursive read access to the `$HOME` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-home`",
702 + "type": "string",
703 + "const": "fs:allow-home-read",
704 + "markdownDescription": "This allows non-recursive read access to the `$HOME` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-home`"
705 + },
706 + {
707 + "description": "This allows full recursive read access to the complete `$HOME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-home-recursive`",
708 + "type": "string",
709 + "const": "fs:allow-home-read-recursive",
710 + "markdownDescription": "This allows full recursive read access to the complete `$HOME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-home-recursive`"
711 + },
712 + {
713 + "description": "This allows non-recursive write access to the `$HOME` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-home`",
714 + "type": "string",
715 + "const": "fs:allow-home-write",
716 + "markdownDescription": "This allows non-recursive write access to the `$HOME` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-home`"
717 + },
718 + {
719 + "description": "This allows full recursive write access to the complete `$HOME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-home-recursive`",
720 + "type": "string",
721 + "const": "fs:allow-home-write-recursive",
722 + "markdownDescription": "This allows full recursive write access to the complete `$HOME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-home-recursive`"
723 + },
724 + {
725 + "description": "This allows non-recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-localdata-index`",
726 + "type": "string",
727 + "const": "fs:allow-localdata-meta",
728 + "markdownDescription": "This allows non-recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-localdata-index`"
729 + },
730 + {
731 + "description": "This allows full recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-localdata-recursive`",
732 + "type": "string",
733 + "const": "fs:allow-localdata-meta-recursive",
734 + "markdownDescription": "This allows full recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-localdata-recursive`"
735 + },
736 + {
737 + "description": "This allows non-recursive read access to the `$LOCALDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-localdata`",
738 + "type": "string",
739 + "const": "fs:allow-localdata-read",
740 + "markdownDescription": "This allows non-recursive read access to the `$LOCALDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-localdata`"
741 + },
742 + {
743 + "description": "This allows full recursive read access to the complete `$LOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-localdata-recursive`",
744 + "type": "string",
745 + "const": "fs:allow-localdata-read-recursive",
746 + "markdownDescription": "This allows full recursive read access to the complete `$LOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-localdata-recursive`"
747 + },
748 + {
749 + "description": "This allows non-recursive write access to the `$LOCALDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-localdata`",
750 + "type": "string",
751 + "const": "fs:allow-localdata-write",
752 + "markdownDescription": "This allows non-recursive write access to the `$LOCALDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-localdata`"
753 + },
754 + {
755 + "description": "This allows full recursive write access to the complete `$LOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-localdata-recursive`",
756 + "type": "string",
757 + "const": "fs:allow-localdata-write-recursive",
758 + "markdownDescription": "This allows full recursive write access to the complete `$LOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-localdata-recursive`"
759 + },
760 + {
761 + "description": "This allows non-recursive read access to metadata of the `$LOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-log-index`",
762 + "type": "string",
763 + "const": "fs:allow-log-meta",
764 + "markdownDescription": "This allows non-recursive read access to metadata of the `$LOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-log-index`"
765 + },
766 + {
767 + "description": "This allows full recursive read access to metadata of the `$LOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-log-recursive`",
768 + "type": "string",
769 + "const": "fs:allow-log-meta-recursive",
770 + "markdownDescription": "This allows full recursive read access to metadata of the `$LOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-log-recursive`"
771 + },
772 + {
773 + "description": "This allows non-recursive read access to the `$LOG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-log`",
774 + "type": "string",
775 + "const": "fs:allow-log-read",
776 + "markdownDescription": "This allows non-recursive read access to the `$LOG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-log`"
777 + },
778 + {
779 + "description": "This allows full recursive read access to the complete `$LOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-log-recursive`",
780 + "type": "string",
781 + "const": "fs:allow-log-read-recursive",
782 + "markdownDescription": "This allows full recursive read access to the complete `$LOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-log-recursive`"
783 + },
784 + {
785 + "description": "This allows non-recursive write access to the `$LOG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-log`",
786 + "type": "string",
787 + "const": "fs:allow-log-write",
788 + "markdownDescription": "This allows non-recursive write access to the `$LOG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-log`"
789 + },
790 + {
791 + "description": "This allows full recursive write access to the complete `$LOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-log-recursive`",
792 + "type": "string",
793 + "const": "fs:allow-log-write-recursive",
794 + "markdownDescription": "This allows full recursive write access to the complete `$LOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-log-recursive`"
795 + },
796 + {
797 + "description": "This allows non-recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-picture-index`",
798 + "type": "string",
799 + "const": "fs:allow-picture-meta",
800 + "markdownDescription": "This allows non-recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-picture-index`"
801 + },
802 + {
803 + "description": "This allows full recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-picture-recursive`",
804 + "type": "string",
805 + "const": "fs:allow-picture-meta-recursive",
806 + "markdownDescription": "This allows full recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-picture-recursive`"
807 + },
808 + {
809 + "description": "This allows non-recursive read access to the `$PICTURE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-picture`",
810 + "type": "string",
811 + "const": "fs:allow-picture-read",
812 + "markdownDescription": "This allows non-recursive read access to the `$PICTURE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-picture`"
813 + },
814 + {
815 + "description": "This allows full recursive read access to the complete `$PICTURE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-picture-recursive`",
816 + "type": "string",
817 + "const": "fs:allow-picture-read-recursive",
818 + "markdownDescription": "This allows full recursive read access to the complete `$PICTURE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-picture-recursive`"
819 + },
820 + {
821 + "description": "This allows non-recursive write access to the `$PICTURE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-picture`",
822 + "type": "string",
823 + "const": "fs:allow-picture-write",
824 + "markdownDescription": "This allows non-recursive write access to the `$PICTURE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-picture`"
825 + },
826 + {
827 + "description": "This allows full recursive write access to the complete `$PICTURE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-picture-recursive`",
828 + "type": "string",
829 + "const": "fs:allow-picture-write-recursive",
830 + "markdownDescription": "This allows full recursive write access to the complete `$PICTURE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-picture-recursive`"
831 + },
832 + {
833 + "description": "This allows non-recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-public-index`",
834 + "type": "string",
835 + "const": "fs:allow-public-meta",
836 + "markdownDescription": "This allows non-recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-public-index`"
837 + },
838 + {
839 + "description": "This allows full recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-public-recursive`",
840 + "type": "string",
841 + "const": "fs:allow-public-meta-recursive",
842 + "markdownDescription": "This allows full recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-public-recursive`"
843 + },
844 + {
845 + "description": "This allows non-recursive read access to the `$PUBLIC` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-public`",
846 + "type": "string",
847 + "const": "fs:allow-public-read",
848 + "markdownDescription": "This allows non-recursive read access to the `$PUBLIC` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-public`"
849 + },
850 + {
851 + "description": "This allows full recursive read access to the complete `$PUBLIC` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-public-recursive`",
852 + "type": "string",
853 + "const": "fs:allow-public-read-recursive",
854 + "markdownDescription": "This allows full recursive read access to the complete `$PUBLIC` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-public-recursive`"
855 + },
856 + {
857 + "description": "This allows non-recursive write access to the `$PUBLIC` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-public`",
858 + "type": "string",
859 + "const": "fs:allow-public-write",
860 + "markdownDescription": "This allows non-recursive write access to the `$PUBLIC` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-public`"
861 + },
862 + {
863 + "description": "This allows full recursive write access to the complete `$PUBLIC` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-public-recursive`",
864 + "type": "string",
865 + "const": "fs:allow-public-write-recursive",
866 + "markdownDescription": "This allows full recursive write access to the complete `$PUBLIC` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-public-recursive`"
867 + },
868 + {
869 + "description": "This allows non-recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-resource-index`",
870 + "type": "string",
871 + "const": "fs:allow-resource-meta",
872 + "markdownDescription": "This allows non-recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-resource-index`"
873 + },
874 + {
875 + "description": "This allows full recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-resource-recursive`",
876 + "type": "string",
877 + "const": "fs:allow-resource-meta-recursive",
878 + "markdownDescription": "This allows full recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-resource-recursive`"
879 + },
880 + {
881 + "description": "This allows non-recursive read access to the `$RESOURCE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-resource`",
882 + "type": "string",
883 + "const": "fs:allow-resource-read",
884 + "markdownDescription": "This allows non-recursive read access to the `$RESOURCE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-resource`"
885 + },
886 + {
887 + "description": "This allows full recursive read access to the complete `$RESOURCE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-resource-recursive`",
888 + "type": "string",
889 + "const": "fs:allow-resource-read-recursive",
890 + "markdownDescription": "This allows full recursive read access to the complete `$RESOURCE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-resource-recursive`"
891 + },
892 + {
893 + "description": "This allows non-recursive write access to the `$RESOURCE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-resource`",
894 + "type": "string",
895 + "const": "fs:allow-resource-write",
896 + "markdownDescription": "This allows non-recursive write access to the `$RESOURCE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-resource`"
897 + },
898 + {
899 + "description": "This allows full recursive write access to the complete `$RESOURCE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-resource-recursive`",
900 + "type": "string",
901 + "const": "fs:allow-resource-write-recursive",
902 + "markdownDescription": "This allows full recursive write access to the complete `$RESOURCE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-resource-recursive`"
903 + },
904 + {
905 + "description": "This allows non-recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-runtime-index`",
906 + "type": "string",
907 + "const": "fs:allow-runtime-meta",
908 + "markdownDescription": "This allows non-recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-runtime-index`"
909 + },
910 + {
911 + "description": "This allows full recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-runtime-recursive`",
912 + "type": "string",
913 + "const": "fs:allow-runtime-meta-recursive",
914 + "markdownDescription": "This allows full recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-runtime-recursive`"
915 + },
916 + {
917 + "description": "This allows non-recursive read access to the `$RUNTIME` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-runtime`",
918 + "type": "string",
919 + "const": "fs:allow-runtime-read",
920 + "markdownDescription": "This allows non-recursive read access to the `$RUNTIME` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-runtime`"
921 + },
922 + {
923 + "description": "This allows full recursive read access to the complete `$RUNTIME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-runtime-recursive`",
924 + "type": "string",
925 + "const": "fs:allow-runtime-read-recursive",
926 + "markdownDescription": "This allows full recursive read access to the complete `$RUNTIME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-runtime-recursive`"
927 + },
928 + {
929 + "description": "This allows non-recursive write access to the `$RUNTIME` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-runtime`",
930 + "type": "string",
931 + "const": "fs:allow-runtime-write",
932 + "markdownDescription": "This allows non-recursive write access to the `$RUNTIME` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-runtime`"
933 + },
934 + {
935 + "description": "This allows full recursive write access to the complete `$RUNTIME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-runtime-recursive`",
936 + "type": "string",
937 + "const": "fs:allow-runtime-write-recursive",
938 + "markdownDescription": "This allows full recursive write access to the complete `$RUNTIME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-runtime-recursive`"
939 + },
940 + {
941 + "description": "This allows non-recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-temp-index`",
942 + "type": "string",
943 + "const": "fs:allow-temp-meta",
944 + "markdownDescription": "This allows non-recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-temp-index`"
945 + },
946 + {
947 + "description": "This allows full recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-temp-recursive`",
948 + "type": "string",
949 + "const": "fs:allow-temp-meta-recursive",
950 + "markdownDescription": "This allows full recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-temp-recursive`"
951 + },
952 + {
953 + "description": "This allows non-recursive read access to the `$TEMP` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-temp`",
954 + "type": "string",
955 + "const": "fs:allow-temp-read",
956 + "markdownDescription": "This allows non-recursive read access to the `$TEMP` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-temp`"
957 + },
958 + {
959 + "description": "This allows full recursive read access to the complete `$TEMP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-temp-recursive`",
960 + "type": "string",
961 + "const": "fs:allow-temp-read-recursive",
962 + "markdownDescription": "This allows full recursive read access to the complete `$TEMP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-temp-recursive`"
963 + },
964 + {
965 + "description": "This allows non-recursive write access to the `$TEMP` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-temp`",
966 + "type": "string",
967 + "const": "fs:allow-temp-write",
968 + "markdownDescription": "This allows non-recursive write access to the `$TEMP` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-temp`"
969 + },
970 + {
971 + "description": "This allows full recursive write access to the complete `$TEMP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-temp-recursive`",
972 + "type": "string",
973 + "const": "fs:allow-temp-write-recursive",
974 + "markdownDescription": "This allows full recursive write access to the complete `$TEMP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-temp-recursive`"
975 + },
976 + {
977 + "description": "This allows non-recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-template-index`",
978 + "type": "string",
979 + "const": "fs:allow-template-meta",
980 + "markdownDescription": "This allows non-recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-template-index`"
981 + },
982 + {
983 + "description": "This allows full recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-template-recursive`",
984 + "type": "string",
985 + "const": "fs:allow-template-meta-recursive",
986 + "markdownDescription": "This allows full recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-template-recursive`"
987 + },
988 + {
989 + "description": "This allows non-recursive read access to the `$TEMPLATE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-template`",
990 + "type": "string",
991 + "const": "fs:allow-template-read",
992 + "markdownDescription": "This allows non-recursive read access to the `$TEMPLATE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-template`"
993 + },
994 + {
995 + "description": "This allows full recursive read access to the complete `$TEMPLATE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-template-recursive`",
996 + "type": "string",
997 + "const": "fs:allow-template-read-recursive",
998 + "markdownDescription": "This allows full recursive read access to the complete `$TEMPLATE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-template-recursive`"
999 + },
1000 + {
1001 + "description": "This allows non-recursive write access to the `$TEMPLATE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-template`",
1002 + "type": "string",
1003 + "const": "fs:allow-template-write",
1004 + "markdownDescription": "This allows non-recursive write access to the `$TEMPLATE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-template`"
1005 + },
1006 + {
1007 + "description": "This allows full recursive write access to the complete `$TEMPLATE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-template-recursive`",
1008 + "type": "string",
1009 + "const": "fs:allow-template-write-recursive",
1010 + "markdownDescription": "This allows full recursive write access to the complete `$TEMPLATE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-template-recursive`"
1011 + },
1012 + {
1013 + "description": "This allows non-recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-video-index`",
1014 + "type": "string",
1015 + "const": "fs:allow-video-meta",
1016 + "markdownDescription": "This allows non-recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-video-index`"
1017 + },
1018 + {
1019 + "description": "This allows full recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-video-recursive`",
1020 + "type": "string",
1021 + "const": "fs:allow-video-meta-recursive",
1022 + "markdownDescription": "This allows full recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-video-recursive`"
1023 + },
1024 + {
1025 + "description": "This allows non-recursive read access to the `$VIDEO` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-video`",
1026 + "type": "string",
1027 + "const": "fs:allow-video-read",
1028 + "markdownDescription": "This allows non-recursive read access to the `$VIDEO` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-video`"
1029 + },
1030 + {
1031 + "description": "This allows full recursive read access to the complete `$VIDEO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-video-recursive`",
1032 + "type": "string",
1033 + "const": "fs:allow-video-read-recursive",
1034 + "markdownDescription": "This allows full recursive read access to the complete `$VIDEO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-video-recursive`"
1035 + },
1036 + {
1037 + "description": "This allows non-recursive write access to the `$VIDEO` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-video`",
1038 + "type": "string",
1039 + "const": "fs:allow-video-write",
1040 + "markdownDescription": "This allows non-recursive write access to the `$VIDEO` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-video`"
1041 + },
1042 + {
1043 + "description": "This allows full recursive write access to the complete `$VIDEO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-video-recursive`",
1044 + "type": "string",
1045 + "const": "fs:allow-video-write-recursive",
1046 + "markdownDescription": "This allows full recursive write access to the complete `$VIDEO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-video-recursive`"
1047 + },
1048 + {
1049 + "description": "This denies access to dangerous Tauri relevant files and folders by default.\n#### This permission set includes:\n\n- `deny-webview-data-linux`\n- `deny-webview-data-windows`",
1050 + "type": "string",
1051 + "const": "fs:deny-default",
1052 + "markdownDescription": "This denies access to dangerous Tauri relevant files and folders by default.\n#### This permission set includes:\n\n- `deny-webview-data-linux`\n- `deny-webview-data-windows`"
1053 + },
1054 + {
1055 + "description": "Enables the copy_file command without any pre-configured scope.",
1056 + "type": "string",
1057 + "const": "fs:allow-copy-file",
1058 + "markdownDescription": "Enables the copy_file command without any pre-configured scope."
1059 + },
1060 + {
1061 + "description": "Enables the create command without any pre-configured scope.",
1062 + "type": "string",
1063 + "const": "fs:allow-create",
1064 + "markdownDescription": "Enables the create command without any pre-configured scope."
1065 + },
1066 + {
1067 + "description": "Enables the exists command without any pre-configured scope.",
1068 + "type": "string",
1069 + "const": "fs:allow-exists",
1070 + "markdownDescription": "Enables the exists command without any pre-configured scope."
1071 + },
1072 + {
1073 + "description": "Enables the fstat command without any pre-configured scope.",
1074 + "type": "string",
1075 + "const": "fs:allow-fstat",
1076 + "markdownDescription": "Enables the fstat command without any pre-configured scope."
1077 + },
1078 + {
1079 + "description": "Enables the ftruncate command without any pre-configured scope.",
1080 + "type": "string",
1081 + "const": "fs:allow-ftruncate",
1082 + "markdownDescription": "Enables the ftruncate command without any pre-configured scope."
1083 + },
1084 + {
1085 + "description": "Enables the lstat command without any pre-configured scope.",
1086 + "type": "string",
1087 + "const": "fs:allow-lstat",
1088 + "markdownDescription": "Enables the lstat command without any pre-configured scope."
1089 + },
1090 + {
1091 + "description": "Enables the mkdir command without any pre-configured scope.",
1092 + "type": "string",
1093 + "const": "fs:allow-mkdir",
1094 + "markdownDescription": "Enables the mkdir command without any pre-configured scope."
1095 + },
1096 + {
1097 + "description": "Enables the open command without any pre-configured scope.",
1098 + "type": "string",
1099 + "const": "fs:allow-open",
1100 + "markdownDescription": "Enables the open command without any pre-configured scope."
1101 + },
1102 + {
1103 + "description": "Enables the read command without any pre-configured scope.",
1104 + "type": "string",
1105 + "const": "fs:allow-read",
1106 + "markdownDescription": "Enables the read command without any pre-configured scope."
1107 + },
1108 + {
1109 + "description": "Enables the read_dir command without any pre-configured scope.",
1110 + "type": "string",
1111 + "const": "fs:allow-read-dir",
1112 + "markdownDescription": "Enables the read_dir command without any pre-configured scope."
1113 + },
1114 + {
1115 + "description": "Enables the read_file command without any pre-configured scope.",
1116 + "type": "string",
1117 + "const": "fs:allow-read-file",
1118 + "markdownDescription": "Enables the read_file command without any pre-configured scope."
1119 + },
1120 + {
1121 + "description": "Enables the read_text_file command without any pre-configured scope.",
1122 + "type": "string",
1123 + "const": "fs:allow-read-text-file",
1124 + "markdownDescription": "Enables the read_text_file command without any pre-configured scope."
1125 + },
1126 + {
1127 + "description": "Enables the read_text_file_lines command without any pre-configured scope.",
1128 + "type": "string",
1129 + "const": "fs:allow-read-text-file-lines",
1130 + "markdownDescription": "Enables the read_text_file_lines command without any pre-configured scope."
1131 + },
1132 + {
1133 + "description": "Enables the read_text_file_lines_next command without any pre-configured scope.",
1134 + "type": "string",
1135 + "const": "fs:allow-read-text-file-lines-next",
1136 + "markdownDescription": "Enables the read_text_file_lines_next command without any pre-configured scope."
1137 + },
1138 + {
1139 + "description": "Enables the remove command without any pre-configured scope.",
1140 + "type": "string",
1141 + "const": "fs:allow-remove",
1142 + "markdownDescription": "Enables the remove command without any pre-configured scope."
1143 + },
1144 + {
1145 + "description": "Enables the rename command without any pre-configured scope.",
1146 + "type": "string",
1147 + "const": "fs:allow-rename",
1148 + "markdownDescription": "Enables the rename command without any pre-configured scope."
1149 + },
1150 + {
1151 + "description": "Enables the seek command without any pre-configured scope.",
1152 + "type": "string",
1153 + "const": "fs:allow-seek",
1154 + "markdownDescription": "Enables the seek command without any pre-configured scope."
1155 + },
1156 + {
1157 + "description": "Enables the size command without any pre-configured scope.",
1158 + "type": "string",
1159 + "const": "fs:allow-size",
1160 + "markdownDescription": "Enables the size command without any pre-configured scope."
1161 + },
1162 + {
1163 + "description": "Enables the stat command without any pre-configured scope.",
1164 + "type": "string",
1165 + "const": "fs:allow-stat",
1166 + "markdownDescription": "Enables the stat command without any pre-configured scope."
1167 + },
1168 + {
1169 + "description": "Enables the truncate command without any pre-configured scope.",
1170 + "type": "string",
1171 + "const": "fs:allow-truncate",
1172 + "markdownDescription": "Enables the truncate command without any pre-configured scope."
1173 + },
1174 + {
1175 + "description": "Enables the unwatch command without any pre-configured scope.",
1176 + "type": "string",
1177 + "const": "fs:allow-unwatch",
1178 + "markdownDescription": "Enables the unwatch command without any pre-configured scope."
1179 + },
1180 + {
1181 + "description": "Enables the watch command without any pre-configured scope.",
1182 + "type": "string",
1183 + "const": "fs:allow-watch",
1184 + "markdownDescription": "Enables the watch command without any pre-configured scope."
1185 + },
1186 + {
1187 + "description": "Enables the write command without any pre-configured scope.",
1188 + "type": "string",
1189 + "const": "fs:allow-write",
1190 + "markdownDescription": "Enables the write command without any pre-configured scope."
1191 + },
1192 + {
1193 + "description": "Enables the write_file command without any pre-configured scope.",
1194 + "type": "string",
1195 + "const": "fs:allow-write-file",
1196 + "markdownDescription": "Enables the write_file command without any pre-configured scope."
1197 + },
1198 + {
1199 + "description": "Enables the write_text_file command without any pre-configured scope.",
1200 + "type": "string",
1201 + "const": "fs:allow-write-text-file",
1202 + "markdownDescription": "Enables the write_text_file command without any pre-configured scope."
1203 + },
1204 + {
1205 + "description": "This permissions allows to create the application specific directories.\n",
1206 + "type": "string",
1207 + "const": "fs:create-app-specific-dirs",
1208 + "markdownDescription": "This permissions allows to create the application specific directories.\n"
1209 + },
1210 + {
1211 + "description": "Denies the copy_file command without any pre-configured scope.",
1212 + "type": "string",
1213 + "const": "fs:deny-copy-file",
1214 + "markdownDescription": "Denies the copy_file command without any pre-configured scope."
1215 + },
1216 + {
1217 + "description": "Denies the create command without any pre-configured scope.",
1218 + "type": "string",
1219 + "const": "fs:deny-create",
1220 + "markdownDescription": "Denies the create command without any pre-configured scope."
1221 + },
1222 + {
1223 + "description": "Denies the exists command without any pre-configured scope.",
1224 + "type": "string",
1225 + "const": "fs:deny-exists",
1226 + "markdownDescription": "Denies the exists command without any pre-configured scope."
1227 + },
1228 + {
1229 + "description": "Denies the fstat command without any pre-configured scope.",
1230 + "type": "string",
1231 + "const": "fs:deny-fstat",
1232 + "markdownDescription": "Denies the fstat command without any pre-configured scope."
1233 + },
1234 + {
1235 + "description": "Denies the ftruncate command without any pre-configured scope.",
1236 + "type": "string",
1237 + "const": "fs:deny-ftruncate",
1238 + "markdownDescription": "Denies the ftruncate command without any pre-configured scope."
1239 + },
1240 + {
1241 + "description": "Denies the lstat command without any pre-configured scope.",
1242 + "type": "string",
1243 + "const": "fs:deny-lstat",
1244 + "markdownDescription": "Denies the lstat command without any pre-configured scope."
1245 + },
1246 + {
1247 + "description": "Denies the mkdir command without any pre-configured scope.",
1248 + "type": "string",
1249 + "const": "fs:deny-mkdir",
1250 + "markdownDescription": "Denies the mkdir command without any pre-configured scope."
1251 + },
1252 + {
1253 + "description": "Denies the open command without any pre-configured scope.",
1254 + "type": "string",
1255 + "const": "fs:deny-open",
1256 + "markdownDescription": "Denies the open command without any pre-configured scope."
1257 + },
1258 + {
1259 + "description": "Denies the read command without any pre-configured scope.",
1260 + "type": "string",
1261 + "const": "fs:deny-read",
1262 + "markdownDescription": "Denies the read command without any pre-configured scope."
1263 + },
1264 + {
1265 + "description": "Denies the read_dir command without any pre-configured scope.",
1266 + "type": "string",
1267 + "const": "fs:deny-read-dir",
1268 + "markdownDescription": "Denies the read_dir command without any pre-configured scope."
1269 + },
1270 + {
1271 + "description": "Denies the read_file command without any pre-configured scope.",
1272 + "type": "string",
1273 + "const": "fs:deny-read-file",
1274 + "markdownDescription": "Denies the read_file command without any pre-configured scope."
1275 + },
1276 + {
1277 + "description": "Denies the read_text_file command without any pre-configured scope.",
1278 + "type": "string",
1279 + "const": "fs:deny-read-text-file",
1280 + "markdownDescription": "Denies the read_text_file command without any pre-configured scope."
1281 + },
1282 + {
1283 + "description": "Denies the read_text_file_lines command without any pre-configured scope.",
1284 + "type": "string",
1285 + "const": "fs:deny-read-text-file-lines",
1286 + "markdownDescription": "Denies the read_text_file_lines command without any pre-configured scope."
1287 + },
1288 + {
1289 + "description": "Denies the read_text_file_lines_next command without any pre-configured scope.",
1290 + "type": "string",
1291 + "const": "fs:deny-read-text-file-lines-next",
1292 + "markdownDescription": "Denies the read_text_file_lines_next command without any pre-configured scope."
1293 + },
1294 + {
1295 + "description": "Denies the remove command without any pre-configured scope.",
1296 + "type": "string",
1297 + "const": "fs:deny-remove",
1298 + "markdownDescription": "Denies the remove command without any pre-configured scope."
1299 + },
1300 + {
1301 + "description": "Denies the rename command without any pre-configured scope.",
1302 + "type": "string",
1303 + "const": "fs:deny-rename",
1304 + "markdownDescription": "Denies the rename command without any pre-configured scope."
1305 + },
1306 + {
1307 + "description": "Denies the seek command without any pre-configured scope.",
1308 + "type": "string",
1309 + "const": "fs:deny-seek",
1310 + "markdownDescription": "Denies the seek command without any pre-configured scope."
1311 + },
1312 + {
1313 + "description": "Denies the size command without any pre-configured scope.",
1314 + "type": "string",
1315 + "const": "fs:deny-size",
1316 + "markdownDescription": "Denies the size command without any pre-configured scope."
1317 + },
1318 + {
1319 + "description": "Denies the stat command without any pre-configured scope.",
1320 + "type": "string",
1321 + "const": "fs:deny-stat",
1322 + "markdownDescription": "Denies the stat command without any pre-configured scope."
1323 + },
1324 + {
1325 + "description": "Denies the truncate command without any pre-configured scope.",
1326 + "type": "string",
1327 + "const": "fs:deny-truncate",
1328 + "markdownDescription": "Denies the truncate command without any pre-configured scope."
1329 + },
1330 + {
1331 + "description": "Denies the unwatch command without any pre-configured scope.",
1332 + "type": "string",
1333 + "const": "fs:deny-unwatch",
1334 + "markdownDescription": "Denies the unwatch command without any pre-configured scope."
1335 + },
1336 + {
1337 + "description": "Denies the watch command without any pre-configured scope.",
1338 + "type": "string",
1339 + "const": "fs:deny-watch",
1340 + "markdownDescription": "Denies the watch command without any pre-configured scope."
1341 + },
1342 + {
1343 + "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.",
1344 + "type": "string",
1345 + "const": "fs:deny-webview-data-linux",
1346 + "markdownDescription": "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."
1347 + },
1348 + {
1349 + "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.",
1350 + "type": "string",
1351 + "const": "fs:deny-webview-data-windows",
1352 + "markdownDescription": "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."
1353 + },
1354 + {
1355 + "description": "Denies the write command without any pre-configured scope.",
1356 + "type": "string",
1357 + "const": "fs:deny-write",
1358 + "markdownDescription": "Denies the write command without any pre-configured scope."
1359 + },
1360 + {
1361 + "description": "Denies the write_file command without any pre-configured scope.",
1362 + "type": "string",
1363 + "const": "fs:deny-write-file",
1364 + "markdownDescription": "Denies the write_file command without any pre-configured scope."
1365 + },
1366 + {
1367 + "description": "Denies the write_text_file command without any pre-configured scope.",
1368 + "type": "string",
1369 + "const": "fs:deny-write-text-file",
1370 + "markdownDescription": "Denies the write_text_file command without any pre-configured scope."
1371 + },
1372 + {
1373 + "description": "This enables all read related commands without any pre-configured accessible paths.",
1374 + "type": "string",
1375 + "const": "fs:read-all",
1376 + "markdownDescription": "This enables all read related commands without any pre-configured accessible paths."
1377 + },
1378 + {
1379 + "description": "This permission allows recursive read functionality on the application\nspecific base directories. \n",
1380 + "type": "string",
1381 + "const": "fs:read-app-specific-dirs-recursive",
1382 + "markdownDescription": "This permission allows recursive read functionality on the application\nspecific base directories. \n"
1383 + },
1384 + {
1385 + "description": "This enables directory read and file metadata related commands without any pre-configured accessible paths.",
1386 + "type": "string",
1387 + "const": "fs:read-dirs",
1388 + "markdownDescription": "This enables directory read and file metadata related commands without any pre-configured accessible paths."
1389 + },
1390 + {
1391 + "description": "This enables file read related commands without any pre-configured accessible paths.",
1392 + "type": "string",
1393 + "const": "fs:read-files",
1394 + "markdownDescription": "This enables file read related commands without any pre-configured accessible paths."
1395 + },
1396 + {
1397 + "description": "This enables all index or metadata related commands without any pre-configured accessible paths.",
1398 + "type": "string",
1399 + "const": "fs:read-meta",
1400 + "markdownDescription": "This enables all index or metadata related commands without any pre-configured accessible paths."
1401 + },
1402 + {
1403 + "description": "An empty permission you can use to modify the global scope.",
1404 + "type": "string",
1405 + "const": "fs:scope",
1406 + "markdownDescription": "An empty permission you can use to modify the global scope."
1407 + },
1408 + {
1409 + "description": "This scope permits access to all files and list content of top level directories in the application folders.",
1410 + "type": "string",
1411 + "const": "fs:scope-app",
1412 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the application folders."
1413 + },
1414 + {
1415 + "description": "This scope permits to list all files and folders in the application directories.",
1416 + "type": "string",
1417 + "const": "fs:scope-app-index",
1418 + "markdownDescription": "This scope permits to list all files and folders in the application directories."
1419 + },
1420 + {
1421 + "description": "This scope permits recursive access to the complete application folders, including sub directories and files.",
1422 + "type": "string",
1423 + "const": "fs:scope-app-recursive",
1424 + "markdownDescription": "This scope permits recursive access to the complete application folders, including sub directories and files."
1425 + },
1426 + {
1427 + "description": "This scope permits access to all files and list content of top level directories in the `$APPCACHE` folder.",
1428 + "type": "string",
1429 + "const": "fs:scope-appcache",
1430 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPCACHE` folder."
1431 + },
1432 + {
1433 + "description": "This scope permits to list all files and folders in the `$APPCACHE`folder.",
1434 + "type": "string",
1435 + "const": "fs:scope-appcache-index",
1436 + "markdownDescription": "This scope permits to list all files and folders in the `$APPCACHE`folder."
1437 + },
1438 + {
1439 + "description": "This scope permits recursive access to the complete `$APPCACHE` folder, including sub directories and files.",
1440 + "type": "string",
1441 + "const": "fs:scope-appcache-recursive",
1442 + "markdownDescription": "This scope permits recursive access to the complete `$APPCACHE` folder, including sub directories and files."
1443 + },
1444 + {
1445 + "description": "This scope permits access to all files and list content of top level directories in the `$APPCONFIG` folder.",
1446 + "type": "string",
1447 + "const": "fs:scope-appconfig",
1448 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPCONFIG` folder."
1449 + },
1450 + {
1451 + "description": "This scope permits to list all files and folders in the `$APPCONFIG`folder.",
1452 + "type": "string",
1453 + "const": "fs:scope-appconfig-index",
1454 + "markdownDescription": "This scope permits to list all files and folders in the `$APPCONFIG`folder."
1455 + },
1456 + {
1457 + "description": "This scope permits recursive access to the complete `$APPCONFIG` folder, including sub directories and files.",
1458 + "type": "string",
1459 + "const": "fs:scope-appconfig-recursive",
1460 + "markdownDescription": "This scope permits recursive access to the complete `$APPCONFIG` folder, including sub directories and files."
1461 + },
1462 + {
1463 + "description": "This scope permits access to all files and list content of top level directories in the `$APPDATA` folder.",
1464 + "type": "string",
1465 + "const": "fs:scope-appdata",
1466 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPDATA` folder."
1467 + },
1468 + {
1469 + "description": "This scope permits to list all files and folders in the `$APPDATA`folder.",
1470 + "type": "string",
1471 + "const": "fs:scope-appdata-index",
1472 + "markdownDescription": "This scope permits to list all files and folders in the `$APPDATA`folder."
1473 + },
1474 + {
1475 + "description": "This scope permits recursive access to the complete `$APPDATA` folder, including sub directories and files.",
1476 + "type": "string",
1477 + "const": "fs:scope-appdata-recursive",
1478 + "markdownDescription": "This scope permits recursive access to the complete `$APPDATA` folder, including sub directories and files."
1479 + },
1480 + {
1481 + "description": "This scope permits access to all files and list content of top level directories in the `$APPLOCALDATA` folder.",
1482 + "type": "string",
1483 + "const": "fs:scope-applocaldata",
1484 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPLOCALDATA` folder."
1485 + },
1486 + {
1487 + "description": "This scope permits to list all files and folders in the `$APPLOCALDATA`folder.",
1488 + "type": "string",
1489 + "const": "fs:scope-applocaldata-index",
1490 + "markdownDescription": "This scope permits to list all files and folders in the `$APPLOCALDATA`folder."
1491 + },
1492 + {
1493 + "description": "This scope permits recursive access to the complete `$APPLOCALDATA` folder, including sub directories and files.",
1494 + "type": "string",
1495 + "const": "fs:scope-applocaldata-recursive",
1496 + "markdownDescription": "This scope permits recursive access to the complete `$APPLOCALDATA` folder, including sub directories and files."
1497 + },
1498 + {
1499 + "description": "This scope permits access to all files and list content of top level directories in the `$APPLOG` folder.",
1500 + "type": "string",
1501 + "const": "fs:scope-applog",
1502 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPLOG` folder."
1503 + },
1504 + {
1505 + "description": "This scope permits to list all files and folders in the `$APPLOG`folder.",
1506 + "type": "string",
1507 + "const": "fs:scope-applog-index",
1508 + "markdownDescription": "This scope permits to list all files and folders in the `$APPLOG`folder."
1509 + },
1510 + {
1511 + "description": "This scope permits recursive access to the complete `$APPLOG` folder, including sub directories and files.",
1512 + "type": "string",
1513 + "const": "fs:scope-applog-recursive",
1514 + "markdownDescription": "This scope permits recursive access to the complete `$APPLOG` folder, including sub directories and files."
1515 + },
1516 + {
1517 + "description": "This scope permits access to all files and list content of top level directories in the `$AUDIO` folder.",
1518 + "type": "string",
1519 + "const": "fs:scope-audio",
1520 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$AUDIO` folder."
1521 + },
1522 + {
1523 + "description": "This scope permits to list all files and folders in the `$AUDIO`folder.",
1524 + "type": "string",
1525 + "const": "fs:scope-audio-index",
1526 + "markdownDescription": "This scope permits to list all files and folders in the `$AUDIO`folder."
1527 + },
1528 + {
1529 + "description": "This scope permits recursive access to the complete `$AUDIO` folder, including sub directories and files.",
1530 + "type": "string",
1531 + "const": "fs:scope-audio-recursive",
1532 + "markdownDescription": "This scope permits recursive access to the complete `$AUDIO` folder, including sub directories and files."
1533 + },
1534 + {
1535 + "description": "This scope permits access to all files and list content of top level directories in the `$CACHE` folder.",
1536 + "type": "string",
1537 + "const": "fs:scope-cache",
1538 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$CACHE` folder."
1539 + },
1540 + {
1541 + "description": "This scope permits to list all files and folders in the `$CACHE`folder.",
1542 + "type": "string",
1543 + "const": "fs:scope-cache-index",
1544 + "markdownDescription": "This scope permits to list all files and folders in the `$CACHE`folder."
1545 + },
1546 + {
1547 + "description": "This scope permits recursive access to the complete `$CACHE` folder, including sub directories and files.",
1548 + "type": "string",
1549 + "const": "fs:scope-cache-recursive",
1550 + "markdownDescription": "This scope permits recursive access to the complete `$CACHE` folder, including sub directories and files."
1551 + },
1552 + {
1553 + "description": "This scope permits access to all files and list content of top level directories in the `$CONFIG` folder.",
1554 + "type": "string",
1555 + "const": "fs:scope-config",
1556 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$CONFIG` folder."
1557 + },
1558 + {
1559 + "description": "This scope permits to list all files and folders in the `$CONFIG`folder.",
1560 + "type": "string",
1561 + "const": "fs:scope-config-index",
1562 + "markdownDescription": "This scope permits to list all files and folders in the `$CONFIG`folder."
1563 + },
1564 + {
1565 + "description": "This scope permits recursive access to the complete `$CONFIG` folder, including sub directories and files.",
1566 + "type": "string",
1567 + "const": "fs:scope-config-recursive",
1568 + "markdownDescription": "This scope permits recursive access to the complete `$CONFIG` folder, including sub directories and files."
1569 + },
1570 + {
1571 + "description": "This scope permits access to all files and list content of top level directories in the `$DATA` folder.",
1572 + "type": "string",
1573 + "const": "fs:scope-data",
1574 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$DATA` folder."
1575 + },
1576 + {
1577 + "description": "This scope permits to list all files and folders in the `$DATA`folder.",
1578 + "type": "string",
1579 + "const": "fs:scope-data-index",
1580 + "markdownDescription": "This scope permits to list all files and folders in the `$DATA`folder."
1581 + },
1582 + {
1583 + "description": "This scope permits recursive access to the complete `$DATA` folder, including sub directories and files.",
1584 + "type": "string",
1585 + "const": "fs:scope-data-recursive",
1586 + "markdownDescription": "This scope permits recursive access to the complete `$DATA` folder, including sub directories and files."
1587 + },
1588 + {
1589 + "description": "This scope permits access to all files and list content of top level directories in the `$DESKTOP` folder.",
1590 + "type": "string",
1591 + "const": "fs:scope-desktop",
1592 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$DESKTOP` folder."
1593 + },
1594 + {
1595 + "description": "This scope permits to list all files and folders in the `$DESKTOP`folder.",
1596 + "type": "string",
1597 + "const": "fs:scope-desktop-index",
1598 + "markdownDescription": "This scope permits to list all files and folders in the `$DESKTOP`folder."
1599 + },
1600 + {
1601 + "description": "This scope permits recursive access to the complete `$DESKTOP` folder, including sub directories and files.",
1602 + "type": "string",
1603 + "const": "fs:scope-desktop-recursive",
1604 + "markdownDescription": "This scope permits recursive access to the complete `$DESKTOP` folder, including sub directories and files."
1605 + },
1606 + {
1607 + "description": "This scope permits access to all files and list content of top level directories in the `$DOCUMENT` folder.",
1608 + "type": "string",
1609 + "const": "fs:scope-document",
1610 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$DOCUMENT` folder."
1611 + },
1612 + {
1613 + "description": "This scope permits to list all files and folders in the `$DOCUMENT`folder.",
1614 + "type": "string",
1615 + "const": "fs:scope-document-index",
1616 + "markdownDescription": "This scope permits to list all files and folders in the `$DOCUMENT`folder."
1617 + },
1618 + {
1619 + "description": "This scope permits recursive access to the complete `$DOCUMENT` folder, including sub directories and files.",
1620 + "type": "string",
1621 + "const": "fs:scope-document-recursive",
1622 + "markdownDescription": "This scope permits recursive access to the complete `$DOCUMENT` folder, including sub directories and files."
1623 + },
1624 + {
1625 + "description": "This scope permits access to all files and list content of top level directories in the `$DOWNLOAD` folder.",
1626 + "type": "string",
1627 + "const": "fs:scope-download",
1628 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$DOWNLOAD` folder."
1629 + },
1630 + {
1631 + "description": "This scope permits to list all files and folders in the `$DOWNLOAD`folder.",
1632 + "type": "string",
1633 + "const": "fs:scope-download-index",
1634 + "markdownDescription": "This scope permits to list all files and folders in the `$DOWNLOAD`folder."
1635 + },
1636 + {
1637 + "description": "This scope permits recursive access to the complete `$DOWNLOAD` folder, including sub directories and files.",
1638 + "type": "string",
1639 + "const": "fs:scope-download-recursive",
1640 + "markdownDescription": "This scope permits recursive access to the complete `$DOWNLOAD` folder, including sub directories and files."
1641 + },
1642 + {
1643 + "description": "This scope permits access to all files and list content of top level directories in the `$EXE` folder.",
1644 + "type": "string",
1645 + "const": "fs:scope-exe",
1646 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$EXE` folder."
1647 + },
1648 + {
1649 + "description": "This scope permits to list all files and folders in the `$EXE`folder.",
1650 + "type": "string",
1651 + "const": "fs:scope-exe-index",
1652 + "markdownDescription": "This scope permits to list all files and folders in the `$EXE`folder."
1653 + },
1654 + {
1655 + "description": "This scope permits recursive access to the complete `$EXE` folder, including sub directories and files.",
1656 + "type": "string",
1657 + "const": "fs:scope-exe-recursive",
1658 + "markdownDescription": "This scope permits recursive access to the complete `$EXE` folder, including sub directories and files."
1659 + },
1660 + {
1661 + "description": "This scope permits access to all files and list content of top level directories in the `$FONT` folder.",
1662 + "type": "string",
1663 + "const": "fs:scope-font",
1664 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$FONT` folder."
1665 + },
1666 + {
1667 + "description": "This scope permits to list all files and folders in the `$FONT`folder.",
1668 + "type": "string",
1669 + "const": "fs:scope-font-index",
1670 + "markdownDescription": "This scope permits to list all files and folders in the `$FONT`folder."
1671 + },
1672 + {
1673 + "description": "This scope permits recursive access to the complete `$FONT` folder, including sub directories and files.",
1674 + "type": "string",
1675 + "const": "fs:scope-font-recursive",
1676 + "markdownDescription": "This scope permits recursive access to the complete `$FONT` folder, including sub directories and files."
1677 + },
1678 + {
1679 + "description": "This scope permits access to all files and list content of top level directories in the `$HOME` folder.",
1680 + "type": "string",
1681 + "const": "fs:scope-home",
1682 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$HOME` folder."
1683 + },
1684 + {
1685 + "description": "This scope permits to list all files and folders in the `$HOME`folder.",
1686 + "type": "string",
1687 + "const": "fs:scope-home-index",
1688 + "markdownDescription": "This scope permits to list all files and folders in the `$HOME`folder."
1689 + },
1690 + {
1691 + "description": "This scope permits recursive access to the complete `$HOME` folder, including sub directories and files.",
1692 + "type": "string",
1693 + "const": "fs:scope-home-recursive",
1694 + "markdownDescription": "This scope permits recursive access to the complete `$HOME` folder, including sub directories and files."
1695 + },
1696 + {
1697 + "description": "This scope permits access to all files and list content of top level directories in the `$LOCALDATA` folder.",
1698 + "type": "string",
1699 + "const": "fs:scope-localdata",
1700 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$LOCALDATA` folder."
1701 + },
1702 + {
1703 + "description": "This scope permits to list all files and folders in the `$LOCALDATA`folder.",
1704 + "type": "string",
1705 + "const": "fs:scope-localdata-index",
1706 + "markdownDescription": "This scope permits to list all files and folders in the `$LOCALDATA`folder."
1707 + },
1708 + {
1709 + "description": "This scope permits recursive access to the complete `$LOCALDATA` folder, including sub directories and files.",
1710 + "type": "string",
1711 + "const": "fs:scope-localdata-recursive",
1712 + "markdownDescription": "This scope permits recursive access to the complete `$LOCALDATA` folder, including sub directories and files."
1713 + },
1714 + {
1715 + "description": "This scope permits access to all files and list content of top level directories in the `$LOG` folder.",
1716 + "type": "string",
1717 + "const": "fs:scope-log",
1718 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$LOG` folder."
1719 + },
1720 + {
1721 + "description": "This scope permits to list all files and folders in the `$LOG`folder.",
1722 + "type": "string",
1723 + "const": "fs:scope-log-index",
1724 + "markdownDescription": "This scope permits to list all files and folders in the `$LOG`folder."
1725 + },
1726 + {
1727 + "description": "This scope permits recursive access to the complete `$LOG` folder, including sub directories and files.",
1728 + "type": "string",
1729 + "const": "fs:scope-log-recursive",
1730 + "markdownDescription": "This scope permits recursive access to the complete `$LOG` folder, including sub directories and files."
1731 + },
1732 + {
1733 + "description": "This scope permits access to all files and list content of top level directories in the `$PICTURE` folder.",
1734 + "type": "string",
1735 + "const": "fs:scope-picture",
1736 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$PICTURE` folder."
1737 + },
1738 + {
1739 + "description": "This scope permits to list all files and folders in the `$PICTURE`folder.",
1740 + "type": "string",
1741 + "const": "fs:scope-picture-index",
1742 + "markdownDescription": "This scope permits to list all files and folders in the `$PICTURE`folder."
1743 + },
1744 + {
1745 + "description": "This scope permits recursive access to the complete `$PICTURE` folder, including sub directories and files.",
1746 + "type": "string",
1747 + "const": "fs:scope-picture-recursive",
1748 + "markdownDescription": "This scope permits recursive access to the complete `$PICTURE` folder, including sub directories and files."
1749 + },
1750 + {
1751 + "description": "This scope permits access to all files and list content of top level directories in the `$PUBLIC` folder.",
1752 + "type": "string",
1753 + "const": "fs:scope-public",
1754 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$PUBLIC` folder."
1755 + },
1756 + {
1757 + "description": "This scope permits to list all files and folders in the `$PUBLIC`folder.",
1758 + "type": "string",
1759 + "const": "fs:scope-public-index",
1760 + "markdownDescription": "This scope permits to list all files and folders in the `$PUBLIC`folder."
1761 + },
1762 + {
1763 + "description": "This scope permits recursive access to the complete `$PUBLIC` folder, including sub directories and files.",
1764 + "type": "string",
1765 + "const": "fs:scope-public-recursive",
1766 + "markdownDescription": "This scope permits recursive access to the complete `$PUBLIC` folder, including sub directories and files."
1767 + },
1768 + {
1769 + "description": "This scope permits access to all files and list content of top level directories in the `$RESOURCE` folder.",
1770 + "type": "string",
1771 + "const": "fs:scope-resource",
1772 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$RESOURCE` folder."
1773 + },
1774 + {
1775 + "description": "This scope permits to list all files and folders in the `$RESOURCE`folder.",
1776 + "type": "string",
1777 + "const": "fs:scope-resource-index",
1778 + "markdownDescription": "This scope permits to list all files and folders in the `$RESOURCE`folder."
1779 + },
1780 + {
1781 + "description": "This scope permits recursive access to the complete `$RESOURCE` folder, including sub directories and files.",
1782 + "type": "string",
1783 + "const": "fs:scope-resource-recursive",
1784 + "markdownDescription": "This scope permits recursive access to the complete `$RESOURCE` folder, including sub directories and files."
1785 + },
1786 + {
1787 + "description": "This scope permits access to all files and list content of top level directories in the `$RUNTIME` folder.",
1788 + "type": "string",
1789 + "const": "fs:scope-runtime",
1790 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$RUNTIME` folder."
1791 + },
1792 + {
1793 + "description": "This scope permits to list all files and folders in the `$RUNTIME`folder.",
1794 + "type": "string",
1795 + "const": "fs:scope-runtime-index",
1796 + "markdownDescription": "This scope permits to list all files and folders in the `$RUNTIME`folder."
1797 + },
1798 + {
1799 + "description": "This scope permits recursive access to the complete `$RUNTIME` folder, including sub directories and files.",
1800 + "type": "string",
1801 + "const": "fs:scope-runtime-recursive",
1802 + "markdownDescription": "This scope permits recursive access to the complete `$RUNTIME` folder, including sub directories and files."
1803 + },
1804 + {
1805 + "description": "This scope permits access to all files and list content of top level directories in the `$TEMP` folder.",
1806 + "type": "string",
1807 + "const": "fs:scope-temp",
1808 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$TEMP` folder."
1809 + },
1810 + {
1811 + "description": "This scope permits to list all files and folders in the `$TEMP`folder.",
1812 + "type": "string",
1813 + "const": "fs:scope-temp-index",
1814 + "markdownDescription": "This scope permits to list all files and folders in the `$TEMP`folder."
1815 + },
1816 + {
1817 + "description": "This scope permits recursive access to the complete `$TEMP` folder, including sub directories and files.",
1818 + "type": "string",
1819 + "const": "fs:scope-temp-recursive",
1820 + "markdownDescription": "This scope permits recursive access to the complete `$TEMP` folder, including sub directories and files."
1821 + },
1822 + {
1823 + "description": "This scope permits access to all files and list content of top level directories in the `$TEMPLATE` folder.",
1824 + "type": "string",
1825 + "const": "fs:scope-template",
1826 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$TEMPLATE` folder."
1827 + },
1828 + {
1829 + "description": "This scope permits to list all files and folders in the `$TEMPLATE`folder.",
1830 + "type": "string",
1831 + "const": "fs:scope-template-index",
1832 + "markdownDescription": "This scope permits to list all files and folders in the `$TEMPLATE`folder."
1833 + },
1834 + {
1835 + "description": "This scope permits recursive access to the complete `$TEMPLATE` folder, including sub directories and files.",
1836 + "type": "string",
1837 + "const": "fs:scope-template-recursive",
1838 + "markdownDescription": "This scope permits recursive access to the complete `$TEMPLATE` folder, including sub directories and files."
1839 + },
1840 + {
1841 + "description": "This scope permits access to all files and list content of top level directories in the `$VIDEO` folder.",
1842 + "type": "string",
1843 + "const": "fs:scope-video",
1844 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$VIDEO` folder."
1845 + },
1846 + {
1847 + "description": "This scope permits to list all files and folders in the `$VIDEO`folder.",
1848 + "type": "string",
1849 + "const": "fs:scope-video-index",
1850 + "markdownDescription": "This scope permits to list all files and folders in the `$VIDEO`folder."
1851 + },
1852 + {
1853 + "description": "This scope permits recursive access to the complete `$VIDEO` folder, including sub directories and files.",
1854 + "type": "string",
1855 + "const": "fs:scope-video-recursive",
1856 + "markdownDescription": "This scope permits recursive access to the complete `$VIDEO` folder, including sub directories and files."
1857 + },
1858 + {
1859 + "description": "This enables all write related commands without any pre-configured accessible paths.",
1860 + "type": "string",
1861 + "const": "fs:write-all",
1862 + "markdownDescription": "This enables all write related commands without any pre-configured accessible paths."
1863 + },
1864 + {
1865 + "description": "This enables all file write related commands without any pre-configured accessible paths.",
1866 + "type": "string",
1867 + "const": "fs:write-files",
1868 + "markdownDescription": "This enables all file write related commands without any pre-configured accessible paths."
1869 + }
1870 + ]
1871 + }
1872 + }
1873 + },
1874 + "then": {
1875 + "properties": {
1876 + "allow": {
1877 + "items": {
1878 + "title": "FsScopeEntry",
1879 + "description": "FS scope entry.",
1880 + "anyOf": [
1881 + {
1882 + "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`.",
1883 + "type": "string"
1884 + },
1885 + {
1886 + "type": "object",
1887 + "required": [
1888 + "path"
1889 + ],
1890 + "properties": {
1891 + "path": {
1892 + "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`.",
1893 + "type": "string"
1894 + }
1895 + }
1896 + }
1897 + ]
1898 + }
1899 + },
1900 + "deny": {
1901 + "items": {
1902 + "title": "FsScopeEntry",
1903 + "description": "FS scope entry.",
1904 + "anyOf": [
1905 + {
1906 + "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`.",
1907 + "type": "string"
1908 + },
1909 + {
1910 + "type": "object",
1911 + "required": [
1912 + "path"
1913 + ],
1914 + "properties": {
1915 + "path": {
1916 + "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`.",
1917 + "type": "string"
1918 + }
1919 + }
1920 + }
1921 + ]
1922 + }
1923 + }
1924 + }
1925 + },
1926 + "properties": {
1927 + "identifier": {
1928 + "description": "Identifier of the permission or permission set.",
1929 + "allOf": [
1930 + {
1931 + "$ref": "#/definitions/Identifier"
1932 + }
1933 + ]
1934 + }
1935 + }
1936 + },
1937 {
1938 "properties": {
1939 "identifier": {
@@ -2060,6 +3860,1734 @@
3860 "const": "core:window:deny-unminimize",
3861 "markdownDescription": "Denies the unminimize command without any pre-configured scope."
3862 },
3863 + {
3864 + "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\n#### This default permission set includes:\n\n- `create-app-specific-dirs`\n- `read-app-specific-dirs-recursive`\n- `deny-default`",
3865 + "type": "string",
3866 + "const": "fs:default",
3867 + "markdownDescription": "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\n#### This default permission set includes:\n\n- `create-app-specific-dirs`\n- `read-app-specific-dirs-recursive`\n- `deny-default`"
3868 + },
3869 + {
3870 + "description": "This allows non-recursive read access to metadata of the application folders, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-app-index`",
3871 + "type": "string",
3872 + "const": "fs:allow-app-meta",
3873 + "markdownDescription": "This allows non-recursive read access to metadata of the application folders, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-app-index`"
3874 + },
3875 + {
3876 + "description": "This allows full recursive read access to metadata of the application folders, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-app-recursive`",
3877 + "type": "string",
3878 + "const": "fs:allow-app-meta-recursive",
3879 + "markdownDescription": "This allows full recursive read access to metadata of the application folders, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-app-recursive`"
3880 + },
3881 + {
3882 + "description": "This allows non-recursive read access to the application folders.\n#### This permission set includes:\n\n- `read-all`\n- `scope-app`",
3883 + "type": "string",
3884 + "const": "fs:allow-app-read",
3885 + "markdownDescription": "This allows non-recursive read access to the application folders.\n#### This permission set includes:\n\n- `read-all`\n- `scope-app`"
3886 + },
3887 + {
3888 + "description": "This allows full recursive read access to the complete application folders, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-app-recursive`",
3889 + "type": "string",
3890 + "const": "fs:allow-app-read-recursive",
3891 + "markdownDescription": "This allows full recursive read access to the complete application folders, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-app-recursive`"
3892 + },
3893 + {
3894 + "description": "This allows non-recursive write access to the application folders.\n#### This permission set includes:\n\n- `write-all`\n- `scope-app`",
3895 + "type": "string",
3896 + "const": "fs:allow-app-write",
3897 + "markdownDescription": "This allows non-recursive write access to the application folders.\n#### This permission set includes:\n\n- `write-all`\n- `scope-app`"
3898 + },
3899 + {
3900 + "description": "This allows full recursive write access to the complete application folders, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-app-recursive`",
3901 + "type": "string",
3902 + "const": "fs:allow-app-write-recursive",
3903 + "markdownDescription": "This allows full recursive write access to the complete application folders, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-app-recursive`"
3904 + },
3905 + {
3906 + "description": "This allows non-recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appcache-index`",
3907 + "type": "string",
3908 + "const": "fs:allow-appcache-meta",
3909 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appcache-index`"
3910 + },
3911 + {
3912 + "description": "This allows full recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appcache-recursive`",
3913 + "type": "string",
3914 + "const": "fs:allow-appcache-meta-recursive",
3915 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appcache-recursive`"
3916 + },
3917 + {
3918 + "description": "This allows non-recursive read access to the `$APPCACHE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appcache`",
3919 + "type": "string",
3920 + "const": "fs:allow-appcache-read",
3921 + "markdownDescription": "This allows non-recursive read access to the `$APPCACHE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appcache`"
3922 + },
3923 + {
3924 + "description": "This allows full recursive read access to the complete `$APPCACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appcache-recursive`",
3925 + "type": "string",
3926 + "const": "fs:allow-appcache-read-recursive",
3927 + "markdownDescription": "This allows full recursive read access to the complete `$APPCACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appcache-recursive`"
3928 + },
3929 + {
3930 + "description": "This allows non-recursive write access to the `$APPCACHE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appcache`",
3931 + "type": "string",
3932 + "const": "fs:allow-appcache-write",
3933 + "markdownDescription": "This allows non-recursive write access to the `$APPCACHE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appcache`"
3934 + },
3935 + {
3936 + "description": "This allows full recursive write access to the complete `$APPCACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appcache-recursive`",
3937 + "type": "string",
3938 + "const": "fs:allow-appcache-write-recursive",
3939 + "markdownDescription": "This allows full recursive write access to the complete `$APPCACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appcache-recursive`"
3940 + },
3941 + {
3942 + "description": "This allows non-recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appconfig-index`",
3943 + "type": "string",
3944 + "const": "fs:allow-appconfig-meta",
3945 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appconfig-index`"
3946 + },
3947 + {
3948 + "description": "This allows full recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appconfig-recursive`",
3949 + "type": "string",
3950 + "const": "fs:allow-appconfig-meta-recursive",
3951 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appconfig-recursive`"
3952 + },
3953 + {
3954 + "description": "This allows non-recursive read access to the `$APPCONFIG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appconfig`",
3955 + "type": "string",
3956 + "const": "fs:allow-appconfig-read",
3957 + "markdownDescription": "This allows non-recursive read access to the `$APPCONFIG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appconfig`"
3958 + },
3959 + {
3960 + "description": "This allows full recursive read access to the complete `$APPCONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appconfig-recursive`",
3961 + "type": "string",
3962 + "const": "fs:allow-appconfig-read-recursive",
3963 + "markdownDescription": "This allows full recursive read access to the complete `$APPCONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appconfig-recursive`"
3964 + },
3965 + {
3966 + "description": "This allows non-recursive write access to the `$APPCONFIG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appconfig`",
3967 + "type": "string",
3968 + "const": "fs:allow-appconfig-write",
3969 + "markdownDescription": "This allows non-recursive write access to the `$APPCONFIG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appconfig`"
3970 + },
3971 + {
3972 + "description": "This allows full recursive write access to the complete `$APPCONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appconfig-recursive`",
3973 + "type": "string",
3974 + "const": "fs:allow-appconfig-write-recursive",
3975 + "markdownDescription": "This allows full recursive write access to the complete `$APPCONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appconfig-recursive`"
3976 + },
3977 + {
3978 + "description": "This allows non-recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appdata-index`",
3979 + "type": "string",
3980 + "const": "fs:allow-appdata-meta",
3981 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appdata-index`"
3982 + },
3983 + {
3984 + "description": "This allows full recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appdata-recursive`",
3985 + "type": "string",
3986 + "const": "fs:allow-appdata-meta-recursive",
3987 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-appdata-recursive`"
3988 + },
3989 + {
3990 + "description": "This allows non-recursive read access to the `$APPDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appdata`",
3991 + "type": "string",
3992 + "const": "fs:allow-appdata-read",
3993 + "markdownDescription": "This allows non-recursive read access to the `$APPDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appdata`"
3994 + },
3995 + {
3996 + "description": "This allows full recursive read access to the complete `$APPDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appdata-recursive`",
3997 + "type": "string",
3998 + "const": "fs:allow-appdata-read-recursive",
3999 + "markdownDescription": "This allows full recursive read access to the complete `$APPDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-appdata-recursive`"
4000 + },
4001 + {
4002 + "description": "This allows non-recursive write access to the `$APPDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appdata`",
4003 + "type": "string",
4004 + "const": "fs:allow-appdata-write",
4005 + "markdownDescription": "This allows non-recursive write access to the `$APPDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appdata`"
4006 + },
4007 + {
4008 + "description": "This allows full recursive write access to the complete `$APPDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appdata-recursive`",
4009 + "type": "string",
4010 + "const": "fs:allow-appdata-write-recursive",
4011 + "markdownDescription": "This allows full recursive write access to the complete `$APPDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-appdata-recursive`"
4012 + },
4013 + {
4014 + "description": "This allows non-recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applocaldata-index`",
4015 + "type": "string",
4016 + "const": "fs:allow-applocaldata-meta",
4017 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applocaldata-index`"
4018 + },
4019 + {
4020 + "description": "This allows full recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applocaldata-recursive`",
4021 + "type": "string",
4022 + "const": "fs:allow-applocaldata-meta-recursive",
4023 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applocaldata-recursive`"
4024 + },
4025 + {
4026 + "description": "This allows non-recursive read access to the `$APPLOCALDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applocaldata`",
4027 + "type": "string",
4028 + "const": "fs:allow-applocaldata-read",
4029 + "markdownDescription": "This allows non-recursive read access to the `$APPLOCALDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applocaldata`"
4030 + },
4031 + {
4032 + "description": "This allows full recursive read access to the complete `$APPLOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applocaldata-recursive`",
4033 + "type": "string",
4034 + "const": "fs:allow-applocaldata-read-recursive",
4035 + "markdownDescription": "This allows full recursive read access to the complete `$APPLOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applocaldata-recursive`"
4036 + },
4037 + {
4038 + "description": "This allows non-recursive write access to the `$APPLOCALDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applocaldata`",
4039 + "type": "string",
4040 + "const": "fs:allow-applocaldata-write",
4041 + "markdownDescription": "This allows non-recursive write access to the `$APPLOCALDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applocaldata`"
4042 + },
4043 + {
4044 + "description": "This allows full recursive write access to the complete `$APPLOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applocaldata-recursive`",
4045 + "type": "string",
4046 + "const": "fs:allow-applocaldata-write-recursive",
4047 + "markdownDescription": "This allows full recursive write access to the complete `$APPLOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applocaldata-recursive`"
4048 + },
4049 + {
4050 + "description": "This allows non-recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applog-index`",
4051 + "type": "string",
4052 + "const": "fs:allow-applog-meta",
4053 + "markdownDescription": "This allows non-recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applog-index`"
4054 + },
4055 + {
4056 + "description": "This allows full recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applog-recursive`",
4057 + "type": "string",
4058 + "const": "fs:allow-applog-meta-recursive",
4059 + "markdownDescription": "This allows full recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-applog-recursive`"
4060 + },
4061 + {
4062 + "description": "This allows non-recursive read access to the `$APPLOG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applog`",
4063 + "type": "string",
4064 + "const": "fs:allow-applog-read",
4065 + "markdownDescription": "This allows non-recursive read access to the `$APPLOG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applog`"
4066 + },
4067 + {
4068 + "description": "This allows full recursive read access to the complete `$APPLOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applog-recursive`",
4069 + "type": "string",
4070 + "const": "fs:allow-applog-read-recursive",
4071 + "markdownDescription": "This allows full recursive read access to the complete `$APPLOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-applog-recursive`"
4072 + },
4073 + {
4074 + "description": "This allows non-recursive write access to the `$APPLOG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applog`",
4075 + "type": "string",
4076 + "const": "fs:allow-applog-write",
4077 + "markdownDescription": "This allows non-recursive write access to the `$APPLOG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applog`"
4078 + },
4079 + {
4080 + "description": "This allows full recursive write access to the complete `$APPLOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applog-recursive`",
4081 + "type": "string",
4082 + "const": "fs:allow-applog-write-recursive",
4083 + "markdownDescription": "This allows full recursive write access to the complete `$APPLOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-applog-recursive`"
4084 + },
4085 + {
4086 + "description": "This allows non-recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-audio-index`",
4087 + "type": "string",
4088 + "const": "fs:allow-audio-meta",
4089 + "markdownDescription": "This allows non-recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-audio-index`"
4090 + },
4091 + {
4092 + "description": "This allows full recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-audio-recursive`",
4093 + "type": "string",
4094 + "const": "fs:allow-audio-meta-recursive",
4095 + "markdownDescription": "This allows full recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-audio-recursive`"
4096 + },
4097 + {
4098 + "description": "This allows non-recursive read access to the `$AUDIO` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-audio`",
4099 + "type": "string",
4100 + "const": "fs:allow-audio-read",
4101 + "markdownDescription": "This allows non-recursive read access to the `$AUDIO` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-audio`"
4102 + },
4103 + {
4104 + "description": "This allows full recursive read access to the complete `$AUDIO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-audio-recursive`",
4105 + "type": "string",
4106 + "const": "fs:allow-audio-read-recursive",
4107 + "markdownDescription": "This allows full recursive read access to the complete `$AUDIO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-audio-recursive`"
4108 + },
4109 + {
4110 + "description": "This allows non-recursive write access to the `$AUDIO` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-audio`",
4111 + "type": "string",
4112 + "const": "fs:allow-audio-write",
4113 + "markdownDescription": "This allows non-recursive write access to the `$AUDIO` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-audio`"
4114 + },
4115 + {
4116 + "description": "This allows full recursive write access to the complete `$AUDIO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-audio-recursive`",
4117 + "type": "string",
4118 + "const": "fs:allow-audio-write-recursive",
4119 + "markdownDescription": "This allows full recursive write access to the complete `$AUDIO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-audio-recursive`"
4120 + },
4121 + {
4122 + "description": "This allows non-recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-cache-index`",
4123 + "type": "string",
4124 + "const": "fs:allow-cache-meta",
4125 + "markdownDescription": "This allows non-recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-cache-index`"
4126 + },
4127 + {
4128 + "description": "This allows full recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-cache-recursive`",
4129 + "type": "string",
4130 + "const": "fs:allow-cache-meta-recursive",
4131 + "markdownDescription": "This allows full recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-cache-recursive`"
4132 + },
4133 + {
4134 + "description": "This allows non-recursive read access to the `$CACHE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-cache`",
4135 + "type": "string",
4136 + "const": "fs:allow-cache-read",
4137 + "markdownDescription": "This allows non-recursive read access to the `$CACHE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-cache`"
4138 + },
4139 + {
4140 + "description": "This allows full recursive read access to the complete `$CACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-cache-recursive`",
4141 + "type": "string",
4142 + "const": "fs:allow-cache-read-recursive",
4143 + "markdownDescription": "This allows full recursive read access to the complete `$CACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-cache-recursive`"
4144 + },
4145 + {
4146 + "description": "This allows non-recursive write access to the `$CACHE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-cache`",
4147 + "type": "string",
4148 + "const": "fs:allow-cache-write",
4149 + "markdownDescription": "This allows non-recursive write access to the `$CACHE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-cache`"
4150 + },
4151 + {
4152 + "description": "This allows full recursive write access to the complete `$CACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-cache-recursive`",
4153 + "type": "string",
4154 + "const": "fs:allow-cache-write-recursive",
4155 + "markdownDescription": "This allows full recursive write access to the complete `$CACHE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-cache-recursive`"
4156 + },
4157 + {
4158 + "description": "This allows non-recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-config-index`",
4159 + "type": "string",
4160 + "const": "fs:allow-config-meta",
4161 + "markdownDescription": "This allows non-recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-config-index`"
4162 + },
4163 + {
4164 + "description": "This allows full recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-config-recursive`",
4165 + "type": "string",
4166 + "const": "fs:allow-config-meta-recursive",
4167 + "markdownDescription": "This allows full recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-config-recursive`"
4168 + },
4169 + {
4170 + "description": "This allows non-recursive read access to the `$CONFIG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-config`",
4171 + "type": "string",
4172 + "const": "fs:allow-config-read",
4173 + "markdownDescription": "This allows non-recursive read access to the `$CONFIG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-config`"
4174 + },
4175 + {
4176 + "description": "This allows full recursive read access to the complete `$CONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-config-recursive`",
4177 + "type": "string",
4178 + "const": "fs:allow-config-read-recursive",
4179 + "markdownDescription": "This allows full recursive read access to the complete `$CONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-config-recursive`"
4180 + },
4181 + {
4182 + "description": "This allows non-recursive write access to the `$CONFIG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-config`",
4183 + "type": "string",
4184 + "const": "fs:allow-config-write",
4185 + "markdownDescription": "This allows non-recursive write access to the `$CONFIG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-config`"
4186 + },
4187 + {
4188 + "description": "This allows full recursive write access to the complete `$CONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-config-recursive`",
4189 + "type": "string",
4190 + "const": "fs:allow-config-write-recursive",
4191 + "markdownDescription": "This allows full recursive write access to the complete `$CONFIG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-config-recursive`"
4192 + },
4193 + {
4194 + "description": "This allows non-recursive read access to metadata of the `$DATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-data-index`",
4195 + "type": "string",
4196 + "const": "fs:allow-data-meta",
4197 + "markdownDescription": "This allows non-recursive read access to metadata of the `$DATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-data-index`"
4198 + },
4199 + {
4200 + "description": "This allows full recursive read access to metadata of the `$DATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-data-recursive`",
4201 + "type": "string",
4202 + "const": "fs:allow-data-meta-recursive",
4203 + "markdownDescription": "This allows full recursive read access to metadata of the `$DATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-data-recursive`"
4204 + },
4205 + {
4206 + "description": "This allows non-recursive read access to the `$DATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-data`",
4207 + "type": "string",
4208 + "const": "fs:allow-data-read",
4209 + "markdownDescription": "This allows non-recursive read access to the `$DATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-data`"
4210 + },
4211 + {
4212 + "description": "This allows full recursive read access to the complete `$DATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-data-recursive`",
4213 + "type": "string",
4214 + "const": "fs:allow-data-read-recursive",
4215 + "markdownDescription": "This allows full recursive read access to the complete `$DATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-data-recursive`"
4216 + },
4217 + {
4218 + "description": "This allows non-recursive write access to the `$DATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-data`",
4219 + "type": "string",
4220 + "const": "fs:allow-data-write",
4221 + "markdownDescription": "This allows non-recursive write access to the `$DATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-data`"
4222 + },
4223 + {
4224 + "description": "This allows full recursive write access to the complete `$DATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-data-recursive`",
4225 + "type": "string",
4226 + "const": "fs:allow-data-write-recursive",
4227 + "markdownDescription": "This allows full recursive write access to the complete `$DATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-data-recursive`"
4228 + },
4229 + {
4230 + "description": "This allows non-recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-desktop-index`",
4231 + "type": "string",
4232 + "const": "fs:allow-desktop-meta",
4233 + "markdownDescription": "This allows non-recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-desktop-index`"
4234 + },
4235 + {
4236 + "description": "This allows full recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-desktop-recursive`",
4237 + "type": "string",
4238 + "const": "fs:allow-desktop-meta-recursive",
4239 + "markdownDescription": "This allows full recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-desktop-recursive`"
4240 + },
4241 + {
4242 + "description": "This allows non-recursive read access to the `$DESKTOP` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-desktop`",
4243 + "type": "string",
4244 + "const": "fs:allow-desktop-read",
4245 + "markdownDescription": "This allows non-recursive read access to the `$DESKTOP` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-desktop`"
4246 + },
4247 + {
4248 + "description": "This allows full recursive read access to the complete `$DESKTOP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-desktop-recursive`",
4249 + "type": "string",
4250 + "const": "fs:allow-desktop-read-recursive",
4251 + "markdownDescription": "This allows full recursive read access to the complete `$DESKTOP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-desktop-recursive`"
4252 + },
4253 + {
4254 + "description": "This allows non-recursive write access to the `$DESKTOP` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-desktop`",
4255 + "type": "string",
4256 + "const": "fs:allow-desktop-write",
4257 + "markdownDescription": "This allows non-recursive write access to the `$DESKTOP` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-desktop`"
4258 + },
4259 + {
4260 + "description": "This allows full recursive write access to the complete `$DESKTOP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-desktop-recursive`",
4261 + "type": "string",
4262 + "const": "fs:allow-desktop-write-recursive",
4263 + "markdownDescription": "This allows full recursive write access to the complete `$DESKTOP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-desktop-recursive`"
4264 + },
4265 + {
4266 + "description": "This allows non-recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-document-index`",
4267 + "type": "string",
4268 + "const": "fs:allow-document-meta",
4269 + "markdownDescription": "This allows non-recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-document-index`"
4270 + },
4271 + {
4272 + "description": "This allows full recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-document-recursive`",
4273 + "type": "string",
4274 + "const": "fs:allow-document-meta-recursive",
4275 + "markdownDescription": "This allows full recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-document-recursive`"
4276 + },
4277 + {
4278 + "description": "This allows non-recursive read access to the `$DOCUMENT` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-document`",
4279 + "type": "string",
4280 + "const": "fs:allow-document-read",
4281 + "markdownDescription": "This allows non-recursive read access to the `$DOCUMENT` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-document`"
4282 + },
4283 + {
4284 + "description": "This allows full recursive read access to the complete `$DOCUMENT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-document-recursive`",
4285 + "type": "string",
4286 + "const": "fs:allow-document-read-recursive",
4287 + "markdownDescription": "This allows full recursive read access to the complete `$DOCUMENT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-document-recursive`"
4288 + },
4289 + {
4290 + "description": "This allows non-recursive write access to the `$DOCUMENT` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-document`",
4291 + "type": "string",
4292 + "const": "fs:allow-document-write",
4293 + "markdownDescription": "This allows non-recursive write access to the `$DOCUMENT` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-document`"
4294 + },
4295 + {
4296 + "description": "This allows full recursive write access to the complete `$DOCUMENT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-document-recursive`",
4297 + "type": "string",
4298 + "const": "fs:allow-document-write-recursive",
4299 + "markdownDescription": "This allows full recursive write access to the complete `$DOCUMENT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-document-recursive`"
4300 + },
4301 + {
4302 + "description": "This allows non-recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-download-index`",
4303 + "type": "string",
4304 + "const": "fs:allow-download-meta",
4305 + "markdownDescription": "This allows non-recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-download-index`"
4306 + },
4307 + {
4308 + "description": "This allows full recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-download-recursive`",
4309 + "type": "string",
4310 + "const": "fs:allow-download-meta-recursive",
4311 + "markdownDescription": "This allows full recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-download-recursive`"
4312 + },
4313 + {
4314 + "description": "This allows non-recursive read access to the `$DOWNLOAD` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-download`",
4315 + "type": "string",
4316 + "const": "fs:allow-download-read",
4317 + "markdownDescription": "This allows non-recursive read access to the `$DOWNLOAD` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-download`"
4318 + },
4319 + {
4320 + "description": "This allows full recursive read access to the complete `$DOWNLOAD` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-download-recursive`",
4321 + "type": "string",
4322 + "const": "fs:allow-download-read-recursive",
4323 + "markdownDescription": "This allows full recursive read access to the complete `$DOWNLOAD` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-download-recursive`"
4324 + },
4325 + {
4326 + "description": "This allows non-recursive write access to the `$DOWNLOAD` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-download`",
4327 + "type": "string",
4328 + "const": "fs:allow-download-write",
4329 + "markdownDescription": "This allows non-recursive write access to the `$DOWNLOAD` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-download`"
4330 + },
4331 + {
4332 + "description": "This allows full recursive write access to the complete `$DOWNLOAD` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-download-recursive`",
4333 + "type": "string",
4334 + "const": "fs:allow-download-write-recursive",
4335 + "markdownDescription": "This allows full recursive write access to the complete `$DOWNLOAD` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-download-recursive`"
4336 + },
4337 + {
4338 + "description": "This allows non-recursive read access to metadata of the `$EXE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-exe-index`",
4339 + "type": "string",
4340 + "const": "fs:allow-exe-meta",
4341 + "markdownDescription": "This allows non-recursive read access to metadata of the `$EXE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-exe-index`"
4342 + },
4343 + {
4344 + "description": "This allows full recursive read access to metadata of the `$EXE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-exe-recursive`",
4345 + "type": "string",
4346 + "const": "fs:allow-exe-meta-recursive",
4347 + "markdownDescription": "This allows full recursive read access to metadata of the `$EXE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-exe-recursive`"
4348 + },
4349 + {
4350 + "description": "This allows non-recursive read access to the `$EXE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-exe`",
4351 + "type": "string",
4352 + "const": "fs:allow-exe-read",
4353 + "markdownDescription": "This allows non-recursive read access to the `$EXE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-exe`"
4354 + },
4355 + {
4356 + "description": "This allows full recursive read access to the complete `$EXE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-exe-recursive`",
4357 + "type": "string",
4358 + "const": "fs:allow-exe-read-recursive",
4359 + "markdownDescription": "This allows full recursive read access to the complete `$EXE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-exe-recursive`"
4360 + },
4361 + {
4362 + "description": "This allows non-recursive write access to the `$EXE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-exe`",
4363 + "type": "string",
4364 + "const": "fs:allow-exe-write",
4365 + "markdownDescription": "This allows non-recursive write access to the `$EXE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-exe`"
4366 + },
4367 + {
4368 + "description": "This allows full recursive write access to the complete `$EXE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-exe-recursive`",
4369 + "type": "string",
4370 + "const": "fs:allow-exe-write-recursive",
4371 + "markdownDescription": "This allows full recursive write access to the complete `$EXE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-exe-recursive`"
4372 + },
4373 + {
4374 + "description": "This allows non-recursive read access to metadata of the `$FONT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-font-index`",
4375 + "type": "string",
4376 + "const": "fs:allow-font-meta",
4377 + "markdownDescription": "This allows non-recursive read access to metadata of the `$FONT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-font-index`"
4378 + },
4379 + {
4380 + "description": "This allows full recursive read access to metadata of the `$FONT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-font-recursive`",
4381 + "type": "string",
4382 + "const": "fs:allow-font-meta-recursive",
4383 + "markdownDescription": "This allows full recursive read access to metadata of the `$FONT` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-font-recursive`"
4384 + },
4385 + {
4386 + "description": "This allows non-recursive read access to the `$FONT` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-font`",
4387 + "type": "string",
4388 + "const": "fs:allow-font-read",
4389 + "markdownDescription": "This allows non-recursive read access to the `$FONT` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-font`"
4390 + },
4391 + {
4392 + "description": "This allows full recursive read access to the complete `$FONT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-font-recursive`",
4393 + "type": "string",
4394 + "const": "fs:allow-font-read-recursive",
4395 + "markdownDescription": "This allows full recursive read access to the complete `$FONT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-font-recursive`"
4396 + },
4397 + {
4398 + "description": "This allows non-recursive write access to the `$FONT` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-font`",
4399 + "type": "string",
4400 + "const": "fs:allow-font-write",
4401 + "markdownDescription": "This allows non-recursive write access to the `$FONT` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-font`"
4402 + },
4403 + {
4404 + "description": "This allows full recursive write access to the complete `$FONT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-font-recursive`",
4405 + "type": "string",
4406 + "const": "fs:allow-font-write-recursive",
4407 + "markdownDescription": "This allows full recursive write access to the complete `$FONT` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-font-recursive`"
4408 + },
4409 + {
4410 + "description": "This allows non-recursive read access to metadata of the `$HOME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-home-index`",
4411 + "type": "string",
4412 + "const": "fs:allow-home-meta",
4413 + "markdownDescription": "This allows non-recursive read access to metadata of the `$HOME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-home-index`"
4414 + },
4415 + {
4416 + "description": "This allows full recursive read access to metadata of the `$HOME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-home-recursive`",
4417 + "type": "string",
4418 + "const": "fs:allow-home-meta-recursive",
4419 + "markdownDescription": "This allows full recursive read access to metadata of the `$HOME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-home-recursive`"
4420 + },
4421 + {
4422 + "description": "This allows non-recursive read access to the `$HOME` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-home`",
4423 + "type": "string",
4424 + "const": "fs:allow-home-read",
4425 + "markdownDescription": "This allows non-recursive read access to the `$HOME` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-home`"
4426 + },
4427 + {
4428 + "description": "This allows full recursive read access to the complete `$HOME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-home-recursive`",
4429 + "type": "string",
4430 + "const": "fs:allow-home-read-recursive",
4431 + "markdownDescription": "This allows full recursive read access to the complete `$HOME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-home-recursive`"
4432 + },
4433 + {
4434 + "description": "This allows non-recursive write access to the `$HOME` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-home`",
4435 + "type": "string",
4436 + "const": "fs:allow-home-write",
4437 + "markdownDescription": "This allows non-recursive write access to the `$HOME` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-home`"
4438 + },
4439 + {
4440 + "description": "This allows full recursive write access to the complete `$HOME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-home-recursive`",
4441 + "type": "string",
4442 + "const": "fs:allow-home-write-recursive",
4443 + "markdownDescription": "This allows full recursive write access to the complete `$HOME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-home-recursive`"
4444 + },
4445 + {
4446 + "description": "This allows non-recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-localdata-index`",
4447 + "type": "string",
4448 + "const": "fs:allow-localdata-meta",
4449 + "markdownDescription": "This allows non-recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-localdata-index`"
4450 + },
4451 + {
4452 + "description": "This allows full recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-localdata-recursive`",
4453 + "type": "string",
4454 + "const": "fs:allow-localdata-meta-recursive",
4455 + "markdownDescription": "This allows full recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-localdata-recursive`"
4456 + },
4457 + {
4458 + "description": "This allows non-recursive read access to the `$LOCALDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-localdata`",
4459 + "type": "string",
4460 + "const": "fs:allow-localdata-read",
4461 + "markdownDescription": "This allows non-recursive read access to the `$LOCALDATA` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-localdata`"
4462 + },
4463 + {
4464 + "description": "This allows full recursive read access to the complete `$LOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-localdata-recursive`",
4465 + "type": "string",
4466 + "const": "fs:allow-localdata-read-recursive",
4467 + "markdownDescription": "This allows full recursive read access to the complete `$LOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-localdata-recursive`"
4468 + },
4469 + {
4470 + "description": "This allows non-recursive write access to the `$LOCALDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-localdata`",
4471 + "type": "string",
4472 + "const": "fs:allow-localdata-write",
4473 + "markdownDescription": "This allows non-recursive write access to the `$LOCALDATA` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-localdata`"
4474 + },
4475 + {
4476 + "description": "This allows full recursive write access to the complete `$LOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-localdata-recursive`",
4477 + "type": "string",
4478 + "const": "fs:allow-localdata-write-recursive",
4479 + "markdownDescription": "This allows full recursive write access to the complete `$LOCALDATA` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-localdata-recursive`"
4480 + },
4481 + {
4482 + "description": "This allows non-recursive read access to metadata of the `$LOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-log-index`",
4483 + "type": "string",
4484 + "const": "fs:allow-log-meta",
4485 + "markdownDescription": "This allows non-recursive read access to metadata of the `$LOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-log-index`"
4486 + },
4487 + {
4488 + "description": "This allows full recursive read access to metadata of the `$LOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-log-recursive`",
4489 + "type": "string",
4490 + "const": "fs:allow-log-meta-recursive",
4491 + "markdownDescription": "This allows full recursive read access to metadata of the `$LOG` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-log-recursive`"
4492 + },
4493 + {
4494 + "description": "This allows non-recursive read access to the `$LOG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-log`",
4495 + "type": "string",
4496 + "const": "fs:allow-log-read",
4497 + "markdownDescription": "This allows non-recursive read access to the `$LOG` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-log`"
4498 + },
4499 + {
4500 + "description": "This allows full recursive read access to the complete `$LOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-log-recursive`",
4501 + "type": "string",
4502 + "const": "fs:allow-log-read-recursive",
4503 + "markdownDescription": "This allows full recursive read access to the complete `$LOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-log-recursive`"
4504 + },
4505 + {
4506 + "description": "This allows non-recursive write access to the `$LOG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-log`",
4507 + "type": "string",
4508 + "const": "fs:allow-log-write",
4509 + "markdownDescription": "This allows non-recursive write access to the `$LOG` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-log`"
4510 + },
4511 + {
4512 + "description": "This allows full recursive write access to the complete `$LOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-log-recursive`",
4513 + "type": "string",
4514 + "const": "fs:allow-log-write-recursive",
4515 + "markdownDescription": "This allows full recursive write access to the complete `$LOG` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-log-recursive`"
4516 + },
4517 + {
4518 + "description": "This allows non-recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-picture-index`",
4519 + "type": "string",
4520 + "const": "fs:allow-picture-meta",
4521 + "markdownDescription": "This allows non-recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-picture-index`"
4522 + },
4523 + {
4524 + "description": "This allows full recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-picture-recursive`",
4525 + "type": "string",
4526 + "const": "fs:allow-picture-meta-recursive",
4527 + "markdownDescription": "This allows full recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-picture-recursive`"
4528 + },
4529 + {
4530 + "description": "This allows non-recursive read access to the `$PICTURE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-picture`",
4531 + "type": "string",
4532 + "const": "fs:allow-picture-read",
4533 + "markdownDescription": "This allows non-recursive read access to the `$PICTURE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-picture`"
4534 + },
4535 + {
4536 + "description": "This allows full recursive read access to the complete `$PICTURE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-picture-recursive`",
4537 + "type": "string",
4538 + "const": "fs:allow-picture-read-recursive",
4539 + "markdownDescription": "This allows full recursive read access to the complete `$PICTURE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-picture-recursive`"
4540 + },
4541 + {
4542 + "description": "This allows non-recursive write access to the `$PICTURE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-picture`",
4543 + "type": "string",
4544 + "const": "fs:allow-picture-write",
4545 + "markdownDescription": "This allows non-recursive write access to the `$PICTURE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-picture`"
4546 + },
4547 + {
4548 + "description": "This allows full recursive write access to the complete `$PICTURE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-picture-recursive`",
4549 + "type": "string",
4550 + "const": "fs:allow-picture-write-recursive",
4551 + "markdownDescription": "This allows full recursive write access to the complete `$PICTURE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-picture-recursive`"
4552 + },
4553 + {
4554 + "description": "This allows non-recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-public-index`",
4555 + "type": "string",
4556 + "const": "fs:allow-public-meta",
4557 + "markdownDescription": "This allows non-recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-public-index`"
4558 + },
4559 + {
4560 + "description": "This allows full recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-public-recursive`",
4561 + "type": "string",
4562 + "const": "fs:allow-public-meta-recursive",
4563 + "markdownDescription": "This allows full recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-public-recursive`"
4564 + },
4565 + {
4566 + "description": "This allows non-recursive read access to the `$PUBLIC` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-public`",
4567 + "type": "string",
4568 + "const": "fs:allow-public-read",
4569 + "markdownDescription": "This allows non-recursive read access to the `$PUBLIC` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-public`"
4570 + },
4571 + {
4572 + "description": "This allows full recursive read access to the complete `$PUBLIC` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-public-recursive`",
4573 + "type": "string",
4574 + "const": "fs:allow-public-read-recursive",
4575 + "markdownDescription": "This allows full recursive read access to the complete `$PUBLIC` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-public-recursive`"
4576 + },
4577 + {
4578 + "description": "This allows non-recursive write access to the `$PUBLIC` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-public`",
4579 + "type": "string",
4580 + "const": "fs:allow-public-write",
4581 + "markdownDescription": "This allows non-recursive write access to the `$PUBLIC` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-public`"
4582 + },
4583 + {
4584 + "description": "This allows full recursive write access to the complete `$PUBLIC` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-public-recursive`",
4585 + "type": "string",
4586 + "const": "fs:allow-public-write-recursive",
4587 + "markdownDescription": "This allows full recursive write access to the complete `$PUBLIC` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-public-recursive`"
4588 + },
4589 + {
4590 + "description": "This allows non-recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-resource-index`",
4591 + "type": "string",
4592 + "const": "fs:allow-resource-meta",
4593 + "markdownDescription": "This allows non-recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-resource-index`"
4594 + },
4595 + {
4596 + "description": "This allows full recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-resource-recursive`",
4597 + "type": "string",
4598 + "const": "fs:allow-resource-meta-recursive",
4599 + "markdownDescription": "This allows full recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-resource-recursive`"
4600 + },
4601 + {
4602 + "description": "This allows non-recursive read access to the `$RESOURCE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-resource`",
4603 + "type": "string",
4604 + "const": "fs:allow-resource-read",
4605 + "markdownDescription": "This allows non-recursive read access to the `$RESOURCE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-resource`"
4606 + },
4607 + {
4608 + "description": "This allows full recursive read access to the complete `$RESOURCE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-resource-recursive`",
4609 + "type": "string",
4610 + "const": "fs:allow-resource-read-recursive",
4611 + "markdownDescription": "This allows full recursive read access to the complete `$RESOURCE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-resource-recursive`"
4612 + },
4613 + {
4614 + "description": "This allows non-recursive write access to the `$RESOURCE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-resource`",
4615 + "type": "string",
4616 + "const": "fs:allow-resource-write",
4617 + "markdownDescription": "This allows non-recursive write access to the `$RESOURCE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-resource`"
4618 + },
4619 + {
4620 + "description": "This allows full recursive write access to the complete `$RESOURCE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-resource-recursive`",
4621 + "type": "string",
4622 + "const": "fs:allow-resource-write-recursive",
4623 + "markdownDescription": "This allows full recursive write access to the complete `$RESOURCE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-resource-recursive`"
4624 + },
4625 + {
4626 + "description": "This allows non-recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-runtime-index`",
4627 + "type": "string",
4628 + "const": "fs:allow-runtime-meta",
4629 + "markdownDescription": "This allows non-recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-runtime-index`"
4630 + },
4631 + {
4632 + "description": "This allows full recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-runtime-recursive`",
4633 + "type": "string",
4634 + "const": "fs:allow-runtime-meta-recursive",
4635 + "markdownDescription": "This allows full recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-runtime-recursive`"
4636 + },
4637 + {
4638 + "description": "This allows non-recursive read access to the `$RUNTIME` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-runtime`",
4639 + "type": "string",
4640 + "const": "fs:allow-runtime-read",
4641 + "markdownDescription": "This allows non-recursive read access to the `$RUNTIME` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-runtime`"
4642 + },
4643 + {
4644 + "description": "This allows full recursive read access to the complete `$RUNTIME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-runtime-recursive`",
4645 + "type": "string",
4646 + "const": "fs:allow-runtime-read-recursive",
4647 + "markdownDescription": "This allows full recursive read access to the complete `$RUNTIME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-runtime-recursive`"
4648 + },
4649 + {
4650 + "description": "This allows non-recursive write access to the `$RUNTIME` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-runtime`",
4651 + "type": "string",
4652 + "const": "fs:allow-runtime-write",
4653 + "markdownDescription": "This allows non-recursive write access to the `$RUNTIME` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-runtime`"
4654 + },
4655 + {
4656 + "description": "This allows full recursive write access to the complete `$RUNTIME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-runtime-recursive`",
4657 + "type": "string",
4658 + "const": "fs:allow-runtime-write-recursive",
4659 + "markdownDescription": "This allows full recursive write access to the complete `$RUNTIME` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-runtime-recursive`"
4660 + },
4661 + {
4662 + "description": "This allows non-recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-temp-index`",
4663 + "type": "string",
4664 + "const": "fs:allow-temp-meta",
4665 + "markdownDescription": "This allows non-recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-temp-index`"
4666 + },
4667 + {
4668 + "description": "This allows full recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-temp-recursive`",
4669 + "type": "string",
4670 + "const": "fs:allow-temp-meta-recursive",
4671 + "markdownDescription": "This allows full recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-temp-recursive`"
4672 + },
4673 + {
4674 + "description": "This allows non-recursive read access to the `$TEMP` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-temp`",
4675 + "type": "string",
4676 + "const": "fs:allow-temp-read",
4677 + "markdownDescription": "This allows non-recursive read access to the `$TEMP` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-temp`"
4678 + },
4679 + {
4680 + "description": "This allows full recursive read access to the complete `$TEMP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-temp-recursive`",
4681 + "type": "string",
4682 + "const": "fs:allow-temp-read-recursive",
4683 + "markdownDescription": "This allows full recursive read access to the complete `$TEMP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-temp-recursive`"
4684 + },
4685 + {
4686 + "description": "This allows non-recursive write access to the `$TEMP` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-temp`",
4687 + "type": "string",
4688 + "const": "fs:allow-temp-write",
4689 + "markdownDescription": "This allows non-recursive write access to the `$TEMP` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-temp`"
4690 + },
4691 + {
4692 + "description": "This allows full recursive write access to the complete `$TEMP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-temp-recursive`",
4693 + "type": "string",
4694 + "const": "fs:allow-temp-write-recursive",
4695 + "markdownDescription": "This allows full recursive write access to the complete `$TEMP` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-temp-recursive`"
4696 + },
4697 + {
4698 + "description": "This allows non-recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-template-index`",
4699 + "type": "string",
4700 + "const": "fs:allow-template-meta",
4701 + "markdownDescription": "This allows non-recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-template-index`"
4702 + },
4703 + {
4704 + "description": "This allows full recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-template-recursive`",
4705 + "type": "string",
4706 + "const": "fs:allow-template-meta-recursive",
4707 + "markdownDescription": "This allows full recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-template-recursive`"
4708 + },
4709 + {
4710 + "description": "This allows non-recursive read access to the `$TEMPLATE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-template`",
4711 + "type": "string",
4712 + "const": "fs:allow-template-read",
4713 + "markdownDescription": "This allows non-recursive read access to the `$TEMPLATE` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-template`"
4714 + },
4715 + {
4716 + "description": "This allows full recursive read access to the complete `$TEMPLATE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-template-recursive`",
4717 + "type": "string",
4718 + "const": "fs:allow-template-read-recursive",
4719 + "markdownDescription": "This allows full recursive read access to the complete `$TEMPLATE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-template-recursive`"
4720 + },
4721 + {
4722 + "description": "This allows non-recursive write access to the `$TEMPLATE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-template`",
4723 + "type": "string",
4724 + "const": "fs:allow-template-write",
4725 + "markdownDescription": "This allows non-recursive write access to the `$TEMPLATE` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-template`"
4726 + },
4727 + {
4728 + "description": "This allows full recursive write access to the complete `$TEMPLATE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-template-recursive`",
4729 + "type": "string",
4730 + "const": "fs:allow-template-write-recursive",
4731 + "markdownDescription": "This allows full recursive write access to the complete `$TEMPLATE` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-template-recursive`"
4732 + },
4733 + {
4734 + "description": "This allows non-recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-video-index`",
4735 + "type": "string",
4736 + "const": "fs:allow-video-meta",
4737 + "markdownDescription": "This allows non-recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-video-index`"
4738 + },
4739 + {
4740 + "description": "This allows full recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-video-recursive`",
4741 + "type": "string",
4742 + "const": "fs:allow-video-meta-recursive",
4743 + "markdownDescription": "This allows full recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.\n#### This permission set includes:\n\n- `read-meta`\n- `scope-video-recursive`"
4744 + },
4745 + {
4746 + "description": "This allows non-recursive read access to the `$VIDEO` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-video`",
4747 + "type": "string",
4748 + "const": "fs:allow-video-read",
4749 + "markdownDescription": "This allows non-recursive read access to the `$VIDEO` folder.\n#### This permission set includes:\n\n- `read-all`\n- `scope-video`"
4750 + },
4751 + {
4752 + "description": "This allows full recursive read access to the complete `$VIDEO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-video-recursive`",
4753 + "type": "string",
4754 + "const": "fs:allow-video-read-recursive",
4755 + "markdownDescription": "This allows full recursive read access to the complete `$VIDEO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `read-all`\n- `scope-video-recursive`"
4756 + },
4757 + {
4758 + "description": "This allows non-recursive write access to the `$VIDEO` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-video`",
4759 + "type": "string",
4760 + "const": "fs:allow-video-write",
4761 + "markdownDescription": "This allows non-recursive write access to the `$VIDEO` folder.\n#### This permission set includes:\n\n- `write-all`\n- `scope-video`"
4762 + },
4763 + {
4764 + "description": "This allows full recursive write access to the complete `$VIDEO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-video-recursive`",
4765 + "type": "string",
4766 + "const": "fs:allow-video-write-recursive",
4767 + "markdownDescription": "This allows full recursive write access to the complete `$VIDEO` folder, files and subdirectories.\n#### This permission set includes:\n\n- `write-all`\n- `scope-video-recursive`"
4768 + },
4769 + {
4770 + "description": "This denies access to dangerous Tauri relevant files and folders by default.\n#### This permission set includes:\n\n- `deny-webview-data-linux`\n- `deny-webview-data-windows`",
4771 + "type": "string",
4772 + "const": "fs:deny-default",
4773 + "markdownDescription": "This denies access to dangerous Tauri relevant files and folders by default.\n#### This permission set includes:\n\n- `deny-webview-data-linux`\n- `deny-webview-data-windows`"
4774 + },
4775 + {
4776 + "description": "Enables the copy_file command without any pre-configured scope.",
4777 + "type": "string",
4778 + "const": "fs:allow-copy-file",
4779 + "markdownDescription": "Enables the copy_file command without any pre-configured scope."
4780 + },
4781 + {
4782 + "description": "Enables the create command without any pre-configured scope.",
4783 + "type": "string",
4784 + "const": "fs:allow-create",
4785 + "markdownDescription": "Enables the create command without any pre-configured scope."
4786 + },
4787 + {
4788 + "description": "Enables the exists command without any pre-configured scope.",
4789 + "type": "string",
4790 + "const": "fs:allow-exists",
4791 + "markdownDescription": "Enables the exists command without any pre-configured scope."
4792 + },
4793 + {
4794 + "description": "Enables the fstat command without any pre-configured scope.",
4795 + "type": "string",
4796 + "const": "fs:allow-fstat",
4797 + "markdownDescription": "Enables the fstat command without any pre-configured scope."
4798 + },
4799 + {
4800 + "description": "Enables the ftruncate command without any pre-configured scope.",
4801 + "type": "string",
4802 + "const": "fs:allow-ftruncate",
4803 + "markdownDescription": "Enables the ftruncate command without any pre-configured scope."
4804 + },
4805 + {
4806 + "description": "Enables the lstat command without any pre-configured scope.",
4807 + "type": "string",
4808 + "const": "fs:allow-lstat",
4809 + "markdownDescription": "Enables the lstat command without any pre-configured scope."
4810 + },
4811 + {
4812 + "description": "Enables the mkdir command without any pre-configured scope.",
4813 + "type": "string",
4814 + "const": "fs:allow-mkdir",
4815 + "markdownDescription": "Enables the mkdir command without any pre-configured scope."
4816 + },
4817 + {
4818 + "description": "Enables the open command without any pre-configured scope.",
4819 + "type": "string",
4820 + "const": "fs:allow-open",
4821 + "markdownDescription": "Enables the open command without any pre-configured scope."
4822 + },
4823 + {
4824 + "description": "Enables the read command without any pre-configured scope.",
4825 + "type": "string",
4826 + "const": "fs:allow-read",
4827 + "markdownDescription": "Enables the read command without any pre-configured scope."
4828 + },
4829 + {
4830 + "description": "Enables the read_dir command without any pre-configured scope.",
4831 + "type": "string",
4832 + "const": "fs:allow-read-dir",
4833 + "markdownDescription": "Enables the read_dir command without any pre-configured scope."
4834 + },
4835 + {
4836 + "description": "Enables the read_file command without any pre-configured scope.",
4837 + "type": "string",
4838 + "const": "fs:allow-read-file",
4839 + "markdownDescription": "Enables the read_file command without any pre-configured scope."
4840 + },
4841 + {
4842 + "description": "Enables the read_text_file command without any pre-configured scope.",
4843 + "type": "string",
4844 + "const": "fs:allow-read-text-file",
4845 + "markdownDescription": "Enables the read_text_file command without any pre-configured scope."
4846 + },
4847 + {
4848 + "description": "Enables the read_text_file_lines command without any pre-configured scope.",
4849 + "type": "string",
4850 + "const": "fs:allow-read-text-file-lines",
4851 + "markdownDescription": "Enables the read_text_file_lines command without any pre-configured scope."
4852 + },
4853 + {
4854 + "description": "Enables the read_text_file_lines_next command without any pre-configured scope.",
4855 + "type": "string",
4856 + "const": "fs:allow-read-text-file-lines-next",
4857 + "markdownDescription": "Enables the read_text_file_lines_next command without any pre-configured scope."
4858 + },
4859 + {
4860 + "description": "Enables the remove command without any pre-configured scope.",
4861 + "type": "string",
4862 + "const": "fs:allow-remove",
4863 + "markdownDescription": "Enables the remove command without any pre-configured scope."
4864 + },
4865 + {
4866 + "description": "Enables the rename command without any pre-configured scope.",
4867 + "type": "string",
4868 + "const": "fs:allow-rename",
4869 + "markdownDescription": "Enables the rename command without any pre-configured scope."
4870 + },
4871 + {
4872 + "description": "Enables the seek command without any pre-configured scope.",
4873 + "type": "string",
4874 + "const": "fs:allow-seek",
4875 + "markdownDescription": "Enables the seek command without any pre-configured scope."
4876 + },
4877 + {
4878 + "description": "Enables the size command without any pre-configured scope.",
4879 + "type": "string",
4880 + "const": "fs:allow-size",
4881 + "markdownDescription": "Enables the size command without any pre-configured scope."
4882 + },
4883 + {
4884 + "description": "Enables the stat command without any pre-configured scope.",
4885 + "type": "string",
4886 + "const": "fs:allow-stat",
4887 + "markdownDescription": "Enables the stat command without any pre-configured scope."
4888 + },
4889 + {
4890 + "description": "Enables the truncate command without any pre-configured scope.",
4891 + "type": "string",
4892 + "const": "fs:allow-truncate",
4893 + "markdownDescription": "Enables the truncate command without any pre-configured scope."
4894 + },
4895 + {
4896 + "description": "Enables the unwatch command without any pre-configured scope.",
4897 + "type": "string",
4898 + "const": "fs:allow-unwatch",
4899 + "markdownDescription": "Enables the unwatch command without any pre-configured scope."
4900 + },
4901 + {
4902 + "description": "Enables the watch command without any pre-configured scope.",
4903 + "type": "string",
4904 + "const": "fs:allow-watch",
4905 + "markdownDescription": "Enables the watch command without any pre-configured scope."
4906 + },
4907 + {
4908 + "description": "Enables the write command without any pre-configured scope.",
4909 + "type": "string",
4910 + "const": "fs:allow-write",
4911 + "markdownDescription": "Enables the write command without any pre-configured scope."
4912 + },
4913 + {
4914 + "description": "Enables the write_file command without any pre-configured scope.",
4915 + "type": "string",
4916 + "const": "fs:allow-write-file",
4917 + "markdownDescription": "Enables the write_file command without any pre-configured scope."
4918 + },
4919 + {
4920 + "description": "Enables the write_text_file command without any pre-configured scope.",
4921 + "type": "string",
4922 + "const": "fs:allow-write-text-file",
4923 + "markdownDescription": "Enables the write_text_file command without any pre-configured scope."
4924 + },
4925 + {
4926 + "description": "This permissions allows to create the application specific directories.\n",
4927 + "type": "string",
4928 + "const": "fs:create-app-specific-dirs",
4929 + "markdownDescription": "This permissions allows to create the application specific directories.\n"
4930 + },
4931 + {
4932 + "description": "Denies the copy_file command without any pre-configured scope.",
4933 + "type": "string",
4934 + "const": "fs:deny-copy-file",
4935 + "markdownDescription": "Denies the copy_file command without any pre-configured scope."
4936 + },
4937 + {
4938 + "description": "Denies the create command without any pre-configured scope.",
4939 + "type": "string",
4940 + "const": "fs:deny-create",
4941 + "markdownDescription": "Denies the create command without any pre-configured scope."
4942 + },
4943 + {
4944 + "description": "Denies the exists command without any pre-configured scope.",
4945 + "type": "string",
4946 + "const": "fs:deny-exists",
4947 + "markdownDescription": "Denies the exists command without any pre-configured scope."
4948 + },
4949 + {
4950 + "description": "Denies the fstat command without any pre-configured scope.",
4951 + "type": "string",
4952 + "const": "fs:deny-fstat",
4953 + "markdownDescription": "Denies the fstat command without any pre-configured scope."
4954 + },
4955 + {
4956 + "description": "Denies the ftruncate command without any pre-configured scope.",
4957 + "type": "string",
4958 + "const": "fs:deny-ftruncate",
4959 + "markdownDescription": "Denies the ftruncate command without any pre-configured scope."
4960 + },
4961 + {
4962 + "description": "Denies the lstat command without any pre-configured scope.",
4963 + "type": "string",
4964 + "const": "fs:deny-lstat",
4965 + "markdownDescription": "Denies the lstat command without any pre-configured scope."
4966 + },
4967 + {
4968 + "description": "Denies the mkdir command without any pre-configured scope.",
4969 + "type": "string",
4970 + "const": "fs:deny-mkdir",
4971 + "markdownDescription": "Denies the mkdir command without any pre-configured scope."
4972 + },
4973 + {
4974 + "description": "Denies the open command without any pre-configured scope.",
4975 + "type": "string",
4976 + "const": "fs:deny-open",
4977 + "markdownDescription": "Denies the open command without any pre-configured scope."
4978 + },
4979 + {
4980 + "description": "Denies the read command without any pre-configured scope.",
4981 + "type": "string",
4982 + "const": "fs:deny-read",
4983 + "markdownDescription": "Denies the read command without any pre-configured scope."
4984 + },
4985 + {
4986 + "description": "Denies the read_dir command without any pre-configured scope.",
4987 + "type": "string",
4988 + "const": "fs:deny-read-dir",
4989 + "markdownDescription": "Denies the read_dir command without any pre-configured scope."
4990 + },
4991 + {
4992 + "description": "Denies the read_file command without any pre-configured scope.",
4993 + "type": "string",
4994 + "const": "fs:deny-read-file",
4995 + "markdownDescription": "Denies the read_file command without any pre-configured scope."
4996 + },
4997 + {
4998 + "description": "Denies the read_text_file command without any pre-configured scope.",
4999 + "type": "string",
5000 + "const": "fs:deny-read-text-file",
5001 + "markdownDescription": "Denies the read_text_file command without any pre-configured scope."
5002 + },
5003 + {
5004 + "description": "Denies the read_text_file_lines command without any pre-configured scope.",
5005 + "type": "string",
5006 + "const": "fs:deny-read-text-file-lines",
5007 + "markdownDescription": "Denies the read_text_file_lines command without any pre-configured scope."
5008 + },
5009 + {
5010 + "description": "Denies the read_text_file_lines_next command without any pre-configured scope.",
5011 + "type": "string",
5012 + "const": "fs:deny-read-text-file-lines-next",
5013 + "markdownDescription": "Denies the read_text_file_lines_next command without any pre-configured scope."
5014 + },
5015 + {
5016 + "description": "Denies the remove command without any pre-configured scope.",
5017 + "type": "string",
5018 + "const": "fs:deny-remove",
5019 + "markdownDescription": "Denies the remove command without any pre-configured scope."
5020 + },
5021 + {
5022 + "description": "Denies the rename command without any pre-configured scope.",
5023 + "type": "string",
5024 + "const": "fs:deny-rename",
5025 + "markdownDescription": "Denies the rename command without any pre-configured scope."
5026 + },
5027 + {
5028 + "description": "Denies the seek command without any pre-configured scope.",
5029 + "type": "string",
5030 + "const": "fs:deny-seek",
5031 + "markdownDescription": "Denies the seek command without any pre-configured scope."
5032 + },
5033 + {
5034 + "description": "Denies the size command without any pre-configured scope.",
5035 + "type": "string",
5036 + "const": "fs:deny-size",
5037 + "markdownDescription": "Denies the size command without any pre-configured scope."
5038 + },
5039 + {
5040 + "description": "Denies the stat command without any pre-configured scope.",
5041 + "type": "string",
5042 + "const": "fs:deny-stat",
5043 + "markdownDescription": "Denies the stat command without any pre-configured scope."
5044 + },
5045 + {
5046 + "description": "Denies the truncate command without any pre-configured scope.",
5047 + "type": "string",
5048 + "const": "fs:deny-truncate",
5049 + "markdownDescription": "Denies the truncate command without any pre-configured scope."
5050 + },
5051 + {
5052 + "description": "Denies the unwatch command without any pre-configured scope.",
5053 + "type": "string",
5054 + "const": "fs:deny-unwatch",
5055 + "markdownDescription": "Denies the unwatch command without any pre-configured scope."
5056 + },
5057 + {
5058 + "description": "Denies the watch command without any pre-configured scope.",
5059 + "type": "string",
5060 + "const": "fs:deny-watch",
5061 + "markdownDescription": "Denies the watch command without any pre-configured scope."
5062 + },
5063 + {
5064 + "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.",
5065 + "type": "string",
5066 + "const": "fs:deny-webview-data-linux",
5067 + "markdownDescription": "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."
5068 + },
5069 + {
5070 + "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.",
5071 + "type": "string",
5072 + "const": "fs:deny-webview-data-windows",
5073 + "markdownDescription": "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."
5074 + },
5075 + {
5076 + "description": "Denies the write command without any pre-configured scope.",
5077 + "type": "string",
5078 + "const": "fs:deny-write",
5079 + "markdownDescription": "Denies the write command without any pre-configured scope."
5080 + },
5081 + {
5082 + "description": "Denies the write_file command without any pre-configured scope.",
5083 + "type": "string",
5084 + "const": "fs:deny-write-file",
5085 + "markdownDescription": "Denies the write_file command without any pre-configured scope."
5086 + },
5087 + {
5088 + "description": "Denies the write_text_file command without any pre-configured scope.",
5089 + "type": "string",
5090 + "const": "fs:deny-write-text-file",
5091 + "markdownDescription": "Denies the write_text_file command without any pre-configured scope."
5092 + },
5093 + {
5094 + "description": "This enables all read related commands without any pre-configured accessible paths.",
5095 + "type": "string",
5096 + "const": "fs:read-all",
5097 + "markdownDescription": "This enables all read related commands without any pre-configured accessible paths."
5098 + },
5099 + {
5100 + "description": "This permission allows recursive read functionality on the application\nspecific base directories. \n",
5101 + "type": "string",
5102 + "const": "fs:read-app-specific-dirs-recursive",
5103 + "markdownDescription": "This permission allows recursive read functionality on the application\nspecific base directories. \n"
5104 + },
5105 + {
5106 + "description": "This enables directory read and file metadata related commands without any pre-configured accessible paths.",
5107 + "type": "string",
5108 + "const": "fs:read-dirs",
5109 + "markdownDescription": "This enables directory read and file metadata related commands without any pre-configured accessible paths."
5110 + },
5111 + {
5112 + "description": "This enables file read related commands without any pre-configured accessible paths.",
5113 + "type": "string",
5114 + "const": "fs:read-files",
5115 + "markdownDescription": "This enables file read related commands without any pre-configured accessible paths."
5116 + },
5117 + {
5118 + "description": "This enables all index or metadata related commands without any pre-configured accessible paths.",
5119 + "type": "string",
5120 + "const": "fs:read-meta",
5121 + "markdownDescription": "This enables all index or metadata related commands without any pre-configured accessible paths."
5122 + },
5123 + {
5124 + "description": "An empty permission you can use to modify the global scope.",
5125 + "type": "string",
5126 + "const": "fs:scope",
5127 + "markdownDescription": "An empty permission you can use to modify the global scope."
5128 + },
5129 + {
5130 + "description": "This scope permits access to all files and list content of top level directories in the application folders.",
5131 + "type": "string",
5132 + "const": "fs:scope-app",
5133 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the application folders."
5134 + },
5135 + {
5136 + "description": "This scope permits to list all files and folders in the application directories.",
5137 + "type": "string",
5138 + "const": "fs:scope-app-index",
5139 + "markdownDescription": "This scope permits to list all files and folders in the application directories."
5140 + },
5141 + {
5142 + "description": "This scope permits recursive access to the complete application folders, including sub directories and files.",
5143 + "type": "string",
5144 + "const": "fs:scope-app-recursive",
5145 + "markdownDescription": "This scope permits recursive access to the complete application folders, including sub directories and files."
5146 + },
5147 + {
5148 + "description": "This scope permits access to all files and list content of top level directories in the `$APPCACHE` folder.",
5149 + "type": "string",
5150 + "const": "fs:scope-appcache",
5151 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPCACHE` folder."
5152 + },
5153 + {
5154 + "description": "This scope permits to list all files and folders in the `$APPCACHE`folder.",
5155 + "type": "string",
5156 + "const": "fs:scope-appcache-index",
5157 + "markdownDescription": "This scope permits to list all files and folders in the `$APPCACHE`folder."
5158 + },
5159 + {
5160 + "description": "This scope permits recursive access to the complete `$APPCACHE` folder, including sub directories and files.",
5161 + "type": "string",
5162 + "const": "fs:scope-appcache-recursive",
5163 + "markdownDescription": "This scope permits recursive access to the complete `$APPCACHE` folder, including sub directories and files."
5164 + },
5165 + {
5166 + "description": "This scope permits access to all files and list content of top level directories in the `$APPCONFIG` folder.",
5167 + "type": "string",
5168 + "const": "fs:scope-appconfig",
5169 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPCONFIG` folder."
5170 + },
5171 + {
5172 + "description": "This scope permits to list all files and folders in the `$APPCONFIG`folder.",
5173 + "type": "string",
5174 + "const": "fs:scope-appconfig-index",
5175 + "markdownDescription": "This scope permits to list all files and folders in the `$APPCONFIG`folder."
5176 + },
5177 + {
5178 + "description": "This scope permits recursive access to the complete `$APPCONFIG` folder, including sub directories and files.",
5179 + "type": "string",
5180 + "const": "fs:scope-appconfig-recursive",
5181 + "markdownDescription": "This scope permits recursive access to the complete `$APPCONFIG` folder, including sub directories and files."
5182 + },
5183 + {
5184 + "description": "This scope permits access to all files and list content of top level directories in the `$APPDATA` folder.",
5185 + "type": "string",
5186 + "const": "fs:scope-appdata",
5187 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPDATA` folder."
5188 + },
5189 + {
5190 + "description": "This scope permits to list all files and folders in the `$APPDATA`folder.",
5191 + "type": "string",
5192 + "const": "fs:scope-appdata-index",
5193 + "markdownDescription": "This scope permits to list all files and folders in the `$APPDATA`folder."
5194 + },
5195 + {
5196 + "description": "This scope permits recursive access to the complete `$APPDATA` folder, including sub directories and files.",
5197 + "type": "string",
5198 + "const": "fs:scope-appdata-recursive",
5199 + "markdownDescription": "This scope permits recursive access to the complete `$APPDATA` folder, including sub directories and files."
5200 + },
5201 + {
5202 + "description": "This scope permits access to all files and list content of top level directories in the `$APPLOCALDATA` folder.",
5203 + "type": "string",
5204 + "const": "fs:scope-applocaldata",
5205 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPLOCALDATA` folder."
5206 + },
5207 + {
5208 + "description": "This scope permits to list all files and folders in the `$APPLOCALDATA`folder.",
5209 + "type": "string",
5210 + "const": "fs:scope-applocaldata-index",
5211 + "markdownDescription": "This scope permits to list all files and folders in the `$APPLOCALDATA`folder."
5212 + },
5213 + {
5214 + "description": "This scope permits recursive access to the complete `$APPLOCALDATA` folder, including sub directories and files.",
5215 + "type": "string",
5216 + "const": "fs:scope-applocaldata-recursive",
5217 + "markdownDescription": "This scope permits recursive access to the complete `$APPLOCALDATA` folder, including sub directories and files."
5218 + },
5219 + {
5220 + "description": "This scope permits access to all files and list content of top level directories in the `$APPLOG` folder.",
5221 + "type": "string",
5222 + "const": "fs:scope-applog",
5223 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$APPLOG` folder."
5224 + },
5225 + {
5226 + "description": "This scope permits to list all files and folders in the `$APPLOG`folder.",
5227 + "type": "string",
5228 + "const": "fs:scope-applog-index",
5229 + "markdownDescription": "This scope permits to list all files and folders in the `$APPLOG`folder."
5230 + },
5231 + {
5232 + "description": "This scope permits recursive access to the complete `$APPLOG` folder, including sub directories and files.",
5233 + "type": "string",
5234 + "const": "fs:scope-applog-recursive",
5235 + "markdownDescription": "This scope permits recursive access to the complete `$APPLOG` folder, including sub directories and files."
5236 + },
5237 + {
5238 + "description": "This scope permits access to all files and list content of top level directories in the `$AUDIO` folder.",
5239 + "type": "string",
5240 + "const": "fs:scope-audio",
5241 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$AUDIO` folder."
5242 + },
5243 + {
5244 + "description": "This scope permits to list all files and folders in the `$AUDIO`folder.",
5245 + "type": "string",
5246 + "const": "fs:scope-audio-index",
5247 + "markdownDescription": "This scope permits to list all files and folders in the `$AUDIO`folder."
5248 + },
5249 + {
5250 + "description": "This scope permits recursive access to the complete `$AUDIO` folder, including sub directories and files.",
5251 + "type": "string",
5252 + "const": "fs:scope-audio-recursive",
5253 + "markdownDescription": "This scope permits recursive access to the complete `$AUDIO` folder, including sub directories and files."
5254 + },
5255 + {
5256 + "description": "This scope permits access to all files and list content of top level directories in the `$CACHE` folder.",
5257 + "type": "string",
5258 + "const": "fs:scope-cache",
5259 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$CACHE` folder."
5260 + },
5261 + {
5262 + "description": "This scope permits to list all files and folders in the `$CACHE`folder.",
5263 + "type": "string",
5264 + "const": "fs:scope-cache-index",
5265 + "markdownDescription": "This scope permits to list all files and folders in the `$CACHE`folder."
5266 + },
5267 + {
5268 + "description": "This scope permits recursive access to the complete `$CACHE` folder, including sub directories and files.",
5269 + "type": "string",
5270 + "const": "fs:scope-cache-recursive",
5271 + "markdownDescription": "This scope permits recursive access to the complete `$CACHE` folder, including sub directories and files."
5272 + },
5273 + {
5274 + "description": "This scope permits access to all files and list content of top level directories in the `$CONFIG` folder.",
5275 + "type": "string",
5276 + "const": "fs:scope-config",
5277 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$CONFIG` folder."
5278 + },
5279 + {
5280 + "description": "This scope permits to list all files and folders in the `$CONFIG`folder.",
5281 + "type": "string",
5282 + "const": "fs:scope-config-index",
5283 + "markdownDescription": "This scope permits to list all files and folders in the `$CONFIG`folder."
5284 + },
5285 + {
5286 + "description": "This scope permits recursive access to the complete `$CONFIG` folder, including sub directories and files.",
5287 + "type": "string",
5288 + "const": "fs:scope-config-recursive",
5289 + "markdownDescription": "This scope permits recursive access to the complete `$CONFIG` folder, including sub directories and files."
5290 + },
5291 + {
5292 + "description": "This scope permits access to all files and list content of top level directories in the `$DATA` folder.",
5293 + "type": "string",
5294 + "const": "fs:scope-data",
5295 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$DATA` folder."
5296 + },
5297 + {
5298 + "description": "This scope permits to list all files and folders in the `$DATA`folder.",
5299 + "type": "string",
5300 + "const": "fs:scope-data-index",
5301 + "markdownDescription": "This scope permits to list all files and folders in the `$DATA`folder."
5302 + },
5303 + {
5304 + "description": "This scope permits recursive access to the complete `$DATA` folder, including sub directories and files.",
5305 + "type": "string",
5306 + "const": "fs:scope-data-recursive",
5307 + "markdownDescription": "This scope permits recursive access to the complete `$DATA` folder, including sub directories and files."
5308 + },
5309 + {
5310 + "description": "This scope permits access to all files and list content of top level directories in the `$DESKTOP` folder.",
5311 + "type": "string",
5312 + "const": "fs:scope-desktop",
5313 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$DESKTOP` folder."
5314 + },
5315 + {
5316 + "description": "This scope permits to list all files and folders in the `$DESKTOP`folder.",
5317 + "type": "string",
5318 + "const": "fs:scope-desktop-index",
5319 + "markdownDescription": "This scope permits to list all files and folders in the `$DESKTOP`folder."
5320 + },
5321 + {
5322 + "description": "This scope permits recursive access to the complete `$DESKTOP` folder, including sub directories and files.",
5323 + "type": "string",
5324 + "const": "fs:scope-desktop-recursive",
5325 + "markdownDescription": "This scope permits recursive access to the complete `$DESKTOP` folder, including sub directories and files."
5326 + },
5327 + {
5328 + "description": "This scope permits access to all files and list content of top level directories in the `$DOCUMENT` folder.",
5329 + "type": "string",
5330 + "const": "fs:scope-document",
5331 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$DOCUMENT` folder."
5332 + },
5333 + {
5334 + "description": "This scope permits to list all files and folders in the `$DOCUMENT`folder.",
5335 + "type": "string",
5336 + "const": "fs:scope-document-index",
5337 + "markdownDescription": "This scope permits to list all files and folders in the `$DOCUMENT`folder."
5338 + },
5339 + {
5340 + "description": "This scope permits recursive access to the complete `$DOCUMENT` folder, including sub directories and files.",
5341 + "type": "string",
5342 + "const": "fs:scope-document-recursive",
5343 + "markdownDescription": "This scope permits recursive access to the complete `$DOCUMENT` folder, including sub directories and files."
5344 + },
5345 + {
5346 + "description": "This scope permits access to all files and list content of top level directories in the `$DOWNLOAD` folder.",
5347 + "type": "string",
5348 + "const": "fs:scope-download",
5349 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$DOWNLOAD` folder."
5350 + },
5351 + {
5352 + "description": "This scope permits to list all files and folders in the `$DOWNLOAD`folder.",
5353 + "type": "string",
5354 + "const": "fs:scope-download-index",
5355 + "markdownDescription": "This scope permits to list all files and folders in the `$DOWNLOAD`folder."
5356 + },
5357 + {
5358 + "description": "This scope permits recursive access to the complete `$DOWNLOAD` folder, including sub directories and files.",
5359 + "type": "string",
5360 + "const": "fs:scope-download-recursive",
5361 + "markdownDescription": "This scope permits recursive access to the complete `$DOWNLOAD` folder, including sub directories and files."
5362 + },
5363 + {
5364 + "description": "This scope permits access to all files and list content of top level directories in the `$EXE` folder.",
5365 + "type": "string",
5366 + "const": "fs:scope-exe",
5367 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$EXE` folder."
5368 + },
5369 + {
5370 + "description": "This scope permits to list all files and folders in the `$EXE`folder.",
5371 + "type": "string",
5372 + "const": "fs:scope-exe-index",
5373 + "markdownDescription": "This scope permits to list all files and folders in the `$EXE`folder."
5374 + },
5375 + {
5376 + "description": "This scope permits recursive access to the complete `$EXE` folder, including sub directories and files.",
5377 + "type": "string",
5378 + "const": "fs:scope-exe-recursive",
5379 + "markdownDescription": "This scope permits recursive access to the complete `$EXE` folder, including sub directories and files."
5380 + },
5381 + {
5382 + "description": "This scope permits access to all files and list content of top level directories in the `$FONT` folder.",
5383 + "type": "string",
5384 + "const": "fs:scope-font",
5385 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$FONT` folder."
5386 + },
5387 + {
5388 + "description": "This scope permits to list all files and folders in the `$FONT`folder.",
5389 + "type": "string",
5390 + "const": "fs:scope-font-index",
5391 + "markdownDescription": "This scope permits to list all files and folders in the `$FONT`folder."
5392 + },
5393 + {
5394 + "description": "This scope permits recursive access to the complete `$FONT` folder, including sub directories and files.",
5395 + "type": "string",
5396 + "const": "fs:scope-font-recursive",
5397 + "markdownDescription": "This scope permits recursive access to the complete `$FONT` folder, including sub directories and files."
5398 + },
5399 + {
5400 + "description": "This scope permits access to all files and list content of top level directories in the `$HOME` folder.",
5401 + "type": "string",
5402 + "const": "fs:scope-home",
5403 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$HOME` folder."
5404 + },
5405 + {
5406 + "description": "This scope permits to list all files and folders in the `$HOME`folder.",
5407 + "type": "string",
5408 + "const": "fs:scope-home-index",
5409 + "markdownDescription": "This scope permits to list all files and folders in the `$HOME`folder."
5410 + },
5411 + {
5412 + "description": "This scope permits recursive access to the complete `$HOME` folder, including sub directories and files.",
5413 + "type": "string",
5414 + "const": "fs:scope-home-recursive",
5415 + "markdownDescription": "This scope permits recursive access to the complete `$HOME` folder, including sub directories and files."
5416 + },
5417 + {
5418 + "description": "This scope permits access to all files and list content of top level directories in the `$LOCALDATA` folder.",
5419 + "type": "string",
5420 + "const": "fs:scope-localdata",
5421 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$LOCALDATA` folder."
5422 + },
5423 + {
5424 + "description": "This scope permits to list all files and folders in the `$LOCALDATA`folder.",
5425 + "type": "string",
5426 + "const": "fs:scope-localdata-index",
5427 + "markdownDescription": "This scope permits to list all files and folders in the `$LOCALDATA`folder."
5428 + },
5429 + {
5430 + "description": "This scope permits recursive access to the complete `$LOCALDATA` folder, including sub directories and files.",
5431 + "type": "string",
5432 + "const": "fs:scope-localdata-recursive",
5433 + "markdownDescription": "This scope permits recursive access to the complete `$LOCALDATA` folder, including sub directories and files."
5434 + },
5435 + {
5436 + "description": "This scope permits access to all files and list content of top level directories in the `$LOG` folder.",
5437 + "type": "string",
5438 + "const": "fs:scope-log",
5439 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$LOG` folder."
5440 + },
5441 + {
5442 + "description": "This scope permits to list all files and folders in the `$LOG`folder.",
5443 + "type": "string",
5444 + "const": "fs:scope-log-index",
5445 + "markdownDescription": "This scope permits to list all files and folders in the `$LOG`folder."
5446 + },
5447 + {
5448 + "description": "This scope permits recursive access to the complete `$LOG` folder, including sub directories and files.",
5449 + "type": "string",
5450 + "const": "fs:scope-log-recursive",
5451 + "markdownDescription": "This scope permits recursive access to the complete `$LOG` folder, including sub directories and files."
5452 + },
5453 + {
5454 + "description": "This scope permits access to all files and list content of top level directories in the `$PICTURE` folder.",
5455 + "type": "string",
5456 + "const": "fs:scope-picture",
5457 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$PICTURE` folder."
5458 + },
5459 + {
5460 + "description": "This scope permits to list all files and folders in the `$PICTURE`folder.",
5461 + "type": "string",
5462 + "const": "fs:scope-picture-index",
5463 + "markdownDescription": "This scope permits to list all files and folders in the `$PICTURE`folder."
5464 + },
5465 + {
5466 + "description": "This scope permits recursive access to the complete `$PICTURE` folder, including sub directories and files.",
5467 + "type": "string",
5468 + "const": "fs:scope-picture-recursive",
5469 + "markdownDescription": "This scope permits recursive access to the complete `$PICTURE` folder, including sub directories and files."
5470 + },
5471 + {
5472 + "description": "This scope permits access to all files and list content of top level directories in the `$PUBLIC` folder.",
5473 + "type": "string",
5474 + "const": "fs:scope-public",
5475 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$PUBLIC` folder."
5476 + },
5477 + {
5478 + "description": "This scope permits to list all files and folders in the `$PUBLIC`folder.",
5479 + "type": "string",
5480 + "const": "fs:scope-public-index",
5481 + "markdownDescription": "This scope permits to list all files and folders in the `$PUBLIC`folder."
5482 + },
5483 + {
5484 + "description": "This scope permits recursive access to the complete `$PUBLIC` folder, including sub directories and files.",
5485 + "type": "string",
5486 + "const": "fs:scope-public-recursive",
5487 + "markdownDescription": "This scope permits recursive access to the complete `$PUBLIC` folder, including sub directories and files."
5488 + },
5489 + {
5490 + "description": "This scope permits access to all files and list content of top level directories in the `$RESOURCE` folder.",
5491 + "type": "string",
5492 + "const": "fs:scope-resource",
5493 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$RESOURCE` folder."
5494 + },
5495 + {
5496 + "description": "This scope permits to list all files and folders in the `$RESOURCE`folder.",
5497 + "type": "string",
5498 + "const": "fs:scope-resource-index",
5499 + "markdownDescription": "This scope permits to list all files and folders in the `$RESOURCE`folder."
5500 + },
5501 + {
5502 + "description": "This scope permits recursive access to the complete `$RESOURCE` folder, including sub directories and files.",
5503 + "type": "string",
5504 + "const": "fs:scope-resource-recursive",
5505 + "markdownDescription": "This scope permits recursive access to the complete `$RESOURCE` folder, including sub directories and files."
5506 + },
5507 + {
5508 + "description": "This scope permits access to all files and list content of top level directories in the `$RUNTIME` folder.",
5509 + "type": "string",
5510 + "const": "fs:scope-runtime",
5511 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$RUNTIME` folder."
5512 + },
5513 + {
5514 + "description": "This scope permits to list all files and folders in the `$RUNTIME`folder.",
5515 + "type": "string",
5516 + "const": "fs:scope-runtime-index",
5517 + "markdownDescription": "This scope permits to list all files and folders in the `$RUNTIME`folder."
5518 + },
5519 + {
5520 + "description": "This scope permits recursive access to the complete `$RUNTIME` folder, including sub directories and files.",
5521 + "type": "string",
5522 + "const": "fs:scope-runtime-recursive",
5523 + "markdownDescription": "This scope permits recursive access to the complete `$RUNTIME` folder, including sub directories and files."
5524 + },
5525 + {
5526 + "description": "This scope permits access to all files and list content of top level directories in the `$TEMP` folder.",
5527 + "type": "string",
5528 + "const": "fs:scope-temp",
5529 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$TEMP` folder."
5530 + },
5531 + {
5532 + "description": "This scope permits to list all files and folders in the `$TEMP`folder.",
5533 + "type": "string",
5534 + "const": "fs:scope-temp-index",
5535 + "markdownDescription": "This scope permits to list all files and folders in the `$TEMP`folder."
5536 + },
5537 + {
5538 + "description": "This scope permits recursive access to the complete `$TEMP` folder, including sub directories and files.",
5539 + "type": "string",
5540 + "const": "fs:scope-temp-recursive",
5541 + "markdownDescription": "This scope permits recursive access to the complete `$TEMP` folder, including sub directories and files."
5542 + },
5543 + {
5544 + "description": "This scope permits access to all files and list content of top level directories in the `$TEMPLATE` folder.",
5545 + "type": "string",
5546 + "const": "fs:scope-template",
5547 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$TEMPLATE` folder."
5548 + },
5549 + {
5550 + "description": "This scope permits to list all files and folders in the `$TEMPLATE`folder.",
5551 + "type": "string",
5552 + "const": "fs:scope-template-index",
5553 + "markdownDescription": "This scope permits to list all files and folders in the `$TEMPLATE`folder."
5554 + },
5555 + {
5556 + "description": "This scope permits recursive access to the complete `$TEMPLATE` folder, including sub directories and files.",
5557 + "type": "string",
5558 + "const": "fs:scope-template-recursive",
5559 + "markdownDescription": "This scope permits recursive access to the complete `$TEMPLATE` folder, including sub directories and files."
5560 + },
5561 + {
5562 + "description": "This scope permits access to all files and list content of top level directories in the `$VIDEO` folder.",
5563 + "type": "string",
5564 + "const": "fs:scope-video",
5565 + "markdownDescription": "This scope permits access to all files and list content of top level directories in the `$VIDEO` folder."
5566 + },
5567 + {
5568 + "description": "This scope permits to list all files and folders in the `$VIDEO`folder.",
5569 + "type": "string",
5570 + "const": "fs:scope-video-index",
5571 + "markdownDescription": "This scope permits to list all files and folders in the `$VIDEO`folder."
5572 + },
5573 + {
5574 + "description": "This scope permits recursive access to the complete `$VIDEO` folder, including sub directories and files.",
5575 + "type": "string",
5576 + "const": "fs:scope-video-recursive",
5577 + "markdownDescription": "This scope permits recursive access to the complete `$VIDEO` folder, including sub directories and files."
5578 + },
5579 + {
5580 + "description": "This enables all write related commands without any pre-configured accessible paths.",
5581 + "type": "string",
5582 + "const": "fs:write-all",
5583 + "markdownDescription": "This enables all write related commands without any pre-configured accessible paths."
5584 + },
5585 + {
5586 + "description": "This enables all file write related commands without any pre-configured accessible paths.",
5587 + "type": "string",
5588 + "const": "fs:write-files",
5589 + "markdownDescription": "This enables all file write related commands without any pre-configured accessible paths."
5590 + },
5591 {
5592 "description": "Allows the log command\n#### This default permission set includes:\n\n- `allow-log`",
5593 "type": "string",
src-tauri/src/main.rs
+37 -40
@@ -4,23 +4,26 @@
4 )]
5
6 #[cfg(debug_assertions)]
7 -const LOG_TARGETS: [tauri_plugin_log::TargetKind; 2] = [tauri_plugin_log::TargetKind::Stdout, tauri_plugin_log::TargetKind::Webview];
7 +const LOG_TARGETS: [tauri_plugin_log::TargetKind; 2] = [
8 + tauri_plugin_log::TargetKind::Stdout,
9 + tauri_plugin_log::TargetKind::Webview,
10 +];
11
12 #[cfg(not(debug_assertions))]
13 const LOG_TARGETS: [Target; 2] = [Target::Stdout, Target::LogDir];
14
15 +use crate::encoding::convert_to_u16;
16 +use encoding::BOM;
17 +use log::{error, info, Level};
18 use std::collections::{self, HashMap};
19 use std::fs::File;
20 use std::io::Write;
21 use std::path::{Path, PathBuf};
22 use std::process::Command;
23 use std::{env, fs};
18 -use tauri::{App, Manager, Wry};
19 -use encoding::BOM;
20 -use log::{error, info, Level};
24 use tauri::plugin::TauriPlugin;
22 -use tauri_plugin_log::{Target, RotationStrategy};
23 -use crate::encoding::convert_to_u16;
25 +use tauri::{App, Manager, Wry};
26 +use tauri_plugin_log::{RotationStrategy, Target};
27
28 mod encoding;
29
@@ -38,7 +41,7 @@ fn open_in_explorer(path: &str) {
41 }
42
43 #[tauri::command]
41 -fn open_in_default(path: &str) {
44 +fn open_in_default(path: &str) {
45 if env::consts::OS == "windows" {
46 Command::new("powershell")
47 .args(["&", path])
@@ -54,15 +57,14 @@ fn open_terminal(path: &str) {
57 // programs for ubuntu: [gnome-terminal]
58 // .args(["/C", "start", "wt"])
59 Command::new("cmd")
57 - .args(["/C", "wt", "-d", path])
58 - .spawn()
59 - .unwrap();
60 - }
61 - else {
60 + .args(["/C", "wt", "-d", path])
61 + .spawn()
62 + .unwrap();
63 + } else {
64 Command::new("gnome-terminal")
63 - .arg(format!("--working-directory={}", path).as_str())
64 - .spawn()
65 - .unwrap();
65 + .arg(format!("--working-directory={}", path).as_str())
66 + .spawn()
67 + .unwrap();
68 }
69 }
70
@@ -128,7 +130,7 @@ struct FileData {
130 encoding: String,
131 extension: String,
132 bom: bool,
131 - spaces: usize
133 + spaces: usize,
134 }
135
136 #[tauri::command]
@@ -144,9 +146,7 @@ fn read_file(path: &str) -> FileData {
146 }
147
148 let ext = match Path::new(path).extension() {
147 - Some(v) => {
148 - v.to_str().unwrap()
149 - }
149 + Some(v) => v.to_str().unwrap(),
150 None => {
151 error!("No extension found for {}", path);
152 ""
@@ -164,7 +164,7 @@ fn read_file(path: &str) -> FileData {
164 let spaces = detect_indent(&lines);
165 let space_count = match spaces {
166 Some(capture) => capture,
167 - None => 0
167 + None => 0,
168 };
169
170 file_data = FileData {
@@ -172,7 +172,7 @@ fn read_file(path: &str) -> FileData {
172 encoding: encoding.name().to_string(),
173 extension: ext.to_string(),
174 bom: true,
175 - spaces: space_count
175 + spaces: space_count,
176 };
177 info!("File BOM found. Encoding with {}...", encoding.name());
178 } else {
@@ -183,7 +183,7 @@ fn read_file(path: &str) -> FileData {
183 let spaces = detect_indent(&lines);
184 let space_count = match spaces {
185 Some(capture) => capture,
186 - None => 0
186 + None => 0,
187 };
188
189 file_data = FileData {
@@ -191,7 +191,7 @@ fn read_file(path: &str) -> FileData {
191 encoding: encoding.name().to_string(),
192 extension: ext.to_string(),
193 bom: false,
194 - spaces: space_count
194 + spaces: space_count,
195 };
196 info!(
197 "No file BOM found. Defaulting to {} encoding...",
@@ -243,15 +243,12 @@ fn is_supported(path: &str) -> bool {
243 let mut supported = false;
244 if info.mime_type().contains("text") {
245 supported = true;
246 - }
247 - else {
246 + } else {
247 info!("File type detected: {}. Must be binary.", info.mime_type());
248 }
249 supported
250 }
252 - Ok(None) => {
253 - true
254 - }
251 + Ok(None) => true,
252 Err(e) => {
253 error!("{}", e);
254 false
@@ -293,15 +290,17 @@ fn configure_log() -> TauriPlugin<Wry> {
290 "[[[year]-[month]-[day]][[[hour]:[minute]:[second]]",
291 )
292 .unwrap();
296 - let file_info = record.file().map(|location| format!("::{}", location.split("\\").last().unwrap().to_owned()))
293 + let file_info = record
294 + .file()
295 + .map(|location| format!("::{}", location.split("\\").last().unwrap().to_owned()))
296 .unwrap_or("".to_string());
298 - let line_info = record.line().map(|line| format!(":{}", line))
297 + let line_info = record
298 + .line()
299 + .map(|line| format!(":{}", line))
300 .unwrap_or("".to_string());
301 out.finish(format_args!(
302 "{}[{}][{}{}{}] {}",
302 - time::OffsetDateTime::now_utc()
303 - .format(&format)
304 - .unwrap(),
303 + time::OffsetDateTime::now_utc().format(&format).unwrap(),
304 record.level(),
305 record.target(),
306 file_info,
@@ -314,8 +313,7 @@ fn configure_log() -> TauriPlugin<Wry> {
313 let mut filter = false;
314 if cfg!(debug_assertions) {
315 filter = !matches!(l.level(), Level::Trace);
317 - }
318 - else if cfg!(not(debug_assertions)) {
316 + } else if cfg!(not(debug_assertions)) {
317 filter = !matches!(l.level(), Level::Trace | Level::Debug);
318 }
319 filter
@@ -332,11 +330,9 @@ fn configure_log_path(app: &mut App) {
330 }
331
332 let format = time::format_description::parse("[year]-[month]-[day]-[hour][minute]").unwrap();
335 - let time = time::OffsetDateTime::now_utc()
336 - .format(&format)
337 - .unwrap();
333 + let time = time::OffsetDateTime::now_utc().format(&format).unwrap();
334 let log_name = format!("svara_log-{}.log", time);
339 -
335 +
336 // changing the default log name to something more meaningful
337 let new_log_path = app_log_dir.join(log_name);
338 if let Err(e) = fs::rename(&old_log_path, &new_log_path) {
@@ -430,6 +426,7 @@ fn main() {
426 }));
427
428 tauri::Builder::default()
429 + .plugin(tauri_plugin_fs::init())
430 .invoke_handler(tauri::generate_handler![
431 open_in_explorer,
432 delete_file,
@@ -442,7 +439,7 @@ fn main() {
439 is_supported,
440 open_terminal
441 ])
445 - //.plugin(tauri_plugin_fs_watch::init())
442 + .plugin(tauri_plugin_fs::init())
443 .plugin(tauri_plugin_store::Builder::default().build())
444 .plugin(configure_log())
445 .plugin(tauri_plugin_pty::init())
src/config/config.ts
+2 -1
@@ -1,7 +1,7 @@
1 import { writable } from "svelte/store";
2 import Mousetrap from "mousetrap";
3 import { getKeybinds } from "./commands";
4 -import { invoke, path } from "@tauri-apps/api";
4 +import { path } from "@tauri-apps/api";
5 import { loadTheme } from "./themehandler";
6 import { Store } from "@tauri-apps/plugin-store";
7 import { setEditorFontFamily, setEditorFontSize, setEditorLineHeight, setEditorTabSize } from "../lib/Editor.svelte";
@@ -10,6 +10,7 @@ import { info } from "tauri-plugin-log-api";
10 import { setTerminalState } from "../lib/Statusbar.svelte";
11 import { termOptions, updateTermOptions } from "../lib/Terminal.svelte";
12 import * as fs from "@tauri-apps/plugin-fs"
13 +import { invoke } from "@tauri-apps/api/core";
14
15 export const systemfonts = writable([]);
16 export const editorfont = writable("");
src/lib/EditorTabList.svelte
+1 -1
@@ -7,7 +7,7 @@
7 import { afterUpdate, onMount } from "svelte";
8 import { getCurrentWebviewWindow } from "@tauri-apps/api/webviewWindow";
9 import { writable } from "svelte/store";
10 - import { invoke } from "@tauri-apps/api";
10 + import { invoke } from "@tauri-apps/api/core";
11 const appWindow = getCurrentWebviewWindow()
12
13 onMount(() => {
src/lib/File.ts
+2 -1
@@ -1,4 +1,4 @@
1 -import { path, invoke, webviewWindow, } from "@tauri-apps/api";
1 +import { path, webviewWindow, } from "@tauri-apps/api";
2 import { get, writable } from 'svelte/store';
3 import { tabs, addEditorTab, renameTab, closeTab, refreshTabs, closeAllTabs } from "./EditorTabList.svelte";
4 import { filetree } from "./FileTree.svelte";
@@ -12,6 +12,7 @@ import { closeTerminal } from "./Terminal.svelte";
12 import * as dialog from "@tauri-apps/plugin-dialog"
13 import * as fs from "@tauri-apps/plugin-fs"
14 import * as clipboard from "@tauri-apps/plugin-clipboard-manager"
15 +import { invoke } from "@tauri-apps/api/core";
16
17 export async function openFile() {
18 let newPath = await dialog.open() as string;
src/lib/Modals/RenameModal.svelte
+1 -1
@@ -5,7 +5,7 @@
5 import Button from "../utility/Button.svelte";
6 import { _openPopup } from "../../App.svelte";
7 import { checkValidFileName } from "../File";
8 - import { path as p, invoke } from "@tauri-apps/api";
8 + import { path as p, invoke } from "@tauri-apps/api/core";
9 import * as fs from "@tauri-apps/plugin-fs"
10
11 export let title;
src/lib/Statusbar.svelte
+1 -1
@@ -4,7 +4,7 @@
4 import { getVersion } from '@tauri-apps/api/app';
5 import { onMount } from "svelte";
6 import { Terminal as TerminalIcon, Notification as NotificationIcon, TrashCan } from "carbon-icons-svelte";
7 - import { invoke } from "@tauri-apps/api";
7 + import { invoke } from "@tauri-apps/api/core";
8 import Terminal, { clearTerminal, closeTerminal } from "./Terminal.svelte";
9 import { workingDir } from "./File";
10 import NotificationList from "./Notifications/NotificationList.svelte";
src/lib/Tab/Tab.ts
+1 -1
@@ -1,6 +1,6 @@
1 import { writable } from "svelte/store";
2 import Editor from "../Editor.svelte";
3 -import { invoke } from "@tauri-apps/api";
3 +import { invoke } from "@tauri-apps/api/core";
4 import { saveFile } from "../File";
5 import { warn } from "tauri-plugin-log-api";
6 import { appSettings } from "../../config/config";
src/lib/utility/NotSupported.svelte
+1 -1
@@ -1,5 +1,5 @@
1 <script lang="ts">
2 - import { invoke } from "@tauri-apps/api";
2 + import { invoke } from "@tauri-apps/api/core";
3 import EditOff from "carbon-icons-svelte/lib/EditOff.svelte";
4 export let hidden = false;
5 export let path = "";