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.
- {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/PKG-INFO +1 -1
- {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/pyproject.toml +1 -1
- {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/manifest.yaml +3 -3
- {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/README.md +0 -0
- {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/__init__.py +0 -0
- {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/components/__init__.py +0 -0
- {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/components/extractors.py +0 -0
- {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/components/partition_routers.py +0 -0
- {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/models/__init__.py +0 -0
- {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/models/spreadsheet.py +0 -0
- {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/models/spreadsheet_values.py +0 -0
- {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/run.py +0 -0
- {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/source.py +0 -0
- {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/spec.yaml +0 -0
- {airbyte_source_google_sheets-0.9.0rc1 → airbyte_source_google_sheets-0.9.0rc2}/source_google_sheets/utils.py +0 -0
@@ -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:
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|