airbyte-source-google-sheets 0.9.4.dev202503182154__py3-none-any.whl → 0.9.5__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.3
2
2
  Name: airbyte-source-google-sheets
3
- Version: 0.9.4.dev202503182154
3
+ Version: 0.9.5
4
4
  Summary: Source implementation for Google Sheets.
5
5
  License: Elv2
6
6
  Author: Airbyte
@@ -1,6 +1,6 @@
1
1
  source_google_sheets/__init__.py,sha256=dYaZS0KrTjksk_yeSuXmNDXDsNKWctFnlZJSMgLryXE,135
2
2
  source_google_sheets/components/__init__.py,sha256=v7odPaLdz2S_NRzExsxkk6694Vmjbplz4Z5mA4lxdkA,343
3
- source_google_sheets/components/extractors.py,sha256=S7lPBuy9MO_mnl3h4B48F_szuusvDdvpX0OBK-_AxVA,8909
3
+ source_google_sheets/components/extractors.py,sha256=Re0zt3_pUtRJMTcephi9GvvM6kYiZqWWtKefel0v0ZI,8948
4
4
  source_google_sheets/components/partition_routers.py,sha256=SWo1V0K10ZdWE2TQ0KuQUfue04RTyHJe1f6BOj6c96s,1265
5
5
  source_google_sheets/manifest.yaml,sha256=HG8vpxv4lqwe5TCneq_zxuERaGNdtno7yAs61Wsk30E,15821
6
6
  source_google_sheets/models/__init__.py,sha256=Z-4MTpxG5t2jGhXzs4PPoIOa83zw3jRnUDx0N9Puv3s,61
@@ -10,7 +10,7 @@ source_google_sheets/run.py,sha256=eaPRcarWqkB2b2DokvI83w7rz1blmWPQCFahvCyCdSY,1
10
10
  source_google_sheets/source.py,sha256=qO1KoGdphieu7F5VgDYtrbqs56AUvMWFGNvFHP2b9Z4,778
11
11
  source_google_sheets/spec.yaml,sha256=RIUILMhfS0is2r_mCkmIVrQfvND1D3eobDK1YElmzhU,5009
12
12
  source_google_sheets/utils.py,sha256=JEQIVLSFEAff-7zF3gPzsvFc9xLfCj9hVuFFYrSWiOo,2290
13
- airbyte_source_google_sheets-0.9.4.dev202503182154.dist-info/METADATA,sha256=ZIFox00SJ7cGK9JmjGjrjfyPR6sKc1LpIbOHscDz0Ds,5384
14
- airbyte_source_google_sheets-0.9.4.dev202503182154.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
15
- airbyte_source_google_sheets-0.9.4.dev202503182154.dist-info/entry_points.txt,sha256=Dtsfjohe5IPUFyqojk49SIoP7CifCTlNLG_pgivzppo,69
16
- airbyte_source_google_sheets-0.9.4.dev202503182154.dist-info/RECORD,,
13
+ airbyte_source_google_sheets-0.9.5.dist-info/METADATA,sha256=xF0rRyiUmTszuH8V3kCNb46SeX2ovohQIHctb6sKin4,5368
14
+ airbyte_source_google_sheets-0.9.5.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
15
+ airbyte_source_google_sheets-0.9.5.dist-info/entry_points.txt,sha256=Dtsfjohe5IPUFyqojk49SIoP7CifCTlNLG_pgivzppo,69
16
+ airbyte_source_google_sheets-0.9.5.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.1
2
+ Generator: poetry-core 2.1.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -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)