From aae2912c1a3b69620421268506aab3ee2276f2bc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 15 Sep 2024 14:44:01 +0000 Subject: [PATCH] chore(deps): update dependency @tauri-apps/cli to v2.0.0-rc.14 (#1786) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/10871887834 Co-authored-by: lucasfernog --- permissions/schemas/schema.json | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/permissions/schemas/schema.json b/permissions/schemas/schema.json index 045c719..b376890 100644 --- a/permissions/schemas/schema.json +++ b/permissions/schemas/schema.json @@ -295,25 +295,19 @@ "type": "string", "oneOf": [ { - "description": "allow-cli-matches -> Enables the cli_matches command without any pre-configured scope.", + "description": "Enables the cli_matches command without any pre-configured scope.", "type": "string", - "enum": [ - "allow-cli-matches" - ] + "const": "allow-cli-matches" }, { - "description": "deny-cli-matches -> Denies the cli_matches command without any pre-configured scope.", + "description": "Denies the cli_matches command without any pre-configured scope.", "type": "string", - "enum": [ - "deny-cli-matches" - ] + "const": "deny-cli-matches" }, { - "description": "default -> Allows reading the CLI matches", + "description": "Allows reading the CLI matches", "type": "string", - "enum": [ - "default" - ] + "const": "default" } ] }