fix: Deprecate Google Components (#7880)

deprecate components
This commit is contained in:
Edwin Jose 2025-05-05 15:02:46 -04:00 committed by GitHub
commit 99d9a52bd9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 1 deletions

View file

@ -17,6 +17,7 @@ class GoogleDriveComponent(Component):
display_name = "Google Drive Loader"
description = "Loads documents from Google Drive using provided credentials."
icon = "Google"
legacy: bool = True
inputs = [
SecretStrInput(

View file

@ -14,6 +14,7 @@ class GoogleDriveSearchComponent(Component):
display_name = "Google Drive Search"
description = "Searches Google Drive files using provided credentials and query parameters."
icon = "Google"
legacy: bool = True
inputs = [
SecretStrInput(

View file

@ -17,7 +17,7 @@ class GoogleOAuthToken(Component):
documentation: str = "https://developers.google.com/identity/protocols/oauth2/web-server?hl=pt-br#python_1"
icon = "Google"
name = "GoogleOAuthToken"
legacy: bool = True
inputs = [
MultilineInput(
name="scopes",