diff --git a/docs/docs/cloud/reference/sdk/python_sdk_ref.md b/docs/docs/cloud/reference/sdk/python_sdk_ref.md index 3ffa8b180..4126ca306 100644 --- a/docs/docs/cloud/reference/sdk/python_sdk_ref.md +++ b/docs/docs/cloud/reference/sdk/python_sdk_ref.md @@ -23,5 +23,8 @@ ::: langgraph_sdk.auth.types.FilterType handler: python +::: langgraph_sdk.auth.types.AuthContext + handler: python + ::: langgraph_sdk.auth.exceptions handler: python \ No newline at end of file diff --git a/libs/sdk-py/langgraph_sdk/auth/types.py b/libs/sdk-py/langgraph_sdk/auth/types.py index 9a22ed9e1..cc47651d0 100644 --- a/libs/sdk-py/langgraph_sdk/auth/types.py +++ b/libs/sdk-py/langgraph_sdk/auth/types.py @@ -274,8 +274,8 @@ class BaseAuthContext: authorization decisions. """ - scopes: Sequence[str] - """The scopes granted to the authenticated user.""" + permissions: Sequence[str] + """The permissions granted to the authenticated user.""" user: BaseUser """The authenticated user."""