airbyte-source-google-sheets 0.9.0rc1__tar.gz → 0.9.0rc2__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (15) hide show
  1. {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/PKG-INFO +1 -1
  2. {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/pyproject.toml +1 -1
  3. {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/manifest.yaml +3 -3
  4. {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/README.md +0 -0
  5. {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/__init__.py +0 -0
  6. {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/components/__init__.py +0 -0
  7. {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/components/extractors.py +0 -0
  8. {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/components/partition_routers.py +0 -0
  9. {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/models/__init__.py +0 -0
  10. {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/models/spreadsheet.py +0 -0
  11. {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/models/spreadsheet_values.py +0 -0
  12. {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/run.py +0 -0
  13. {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/source.py +0 -0
  14. {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/spec.yaml +0 -0
  15. {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: airbyte-source-google-sheets
3
- Version: 0.9.0rc1
3
+ Version: 0.9.0rc2
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.0-rc.1"
8
+ version = "0.9.0-rc.2"
9
9
  name = "airbyte-source-google-sheets"
10
10
  description = "Source implementation for Google Sheets."
11
11
  authors = [
@@ -51,7 +51,7 @@ dynamic_streams:
51
51
  name: ""
52
52
  http_method: GET
53
53
  path: >-
54
- {% if config["spreadsheet_id"] | regex_search("^(https://.*)") %}{{ config["spreadsheet_id"] | regex_search("/([-\\w]{20,})([/]?)") }}{% else %}{{ config["spreadsheet_id"] }}{% endif %}/values:batchGet?ranges={{parameters["sheet_id"]}}!{{stream_partition.start_range}}:{{stream_partition.end_range}}&majorDimension=ROWS&alt=json
54
+ {% if config["spreadsheet_id"] | regex_search("^(https://.*)") %}{{ config["spreadsheet_id"] | regex_search("/([-\\w]{20,})([/]?)") }}{% else %}{{ config["spreadsheet_id"] }}{% endif %}/values:batchGet?ranges={{parameters["sheet_id"] | urlencode}}!{{stream_partition.start_range}}:{{stream_partition.end_range}}&majorDimension=ROWS&alt=json
55
55
  error_handler:
56
56
  type: DefaultErrorHandler
57
57
  backoff_strategies:
@@ -85,7 +85,7 @@ dynamic_streams:
85
85
  sheet_id: ""
86
86
  http_method: GET
87
87
  path: >-
88
- {% if config["spreadsheet_id"] | regex_search("^(https://.*)") %}{{ config["spreadsheet_id"] | regex_search("/([-\\w]{20,})([/]?)") }}{% else %}{{ config["spreadsheet_id"] }}{% endif %}?includeGridData=true&ranges={{parameters["sheet_id"]}}!1:1&alt=json
88
+ {% if config["spreadsheet_id"] | regex_search("^(https://.*)") %}{{ config["spreadsheet_id"] | regex_search("/([-\\w]{20,})([/]?)") }}{% else %}{{ config["spreadsheet_id"] }}{% endif %}?includeGridData=true&ranges={{parameters["sheet_id"] | urlencode}}!1:1&alt=json
89
89
  error_handler:
90
90
  type: CompositeErrorHandler
91
91
  error_handlers:
@@ -221,7 +221,7 @@ definitions:
221
221
  description: spreadsheet_id can be either the full url to spreadsheet or the spreadsheet id.
222
222
  http_method: GET
223
223
  path: >-
224
- {% 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}}!1:1&alt=json
224
+ {% 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
225
225
  error_handler:
226
226
  type: CompositeErrorHandler
227
227
  error_handlers: