airbyte-cdk 6.60.8__py3-none-any.whl → 6.60.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.
- airbyte_cdk/sources/declarative/requesters/http_requester.py +7 -1
- airbyte_cdk/sources/declarative/requesters/paginators/default_paginator.py +1 -8
- {airbyte_cdk-6.60.8.dist-info → airbyte_cdk-6.60.9.dist-info}/METADATA +1 -1
- {airbyte_cdk-6.60.8.dist-info → airbyte_cdk-6.60.9.dist-info}/RECORD +8 -8
- {airbyte_cdk-6.60.8.dist-info → airbyte_cdk-6.60.9.dist-info}/LICENSE.txt +0 -0
- {airbyte_cdk-6.60.8.dist-info → airbyte_cdk-6.60.9.dist-info}/LICENSE_SHORT +0 -0
- {airbyte_cdk-6.60.8.dist-info → airbyte_cdk-6.60.9.dist-info}/WHEEL +0 -0
- {airbyte_cdk-6.60.8.dist-info → airbyte_cdk-6.60.9.dist-info}/entry_points.txt +0 -0
@@ -168,7 +168,13 @@ class HttpRequester(Requester):
|
|
168
168
|
next_page_token=next_page_token,
|
169
169
|
)
|
170
170
|
|
171
|
-
full_url =
|
171
|
+
full_url = (
|
172
|
+
self._join_url(url_base, path)
|
173
|
+
if url_base
|
174
|
+
else self._join_url(url, path)
|
175
|
+
if path
|
176
|
+
else url
|
177
|
+
)
|
172
178
|
|
173
179
|
return full_url
|
174
180
|
|
@@ -159,14 +159,7 @@ class DefaultPaginator(Paginator):
|
|
159
159
|
) -> Optional[str]:
|
160
160
|
token = next_page_token.get("next_page_token") if next_page_token else None
|
161
161
|
if token and self.page_token_option and isinstance(self.page_token_option, RequestPath):
|
162
|
-
|
163
|
-
interpolation_context = get_interpolation_context(
|
164
|
-
stream_state=stream_state,
|
165
|
-
stream_slice=stream_slice,
|
166
|
-
next_page_token=next_page_token,
|
167
|
-
)
|
168
|
-
# Replace url base to only return the path
|
169
|
-
return str(token).replace(self.url_base.eval(self.config, **interpolation_context), "") # type: ignore # url_base is casted to a InterpolatedString in __post_init__
|
162
|
+
return str(token)
|
170
163
|
else:
|
171
164
|
return None
|
172
165
|
|
@@ -166,9 +166,9 @@ airbyte_cdk/sources/declarative/requesters/error_handlers/default_http_response_
|
|
166
166
|
airbyte_cdk/sources/declarative/requesters/error_handlers/error_handler.py,sha256=Tan66odx8VHzfdyyXMQkXz2pJYksllGqvxmpoajgcK4,669
|
167
167
|
airbyte_cdk/sources/declarative/requesters/error_handlers/http_response_filter.py,sha256=E-fQbt4ShfxZVoqfnmOx69C6FUPWZz8BIqI3DN9Kcjs,7935
|
168
168
|
airbyte_cdk/sources/declarative/requesters/http_job_repository.py,sha256=pVzIDdfGs1eAZo9F6zeFYKlEmEqanhNvZLKFCHkdmNo,14348
|
169
|
-
airbyte_cdk/sources/declarative/requesters/http_requester.py,sha256=
|
169
|
+
airbyte_cdk/sources/declarative/requesters/http_requester.py,sha256=cktdjnOu-o98smdCdrWC361iWNamPTZ-csT32OFh00c,18920
|
170
170
|
airbyte_cdk/sources/declarative/requesters/paginators/__init__.py,sha256=uArbKs9JKNCt7t9tZoeWwjDpyI1HoPp29FNW0JzvaEM,644
|
171
|
-
airbyte_cdk/sources/declarative/requesters/paginators/default_paginator.py,sha256=
|
171
|
+
airbyte_cdk/sources/declarative/requesters/paginators/default_paginator.py,sha256=kH_gwgULvEr8na-sST93gpr5pgqk8oT2aZNPebyMqlc,12293
|
172
172
|
airbyte_cdk/sources/declarative/requesters/paginators/no_pagination.py,sha256=b1-zKxYOUMHn7ahdWpzKEzfG4A7s_WQWy-vzRqZWzME,2152
|
173
173
|
airbyte_cdk/sources/declarative/requesters/paginators/paginator.py,sha256=TzJF1Q-CFlsHF9lMSfmnGCxRYm9_UQCmBcHYQpc7F30,2376
|
174
174
|
airbyte_cdk/sources/declarative/requesters/paginators/strategies/__init__.py,sha256=2gly8fuZpDNwtu1Qg6oE2jBLGqQRdzSLJdnpk_iDV6I,767
|
@@ -424,9 +424,9 @@ airbyte_cdk/utils/slice_hasher.py,sha256=EDxgROHDbfG-QKQb59m7h_7crN1tRiawdf5uU7G
|
|
424
424
|
airbyte_cdk/utils/spec_schema_transformations.py,sha256=-5HTuNsnDBAhj-oLeQXwpTGA0HdcjFOf2zTEMUTTg_Y,816
|
425
425
|
airbyte_cdk/utils/stream_status_utils.py,sha256=ZmBoiy5HVbUEHAMrUONxZvxnvfV9CesmQJLDTAIWnWw,1171
|
426
426
|
airbyte_cdk/utils/traced_exception.py,sha256=C8uIBuCL_E4WnBAOPSxBicD06JAldoN9fGsQDp463OY,6292
|
427
|
-
airbyte_cdk-6.60.
|
428
|
-
airbyte_cdk-6.60.
|
429
|
-
airbyte_cdk-6.60.
|
430
|
-
airbyte_cdk-6.60.
|
431
|
-
airbyte_cdk-6.60.
|
432
|
-
airbyte_cdk-6.60.
|
427
|
+
airbyte_cdk-6.60.9.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
|
428
|
+
airbyte_cdk-6.60.9.dist-info/LICENSE_SHORT,sha256=aqF6D1NcESmpn-cqsxBtszTEnHKnlsp8L4x9wAh3Nxg,55
|
429
|
+
airbyte_cdk-6.60.9.dist-info/METADATA,sha256=h5XYBhKyWQd7RWvXHD3cNlc2IozoRmWNwreYxK-dzc0,6477
|
430
|
+
airbyte_cdk-6.60.9.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
431
|
+
airbyte_cdk-6.60.9.dist-info/entry_points.txt,sha256=AKWbEkHfpzzk9nF9tqBUaw1MbvTM4mGtEzmZQm0ZWvM,139
|
432
|
+
airbyte_cdk-6.60.9.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|