chore: update to tauri 3.0.0-alpha.9

autogenerated commands format changed, needed FS plugin small change
This commit is contained in:
Lucas Nogueira
2026-06-18 17:29:56 -03:00
parent b7dab55a2e
commit 8049700614
216 changed files with 460 additions and 2217 deletions
@@ -1,13 +0,0 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-arch"
description = "Enables the arch command without any pre-configured scope."
commands.allow = ["arch"]
[[permission]]
identifier = "deny-arch"
description = "Denies the arch command without any pre-configured scope."
commands.deny = ["arch"]
@@ -0,0 +1,5 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
commands = ["platform","version","os_type","family","arch","exe_extension","locale","hostname"]
@@ -1,13 +0,0 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-exe-extension"
description = "Enables the exe_extension command without any pre-configured scope."
commands.allow = ["exe_extension"]
[[permission]]
identifier = "deny-exe-extension"
description = "Denies the exe_extension command without any pre-configured scope."
commands.deny = ["exe_extension"]
@@ -1,13 +0,0 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-family"
description = "Enables the family command without any pre-configured scope."
commands.allow = ["family"]
[[permission]]
identifier = "deny-family"
description = "Denies the family command without any pre-configured scope."
commands.deny = ["family"]
@@ -1,13 +0,0 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-hostname"
description = "Enables the hostname command without any pre-configured scope."
commands.allow = ["hostname"]
[[permission]]
identifier = "deny-hostname"
description = "Denies the hostname command without any pre-configured scope."
commands.deny = ["hostname"]
@@ -1,13 +0,0 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-locale"
description = "Enables the locale command without any pre-configured scope."
commands.allow = ["locale"]
[[permission]]
identifier = "deny-locale"
description = "Denies the locale command without any pre-configured scope."
commands.deny = ["locale"]
@@ -1,13 +0,0 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-os-type"
description = "Enables the os_type command without any pre-configured scope."
commands.allow = ["os_type"]
[[permission]]
identifier = "deny-os-type"
description = "Denies the os_type command without any pre-configured scope."
commands.deny = ["os_type"]
@@ -1,13 +0,0 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-platform"
description = "Enables the platform command without any pre-configured scope."
commands.allow = ["platform"]
[[permission]]
identifier = "deny-platform"
description = "Denies the platform command without any pre-configured scope."
commands.deny = ["platform"]
@@ -1,13 +0,0 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-version"
description = "Enables the version command without any pre-configured scope."
commands.allow = ["version"]
[[permission]]
identifier = "deny-version"
description = "Denies the version command without any pre-configured scope."
commands.deny = ["version"]
@@ -29,6 +29,13 @@
"$ref": "#/definitions/Permission"
},
"default": []
},
"commands": {
"description": "A list of command names that get `allow-$command` and `deny-$command` permissions\nautogenerated on demand instead of being stored as explicit permissions.\n\nSee [`Manifest::command_permission`] and the ACL resolver for how these are expanded.",
"type": "array",
"items": {
"type": "string"
}
}
},
"definitions": {