airbyte-source-google-drive 0.4.0.dev202504072341__py3-none-any.whl → 0.4.0.dev202504091818__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.dev202504072341
3
+ Version: 0.4.0.dev202504091818
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.0.dev04106)
13
+ Requires-Dist: airbyte-cdk[file-based] (==6.45.0.dev04107)
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=veKeJAaSlymqbx4hrIZxrNuHHRzDUHdmEScwyUD6CvY,14899
9
+ source_google_drive/stream_reader.py,sha256=r7eSUJ1CTgaZsMg3TljUDjSNidTyAyfRGfv2vxhLdlQ,14909
10
10
  source_google_drive/utils.py,sha256=ewR-kBKLmtD-s7zqCfGECfzWYF43tpQdscAQIlUEkR8,1022
11
- airbyte_source_google_drive-0.4.0.dev202504072341.dist-info/METADATA,sha256=b9xSAa3WoXIZZxior0x8UFnLSJN3HGrRGaEq84GWRaw,5536
12
- airbyte_source_google_drive-0.4.0.dev202504072341.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
13
- airbyte_source_google_drive-0.4.0.dev202504072341.dist-info/entry_points.txt,sha256=YgpJf0nA5Mn0B7YC9VOFI847vz1jI6U4q7BeLUOXa54,67
14
- airbyte_source_google_drive-0.4.0.dev202504072341.dist-info/RECORD,,
11
+ airbyte_source_google_drive-0.4.0.dev202504091818.dist-info/METADATA,sha256=3kVi44z3GI6xpjSQPUhi44MAUSk6FoldVXQlYvhoK5w,5536
12
+ airbyte_source_google_drive-0.4.0.dev202504091818.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
13
+ airbyte_source_google_drive-0.4.0.dev202504091818.dist-info/entry_points.txt,sha256=YgpJf0nA5Mn0B7YC9VOFI847vz1jI6U4q7BeLUOXa54,67
14
+ airbyte_source_google_drive-0.4.0.dev202504091818.dist-info/RECORD,,
@@ -299,7 +299,7 @@ class SourceGoogleDriveStreamReader(AbstractFileBasedStreamReader):
299
299
  bytes=file_size,
300
300
  id=file.id,
301
301
  mime_type=file.mime_type,
302
- updated_at=int(file.last_modified.timestamp() * 1000),
302
+ updated_at=file.last_modified.strftime("%Y-%m-%dT%H:%M:%S.%fZ"),
303
303
  )
304
304
  file_reference = AirbyteRecordMessageFileReference(
305
305
  staging_file_url=local_file_path,