From 1709cd3fb5141791eefb39c0022f46aa9a0ffedf Mon Sep 17 00:00:00 2001 From: William Fu-Hinthorn <13333726+hinthornw@users.noreply.github.com> Date: Wed, 18 Dec 2024 15:08:19 -0800 Subject: [PATCH] concept --- libs/sdk-py/langgraph_sdk/auth/types.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libs/sdk-py/langgraph_sdk/auth/types.py b/libs/sdk-py/langgraph_sdk/auth/types.py index 2d00aed02..b057aeb84 100644 --- a/libs/sdk-py/langgraph_sdk/auth/types.py +++ b/libs/sdk-py/langgraph_sdk/auth/types.py @@ -55,14 +55,13 @@ Values: - reject: Reject the operation """ -FilterTypeFilterType = typing.Union[ +FilterType = typing.Union[ typing.Dict[ str, typing.Union[str, typing.Dict[typing.Literal["$eq", "$contains"], str]] ], typing.Dict[str, str], ] -"""# -Type for filtering queries. +"""Response type for authorization handlers. Supports exact matches and operators: - Exact match shorthand: {"field": "value"}