airbyte-agent-google-drive 0.1.15__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. airbyte_agent_google_drive/__init__.py +151 -0
  2. airbyte_agent_google_drive/_vendored/__init__.py +1 -0
  3. airbyte_agent_google_drive/_vendored/connector_sdk/__init__.py +82 -0
  4. airbyte_agent_google_drive/_vendored/connector_sdk/auth_strategies.py +1120 -0
  5. airbyte_agent_google_drive/_vendored/connector_sdk/auth_template.py +135 -0
  6. airbyte_agent_google_drive/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
  7. airbyte_agent_google_drive/_vendored/connector_sdk/cloud_utils/client.py +213 -0
  8. airbyte_agent_google_drive/_vendored/connector_sdk/connector_model_loader.py +965 -0
  9. airbyte_agent_google_drive/_vendored/connector_sdk/constants.py +78 -0
  10. airbyte_agent_google_drive/_vendored/connector_sdk/exceptions.py +23 -0
  11. airbyte_agent_google_drive/_vendored/connector_sdk/executor/__init__.py +31 -0
  12. airbyte_agent_google_drive/_vendored/connector_sdk/executor/hosted_executor.py +196 -0
  13. airbyte_agent_google_drive/_vendored/connector_sdk/executor/local_executor.py +1633 -0
  14. airbyte_agent_google_drive/_vendored/connector_sdk/executor/models.py +190 -0
  15. airbyte_agent_google_drive/_vendored/connector_sdk/extensions.py +693 -0
  16. airbyte_agent_google_drive/_vendored/connector_sdk/http/__init__.py +37 -0
  17. airbyte_agent_google_drive/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
  18. airbyte_agent_google_drive/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
  19. airbyte_agent_google_drive/_vendored/connector_sdk/http/config.py +98 -0
  20. airbyte_agent_google_drive/_vendored/connector_sdk/http/exceptions.py +119 -0
  21. airbyte_agent_google_drive/_vendored/connector_sdk/http/protocols.py +114 -0
  22. airbyte_agent_google_drive/_vendored/connector_sdk/http/response.py +104 -0
  23. airbyte_agent_google_drive/_vendored/connector_sdk/http_client.py +686 -0
  24. airbyte_agent_google_drive/_vendored/connector_sdk/introspection.py +262 -0
  25. airbyte_agent_google_drive/_vendored/connector_sdk/logging/__init__.py +11 -0
  26. airbyte_agent_google_drive/_vendored/connector_sdk/logging/logger.py +264 -0
  27. airbyte_agent_google_drive/_vendored/connector_sdk/logging/types.py +92 -0
  28. airbyte_agent_google_drive/_vendored/connector_sdk/observability/__init__.py +11 -0
  29. airbyte_agent_google_drive/_vendored/connector_sdk/observability/config.py +179 -0
  30. airbyte_agent_google_drive/_vendored/connector_sdk/observability/models.py +19 -0
  31. airbyte_agent_google_drive/_vendored/connector_sdk/observability/redactor.py +81 -0
  32. airbyte_agent_google_drive/_vendored/connector_sdk/observability/session.py +103 -0
  33. airbyte_agent_google_drive/_vendored/connector_sdk/performance/__init__.py +6 -0
  34. airbyte_agent_google_drive/_vendored/connector_sdk/performance/instrumentation.py +57 -0
  35. airbyte_agent_google_drive/_vendored/connector_sdk/performance/metrics.py +93 -0
  36. airbyte_agent_google_drive/_vendored/connector_sdk/schema/__init__.py +75 -0
  37. airbyte_agent_google_drive/_vendored/connector_sdk/schema/base.py +164 -0
  38. airbyte_agent_google_drive/_vendored/connector_sdk/schema/components.py +239 -0
  39. airbyte_agent_google_drive/_vendored/connector_sdk/schema/connector.py +120 -0
  40. airbyte_agent_google_drive/_vendored/connector_sdk/schema/extensions.py +230 -0
  41. airbyte_agent_google_drive/_vendored/connector_sdk/schema/operations.py +146 -0
  42. airbyte_agent_google_drive/_vendored/connector_sdk/schema/security.py +223 -0
  43. airbyte_agent_google_drive/_vendored/connector_sdk/secrets.py +182 -0
  44. airbyte_agent_google_drive/_vendored/connector_sdk/telemetry/__init__.py +10 -0
  45. airbyte_agent_google_drive/_vendored/connector_sdk/telemetry/config.py +32 -0
  46. airbyte_agent_google_drive/_vendored/connector_sdk/telemetry/events.py +59 -0
  47. airbyte_agent_google_drive/_vendored/connector_sdk/telemetry/tracker.py +155 -0
  48. airbyte_agent_google_drive/_vendored/connector_sdk/types.py +245 -0
  49. airbyte_agent_google_drive/_vendored/connector_sdk/utils.py +60 -0
  50. airbyte_agent_google_drive/_vendored/connector_sdk/validation.py +822 -0
  51. airbyte_agent_google_drive/connector.py +1318 -0
  52. airbyte_agent_google_drive/connector_model.py +4966 -0
  53. airbyte_agent_google_drive/models.py +579 -0
  54. airbyte_agent_google_drive/types.py +141 -0
  55. airbyte_agent_google_drive-0.1.15.dist-info/METADATA +123 -0
  56. airbyte_agent_google_drive-0.1.15.dist-info/RECORD +57 -0
  57. airbyte_agent_google_drive-0.1.15.dist-info/WHEEL +4 -0
