File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
workos/types/user_management Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1- from typing import List , Optional , TypedDict , Union
1+ from typing import Optional , Sequence , TypedDict , Union
22from enum import Enum
33from typing_extensions import Literal
44from workos .types .user_management .impersonator import Impersonator
@@ -17,10 +17,10 @@ class AuthenticateWithSessionCookieSuccessResponse(WorkOSModel):
1717 session_id : str
1818 organization_id : Optional [str ] = None
1919 role : Optional [str ] = None
20- permissions : Optional [List [str ]] = None
20+ permissions : Optional [Sequence [str ]] = None
2121 user : User
2222 impersonator : Optional [Impersonator ] = None
23- entitlements : Optional [List [str ]] = None
23+ entitlements : Optional [Sequence [str ]] = None
2424
2525
2626class AuthenticateWithSessionCookieErrorResponse (WorkOSModel ):
You can’t perform that action at this time.
0 commit comments