airbyte-source-google-search-console 1.4.7__py3-none-any.whl → 1.4.9__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-search-console
3
- Version: 1.4.7
3
+ Version: 1.4.9
4
4
  Summary: Source implementation for Google Search Console.
5
5
  Home-page: https://airbyte.com
6
6
  License: Elv2
@@ -17,10 +17,10 @@ source_google_search_console/schemas/search_analytics_site_report_by_site.json,s
17
17
  source_google_search_console/schemas/sitemaps.json,sha256=coyPSZCAfzMheybfRp4WPAZCp5JF2KGRF2rWK8oC080,1775
18
18
  source_google_search_console/schemas/sites.json,sha256=WNiCRuStPL1YkJiFa8FEbNJmqaERAOf9Yow6ygIumvo,383
19
19
  source_google_search_console/service_account_authenticator.py,sha256=ocSisT5IYegoZf4atsGm9u2lJCdmeSf_9o4q7YN3vD4,1225
20
- source_google_search_console/source.py,sha256=s-ZFiZ0iDL_OGOndO9tyBAoiiLSPtCf5kVmHWsxE25k,10029
20
+ source_google_search_console/source.py,sha256=S0IIPPiI6ixHMIaezNQO7sfIqVio2_xyQZWPhzhxS_4,10000
21
21
  source_google_search_console/spec.json,sha256=WYtFvaSqWYGm1Dt2yV9G92U78Q94rh9oarbxJe3H7xo,8470
22
22
  source_google_search_console/streams.py,sha256=avllhiXP9DGuFBdiYEaaiKCog0bzskeRISCXGxSqiT4,19120
23
- airbyte_source_google_search_console-1.4.7.dist-info/METADATA,sha256=5B5MdRyj2o2I6GAoh6rv7WZvVPMI4a5J9NQKPhjx6qE,5619
24
- airbyte_source_google_search_console-1.4.7.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
25
- airbyte_source_google_search_console-1.4.7.dist-info/entry_points.txt,sha256=DMcgc9bCX-Vt6hm_68pa77qS3eGdeMhg-UdlFc-XKUM,85
26
- airbyte_source_google_search_console-1.4.7.dist-info/RECORD,,
23
+ airbyte_source_google_search_console-1.4.9.dist-info/METADATA,sha256=o6r_IaB7SwHsIsP6RNFQJ5-wPq0bdlBNr60cMHfon9Q,5619
24
+ airbyte_source_google_search_console-1.4.9.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
25
+ airbyte_source_google_search_console-1.4.9.dist-info/entry_points.txt,sha256=DMcgc9bCX-Vt6hm_68pa77qS3eGdeMhg-UdlFc-XKUM,85
26
+ airbyte_source_google_search_console-1.4.9.dist-info/RECORD,,
@@ -3,13 +3,13 @@
3
3
  #
4
4
 
5
5
  import json
6
+ import logging
6
7
  from typing import Any, List, Mapping, Optional, Tuple, Union
7
8
  from urllib.parse import urlparse
8
9
 
9
10
  import jsonschema
10
11
  import pendulum
11
12
  import requests
12
- from airbyte_cdk.logger import AirbyteLogger
13
13
  from airbyte_cdk.models import FailureType, SyncMode
14
14
  from airbyte_cdk.sources import AbstractSource
15
15
  from airbyte_cdk.sources.streams import Stream
@@ -108,7 +108,7 @@ class SourceGoogleSearchConsole(AbstractSource):
108
108
  raise AirbyteTracedException(message=message, internal_message=message, failure_type=FailureType.config_error)
109
109
  return config
110
110
 
111
- def check_connection(self, logger: AirbyteLogger, config: Mapping[str, Any]) -> Tuple[bool, Any]:
111
+ def check_connection(self, logger: logging.Logger, config: Mapping[str, Any]) -> Tuple[bool, Any]:
112
112
  try:
113
113
  config = self._validate_and_transform(config)
114
114
  stream_kwargs = self.get_stream_kwargs(config)