@@ -0,0 +1,141 @@
1
+ """
2
+ Type definitions for google-drive connector.
3
+ """
4
+ from __future__ import annotations
5
+
6
+ # Use typing_extensions.TypedDict for Pydantic compatibility
7
+ try:
8
+ from typing_extensions import TypedDict, NotRequired
9
+ except ImportError:
10
+ from typing import TypedDict, NotRequired # type: ignore[attr-defined]
11
+
12
+
13
+
14
+ # ===== NESTED PARAM TYPE DEFINITIONS =====
15
+ # Nested parameter schemas discovered during parameter extraction
16
+
17
+ # ===== OPERATION PARAMS TYPE DEFINITIONS =====
18
+
19
+ class FilesListParams(TypedDict):
20
+ """Parameters for files.list operation"""
21
+ page_size: NotRequired[int]
22
+ page_token: NotRequired[str]
23
+ q: NotRequired[str]
24
+ order_by: NotRequired[str]
25
+ fields: NotRequired[str]
26
+ spaces: NotRequired[str]
27
+ corpora: NotRequired[str]
28
+ drive_id: NotRequired[str]
29
+ include_items_from_all_drives: NotRequired[bool]
30
+ supports_all_drives: NotRequired[bool]
31
+
32
+ class FilesGetParams(TypedDict):
33
+ """Parameters for files.get operation"""
34
+ file_id: str
35
+ fields: NotRequired[str]
36
+ supports_all_drives: NotRequired[bool]
37
+
38
+ class FilesDownloadParams(TypedDict):
39
+ """Parameters for files.download operation"""
40
+ file_id: str
41
+ alt: str
42
+ acknowledge_abuse: NotRequired[bool]
43
+ supports_all_drives: NotRequired[bool]
44
+ range_header: NotRequired[str]
45
+
46
+ class FilesExportDownloadParams(TypedDict):
47
+ """Parameters for files_export.download operation"""
48
+ file_id: str
49
+ mime_type: str
50
+ range_header: NotRequired[str]
51
+
52
+ class DrivesListParams(TypedDict):
53
+ """Parameters for drives.list operation"""
54
+ page_size: NotRequired[int]
55
+ page_token: NotRequired[str]
56
+ q: NotRequired[str]
57
+ use_domain_admin_access: NotRequired[bool]
58
+
59
+ class DrivesGetParams(TypedDict):
60
+ """Parameters for drives.get operation"""
61
+ drive_id: str
62
+ use_domain_admin_access: NotRequired[bool]
63
+
64
+ class PermissionsListParams(TypedDict):
65
+ """Parameters for permissions.list operation"""
66
+ file_id: str
67
+ page_size: NotRequired[int]
68
+ page_token: NotRequired[str]
69
+ supports_all_drives: NotRequired[bool]
70
+ use_domain_admin_access: NotRequired[bool]
71
+
72
+ class PermissionsGetParams(TypedDict):
73
+ """Parameters for permissions.get operation"""
74
+ file_id: str
75
+ permission_id: str
76
+ supports_all_drives: NotRequired[bool]
77
+ use_domain_admin_access: NotRequired[bool]
78
+
79
+ class CommentsListParams(TypedDict):
80
+ """Parameters for comments.list operation"""
81
+ file_id: str
82
+ page_size: NotRequired[int]
83
+ page_token: NotRequired[str]
84
+ start_modified_time: NotRequired[str]
85
+ include_deleted: NotRequired[bool]
86
+ fields: NotRequired[str]
87
+
88
+ class CommentsGetParams(TypedDict):
89
+ """Parameters for comments.get operation"""
90
+ file_id: str
91
+ comment_id: str
92
+ include_deleted: NotRequired[bool]
93
+ fields: NotRequired[str]
94
+
95
+ class RepliesListParams(TypedDict):
96
+ """Parameters for replies.list operation"""
97
+ file_id: str
98
+ comment_id: str
99
+ page_size: NotRequired[int]
100
+ page_token: NotRequired[str]
101
+ include_deleted: NotRequired[bool]
102
+ fields: NotRequired[str]
103
+
104
+ class RepliesGetParams(TypedDict):
105
+ """Parameters for replies.get operation"""
106
+ file_id: str
107
+ comment_id: str
108
+ reply_id: str
109
+ include_deleted: NotRequired[bool]
110
+ fields: NotRequired[str]
111
+
112
+ class RevisionsListParams(TypedDict):
113
+ """Parameters for revisions.list operation"""
114
+ file_id: str
115
+ page_size: NotRequired[int]
116
+ page_token: NotRequired[str]
117
+
118
+ class RevisionsGetParams(TypedDict):
119
+ """Parameters for revisions.get operation"""
120
+ file_id: str
121
+ revision_id: str
122
+
123
+ class ChangesListParams(TypedDict):
124
+ """Parameters for changes.list operation"""
125
+ page_token: str
126
+ page_size: NotRequired[int]
127
+ drive_id: NotRequired[str]
128
+ include_items_from_all_drives: NotRequired[bool]
129
+ supports_all_drives: NotRequired[bool]
130
+ spaces: NotRequired[str]
131
+ include_removed: NotRequired[bool]
132
+ restrict_to_my_drive: NotRequired[bool]
133
+
134
+ class ChangesStartPageTokenGetParams(TypedDict):
135
+ """Parameters for changes_start_page_token.get operation"""
136
+ drive_id: NotRequired[str]
137
+ supports_all_drives: NotRequired[bool]
138
+
139
+ class AboutGetParams(TypedDict):
140
+ """Parameters for about.get operation"""
141
+ fields: NotRequired[str]
@@ -0,0 +1,123 @@
1
+ Metadata-Version: 2.4
2
+ Name: airbyte-agent-google-drive
3
+ Version: 0.1.15
4
+ Summary: Airbyte Google-Drive Connector for AI platforms
5
+ Project-URL: Homepage, https://github.com/airbytehq/airbyte-agent-connectors
6
+ Project-URL: Documentation, https://docs.airbyte.com/ai-agents/
7
+ Project-URL: Repository, https://github.com/airbytehq/airbyte-agent-connectors
8
+ Project-URL: Issues, https://github.com/airbytehq/airbyte-agent-connectors/issues
9
+ Author-email: Airbyte <contact@airbyte.io>
10
+ License: Elastic-2.0
11
+ Keywords: agent,ai,airbyte,api,connector,data-integration,google-drive,llm,mcp
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: Other/Proprietary License
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Classifier: Typing :: Typed
21
+ Requires-Python: >=3.13
22
+ Requires-Dist: httpx>=0.24.0
23
+ Requires-Dist: jinja2>=3.0.0
24
+ Requires-Dist: jsonpath-ng>=1.6.1
25
+ Requires-Dist: jsonref>=1.1.0
26
+ Requires-Dist: opentelemetry-api>=1.37.0
27
+ Requires-Dist: opentelemetry-sdk>=1.37.0
28
+ Requires-Dist: pydantic>=2.0.0
29
+ Requires-Dist: python-dotenv>=1.0.0
30
+ Requires-Dist: pyyaml>=6.0
31
+ Requires-Dist: segment-analytics-python>=2.2.0
32
+ Description-Content-Type: text/markdown
33
+
34
+ # Google-Drive agent connector
35
+
36
+ Google Drive is a cloud-based file storage and synchronization service that allows users
37
+ to store files, share content, and collaborate on documents. This connector provides
38
+ read-only access to files, shared drives, permissions, comments, replies, revisions,
39
+ and change tracking for data analysis and integration workflows.
40
+
41
+
42
+ ## Example questions
43
+
44
+ The Google-Drive connector is optimized to handle prompts like these.
45
+
46
+ - List all files in my Google Drive
47
+ - Show me files modified in the last week
48
+ - Get details for file abc123
49
+ - Download file abc123 from my Drive
50
+ - Export Google Doc abc123 as PDF
51
+ - Export Google Sheet xyz789 as CSV
52
+ - Get the content of file abc123
53
+ - List all shared drives I have access to
54
+ - Get shared drive xyz789
55
+ - Show permissions for file abc123
56
+ - List comments on file abc123
57
+ - Get all replies to comment def456 on file abc123
58
+ - Show revision history for file abc123
59
+ - What changes have been made since my last sync?
60
+ - Get my Drive storage quota and user info
61
+ - List files in a specific folder
62
+
63
+ ## Unsupported questions
64
+
65
+ The Google-Drive connector isn't currently able to handle prompts like these.
66
+
67
+ - Create a new file in Google Drive
68
+ - Upload a document to Drive
69
+ - Delete a file from Drive
70
+ - Update file permissions
71
+ - Add a comment to a file
72
+ - Move a file to a different folder
73
+
74
+ ## Installation
75
+
76
+ ```bash
77
+ uv pip install airbyte-agent-google-drive
78
+ ```
79
+
80
+ ## Usage
81
+
82
+ ```python
83
+ from airbyte_agent_google_drive import GoogleDriveConnector, GoogleDriveAuthConfig
84
+
85
+ connector = GoogleDriveConnector(
86
+ auth_config=GoogleDriveAuthConfig(
87
+ access_token="...",
88
+ refresh_token="...",
89
+ client_id="...",
90
+ client_secret="..."
91
+ )
92
+ )
93
+ result = await connector.files.list()
94
+ ```
95
+
96
+
97
+ ## Full documentation
98
+
99
+ This connector supports the following entities and actions.
100
+
101
+ | Entity | Actions |
102
+ |--------|---------|
103
+ | Files | [List](./REFERENCE.md#files-list), [Get](./REFERENCE.md#files-get), [Download](./REFERENCE.md#files-download) |
104
+ | Files Export | [Download](./REFERENCE.md#files-export-download) |
105
+ | Drives | [List](./REFERENCE.md#drives-list), [Get](./REFERENCE.md#drives-get) |
106
+ | Permissions | [List](./REFERENCE.md#permissions-list), [Get](./REFERENCE.md#permissions-get) |
107
+ | Comments | [List](./REFERENCE.md#comments-list), [Get](./REFERENCE.md#comments-get) |
108
+ | Replies | [List](./REFERENCE.md#replies-list), [Get](./REFERENCE.md#replies-get) |
109
+ | Revisions | [List](./REFERENCE.md#revisions-list), [Get](./REFERENCE.md#revisions-get) |
110
+ | Changes | [List](./REFERENCE.md#changes-list) |
111
+ | Changes Start Page Token | [Get](./REFERENCE.md#changes-start-page-token-get) |
112
+ | About | [Get](./REFERENCE.md#about-get) |
113
+
114
+
115
+ For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
116
+
117
+ For the service's official API docs, see the [Google-Drive API reference](https://developers.google.com/workspace/drive/api/reference/rest/v3).
118
+
119
+ ## Version information
120
+
121
+ - **Package version:** 0.1.15
122
+ - **Connector version:** 0.1.1
123
+ - **Generated with Connector SDK commit SHA:** 61a2e8229a38f13564ef2f85e276dff02f707573
@@ -0,0 +1,57 @@
1
+ airbyte_agent_google_drive/__init__.py,sha256=8mKDsmT8hlmpbXxD9jgxtvE9uv0LqLaTA-65R2QMsuw,3686
2
+ airbyte_agent_google_drive/connector.py,sha256=tiwIBqjojg3QcjkpX-qOT1Q4ZgGuayLnwVFZqxZQL1M,43972
3
+ airbyte_agent_google_drive/connector_model.py,sha256=wUxwQpQnDkC4LaxRx2-J9fgngDOTZAUerq_zpSNIvJM,307772
4
+ airbyte_agent_google_drive/models.py,sha256=Nq7jQejmQ-dHN3S77QjaSUv9Hn2lzmyI3hMmuxEKJ3w,32790
5
+ airbyte_agent_google_drive/types.py,sha256=4l4l_9eOJadwunZx-dQm2UIWchzbgjLCuXqMTxWU104,4214
6
+ airbyte_agent_google_drive/_vendored/__init__.py,sha256=ILl7AHXMui__swyrjxrh9yRa4dLiwBvV6axPWFWty80,38
7
+ airbyte_agent_google_drive/_vendored/connector_sdk/__init__.py,sha256=T5o7roU6NSpH-lCAGZ338sE5dlh4ZU6i6IkeG1zpems,1949
8
+ airbyte_agent_google_drive/_vendored/connector_sdk/auth_strategies.py,sha256=BdjAzFRTwXCmLFqYWqZ4Dx9RsqtI7pAkw-8NynSK4sQ,39914
9
+ airbyte_agent_google_drive/_vendored/connector_sdk/auth_template.py,sha256=nju4jqlFC_KI82ILNumNIyiUtRJcy7J94INIZ0QraI4,4454
10
+ airbyte_agent_google_drive/_vendored/connector_sdk/connector_model_loader.py,sha256=b88aoMynHxtG2dhzclkWrLiJbefTiKMzReyj3lOiwJI,34940
11
+ airbyte_agent_google_drive/_vendored/connector_sdk/constants.py,sha256=AtzOvhDMWbRJgpsQNWl5tkogHD6mWgEY668PgRmgtOY,2737
12
+ airbyte_agent_google_drive/_vendored/connector_sdk/exceptions.py,sha256=ss5MGv9eVPmsbLcLWetuu3sDmvturwfo6Pw3M37Oq5k,481
13
+ airbyte_agent_google_drive/_vendored/connector_sdk/extensions.py,sha256=XWRRoJOOrwUHSKbuQt5DU7CCu8ePzhd_HuP7c_uD77w,21376
14
+ airbyte_agent_google_drive/_vendored/connector_sdk/http_client.py,sha256=NdccrrBHI5rW56XnXcP54arCwywIVKnMeSQPas6KlOM,27466
15
+ airbyte_agent_google_drive/_vendored/connector_sdk/introspection.py,sha256=2CyKXZHT74-1Id97uw1RLeyOi6TV24_hoNbQ6-6y7uI,10335
16
+ airbyte_agent_google_drive/_vendored/connector_sdk/secrets.py,sha256=J9ezMu4xNnLW11xY5RCre6DHP7YMKZCqwGJfk7ufHAM,6855
17
+ airbyte_agent_google_drive/_vendored/connector_sdk/types.py,sha256=CStkOsLtmZZdXylkdCsbYORDzughxygt1-Ucma0j-qE,8287
18
+ airbyte_agent_google_drive/_vendored/connector_sdk/utils.py,sha256=G4LUXOC2HzPoND2v4tQW68R9uuPX9NQyCjaGxb7Kpl0,1958
19
+ airbyte_agent_google_drive/_vendored/connector_sdk/validation.py,sha256=CDjCux1eg35a0Y4BegSivzIwZjiTqOxYWotWNLqTSVU,31792
20
+ airbyte_agent_google_drive/_vendored/connector_sdk/cloud_utils/__init__.py,sha256=4799Hv9f2zxDVj1aLyQ8JpTEuFTp_oOZMRz-NZCdBJg,134
21
+ airbyte_agent_google_drive/_vendored/connector_sdk/cloud_utils/client.py,sha256=YxdRpQr9XjDzih6csSseBVGn9kfMtaqbOCXP0TPuzFY,7189
22
+ airbyte_agent_google_drive/_vendored/connector_sdk/executor/__init__.py,sha256=EmG9YQNAjSuYCVB4D5VoLm4qpD1KfeiiOf7bpALj8p8,702
23
+ airbyte_agent_google_drive/_vendored/connector_sdk/executor/hosted_executor.py,sha256=ydHcG-biRS1ITT5ELwPShdJW-KYpvK--Fos1ipNgHho,6995
24
+ airbyte_agent_google_drive/_vendored/connector_sdk/executor/local_executor.py,sha256=CMuknflYNY6_f83xrxvqewfI52MLYdPin3Rvz6HS3wU,67610
25
+ airbyte_agent_google_drive/_vendored/connector_sdk/executor/models.py,sha256=lYVT_bNcw-PoIks4WHNyl2VY-lJVf2FntzINSOBIheE,5845
26
+ airbyte_agent_google_drive/_vendored/connector_sdk/http/__init__.py,sha256=y8fbzZn-3yV9OxtYz8Dy6FFGI5v6TOqADd1G3xHH3Hw,911
27
+ airbyte_agent_google_drive/_vendored/connector_sdk/http/config.py,sha256=6J7YIIwHC6sRu9i-yKa5XvArwK2KU60rlnmxzDZq3lw,3283
28
+ airbyte_agent_google_drive/_vendored/connector_sdk/http/exceptions.py,sha256=eYdYmxqcwA6pgrSoRXNfR6_nRBGRH6upp2-r1jcKaZo,3586
29
+ airbyte_agent_google_drive/_vendored/connector_sdk/http/protocols.py,sha256=eV7NbBIQOcPLw-iu8mtkV2zCVgScDwP0ek1SbPNQo0g,3323
30
+ airbyte_agent_google_drive/_vendored/connector_sdk/http/response.py,sha256=Q-RyM5D0D05ZhmZVJk4hVpmoS8YtyXNOTM5hqBt7rWI,3475
31
+ airbyte_agent_google_drive/_vendored/connector_sdk/http/adapters/__init__.py,sha256=gjbWdU4LfzUG2PETI0TkfkukdzoCAhpL6FZtIEnkO-s,209
32
+ airbyte_agent_google_drive/_vendored/connector_sdk/http/adapters/httpx_adapter.py,sha256=dkYhzBWiKBmzWZlc-cRTx50Hb6fy3OI8kOQvXRfS1CQ,8465
33
+ airbyte_agent_google_drive/_vendored/connector_sdk/logging/__init__.py,sha256=IZoE5yXhwSA0m3xQqh0FiCifjp1sB3S8jnnFPuJLYf8,227
34
+ airbyte_agent_google_drive/_vendored/connector_sdk/logging/logger.py,sha256=GKm03UgDMNlvGuuH_c07jNcZmUccC3DISG269Ehj1Uo,8084
35
+ airbyte_agent_google_drive/_vendored/connector_sdk/logging/types.py,sha256=z0UiSdXP_r71mtwWkJydo0InsNpYOMyI7SVutzd2PEo,3172
36
+ airbyte_agent_google_drive/_vendored/connector_sdk/observability/__init__.py,sha256=ojx1n9vaWCXFFvb3-90Pwtg845trFdV2v6wcCoO75Ko,269
37
+ airbyte_agent_google_drive/_vendored/connector_sdk/observability/config.py,sha256=uWvRAPHnEusVKviQQncqcpnHKNhoZ4ZoFK6nUOSVClY,5372
38
+ airbyte_agent_google_drive/_vendored/connector_sdk/observability/models.py,sha256=IRGjlJia28_IU7BMSBb5RHWs47yAOLvE20JIIXHazLY,448
39
+ airbyte_agent_google_drive/_vendored/connector_sdk/observability/redactor.py,sha256=HRbSwGxsfQYbYlG4QBVvv8Qnw0d4SMowMv0dTFHsHqQ,2361
40
+ airbyte_agent_google_drive/_vendored/connector_sdk/observability/session.py,sha256=WYRIB3bVz9HhpElkUO9CILCRIrWs9p2MR2hmf8uJm3E,3086
41
+ airbyte_agent_google_drive/_vendored/connector_sdk/performance/__init__.py,sha256=Sp5fSd1LvtIQkv-fnrKqPsM7-6IWp0sSZSK0mhzal_A,200
42
+ airbyte_agent_google_drive/_vendored/connector_sdk/performance/instrumentation.py,sha256=_dXvNiqdndIBwDjeDKNViWzn_M5FkSUsMmJtFldrmsM,1504
43
+ airbyte_agent_google_drive/_vendored/connector_sdk/performance/metrics.py,sha256=FRff7dKt4iwt_A7pxV5n9kAGBR756PC7q8-weWygPSM,2817
44
+ airbyte_agent_google_drive/_vendored/connector_sdk/schema/__init__.py,sha256=Uymu-QuzGJuMxexBagIvUxpVAigIuIhz3KeBl_Vu4Ko,1638
45
+ airbyte_agent_google_drive/_vendored/connector_sdk/schema/base.py,sha256=4RYTkCWgyS5Z75z9TKj9vXySfO00HJ03QDtbdVYeHYM,5086
46
+ airbyte_agent_google_drive/_vendored/connector_sdk/schema/components.py,sha256=x3YCM1p2n_xHi50fMeOX0mXUiPqjGlLHs3Go8jXokb0,7895
47
+ airbyte_agent_google_drive/_vendored/connector_sdk/schema/connector.py,sha256=mSZk1wr2YSdRj9tTRsPAuIlCzd_xZLw-Bzl1sMwE0rE,3731
48
+ airbyte_agent_google_drive/_vendored/connector_sdk/schema/extensions.py,sha256=f7VhHrcIYxaPOJHMc4g0lpy04pZTbx5nlroNzAu5B9Q,7135
49
+ airbyte_agent_google_drive/_vendored/connector_sdk/schema/operations.py,sha256=RpzGtAI4yvAtMHAfMUMcUwgHv_qJojnKlNb75_agUF8,5729
50
+ airbyte_agent_google_drive/_vendored/connector_sdk/schema/security.py,sha256=zQ9RRuF3LBgLQi_4cItmjXbG_5WKlmCNM3nCil30H90,8470
51
+ airbyte_agent_google_drive/_vendored/connector_sdk/telemetry/__init__.py,sha256=RaLgkBU4dfxn1LC5Y0Q9rr2PJbrwjxvPgBLmq8_WafE,211
52
+ airbyte_agent_google_drive/_vendored/connector_sdk/telemetry/config.py,sha256=tLmQwAFD0kP1WyBGWBS3ysaudN9H3e-3EopKZi6cGKg,885
53
+ airbyte_agent_google_drive/_vendored/connector_sdk/telemetry/events.py,sha256=8Y1NbXiwISX-V_wRofY7PqcwEXD0dLMnntKkY6XFU2s,1328
54
+ airbyte_agent_google_drive/_vendored/connector_sdk/telemetry/tracker.py,sha256=Ftrk0_ddfM7dZG8hF9xBuPwhbc9D6JZ7Q9qs5o3LEyA,5579
55
+ airbyte_agent_google_drive-0.1.15.dist-info/METADATA,sha256=iO68AwmZPupX56BWMkU7IEKzA7891hGvzooGS0PWqTo,4565
56
+ airbyte_agent_google_drive-0.1.15.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
57
+ airbyte_agent_google_drive-0.1.15.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any