airbyte-source-google-ads 4.1.3.dev202511242224__py3-none-any.whl → 4.1.4.dev202511261224__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.
- {airbyte_source_google_ads-4.1.3.dev202511242224.dist-info → airbyte_source_google_ads-4.1.4.dev202511261224.dist-info}/METADATA +1 -1
- {airbyte_source_google_ads-4.1.3.dev202511242224.dist-info → airbyte_source_google_ads-4.1.4.dev202511261224.dist-info}/RECORD +5 -5
- source_google_ads/source.py +6 -0
- {airbyte_source_google_ads-4.1.3.dev202511242224.dist-info → airbyte_source_google_ads-4.1.4.dev202511261224.dist-info}/WHEEL +0 -0
- {airbyte_source_google_ads-4.1.3.dev202511242224.dist-info → airbyte_source_google_ads-4.1.4.dev202511261224.dist-info}/entry_points.txt +0 -0
|
@@ -7,11 +7,11 @@ source_google_ads/models.py,sha256=ZmdS3z_2roaEQgV2Mx1CDm33MztpQ66SfHDzP8XwZog,1
|
|
|
7
7
|
source_google_ads/run.py,sha256=ydIyq_vSNV5Z4mJYnsO5GyNDsLDd0qibBsq6wnvuFAo,2002
|
|
8
8
|
source_google_ads/schemas/customer_client.json,sha256=oThcyUDO1yWpxtWPWdoAFqTXEIweF8N4q6mRI73Q6yU,984
|
|
9
9
|
source_google_ads/schemas/service_accounts.json,sha256=HVSyzbEoxzB4rntRHOjAh0ZYgbR584ew0W0CdJH7ECU,3485
|
|
10
|
-
source_google_ads/source.py,sha256=
|
|
10
|
+
source_google_ads/source.py,sha256=xmfWTrefFYNDm8Nl5FUqnTByjgQTcJI6VVBD_khY6No,1791
|
|
11
11
|
source_google_ads/spec.json,sha256=8hbc7smbaffIkYCkX2BYJLB9kgaH8vYKCg-H0y1FvUs,7810
|
|
12
12
|
source_google_ads/streams.py,sha256=FB-DNJlXhjQADptT-wrv3iGWoliyRuvDuHGeqiN9HsY,13349
|
|
13
13
|
source_google_ads/utils.py,sha256=-KpgGv2W8WueXvGRC3xbVreDl5-5-vU9OwzC5SZDKVc,21409
|
|
14
|
-
airbyte_source_google_ads-4.1.
|
|
15
|
-
airbyte_source_google_ads-4.1.
|
|
16
|
-
airbyte_source_google_ads-4.1.
|
|
17
|
-
airbyte_source_google_ads-4.1.
|
|
14
|
+
airbyte_source_google_ads-4.1.4.dev202511261224.dist-info/METADATA,sha256=hF_jEn4xE6E4jWFnE9O0bCHOBI4rFJPegmqUH9JdhPc,5376
|
|
15
|
+
airbyte_source_google_ads-4.1.4.dev202511261224.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
16
|
+
airbyte_source_google_ads-4.1.4.dev202511261224.dist-info/entry_points.txt,sha256=pP4Llir93XGkHFDZfXXxK7qOWo9_U1ssCJToyxEUB4w,63
|
|
17
|
+
airbyte_source_google_ads-4.1.4.dev202511261224.dist-info/RECORD,,
|
source_google_ads/source.py
CHANGED
|
@@ -34,6 +34,12 @@ class SourceGoogleAds(YamlDeclarativeSource):
|
|
|
34
34
|
config["customer_ids"] = config["customer_id"].split(",")
|
|
35
35
|
config.pop("customer_id")
|
|
36
36
|
|
|
37
|
+
# Replace tabs with spaces in custom queries to prevent YAML parsing errors
|
|
38
|
+
if "custom_queries_array" in config:
|
|
39
|
+
for query_config in config["custom_queries_array"]:
|
|
40
|
+
if "query" in query_config and isinstance(query_config["query"], str):
|
|
41
|
+
query_config["query"] = query_config["query"].replace("\t", " ")
|
|
42
|
+
|
|
37
43
|
return config
|
|
38
44
|
|
|
39
45
|
def streams(self, config: Mapping[str, Any]) -> List[Stream]:
|
|
File without changes
|