From 75dc395fed7ff0fe375ca3ede907e74d9b4115dd Mon Sep 17 00:00:00 2001 From: Roo Date: Sat, 22 Nov 2025 14:37:25 +0800 Subject: [PATCH] feat(webdav): add bearer_token_command config for dynamic token retrieval --- dvc/config_schema.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dvc/config_schema.py b/dvc/config_schema.py index a4e00ff8a2..07f79fc064 100644 --- a/dvc/config_schema.py +++ b/dvc/config_schema.py @@ -151,6 +151,7 @@ def __call__(self, data): "password": str, "ask_password": Bool, "token": str, + "bearer_token_command": str, "custom_auth_header": str, "cert_path": str, "key_path": str,