airbyte-source-google-ads 4.1.0rc8__py3-none-any.whl → 4.1.1__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.0rc8.dist-info → airbyte_source_google_ads-4.1.1.dist-info}/METADATA +1 -1
- {airbyte_source_google_ads-4.1.0rc8.dist-info → airbyte_source_google_ads-4.1.1.dist-info}/RECORD +5 -5
- source_google_ads/manifest.yaml +39 -3
- {airbyte_source_google_ads-4.1.0rc8.dist-info → airbyte_source_google_ads-4.1.1.dist-info}/WHEEL +0 -0
- {airbyte_source_google_ads-4.1.0rc8.dist-info → airbyte_source_google_ads-4.1.1.dist-info}/entry_points.txt +0 -0
{airbyte_source_google_ads-4.1.0rc8.dist-info → airbyte_source_google_ads-4.1.1.dist-info}/RECORD
RENAMED
|
@@ -2,7 +2,7 @@ source_google_ads/__init__.py,sha256=Nlo5H6LlaSgg7tx_LyqMIy3MXiAagfk3izZ9o44VvSE
|
|
|
2
2
|
source_google_ads/components.py,sha256=8Vbomr6tbkF12lZh2ocTLWbtxB0ajrO143qYkpSFgQ4,40831
|
|
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=12ZHj08Fijt_4fktAvvkgRrcIZiE6CCaDO4_fYgMnTE,219177
|
|
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.1.dist-info/METADATA,sha256=1VEiA-Dj4Q0xFMw9LmRe9WqwwQkhBoQAG8J4A5UCOQA,5360
|
|
15
|
+
airbyte_source_google_ads-4.1.1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
16
|
+
airbyte_source_google_ads-4.1.1.dist-info/entry_points.txt,sha256=pP4Llir93XGkHFDZfXXxK7qOWo9_U1ssCJToyxEUB4w,63
|
|
17
|
+
airbyte_source_google_ads-4.1.1.dist-info/RECORD,,
|
source_google_ads/manifest.yaml
CHANGED
|
@@ -1016,7 +1016,19 @@ definitions:
|
|
|
1016
1016
|
"datetime_format": "%Y-%m-%d"
|
|
1017
1017
|
}
|
|
1018
1018
|
}
|
|
1019
|
-
condition:
|
|
1019
|
+
condition: >-
|
|
1020
|
+
{{
|
|
1021
|
+
(
|
|
1022
|
+
components_values.get('query', '').count('segments.date') == 1
|
|
1023
|
+
and (components_values.get('query') | regex_search('(SELECT[\s\S]*?segments\\.date[\s\S]*?FROM)'))
|
|
1024
|
+
)
|
|
1025
|
+
or
|
|
1026
|
+
(
|
|
1027
|
+
components_values.get('query', '').count('segments.date') == 2
|
|
1028
|
+
and (components_values.get('query') | regex_search('(SELECT[\s\S]*?segments\\.date[\s\S]*?FROM)'))
|
|
1029
|
+
and (components_values.get('query') | regex_search('(ORDER BY[\s\S]*?segments\\.date)'))
|
|
1030
|
+
)
|
|
1031
|
+
}}
|
|
1020
1032
|
create_or_update: true
|
|
1021
1033
|
- type: ComponentMappingDefinition
|
|
1022
1034
|
field_path:
|
|
@@ -1033,7 +1045,19 @@ definitions:
|
|
|
1033
1045
|
- $parameters
|
|
1034
1046
|
- cursor_field
|
|
1035
1047
|
value: "segments.date"
|
|
1036
|
-
condition:
|
|
1048
|
+
condition: >-
|
|
1049
|
+
{{
|
|
1050
|
+
(
|
|
1051
|
+
components_values.get('query', '').count('segments.date') == 1
|
|
1052
|
+
and (components_values.get('query') | regex_search('(SELECT[\s\S]*?segments\\.date[\s\S]*?FROM)'))
|
|
1053
|
+
)
|
|
1054
|
+
or
|
|
1055
|
+
(
|
|
1056
|
+
components_values.get('query', '').count('segments.date') == 2
|
|
1057
|
+
and (components_values.get('query') | regex_search('(SELECT[\s\S]*?segments\\.date[\s\S]*?FROM)'))
|
|
1058
|
+
and (components_values.get('query') | regex_search('(ORDER BY[\s\S]*?segments\\.date)'))
|
|
1059
|
+
)
|
|
1060
|
+
}}
|
|
1037
1061
|
create_or_update: true
|
|
1038
1062
|
- type: ComponentMappingDefinition
|
|
1039
1063
|
field_path:
|
|
@@ -1047,7 +1071,19 @@ definitions:
|
|
|
1047
1071
|
- schema_loader
|
|
1048
1072
|
- cursor_field
|
|
1049
1073
|
value: "segments.date"
|
|
1050
|
-
condition:
|
|
1074
|
+
condition: >-
|
|
1075
|
+
{{
|
|
1076
|
+
(
|
|
1077
|
+
components_values.get('query', '').count('segments.date') == 1
|
|
1078
|
+
and (components_values.get('query') | regex_search('(SELECT[\s\S]*?segments\\.date[\s\S]*?FROM)'))
|
|
1079
|
+
)
|
|
1080
|
+
or
|
|
1081
|
+
(
|
|
1082
|
+
components_values.get('query', '').count('segments.date') == 2
|
|
1083
|
+
and (components_values.get('query') | regex_search('(SELECT[\s\S]*?segments\\.date[\s\S]*?FROM)'))
|
|
1084
|
+
and (components_values.get('query') | regex_search('(ORDER BY[\s\S]*?segments\\.date)'))
|
|
1085
|
+
)
|
|
1086
|
+
}}
|
|
1051
1087
|
create_or_update: true
|
|
1052
1088
|
- type: ComponentMappingDefinition
|
|
1053
1089
|
field_path:
|
{airbyte_source_google_ads-4.1.0rc8.dist-info → airbyte_source_google_ads-4.1.1.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|