mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-06-22 14:59:56 +02:00
chore: update to tauri 3.0.0-alpha.9
autogenerated commands format changed, needed FS plugin small change
This commit is contained in:
@@ -1,13 +0,0 @@
|
||||
# Automatically generated - DO NOT EDIT!
|
||||
|
||||
"$schema" = "../../schemas/schema.json"
|
||||
|
||||
[[permission]]
|
||||
identifier = "allow-close"
|
||||
description = "Enables the close command without any pre-configured scope."
|
||||
commands.allow = ["close"]
|
||||
|
||||
[[permission]]
|
||||
identifier = "deny-close"
|
||||
description = "Denies the close command without any pre-configured scope."
|
||||
commands.deny = ["close"]
|
||||
@@ -0,0 +1,5 @@
|
||||
# Automatically generated - DO NOT EDIT!
|
||||
|
||||
"$schema" = "../../schemas/schema.json"
|
||||
|
||||
commands = ["load","execute","select","close"]
|
||||
@@ -1,13 +0,0 @@
|
||||
# Automatically generated - DO NOT EDIT!
|
||||
|
||||
"$schema" = "../../schemas/schema.json"
|
||||
|
||||
[[permission]]
|
||||
identifier = "allow-execute"
|
||||
description = "Enables the execute command without any pre-configured scope."
|
||||
commands.allow = ["execute"]
|
||||
|
||||
[[permission]]
|
||||
identifier = "deny-execute"
|
||||
description = "Denies the execute command without any pre-configured scope."
|
||||
commands.deny = ["execute"]
|
||||
@@ -1,13 +0,0 @@
|
||||
# Automatically generated - DO NOT EDIT!
|
||||
|
||||
"$schema" = "../../schemas/schema.json"
|
||||
|
||||
[[permission]]
|
||||
identifier = "allow-load"
|
||||
description = "Enables the load command without any pre-configured scope."
|
||||
commands.allow = ["load"]
|
||||
|
||||
[[permission]]
|
||||
identifier = "deny-load"
|
||||
description = "Denies the load command without any pre-configured scope."
|
||||
commands.deny = ["load"]
|
||||
@@ -1,13 +0,0 @@
|
||||
# Automatically generated - DO NOT EDIT!
|
||||
|
||||
"$schema" = "../../schemas/schema.json"
|
||||
|
||||
[[permission]]
|
||||
identifier = "allow-select"
|
||||
description = "Enables the select command without any pre-configured scope."
|
||||
commands.allow = ["select"]
|
||||
|
||||
[[permission]]
|
||||
identifier = "deny-select"
|
||||
description = "Denies the select command without any pre-configured scope."
|
||||
commands.deny = ["select"]
|
||||
@@ -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": {
|
||||
|
||||
Reference in New Issue
Block a user