airbyte-source-google-ads 4.1.1__tar.gz → 4.1.2__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.
- {airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/PKG-INFO +1 -1
- {airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/pyproject.toml +1 -1
- {airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/components.py +4 -1
- {airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/README.md +0 -0
- {airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/__init__.py +0 -0
- {airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/config_migrations.py +0 -0
- {airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/google_ads.py +0 -0
- {airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/manifest.yaml +0 -0
- {airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/models.py +0 -0
- {airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/run.py +0 -0
- {airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/schemas/customer_client.json +0 -0
- {airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/schemas/service_accounts.json +0 -0
- {airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/source.py +0 -0
- {airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/spec.json +0 -0
- {airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/streams.py +0 -0
- {airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/utils.py +0 -0
|
@@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
|
|
|
3
3
|
build-backend = "poetry.core.masonry.api"
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
|
-
version = "4.1.
|
|
6
|
+
version = "4.1.2"
|
|
7
7
|
name = "airbyte-source-google-ads"
|
|
8
8
|
description = "Source implementation for Google Ads."
|
|
9
9
|
authors = [ "Airbyte <contact@airbyte.io>",]
|
{airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/components.py
RENAMED
|
@@ -840,7 +840,10 @@ class CustomGAQuerySchemaLoader(SchemaLoader):
|
|
|
840
840
|
"""
|
|
841
841
|
query_upper = self.query.upper()
|
|
842
842
|
select_index = query_upper.find("SELECT")
|
|
843
|
-
|
|
843
|
+
match = re.search(r"\bFROM\b", query_upper)
|
|
844
|
+
if not match:
|
|
845
|
+
raise ValueError("Could not find a valid FROM clause in query")
|
|
846
|
+
from_index = match.start()
|
|
844
847
|
|
|
845
848
|
fields_portion = self.query[select_index + 6 : from_index].strip()
|
|
846
849
|
|
|
File without changes
|
{airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/google_ads.py
RENAMED
|
File without changes
|
{airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/manifest.yaml
RENAMED
|
File without changes
|
{airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/models.py
RENAMED
|
File without changes
|
{airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/run.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/source.py
RENAMED
|
File without changes
|
{airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/spec.json
RENAMED
|
File without changes
|
{airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/streams.py
RENAMED
|
File without changes
|
{airbyte_source_google_ads-4.1.1 → airbyte_source_google_ads-4.1.2}/source_google_ads/utils.py
RENAMED
|
File without changes
|