airbyte-source-google-drive 0.4.0.dev202504191947__py3-none-any.whl → 0.4.1__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.

Potentially problematic release.


This version of airbyte-source-google-drive might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: airbyte-source-google-drive
3
- Version: 0.4.0.dev202504191947
3
+ Version: 0.4.1
4
4
  Summary: Source implementation for Google Drive.
5
5
  License: ELv2
6
6
  Author: Airbyte
@@ -10,7 +10,7 @@ Classifier: License :: Other/Proprietary License
10
10
  Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Programming Language :: Python :: 3.10
12
12
  Classifier: Programming Language :: Python :: 3.11
13
- Requires-Dist: airbyte-cdk[file-based] (==6.45.4.post14.dev14544463167)
13
+ Requires-Dist: airbyte-cdk[file-based] (>=6.45.10,<7.0.0)
14
14
  Requires-Dist: google-api-python-client (==2.104.0)
15
15
  Requires-Dist: google-api-python-client-stubs (==1.18.0)
16
16
  Requires-Dist: google-auth-httplib2 (==0.1.1)
@@ -6,9 +6,9 @@ source_google_drive/schemas/identities.json,sha256=JXBR_v0wpfDKiWVzLoc8bPs33x5CG
6
6
  source_google_drive/source.py,sha256=Hmz60uMCQZyA9AhCN0bOUSW2iL3GW6VTwI5vrK0D1RY,4140
7
7
  source_google_drive/spec.py,sha256=-WkA2zGuQtf3G7uK8uq9BnimUlQh0s3vsqROmIHOgzI,4718
8
8
  source_google_drive/stream_permissions_reader.py,sha256=88bSJBC5n2svioTDwgVqf0x5yXRxityk_i0xokWEJcQ,9026
9
- source_google_drive/stream_reader.py,sha256=NzmHL6SYeush4Etxmu-Ke3LUVU1GDg_7TdSPj49ubE0,15803
9
+ source_google_drive/stream_reader.py,sha256=S9IDtw0Rrz84l8ZAf92Ge41h0nkPUrTRWD32Xe_E4Bo,15804
10
10
  source_google_drive/utils.py,sha256=ewR-kBKLmtD-s7zqCfGECfzWYF43tpQdscAQIlUEkR8,1022
11
- airbyte_source_google_drive-0.4.0.dev202504191947.dist-info/METADATA,sha256=V3GFlG7a2ORB7tPsRc7zPkhhQNellpQ6E5xtSeVV9iM,5549
12
- airbyte_source_google_drive-0.4.0.dev202504191947.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
13
- airbyte_source_google_drive-0.4.0.dev202504191947.dist-info/entry_points.txt,sha256=YgpJf0nA5Mn0B7YC9VOFI847vz1jI6U4q7BeLUOXa54,67
14
- airbyte_source_google_drive-0.4.0.dev202504191947.dist-info/RECORD,,
11
+ airbyte_source_google_drive-0.4.1.dist-info/METADATA,sha256=ttJ7qqJ3ZyHAcRKcbjeCpBxRJMPjxrC7dNrObfiEtOY,5519
12
+ airbyte_source_google_drive-0.4.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
13
+ airbyte_source_google_drive-0.4.1.dist-info/entry_points.txt,sha256=YgpJf0nA5Mn0B7YC9VOFI847vz1jI6U4q7BeLUOXa54,67
14
+ airbyte_source_google_drive-0.4.1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.2
2
+ Generator: poetry-core 2.1.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -310,7 +310,7 @@ class SourceGoogleDriveStreamReader(AbstractFileBasedStreamReader):
310
310
 
311
311
  file_record_data = FileRecordData(
312
312
  folder=file_paths[self.FILE_FOLDER],
313
- filename=file_name,
313
+ file_name=file_name,
314
314
  bytes=file_size,
315
315
  id=file.id,
316
316
  mime_type=file.mime_type,