airbyte-source-google-ads 4.1.2__py3-none-any.whl → 4.1.3__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.2.dist-info → airbyte_source_google_ads-4.1.3.dist-info}/METADATA +1 -1
- {airbyte_source_google_ads-4.1.2.dist-info → airbyte_source_google_ads-4.1.3.dist-info}/RECORD +5 -5
- source_google_ads/manifest.yaml +9 -9
- {airbyte_source_google_ads-4.1.2.dist-info → airbyte_source_google_ads-4.1.3.dist-info}/WHEEL +0 -0
- {airbyte_source_google_ads-4.1.2.dist-info → airbyte_source_google_ads-4.1.3.dist-info}/entry_points.txt +0 -0
{airbyte_source_google_ads-4.1.2.dist-info → airbyte_source_google_ads-4.1.3.dist-info}/RECORD
RENAMED
|
@@ -2,7 +2,7 @@ source_google_ads/__init__.py,sha256=Nlo5H6LlaSgg7tx_LyqMIy3MXiAagfk3izZ9o44VvSE
|
|
|
2
2
|
source_google_ads/components.py,sha256=_Jku4_NHRg4OzYSmtk23H0LfYo0bbqfx1navUoUztug,40970
|
|
3
3
|
source_google_ads/config_migrations.py,sha256=oBi_qNqBpLS8GNCaIOBo0stNdYuyqVl6lkrhdXRwMX8,4405
|
|
4
4
|
source_google_ads/google_ads.py,sha256=cxS18tz0fFJjmIhlhFQ3Zvu2K8bhDtmsl1kFeO7nNhk,11595
|
|
5
|
-
source_google_ads/manifest.yaml,sha256=
|
|
5
|
+
source_google_ads/manifest.yaml,sha256=ICDxfH8-pT78PfQwU2h_mgCVkv-sSzuQBR4BdnVZEpU,219342
|
|
6
6
|
source_google_ads/models.py,sha256=ZmdS3z_2roaEQgV2Mx1CDm33MztpQ66SfHDzP8XwZog,1658
|
|
7
7
|
source_google_ads/run.py,sha256=ydIyq_vSNV5Z4mJYnsO5GyNDsLDd0qibBsq6wnvuFAo,2002
|
|
8
8
|
source_google_ads/schemas/customer_client.json,sha256=oThcyUDO1yWpxtWPWdoAFqTXEIweF8N4q6mRI73Q6yU,984
|
|
@@ -11,7 +11,7 @@ source_google_ads/source.py,sha256=hz5ep6stMWHNvD73PIF_7bjnee49sY9YHHjaYNAPnOQ,1
|
|
|
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.3.dist-info/METADATA,sha256=r83LKIZKX9R2YF7o84QV4ut_pGm1AQpVG-lWUay9ZNE,5360
|
|
15
|
+
airbyte_source_google_ads-4.1.3.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
16
|
+
airbyte_source_google_ads-4.1.3.dist-info/entry_points.txt,sha256=pP4Llir93XGkHFDZfXXxK7qOWo9_U1ssCJToyxEUB4w,63
|
|
17
|
+
airbyte_source_google_ads-4.1.3.dist-info/RECORD,,
|
source_google_ads/manifest.yaml
CHANGED
|
@@ -1020,13 +1020,13 @@ definitions:
|
|
|
1020
1020
|
{{
|
|
1021
1021
|
(
|
|
1022
1022
|
components_values.get('query', '').count('segments.date') == 1
|
|
1023
|
-
and (components_values.get('query') | regex_search('(
|
|
1023
|
+
and (components_values.get('query') | regex_search('(?i)(\\bSELECT\\b[\\s\\S]*?segments\\.date[\\s\\S]*?\\bFROM\\b)'))
|
|
1024
1024
|
)
|
|
1025
1025
|
or
|
|
1026
1026
|
(
|
|
1027
1027
|
components_values.get('query', '').count('segments.date') == 2
|
|
1028
|
-
and (components_values.get('query') | regex_search('(
|
|
1029
|
-
and (components_values.get('query') | regex_search('(
|
|
1028
|
+
and (components_values.get('query') | regex_search('(?i)(\\bSELECT\\b[\\s\\S]*?segments\\.date[\\s\\S]*?\\bFROM\\b)'))
|
|
1029
|
+
and (components_values.get('query') | regex_search('(?i)(\\bORDER\\s+BY\\b[\\s\\S]*?segments\\.date)'))
|
|
1030
1030
|
)
|
|
1031
1031
|
}}
|
|
1032
1032
|
create_or_update: true
|
|
@@ -1049,13 +1049,13 @@ definitions:
|
|
|
1049
1049
|
{{
|
|
1050
1050
|
(
|
|
1051
1051
|
components_values.get('query', '').count('segments.date') == 1
|
|
1052
|
-
and (components_values.get('query') | regex_search('(
|
|
1052
|
+
and (components_values.get('query') | regex_search('(?i)(\\bSELECT\\b[\\s\\S]*?segments\\.date[\\s\\S]*?\\bFROM\\b)'))
|
|
1053
1053
|
)
|
|
1054
1054
|
or
|
|
1055
1055
|
(
|
|
1056
1056
|
components_values.get('query', '').count('segments.date') == 2
|
|
1057
|
-
and (components_values.get('query') | regex_search('(
|
|
1058
|
-
and (components_values.get('query') | regex_search('(
|
|
1057
|
+
and (components_values.get('query') | regex_search('(?i)(\\bSELECT\\b[\\s\\S]*?segments\\.date[\\s\\S]*?\\bFROM\\b)'))
|
|
1058
|
+
and (components_values.get('query') | regex_search('(?i)(\\bORDER\\s+BY\\b[\\s\\S]*?segments\\.date)'))
|
|
1059
1059
|
)
|
|
1060
1060
|
}}
|
|
1061
1061
|
create_or_update: true
|
|
@@ -1075,13 +1075,13 @@ definitions:
|
|
|
1075
1075
|
{{
|
|
1076
1076
|
(
|
|
1077
1077
|
components_values.get('query', '').count('segments.date') == 1
|
|
1078
|
-
and (components_values.get('query') | regex_search('(
|
|
1078
|
+
and (components_values.get('query') | regex_search('(?i)(\\bSELECT\\b[\\s\\S]*?segments\\.date[\\s\\S]*?\\bFROM\\b)'))
|
|
1079
1079
|
)
|
|
1080
1080
|
or
|
|
1081
1081
|
(
|
|
1082
1082
|
components_values.get('query', '').count('segments.date') == 2
|
|
1083
|
-
and (components_values.get('query') | regex_search('(
|
|
1084
|
-
and (components_values.get('query') | regex_search('(
|
|
1083
|
+
and (components_values.get('query') | regex_search('(?i)(\\bSELECT\\b[\\s\\S]*?segments\\.date[\\s\\S]*?\\bFROM\\b)'))
|
|
1084
|
+
and (components_values.get('query') | regex_search('(?i)(\\bORDER\\s+BY\\b[\\s\\S]*?segments\\.date)'))
|
|
1085
1085
|
)
|
|
1086
1086
|
}}
|
|
1087
1087
|
create_or_update: true
|
{airbyte_source_google_ads-4.1.2.dist-info → airbyte_source_google_ads-4.1.3.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|