docs: refresh collected sites and MCP bundles after GSDFC docstring conformance
This commit is contained in:
@@ -104,21 +104,21 @@
|
||||
"kind": "function",
|
||||
"path": "jwtlib.utils.UserRepository.get_by_username",
|
||||
"signature": "<bound method Alias.signature of Alias('get_by_username', 'jwtlib.repository.UserRepository.get_by_username')>",
|
||||
"docstring": "Retrieve a user by their unique username.\n\nArgs:\n username (str):\n The username to search for.\n\nReturns:\n Optional[User]:\n The User document if found, otherwise None."
|
||||
"docstring": "Retrieve a user by their unique username.\n\nArgs:\n username (str):\n The username to search for.\n\nReturns:\n User | None:\n The User document if found, otherwise None."
|
||||
},
|
||||
"get_by_email": {
|
||||
"name": "get_by_email",
|
||||
"kind": "function",
|
||||
"path": "jwtlib.utils.UserRepository.get_by_email",
|
||||
"signature": "<bound method Alias.signature of Alias('get_by_email', 'jwtlib.repository.UserRepository.get_by_email')>",
|
||||
"docstring": "Retrieve a user by their unique email address.\n\nArgs:\n email (str):\n The email address to search for.\n\nReturns:\n Optional[User]:\n The User document if found, otherwise None."
|
||||
"docstring": "Retrieve a user by their unique email address.\n\nArgs:\n email (str):\n The email address to search for.\n\nReturns:\n User | None:\n The User document if found, otherwise None."
|
||||
},
|
||||
"get_active_users": {
|
||||
"name": "get_active_users",
|
||||
"kind": "function",
|
||||
"path": "jwtlib.utils.UserRepository.get_active_users",
|
||||
"signature": "<bound method Alias.signature of Alias('get_active_users', 'jwtlib.repository.UserRepository.get_active_users')>",
|
||||
"docstring": "List all active users with pagination.\n\nArgs:\n skip (int):\n Number of records to skip.\n limit (int):\n Maximum number of records to return.\n\nReturns:\n List[User]:\n A list of active User documents."
|
||||
"docstring": "List all active users with pagination.\n\nArgs:\n skip (int):\n Number of records to skip.\n limit (int):\n Maximum number of records to return.\n\nReturns:\n list[User]:\n A list of active User documents."
|
||||
},
|
||||
"authenticate_user": {
|
||||
"name": "authenticate_user",
|
||||
@@ -148,7 +148,7 @@
|
||||
"kind": "function",
|
||||
"path": "jwtlib.utils.get_current_user",
|
||||
"signature": "<bound method Function.signature of Function('get_current_user', 38, 73)>",
|
||||
"docstring": "Validate token and return authenticated public user.\n\nArgs:\n token (str):\n The `JWT` string to validate.\n repo (UserRepository, optional):\n The user repository to use for resolution.\n\nReturns:\n PublicUser:\n The resolved and validated user object.\n\nRaises:\n InvalidToken:\n If the token is missing, malformed, or invalid.\n UserNotFound:\n If the token is valid, but the user does not exist in the\n repository."
|
||||
"docstring": "Validate token and return authenticated public user.\n\nArgs:\n token (str):\n The `JWT` string to validate.\n repo (UserRepository | None):\n The user repository to use for resolution.\n\nReturns:\n PublicUser:\n The resolved and validated user object.\n\nRaises:\n InvalidToken:\n If the token is missing, malformed, or invalid.\n UserNotFound:\n If the token is valid, but the user does not exist in the\n repository."
|
||||
},
|
||||
"get_validated_token_payload": {
|
||||
"name": "get_validated_token_payload",
|
||||
|
||||
Reference in New Issue
Block a user