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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-source-google-ads
3
- Version: 4.1.3.dev202511242224
3
+ Version: 4.1.4.dev202511261224
4
4
  Summary: Source implementation for Google Ads.
5
5
  Home-page: https://airbyte.com
6
6
  License: Elv2
@@ -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=hz5ep6stMWHNvD73PIF_7bjnee49sY9YHHjaYNAPnOQ,1425
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.3.dev202511242224.dist-info/METADATA,sha256=RNDWN88xD7a9MbjQZMu0Ly3vLWxS0ol-d_xDPL6DmM8,5376
15
- airbyte_source_google_ads-4.1.3.dev202511242224.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
16
- airbyte_source_google_ads-4.1.3.dev202511242224.dist-info/entry_points.txt,sha256=pP4Llir93XGkHFDZfXXxK7qOWo9_U1ssCJToyxEUB4w,63
17
- airbyte_source_google_ads-4.1.3.dev202511242224.dist-info/RECORD,,
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,,
@@ -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]: