airbyte-source-google-drive 0.2.0.dev202501272232__tar.gz → 0.2.0.dev202501272304__tar.gz
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.
- {airbyte_source_google_drive-0.2.0.dev202501272232 → airbyte_source_google_drive-0.2.0.dev202501272304}/PKG-INFO +1 -1
- {airbyte_source_google_drive-0.2.0.dev202501272232 → airbyte_source_google_drive-0.2.0.dev202501272304}/pyproject.toml +1 -1
- {airbyte_source_google_drive-0.2.0.dev202501272232 → airbyte_source_google_drive-0.2.0.dev202501272304}/source_google_drive/spec.py +2 -12
- {airbyte_source_google_drive-0.2.0.dev202501272232 → airbyte_source_google_drive-0.2.0.dev202501272304}/README.md +0 -0
- {airbyte_source_google_drive-0.2.0.dev202501272232 → airbyte_source_google_drive-0.2.0.dev202501272304}/source_google_drive/__init__.py +0 -0
- {airbyte_source_google_drive-0.2.0.dev202501272232 → airbyte_source_google_drive-0.2.0.dev202501272304}/source_google_drive/exceptions.py +0 -0
- {airbyte_source_google_drive-0.2.0.dev202501272232 → airbyte_source_google_drive-0.2.0.dev202501272304}/source_google_drive/run.py +0 -0
- {airbyte_source_google_drive-0.2.0.dev202501272232 → airbyte_source_google_drive-0.2.0.dev202501272304}/source_google_drive/source.py +0 -0
- {airbyte_source_google_drive-0.2.0.dev202501272232 → airbyte_source_google_drive-0.2.0.dev202501272304}/source_google_drive/stream_reader.py +0 -0
- {airbyte_source_google_drive-0.2.0.dev202501272232 → airbyte_source_google_drive-0.2.0.dev202501272304}/source_google_drive/temp_mock.py +0 -0
- {airbyte_source_google_drive-0.2.0.dev202501272232 → airbyte_source_google_drive-0.2.0.dev202501272304}/source_google_drive/utils.py +0 -0
|
@@ -17,26 +17,16 @@ from airbyte_cdk.sources.file_based.config.abstract_file_based_spec import (
|
|
|
17
17
|
)
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
class EnableFeatureYes(BaseModel):
|
|
21
|
-
enable_feature: Literal[True] = Field(True, description="Enable this feature.", title="Enable Feature")
|
|
22
|
-
advanced_setting: Optional[str] = Field(None, title="Advanced Setting", description="Additional advanced setting.")
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
class EnableFeatureNo(BaseModel):
|
|
26
|
-
enable_feature: Literal[False] = Field(False, description="Disable this feature.", title="Enable Feature")
|
|
27
|
-
|
|
28
|
-
|
|
29
20
|
class DeliverRecords(DeliverRecordsBase):
|
|
30
21
|
# Overriding to make visible with airbyte_hidden=False
|
|
31
|
-
feature_config: Union[EnableFeatureYes, EnableFeatureNo]
|
|
32
|
-
|
|
33
22
|
sync_acl_permissions: bool = Field(
|
|
34
23
|
title="Include ACL Permissions",
|
|
35
24
|
description="Joins Document allowlists to each stream.",
|
|
36
25
|
default=False,
|
|
37
26
|
airbyte_hidden=False,
|
|
27
|
+
order=0,
|
|
38
28
|
)
|
|
39
|
-
domain: Optional[str] = Field(title="Domain", description="The domain of the identities.", airbyte_hidden=False)
|
|
29
|
+
domain: Optional[str] = Field(title="Domain", description="The domain of the identities.", airbyte_hidden=False, order=1)
|
|
40
30
|
|
|
41
31
|
|
|
42
32
|
class OAuthCredentials(BaseModel):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|