airbyte-source-google-sheets 0.9.5.dev202505141418__tar.gz → 0.9.6__tar.gz

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.
Files changed (15) hide show
  1. {airbyte_source_google_sheets-0.9.5.dev202505141418 → airbyte_source_google_sheets-0.9.6}/PKG-INFO +1 -1
  2. {airbyte_source_google_sheets-0.9.5.dev202505141418 → airbyte_source_google_sheets-0.9.6}/pyproject.toml +1 -1
  3. {airbyte_source_google_sheets-0.9.5.dev202505141418 → airbyte_source_google_sheets-0.9.6}/source_google_sheets/components/extractors.py +1 -1
  4. {airbyte_source_google_sheets-0.9.5.dev202505141418 → airbyte_source_google_sheets-0.9.6}/source_google_sheets/manifest.yaml +7 -5
  5. {airbyte_source_google_sheets-0.9.5.dev202505141418 → airbyte_source_google_sheets-0.9.6}/source_google_sheets/utils.py +1 -1
  6. {airbyte_source_google_sheets-0.9.5.dev202505141418 → airbyte_source_google_sheets-0.9.6}/README.md +0 -0
  7. {airbyte_source_google_sheets-0.9.5.dev202505141418 → airbyte_source_google_sheets-0.9.6}/source_google_sheets/__init__.py +0 -0
  8. {airbyte_source_google_sheets-0.9.5.dev202505141418 → airbyte_source_google_sheets-0.9.6}/source_google_sheets/components/__init__.py +0 -0
  9. {airbyte_source_google_sheets-0.9.5.dev202505141418 → airbyte_source_google_sheets-0.9.6}/source_google_sheets/components/partition_routers.py +0 -0
  10. {airbyte_source_google_sheets-0.9.5.dev202505141418 → airbyte_source_google_sheets-0.9.6}/source_google_sheets/models/__init__.py +0 -0
  11. {airbyte_source_google_sheets-0.9.5.dev202505141418 → airbyte_source_google_sheets-0.9.6}/source_google_sheets/models/spreadsheet.py +0 -0
  12. {airbyte_source_google_sheets-0.9.5.dev202505141418 → airbyte_source_google_sheets-0.9.6}/source_google_sheets/models/spreadsheet_values.py +0 -0
  13. {airbyte_source_google_sheets-0.9.5.dev202505141418 → airbyte_source_google_sheets-0.9.6}/source_google_sheets/run.py +0 -0
  14. {airbyte_source_google_sheets-0.9.5.dev202505141418 → airbyte_source_google_sheets-0.9.6}/source_google_sheets/source.py +0 -0
  15. {airbyte_source_google_sheets-0.9.5.dev202505141418 → airbyte_source_google_sheets-0.9.6}/source_google_sheets/spec.yaml +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: airbyte-source-google-sheets
3
- Version: 0.9.5.dev202505141418
3
+ Version: 0.9.6
4
4
  Summary: Source implementation for Google Sheets.
5
5
  License: Elv2
6
6
  Author: Airbyte
@@ -5,7 +5,7 @@ requires = [
5
5
  build-backend = "poetry.core.masonry.api"
6
6
 
7
7
  [tool.poetry]
8
- version = "0.9.5.dev202505141418"
8
+ version = "0.9.6"
9
9
  name = "airbyte-source-google-sheets"
10
10
  description = "Source implementation for Google Sheets."
11
11
  authors = [
@@ -69,7 +69,7 @@ class RawSchemaParser:
69
69
  seen_values = set()
70
70
  for property_index, raw_schema_property in enumerate(raw_schema_properties):
71
71
  raw_schema_property_value = self._extract_data(raw_schema_property, key_pointer)
72
- if not raw_schema_property_value:
72
+ if not raw_schema_property_value or raw_schema_property_value.isspace():
73
73
  break
74
74
  if names_conversion:
75
75
  raw_schema_property_value = safe_name_conversion(raw_schema_property_value)
@@ -224,11 +224,11 @@ definitions:
224
224
  path: >-
225
225
  {% if config["spreadsheet_id"] | regex_search("^(https://.*)") %}{{ config["spreadsheet_id"] | regex_search("/([-\\w]{20,})([/]?)") }}{% else %}{{ config["spreadsheet_id"] }}{% endif %}?includeGridData=true&ranges={{stream_partition.sheet_id | urlencode}}!1:1&alt=json
226
226
  error_handler:
227
- type: CompositeErrorHandler
228
- error_handlers:
229
- - type: DefaultErrorHandler
230
- response_filters:
231
- $ref: "#/definitions/response_filters/single_sheet_response_error_filters"
227
+ type: DefaultErrorHandler
228
+ backoff_strategies:
229
+ - type: ExponentialBackoffStrategy
230
+ response_filters:
231
+ $ref: "#/definitions/response_filters/single_sheet_response_error_filters"
232
232
  response_filters:
233
233
  expected_one_sheet:
234
234
  type: HttpResponseFilter
@@ -320,9 +320,11 @@ definitions:
320
320
  single_sheet_response_error_filters:
321
321
  - $ref: "#/definitions/response_filters/expected_one_sheet"
322
322
  - $ref: "#/definitions/response_filters/ignore_duplicate_headers"
323
+ - $ref: "#/definitions/response_filters/rate_limit"
323
324
  check_operation_single_sheet_response_error_filters:
324
325
  - $ref: "#/definitions/response_filters/expected_one_sheet"
325
326
  - $ref: "#/definitions/response_filters/fail_duplicate_headers"
327
+ - $ref: "#/definitions/response_filters/rate_limit"
326
328
  response_error_filters:
327
329
  - $ref: "#/definitions/response_filters/server_error"
328
330
  - $ref: "#/definitions/response_filters/forbidden"
@@ -38,7 +38,7 @@ def name_conversion(text: str) -> str:
38
38
 
39
39
 
40
40
  def safe_name_conversion(text: str) -> str:
41
- if not text or text.isspace():
41
+ if not text:
42
42
  return text
43
43
  new = name_conversion(text)
44
44
  if not new: