From 943666950240ccec44f73ed79efd42bf367f893f Mon Sep 17 00:00:00 2001 From: Bjorn Date: Fri, 24 Apr 2026 08:55:04 -0700 Subject: [PATCH] Sync default verbs in config with connector hardcoded list The config package's defaultVerbs was missing "archive" and "update", which are present in the connector's filterArgs default list. Align the two so the schema default matches what the connector will actually accept and use. Co-Authored-By: Claude Opus 4.7 (1M context) --- config_schema.json | 4 +++- pkg/config/config.go | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/config_schema.json b/config_schema.json index 0a5ad1a6..be0c38f8 100644 --- a/config_schema.json +++ b/config_schema.json @@ -152,11 +152,13 @@ "stringSliceField": { "defaultValue": [ "administer", + "archive", "create", "delete", "export", "read", - "restrict_content" + "restrict_content", + "update" ], "rules": {} } diff --git a/pkg/config/config.go b/pkg/config/config.go index 0dff2597..e442f19f 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -11,11 +11,13 @@ var defaultNouns = []string{ var defaultVerbs = []string{ "administer", + "archive", "create", "delete", "export", "read", "restrict_content", + "update", } var (