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
@@ -0,0 +1,5 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
commands = ["vibrate","impact_feedback","notification_feedback","selection_feedback"]
@@ -1,13 +0,0 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-impact-feedback"
description = "Enables the impact_feedback command without any pre-configured scope."
commands.allow = ["impact_feedback"]
[[permission]]
identifier = "deny-impact-feedback"
description = "Denies the impact_feedback command without any pre-configured scope."
commands.deny = ["impact_feedback"]
@@ -1,13 +0,0 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-notification-feedback"
description = "Enables the notification_feedback command without any pre-configured scope."
commands.allow = ["notification_feedback"]
[[permission]]
identifier = "deny-notification-feedback"
description = "Denies the notification_feedback command without any pre-configured scope."
commands.deny = ["notification_feedback"]
@@ -1,13 +0,0 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-selection-feedback"
description = "Enables the selection_feedback command without any pre-configured scope."
commands.allow = ["selection_feedback"]
[[permission]]
identifier = "deny-selection-feedback"
description = "Denies the selection_feedback command without any pre-configured scope."
commands.deny = ["selection_feedback"]
@@ -1,13 +0,0 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-vibrate"
description = "Enables the vibrate command without any pre-configured scope."
commands.allow = ["vibrate"]
[[permission]]
identifier = "deny-vibrate"
description = "Denies the vibrate command without any pre-configured scope."
commands.deny = ["vibrate"]
@@ -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": {