From 421af7807486e432d86937bd5b30d088cb3e3a04 Mon Sep 17 00:00:00 2001 From: "Paul M." <10599524+1Cor125@users.noreply.github.com> Date: Fri, 2 Jan 2026 12:32:15 -0500 Subject: [PATCH] docs: update out-of-date permissions example --- README.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0b5d305..e525f71 100644 --- a/README.md +++ b/README.md @@ -69,12 +69,9 @@ Or specify individual permissions: { "permissions": [ "sqlite:allow-load", - "sqlite:allow-select", - "sqlite:allow-select-one", - "sqlite:allow-execute-write", - "sqlite:allow-close", - "sqlite:allow-close-all", - "sqlite:allow-remove" + "sqlite:allow-fetch-one", + "sqlite:allow-fetch-all", + // etc. ] } ```