sharing: fix typo and type def

This commit is contained in:
Peter Bieringer
2026-03-08 12:17:40 +01:00
parent d7bedcb20f
commit e45c7da414

View File

@@ -80,13 +80,13 @@ API_TYPES_V1: dict[str, type] = {
"PermittedCreateCollectionByToken": bool, "PermittedCreateCollectionByToken": bool,
"ShareType": str, "ShareType": str,
"PathOrToken": str, "PathOrToken": str,
"PathMapped:": str, "PathMapped": str,
"Owner": str, "Owner": str,
"User": str, "User": str,
"Permissions": str, "Permissions": str,
"Enabled": bool, "Enabled": bool,
"Hidden": bool, "Hidden": bool,
"Properties": str} "Properties": dict}
TOKEN_PATTERN_V1: str = "(v1/[a-zA-Z0-9_=\\-]{44})" TOKEN_PATTERN_V1: str = "(v1/[a-zA-Z0-9_=\\-]{44})"